summaryrefslogtreecommitdiff
path: root/json/tests/draft6/maxProperties.json
diff options
context:
space:
mode:
Diffstat (limited to 'json/tests/draft6/maxProperties.json')
-rw-r--r--json/tests/draft6/maxProperties.json12
1 files changed, 11 insertions, 1 deletions
diff --git a/json/tests/draft6/maxProperties.json b/json/tests/draft6/maxProperties.json
index d282446..513731e 100644
--- a/json/tests/draft6/maxProperties.json
+++ b/json/tests/draft6/maxProperties.json
@@ -19,9 +19,19 @@
"valid": false
},
{
- "description": "ignores non-objects",
+ "description": "ignores arrays",
+ "data": [1, 2, 3],
+ "valid": true
+ },
+ {
+ "description": "ignores strings",
"data": "foobar",
"valid": true
+ },
+ {
+ "description": "ignores other non-objects",
+ "data": 12,
+ "valid": true
}
]
}