diff options
Diffstat (limited to 'json/tests/draft2019-09/anchor.json')
-rw-r--r-- | json/tests/draft2019-09/anchor.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/json/tests/draft2019-09/anchor.json b/json/tests/draft2019-09/anchor.json index 4e8987e..4143d1f 100644 --- a/json/tests/draft2019-09/anchor.json +++ b/json/tests/draft2019-09/anchor.json @@ -200,5 +200,27 @@ "valid": false } ] + }, + { + "description": "invalid anchors", + "comment": "Section 8.2.3", + "schema": { "$ref": "https://json-schema.org/draft/2019-09/schema" }, + "tests": [ + { + "description": "MUST start with a letter (and not #)", + "data": { "$anchor" : "#foo" }, + "valid": false + }, + { + "description": "JSON pointers are not valid", + "data": { "$anchor" : "/a/b" }, + "valid": false + }, + { + "description": "invalid with valid beginning", + "data": { "$anchor" : "foo#something" }, + "valid": false + } + ] } ] |