Skip to content

Commit 401a857

Browse files
committed
Squashed 'json/' changes from 17fa9589..6327a3bc
6327a3bc Remove annotation-asserting tests from draft3's format as well. 35bab687 Merge pull request #497 from json-schema-org/ether/streamlined-format-tests 808c5d24 in #496 I neglected to update draft-future with the same $id fixes as in draft2020-12. ba1f1a77 normalize all format tests, adding consistent sample data b00ba577 fix use of boolean schemas in draft4 4ca4af27 Merge pull request #498 from json-schema-org/ether/2020-12-unicode-pattern c5f08e24 add tests for pattern matching with unicode semantics e7f8b3e8 Merge pull request #496 from json-schema-org/ether/missing-identifiers c8d79ee7 use unique identifiers so schemas do not conflict git-subtree-dir: json git-subtree-split: 6327a3bcd2b2991e9be209f71230f6b57f0f9460
1 parent 02434de commit 401a857

File tree

19 files changed

+1668
-866
lines changed

19 files changed

+1668
-866
lines changed

Diff for: tests/draft-future/dynamicRef.json

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
{
33
"description": "A $dynamicRef to a $dynamicAnchor in the same schema resource should behave like a normal $ref to an $anchor",
44
"schema": {
5+
"$id": "https://test.json-schema.org/dynamicRef-dynamicAnchor-same-schema/root",
56
"type": "array",
67
"items": { "$dynamicRef": "#items" },
78
"$defs": {
@@ -27,6 +28,7 @@
2728
{
2829
"description": "A $dynamicRef to an $anchor in the same schema resource should behave like a normal $ref to an $anchor",
2930
"schema": {
31+
"$id": "https://test.json-schema.org/dynamicRef-anchor-same-schema/root",
3032
"type": "array",
3133
"items": { "$dynamicRef": "#items" },
3234
"$defs": {
@@ -52,6 +54,7 @@
5254
{
5355
"description": "A $ref to a $dynamicAnchor in the same schema resource should behave like a normal $ref to an $anchor",
5456
"schema": {
57+
"$id": "https://test.json-schema.org/ref-dynamicAnchor-same-schema/root",
5558
"type": "array",
5659
"items": { "$ref": "#items" },
5760
"$defs": {

0 commit comments

Comments
 (0)