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