diff options
author | Julian Berman <Julian@GrayVines.com> | 2020-04-28 09:45:15 -0400 |
---|---|---|
committer | Julian Berman <Julian@GrayVines.com> | 2020-04-28 09:45:15 -0400 |
commit | 0dd4b1c2f4dc2ce3cf083bfa339a517993ec68d5 (patch) | |
tree | 0f00c8209f4f49b76f5c1f2bb7568a4402cf1863 /json/tests/draft7/optional | |
parent | 12a5756a1cb0112878036aff1efd7cec2944367b (diff) | |
parent | ef1a0784695ad7eef68b8aefe75dbf42add91f58 (diff) | |
download | jsonschema-0dd4b1c2f4dc2ce3cf083bfa339a517993ec68d5.tar.gz |
Merge commit 'ef1a0784695ad7eef68b8aefe75dbf42add91f58'
* commit 'ef1a0784695ad7eef68b8aefe75dbf42add91f58':
Squashed 'json/' changes from d17e1ba2..2576db4d
Diffstat (limited to 'json/tests/draft7/optional')
-rw-r--r-- | json/tests/draft7/optional/format/relative-json-pointer.json | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/json/tests/draft7/optional/format/relative-json-pointer.json b/json/tests/draft7/optional/format/relative-json-pointer.json index ceeb743..17816c9 100644 --- a/json/tests/draft7/optional/format/relative-json-pointer.json +++ b/json/tests/draft7/optional/format/relative-json-pointer.json @@ -9,7 +9,7 @@ "valid": true }, { - "description": "a valid downwards RJP", + "description": "a valid downwards RJP", "data": "0/foo/bar", "valid": true }, @@ -27,6 +27,11 @@ "description": "an invalid RJP that is a valid JSON Pointer", "data": "/foo/bar", "valid": false + }, + { + "description": "negative prefix", + "data": "-1/foo/bar", + "valid": false } ] } |