summaryrefslogtreecommitdiff
path: root/json/tests/draft4/minProperties.json
diff options
context:
space:
mode:
Diffstat (limited to 'json/tests/draft4/minProperties.json')
-rw-r--r--json/tests/draft4/minProperties.json38
1 files changed, 0 insertions, 38 deletions
diff --git a/json/tests/draft4/minProperties.json b/json/tests/draft4/minProperties.json
deleted file mode 100644
index 49a0726..0000000
--- a/json/tests/draft4/minProperties.json
+++ /dev/null
@@ -1,38 +0,0 @@
-[
- {
- "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
- }
- ]
- }
-]