summaryrefslogtreecommitdiff
path: root/json/tests/draft2020-12/minProperties.json
diff options
context:
space:
mode:
Diffstat (limited to 'json/tests/draft2020-12/minProperties.json')
-rw-r--r--json/tests/draft2020-12/minProperties.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/json/tests/draft2020-12/minProperties.json b/json/tests/draft2020-12/minProperties.json
new file mode 100644
index 0000000..49a0726
--- /dev/null
+++ b/json/tests/draft2020-12/minProperties.json
@@ -0,0 +1,38 @@
+[
+ {
+ "description": "minProperties validation",
+ "schema": {"minProperties": 1},
+ "tests": [
+ {
+ "description": "longer is valid",
+ "data": {"foo": 1, "bar": 2},
+ "valid": true
+ },
+ {
+ "description": "exact length is valid",
+ "data": {"foo": 1},
+ "valid": true
+ },
+ {
+ "description": "too short is invalid",
+ "data": {},
+ "valid": false
+ },
+ {
+ "description": "ignores arrays",
+ "data": [],
+ "valid": true
+ },
+ {
+ "description": "ignores strings",
+ "data": "",
+ "valid": true
+ },
+ {
+ "description": "ignores other non-objects",
+ "data": 12,
+ "valid": true
+ }
+ ]
+ }
+]