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.json60
1 files changed, 60 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..a753ad3
--- /dev/null
+++ b/json/tests/draft2020-12/minProperties.json
@@ -0,0 +1,60 @@
+[
+ {
+ "description": "minProperties validation",
+ "schema": {
+ "$schema": "https://json-schema.org/draft/2020-12/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
+ }
+ ]
+ },
+ {
+ "description": "minProperties validation with a decimal",
+ "schema": {
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "minProperties": 1.0
+ },
+ "tests": [
+ {
+ "description": "longer is valid",
+ "data": {"foo": 1, "bar": 2},
+ "valid": true
+ },
+ {
+ "description": "too short is invalid",
+ "data": {},
+ "valid": false
+ }
+ ]
+ }
+]