git-subtree-dir: third_party/rapidjson git-subtree-split: f54b0e47a08782a6131cc3d60f94d038fa6e0a51
29 lines
706 B
JSON
29 lines
706 B
JSON
[
|
|
{
|
|
"description": "maxItems validation",
|
|
"schema": {"maxItems": 2},
|
|
"tests": [
|
|
{
|
|
"description": "shorter is valid",
|
|
"data": [1],
|
|
"valid": true
|
|
},
|
|
{
|
|
"description": "exact length is valid",
|
|
"data": [1, 2],
|
|
"valid": true
|
|
},
|
|
{
|
|
"description": "too long is invalid",
|
|
"data": [1, 2, 3],
|
|
"valid": false
|
|
},
|
|
{
|
|
"description": "ignores non-arrays",
|
|
"data": "foobar",
|
|
"valid": true
|
|
}
|
|
]
|
|
}
|
|
]
|