Skip to content
This repository was archived by the owner on Nov 2, 2023. It is now read-only.

Commit 7000235

Browse files
committed
Fix hyper-schema syntax error.
1 parent b1d463a commit 7000235

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

draft-03/hyper-schema

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,60 @@
11
{
22
"$schema" : "http://json-schema.org/draft-03/hyper-schema#",
3-
"extends" : {"$ref" : "http://json-schema.org/draft-03/schema#"}
3+
"extends" : {"$ref" : "http://json-schema.org/draft-03/schema#"},
44
"id" : "http://json-schema.org/draft-03/hyper-schema#",
55

66
"properties" : {
77
"links" : {
88
"type" : "array",
99
"items" : {"$ref" : "http://json-schema.org/draft-03/links#"}
1010
},
11-
11+
1212
"fragmentResolution" : {
1313
"type" : "string",
1414
"default" : "slash-delimited"
1515
},
16-
16+
1717
"root" : {
1818
"type" : "boolean",
1919
"default" : false
2020
},
21-
21+
2222
"readonly" : {
2323
"type" : "boolean",
2424
"default" : false
2525
},
26-
26+
2727
"contentEncoding" : {
2828
"type" : "string"
2929
},
30-
30+
3131
"pathStart" : {
3232
"type" : "string",
3333
"format" : "uri"
3434
},
35-
35+
3636
"mediaType" : {
3737
"type" : "string",
3838
"format" : "media-type"
3939
}
4040
},
41-
41+
4242
"links" : [
4343
{
4444
"href" : "{id}",
4545
"rel" : "self"
4646
},
47-
47+
4848
{
4949
"href" : "{$ref}",
5050
"rel" : "full"
5151
},
52-
52+
5353
{
5454
"href" : "{$schema}",
5555
"rel" : "describedby"
5656
}
5757
],
58-
58+
5959
"fragmentResolution" : "slash-delimited"
60-
}
60+
}

0 commit comments

Comments
 (0)