cuelang.org/go@v0.13.0/encoding/jsonschema/testdata/external/tests/draft2020-12/optional/float-overflow.json (about) 1 [ 2 { 3 "description": "all integers are multiples of 0.5, if overflow is handled", 4 "schema": { 5 "$schema": "https://json-schema.org/draft/2020-12/schema", 6 "type": "integer", 7 "multipleOf": 0.5 8 }, 9 "tests": [ 10 { 11 "description": "valid if optional overflow handling is implemented", 12 "data": 1E+308, 13 "valid": true, 14 "skip": { 15 "v2": "conflicting values 1E+308 and int (mismatched types float and int):\n generated.cue:5:1\n instance.json:1:1\n", 16 "v3": "conflicting values 1E+308 and int (mismatched types float and int):\n generated.cue:5:1\n instance.json:1:1\n" 17 } 18 } 19 ] 20 } 21 ]