We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e99f7f4 commit 8652f95Copy full SHA for 8652f95
tests/draft2019-09/future-keywords.json
@@ -0,0 +1,33 @@
1
+[
2
+ {
3
+ "description": "$dynamicRef",
4
+ "schema": {
5
+ "properties": {
6
+ "foo": {"$dynamicRef": "#"}
7
+ },
8
+ "additionalProperties": false
9
10
+ "tests": [
11
12
+ "description": "match",
13
+ "data": {"foo": false},
14
+ "valid": true
15
16
17
+ "description": "recursive match",
18
+ "data": {"foo": {"foo": false}},
19
20
21
22
+ "description": "mismatch",
23
+ "data": {"bar": false},
24
+ "valid": false
25
26
27
+ "description": "recursive mismatch",
28
+ "data": {"foo": {"bar": false}},
29
30
+ }
31
+ ]
32
33
+}
0 commit comments