xref: /aosp_15_r20/external/json-schema-validator/src/test/suite/tests/draft3/maxLength.json (revision 78c4dd6aa35290980cdcd1623a7e337e8d021c7c)
1[
2    {
3        "description": "maxLength validation",
4        "schema": {"maxLength": 2},
5        "tests": [
6            {
7                "description": "shorter is valid",
8                "data": "f",
9                "valid": true
10            },
11            {
12                "description": "exact length is valid",
13                "data": "fo",
14                "valid": true
15            },
16            {
17                "description": "too long is invalid",
18                "data": "foo",
19                "valid": false
20            },
21            {
22                "description": "ignores non-strings",
23                "data": 10,
24                "valid": true
25            },
26            {
27                "description": "two graphemes is long enough",
28                "data": "\uD83D\uDCA9\uD83D\uDCA9",
29                "valid": true
30            }
31        ]
32    }
33]
34