cuelang.org/go@v0.13.0/encoding/jsonschema/testdata/external/tests/draft7/optional/float-overflow.json (about)

     1  [
     2  	{
     3  		"description": "all integers are multiples of 0.5, if overflow is handled",
     4  		"schema": {
     5  			"type": "integer",
     6  			"multipleOf": 0.5
     7  		},
     8  		"tests": [
     9  			{
    10  				"description": "valid if optional overflow handling is implemented",
    11  				"data": 1E+308,
    12  				"valid": true,
    13  				"skip": {
    14  					"v2": "conflicting values 1E+308 and int (mismatched types float and int):\n    generated.cue:3:1\n    instance.json:1:1\n",
    15  					"v3": "conflicting values 1E+308 and int (mismatched types float and int):\n    generated.cue:3:1\n    instance.json:1:1\n"
    16  				}
    17  			}
    18  		]
    19  	}
    20  ]