summaryrefslogtreecommitdiff
path: root/json/tests/draft2019-09/maxLength.json
blob: f242c3eff26f939b46368b90971afc18f37dd6e1 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[
    {
        "description": "maxLength validation",
        "schema": {
            "$schema": "https://json-schema.org/draft/2019-09/schema",
            "maxLength": 2
        },
        "tests": [
            {
                "description": "shorter is valid",
                "data": "f",
                "valid": true
            },
            {
                "description": "exact length is valid",
                "data": "fo",
                "valid": true
            },
            {
                "description": "too long is invalid",
                "data": "foo",
                "valid": false
            },
            {
                "description": "ignores non-strings",
                "data": 100,
                "valid": true
            },
            {
                "description": "two supplementary Unicode code points is long enough",
                "data": "\uD83D\uDCA9\uD83D\uDCA9",
                "valid": true
            }
        ]
    },
    {
        "description": "maxLength validation with a decimal",
        "schema": {
            "$schema": "https://json-schema.org/draft/2019-09/schema",
            "maxLength": 2.0
        },
        "tests": [
            {
                "description": "shorter is valid",
                "data": "f",
                "valid": true
            },
            {
                "description": "too long is invalid",
                "data": "foo",
                "valid": false
            }
        ]
    }
]