summaryrefslogtreecommitdiff
path: root/tests/draft-future/exclusiveMinimum.json
blob: b38d7ecec63083a2429d60bd4c6dbc9e1c420725 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[
    {
        "description": "exclusiveMinimum validation",
        "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
            }
        ]
    }
]