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