1[ 2 { 3 "description": "exclusiveMinimum validation", 4 "schema": { 5 "$schema": "https://json-schema.org/draft/2020-12/schema", 6 "exclusiveMinimum": 1.1 7 }, 8 "tests": [ 9 { 10 "description": "above the exclusiveMinimum is valid", 11 "data": 1.2, 12 "valid": true 13 }, 14 { 15 "description": "boundary point is invalid", 16 "data": 1.1, 17 "valid": false 18 }, 19 { 20 "description": "below the exclusiveMinimum is invalid", 21 "data": 0.6, 22 "valid": false 23 }, 24 { 25 "description": "ignores non-numbers", 26 "data": "x", 27 "valid": true 28 } 29 ] 30 } 31] 32