summaryrefslogtreecommitdiffstats
path: root/src/rapidjson/bin/jsonschema/tests/draft3/maxItems.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/rapidjson/bin/jsonschema/tests/draft3/maxItems.json')
-rw-r--r--src/rapidjson/bin/jsonschema/tests/draft3/maxItems.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/rapidjson/bin/jsonschema/tests/draft3/maxItems.json b/src/rapidjson/bin/jsonschema/tests/draft3/maxItems.json
new file mode 100644
index 000000000..3b53a6b37
--- /dev/null
+++ b/src/rapidjson/bin/jsonschema/tests/draft3/maxItems.json
@@ -0,0 +1,28 @@
+[
+ {
+ "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
+ }
+ ]
+ }
+]