1[ 2 { 3 "description": "all integers are multiples of 0.5, if overflow is handled", 4 "schema": { 5 "$schema": "https://json-schema.org/draft/2019-09/schema", 6 "type": "integer", "multipleOf": 0.5 7 }, 8 "tests": [ 9 { 10 "description": "valid if optional overflow handling is implemented", 11 "data": 1e308, 12 "valid": true 13 } 14 ] 15 } 16] 17