summaryrefslogtreecommitdiff
path: root/tests/draft-next/vocabulary.json
diff options
context:
space:
mode:
Diffstat (limited to 'tests/draft-next/vocabulary.json')
-rw-r--r--tests/draft-next/vocabulary.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/draft-next/vocabulary.json b/tests/draft-next/vocabulary.json
new file mode 100644
index 0000000..65b81ea
--- /dev/null
+++ b/tests/draft-next/vocabulary.json
@@ -0,0 +1,38 @@
+[
+ {
+ "description": "schema that uses custom metaschema with with no validation vocabulary",
+ "schema": {
+ "$id": "https://schema/using/no/validation",
+ "$schema": "http://localhost:1234/draft-next/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
+ }
+ ]
+ }
+]