File tree Expand file tree Collapse file tree 1 file changed +34
-34
lines changed Expand file tree Collapse file tree 1 file changed +34
-34
lines changed Original file line number Diff line number Diff line change 2
2
"$schema" : " http://json-schema.org/draft/hyper-schema" ,
3
3
"id" : " http://json-schema.org/draft/hyper-schema" ,
4
4
"title" : " JSON Hyper-Schema" ,
5
+ "definitions" : {
6
+ "schemaArray" : {
7
+ "type" : " array" ,
8
+ "items" : { "$ref" : " #" }
9
+ },
10
+ "linkDescription" : {
11
+ "title" : " Link Description Object" ,
12
+ "type" : " object" ,
13
+ "required" : [ " href" ],
14
+ "properties" : {
15
+ "href" : {
16
+ "type" : " string"
17
+ },
18
+ "rel" : {
19
+ "type" : " string"
20
+ },
21
+ "title" : {
22
+ "type" : " string"
23
+ },
24
+ "targetSchema" : { "$ref" : " #" },
25
+ "mediaType" : {
26
+ "type" : " string"
27
+ },
28
+ "method" : {
29
+ "type" : " string"
30
+ },
31
+ "encType" : {
32
+ "type" : " string" ,
33
+ "default" : " application/json"
34
+ },
35
+ "schema" : { "$ref" : " #" }
36
+ }
37
+ }
38
+ },
5
39
"allOf" : [
6
40
{
7
41
"$ref" : " http://json-schema.org/draft/schema"
67
101
}
68
102
}
69
103
},
70
- "definitions" : {
71
- "schemaArray" : {
72
- "type" : " array" ,
73
- "items" : { "$ref" : " #" }
74
- },
75
- "linkDescription" : {
76
- "title" : " Link Description Object" ,
77
- "type" : " object" ,
78
- "required" : [ " href" ],
79
- "properties" : {
80
- "href" : {
81
- "type" : " string"
82
- },
83
- "rel" : {
84
- "type" : " string"
85
- },
86
- "title" : {
87
- "type" : " string"
88
- },
89
- "targetSchema" : { "$ref" : " #" },
90
- "mediaType" : {
91
- "type" : " string"
92
- },
93
- "method" : {
94
- "type" : " string"
95
- },
96
- "encType" : {
97
- "type" : " string" ,
98
- "default" : " application/json"
99
- },
100
- "schema" : { "$ref" : " #" }
101
- }
102
- }
103
- },
104
104
"links" : [
105
105
{
106
106
"rel" : " self" ,
You can’t perform that action at this time.
0 commit comments