]> git.proxmox.com Git - ceph.git/blob - ceph/src/rapidjson/bin/jsonschema/tests/draft4/minLength.json
buildsys: change download over to reef release
[ceph.git] / ceph / src / rapidjson / bin / jsonschema / tests / draft4 / minLength.json
1 [
2 {
3 "description": "minLength validation",
4 "schema": {"minLength": 2},
5 "tests": [
6 {
7 "description": "longer is valid",
8 "data": "foo",
9 "valid": true
10 },
11 {
12 "description": "exact length is valid",
13 "data": "fo",
14 "valid": true
15 },
16 {
17 "description": "too short is invalid",
18 "data": "f",
19 "valid": false
20 },
21 {
22 "description": "ignores non-strings",
23 "data": 1,
24 "valid": true
25 },
26 {
27 "description": "one supplementary Unicode code point is not long enough",
28 "data": "\uD83D\uDCA9",
29 "valid": false
30 }
31 ]
32 }
33 ]