diff options
Diffstat (limited to '3rdparty/rapidjson/bin/jsonschema/tests/draft3/minItems.json')
-rw-r--r-- | 3rdparty/rapidjson/bin/jsonschema/tests/draft3/minItems.json | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/3rdparty/rapidjson/bin/jsonschema/tests/draft3/minItems.json b/3rdparty/rapidjson/bin/jsonschema/tests/draft3/minItems.json index ed5118815ee..df8e0981c40 100644 --- a/3rdparty/rapidjson/bin/jsonschema/tests/draft3/minItems.json +++ b/3rdparty/rapidjson/bin/jsonschema/tests/draft3/minItems.json @@ -1,28 +1,28 @@ -[ - { - "description": "minItems validation", - "schema": {"minItems": 1}, - "tests": [ - { - "description": "longer is valid", - "data": [1, 2], - "valid": true - }, - { - "description": "exact length is valid", - "data": [1], - "valid": true - }, - { - "description": "too short is invalid", - "data": [], - "valid": false - }, - { - "description": "ignores non-arrays", - "data": "", - "valid": true - } - ] - } -] +[
+ {
+ "description": "minItems validation",
+ "schema": {"minItems": 1},
+ "tests": [
+ {
+ "description": "longer is valid",
+ "data": [1, 2],
+ "valid": true
+ },
+ {
+ "description": "exact length is valid",
+ "data": [1],
+ "valid": true
+ },
+ {
+ "description": "too short is invalid",
+ "data": [],
+ "valid": false
+ },
+ {
+ "description": "ignores non-arrays",
+ "data": "",
+ "valid": true
+ }
+ ]
+ }
+]
|