summaryrefslogtreecommitdiffstats
path: root/tests/auto/partition/json-validation/integer-boundaries-schema.json
blob: 5575d28e906146f8cf1babc244e9826635f30fd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
    "description": "Check numbers boundaries",
    "type": "object",
    "properties": {
        "oneOrLess": {
            "type": "number",
            "maximum": 1
        },
        "lessThenOne": {
            "type": "number",
            "exclusiveMaximum": 1
        },
        "oneOrMore": {
            "type": "number",
            "minimum": 1
        },
        "moreThenOne": {
            "type": "number",
            "exclusiveMinimum": 1
        }
    }
}