Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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", "booelan", "integer", "number", "object", "string" ] }
],
"transform": [
{ "operation": "prefix-until-unique", "path": [ {} ], "value": "x-" }
]
}
10 changes: 10 additions & 0 deletions rules/from-draft4/to-draft6/002-ref-and-x-ref-present.json
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-" }
]
}
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" ] }
]
}
31 changes: 31 additions & 0 deletions test/from-draft4/to-draft6/ref.json
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",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As in the other PR, you shouldn't be using $id here, but id

"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"
}
}
}
}
]