Skip to content

Commit 0f05f32

Browse files
handrewsdlax
authored andcommitted
Fix $ref to hyper-schema in links meta-schema
1 parent 0b0681c commit 0f05f32

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

links.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
"format": "uri-template"
1111
},
1212
"hrefSchema": {
13-
"allOf": [ {"$ref": "#"} ]
13+
"allOf": [
14+
{ "$ref": "http://json-schema.org/draft-06/hyper-schema#" }
15+
]
1416
},
1517
"rel": {
1618
"type": "string"
@@ -19,7 +21,9 @@
1921
"type": "string"
2022
},
2123
"targetSchema": {
22-
"allOf": [ { "$ref": "hyper-schema#" } ]
24+
"allOf": [
25+
{ "$ref": "http://json-schema.org/draft-06/hyper-schema#" }
26+
]
2327
},
2428
"mediaType": {
2529
"type": "string"
@@ -29,7 +33,9 @@
2933
"default": "application/json"
3034
},
3135
"submissionSchema": {
32-
"allOf": [ { "$ref": "hyper-schema#" } ]
36+
"allOf": [
37+
{ "$ref": "http://json-schema.org/draft-06/hyper-schema#" }
38+
]
3339
}
3440
}
3541
}

0 commit comments

Comments
 (0)