| [ | |
| { | |
| "description": "exclusiveMinimum validation", | |
| "schema": { | |
| "$schema": "https://json-schema.org/draft/2020-12/schema", | |
| "exclusiveMinimum": 1.1 | |
| }, | |
| "tests": [ | |
| { | |
| "description": "above the exclusiveMinimum is valid", | |
| "data": 1.2, | |
| "valid": true | |
| }, | |
| { | |
| "description": "boundary point is invalid", | |
| "data": 1.1, | |
| "valid": false | |
| }, | |
| { | |
| "description": "below the exclusiveMinimum is invalid", | |
| "data": 0.6, | |
| "valid": false | |
| }, | |
| { | |
| "description": "ignores non-numbers", | |
| "data": "x", | |
| "valid": true | |
| } | |
| ] | |
| } | |
| ] |