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

     1  [
     2  	{
     3  		"description": "all integers are multiples of 0.5, if overflow is handled",
     4  		"schema": {
     5  			"type": "number",
     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  			}
    14  		]
    15  	}
    16  ]