Skip to content

Commit

Permalink
Make references relative
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Cruz Viotti <[email protected]>
  • Loading branch information
jviotti committed Aug 6, 2024
1 parent 61b2dfa commit 068b52b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions schemas/ietf/rfc6902/jsonpatch-operation/v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"const": "add"
},
"path": {
"$ref": "https://schemas.intelligence.ai/std/rfc6901-jsonpointer/v1.json"
"$ref": "../../rfc6901/jsonpointer/v1.json"
},
"value": true
}
Expand All @@ -32,7 +32,7 @@
"const": "remove"
},
"path": {
"$ref": "https://schemas.intelligence.ai/std/rfc6901-jsonpointer/v1.json"
"$ref": "../../rfc6901/jsonpointer/v1.json"
}
}
},
Expand All @@ -48,7 +48,7 @@
"const": "replace"
},
"path": {
"$ref": "https://schemas.intelligence.ai/std/rfc6901-jsonpointer/v1.json"
"$ref": "../../rfc6901/jsonpointer/v1.json"
},
"value": true
}
Expand All @@ -62,13 +62,13 @@
],
"properties": {
"from": {
"$ref": "https://schemas.intelligence.ai/std/rfc6901-jsonpointer/v1.json"
"$ref": "../../rfc6901/jsonpointer/v1.json"
},
"op": {
"const": "copy"
},
"path": {
"$ref": "https://schemas.intelligence.ai/std/rfc6901-jsonpointer/v1.json"
"$ref": "../../rfc6901/jsonpointer/v1.json"
}
}
},
Expand All @@ -81,13 +81,13 @@
],
"properties": {
"from": {
"$ref": "https://schemas.intelligence.ai/std/rfc6901-jsonpointer/v1.json"
"$ref": "../../rfc6901/jsonpointer/v1.json"
},
"op": {
"const": "move"
},
"path": {
"$ref": "https://schemas.intelligence.ai/std/rfc6901-jsonpointer/v1.json"
"$ref": "../../rfc6901/jsonpointer/v1.json"
}
}
},
Expand All @@ -103,7 +103,7 @@
"const": "test"
},
"path": {
"$ref": "https://schemas.intelligence.ai/std/rfc6901-jsonpointer/v1.json"
"$ref": "../../rfc6901/jsonpointer/v1.json"
},
"value": true
}
Expand Down
2 changes: 1 addition & 1 deletion schemas/ietf/rfc6902/jsonpatch/v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"$comment": "https://datatracker.ietf.org/doc/html/rfc6902",
"type": "array",
"items": {
"$ref": "https://schemas.intelligence.ai/std/rfc6902-jsonpatch-operation/v1.json"
"$ref": "../jsonpatch-operation/v1.json"
}
}

0 comments on commit 068b52b

Please sign in to comment.