| [ | |
| { | |
| "description": "all integers are multiples of 0.5, if overflow is handled", | |
| "schema": { | |
| "$schema": "https://json-schema.org/draft/next/schema", | |
| "type": "integer", | |
| "multipleOf": 0.5 | |
| }, | |
| "tests": [ | |
| { | |
| "description": "valid if optional overflow handling is implemented", | |
| "data": 1e308, | |
| "valid": true | |
| } | |
| ] | |
| } | |
| ] |