summaryrefslogtreecommitdiff
path: root/json/tests/draft2020-12/vocabulary.json
diff options
context:
space:
mode:
Diffstat (limited to 'json/tests/draft2020-12/vocabulary.json')
-rw-r--r--json/tests/draft2020-12/vocabulary.json38
1 files changed, 0 insertions, 38 deletions
diff --git a/json/tests/draft2020-12/vocabulary.json b/json/tests/draft2020-12/vocabulary.json
deleted file mode 100644
index d84f8f1..0000000
--- a/json/tests/draft2020-12/vocabulary.json
+++ /dev/null
@@ -1,38 +0,0 @@
-[
- {
- "description": "schema that uses custom metaschema with with no validation vocabulary",
- "schema": {
- "$id": "https://schema/using/no/validation",
- "$schema": "http://localhost:1234/draft2020-12/metaschema-no-validation.json",
- "properties": {
- "badProperty": false,
- "numberProperty": {
- "minimum": 10
- }
- }
- },
- "tests": [
- {
- "description": "applicator vocabulary still works",
- "data": {
- "badProperty": "this property should not exist"
- },
- "valid": false
- },
- {
- "description": "no validation: valid number",
- "data": {
- "numberProperty": 20
- },
- "valid": true
- },
- {
- "description": "no validation: invalid number, but it still validates",
- "data": {
- "numberProperty": 1
- },
- "valid": true
- }
- ]
- }
-]