Last change
on this file since 571e0df was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
942 bytes
|
Line | |
---|
1 | {
|
---|
2 | "$schema" : "http://json-schema.org/draft-03/hyper-schema#",
|
---|
3 | "extends" : {"$ref" : "http://json-schema.org/draft-03/schema#"},
|
---|
4 | "id" : "http://json-schema.org/draft-03/hyper-schema#",
|
---|
5 |
|
---|
6 | "properties" : {
|
---|
7 | "links" : {
|
---|
8 | "type" : "array",
|
---|
9 | "items" : {"$ref" : "http://json-schema.org/draft-03/links#"}
|
---|
10 | },
|
---|
11 |
|
---|
12 | "fragmentResolution" : {
|
---|
13 | "type" : "string",
|
---|
14 | "default" : "slash-delimited"
|
---|
15 | },
|
---|
16 |
|
---|
17 | "root" : {
|
---|
18 | "type" : "boolean",
|
---|
19 | "default" : false
|
---|
20 | },
|
---|
21 |
|
---|
22 | "readonly" : {
|
---|
23 | "type" : "boolean",
|
---|
24 | "default" : false
|
---|
25 | },
|
---|
26 |
|
---|
27 | "contentEncoding" : {
|
---|
28 | "type" : "string"
|
---|
29 | },
|
---|
30 |
|
---|
31 | "pathStart" : {
|
---|
32 | "type" : "string",
|
---|
33 | "format" : "uri"
|
---|
34 | },
|
---|
35 |
|
---|
36 | "mediaType" : {
|
---|
37 | "type" : "string",
|
---|
38 | "format" : "media-type"
|
---|
39 | }
|
---|
40 | },
|
---|
41 |
|
---|
42 | "links" : [
|
---|
43 | {
|
---|
44 | "href" : "{id}",
|
---|
45 | "rel" : "self"
|
---|
46 | },
|
---|
47 |
|
---|
48 | {
|
---|
49 | "href" : "{$ref}",
|
---|
50 | "rel" : "full"
|
---|
51 | },
|
---|
52 |
|
---|
53 | {
|
---|
54 | "href" : "{$schema}",
|
---|
55 | "rel" : "describedby"
|
---|
56 | }
|
---|
57 | ],
|
---|
58 |
|
---|
59 | "fragmentResolution" : "slash-delimited"
|
---|
60 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.