aboutsummaryrefslogtreecommitdiff
path: root/bin/jsonschema/tests/draft4/minProperties.json
diff options
context:
space:
mode:
Diffstat (limited to 'bin/jsonschema/tests/draft4/minProperties.json')
-rw-r--r--bin/jsonschema/tests/draft4/minProperties.json28
1 files changed, 0 insertions, 28 deletions
diff --git a/bin/jsonschema/tests/draft4/minProperties.json b/bin/jsonschema/tests/draft4/minProperties.json
deleted file mode 100644
index a72c7d2..0000000
--- a/bin/jsonschema/tests/draft4/minProperties.json
+++ /dev/null
@@ -1,28 +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 non-objects",
- "data": "",
- "valid": true
- }
- ]
- }
-]