json-schema-validator/test/JSON-Schema-Test-Suite/tests/draft7/optional/float-overflow.json
2021-06-10 11:02:41 +02:00

14 lines
361 B
JSON

[
{
"description": "all integers are multiples of 0.5, if overflow is handled",
"schema": {"type": "integer", "multipleOf": 0.5},
"tests": [
{
"description": "valid if optional overflow handling is implemented",
"data": 1e308,
"valid": true
}
]
}
]