generated from json-schema-org/repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ref case for Draft 6 to Draft 7 transform (#53)
Co-authored-by: Juan Cruz Viotti <[email protected]>
- Loading branch information
1 parent
3a57333
commit 0a0ed54
Showing
13 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
rules/from-draft6/to-draft7/001-ref-and-adjecent-keywords-present.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"vocabulary": "core", | ||
"condition": [ | ||
{ "operation": "has-key", "path": [], "value": "$ref" }, | ||
{ "operation": "type-is", "path": [ {} ], "value": [ "array", "boolean", "integer", "number", "object", "string" ] } | ||
], | ||
"transform": [ | ||
{ "operation": "prefix-until-unique", "path": [ {} ], "value": "x-" } | ||
] | ||
} |
10 changes: 10 additions & 0 deletions
10
rules/from-draft6/to-draft7/002-ref-and-x-ref-present.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"vocabulary": "core", | ||
"condition": [ | ||
{ "operation": "has-key", "path": [], "value": "$ref" }, | ||
{ "operation": "has-key", "path": [], "value": "x-$ref" } | ||
], | ||
"transform": [ | ||
{ "operation": "prefix-until-unique", "path": [ "x-$ref" ], "value": "x-" } | ||
] | ||
} |
9 changes: 9 additions & 0 deletions
9
rules/from-draft6/to-draft7/003-correct-sideeffects-ref-transform.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"vocabulary": "core", | ||
"condition": [ | ||
{ "operation": "has-key", "path": [], "value": "x-$ref" } | ||
], | ||
"transform": [ | ||
{ "operation": "move", "to": [ "$ref" ], "from": [ "x-$ref" ] } | ||
] | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[ | ||
{ | ||
"title": "$ref present in schema, with adjacent keywords", | ||
"from": { | ||
"$id": "http://example.com", | ||
"properties": { | ||
"foo": { | ||
"$ref": "/bar", | ||
"type": "string", | ||
"$id": "zoo" | ||
}, | ||
"bar": { | ||
"$id": "bar" | ||
} | ||
} | ||
}, | ||
"to": { | ||
"$id": "http://example.com", | ||
"properties": { | ||
"foo": { | ||
"$ref": "/bar", | ||
"x-type": "string", | ||
"x-$id": "zoo" | ||
}, | ||
"bar": { | ||
"$id": "bar" | ||
} | ||
} | ||
} | ||
} | ||
] |