|
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 |
| - "allOf": [ |
6 |
| - {"$ref": "http://json-schema.org/draft-04/schema#"} |
7 |
| - ], |
8 |
| - "properties": { |
9 |
| - "additionalItems": { |
10 |
| - "anyOf": [ |
11 |
| - {"type": "boolean"}, |
12 |
| - {"$ref": "#"} |
13 |
| - ] |
14 |
| - }, |
15 |
| - "additionalProperties": { |
16 |
| - "anyOf": [ |
17 |
| - {"type": "boolean"}, |
18 |
| - {"$ref": "#"} |
19 |
| - ] |
20 |
| - }, |
21 |
| - "dependencies": { |
22 |
| - "additionalProperties": { |
23 |
| - "anyOf": [ |
24 |
| - {"$ref": "#"}, |
25 |
| - {"type": "array"} |
26 |
| - ] |
27 |
| - } |
28 |
| - }, |
29 |
| - "items": { |
30 |
| - "anyOf": [ |
31 |
| - {"$ref": "#"}, |
32 |
| - {"$ref": "#/definitions/schemaArray"} |
33 |
| - ] |
34 |
| - }, |
35 |
| - "definitions": { |
36 |
| - "additionalProperties": {"$ref": "#"} |
37 |
| - }, |
38 |
| - "patternProperties": { |
39 |
| - "additionalProperties": {"$ref": "#"} |
40 |
| - }, |
41 |
| - "properties": { |
42 |
| - "additionalProperties": {"$ref": "#"} |
43 |
| - }, |
44 |
| - "allOf": {"$ref": "#/definitions/schemaArray"}, |
45 |
| - "anyOf": {"$ref": "#/definitions/schemaArray"}, |
46 |
| - "oneOf": {"$ref": "#/definitions/schemaArray"}, |
47 |
| - "not": { "$ref": "#" }, |
48 |
| - |
49 |
| - "base": { |
50 |
| - "description": "URI Template resolved as for the 'href' keyword in the Link Description Object. The resulting URI Reference is resolved against the current URI base and sets the new URI base for URI references within the instance.", |
51 |
| - "type": "string" |
52 |
| - }, |
53 |
| - "links": { |
54 |
| - "type": "array", |
55 |
| - "items": {"$ref": "#/definitions/linkDescription"} |
56 |
| - }, |
57 |
| - "media": { |
58 |
| - "type": "object", |
59 |
| - "properties": { |
60 |
| - "type": { |
61 |
| - "description": "A media type, as described in RFC 2046", |
62 |
| - "type": "string" |
63 |
| - }, |
64 |
| - "binaryEncoding": { |
65 |
| - "description": "A content encoding scheme, as described in RFC 2045", |
66 |
| - "type": "string" |
67 |
| - } |
68 |
| - } |
69 |
| - } |
70 |
| - }, |
71 | 5 | "definitions": {
|
72 | 6 | "schemaArray": {
|
73 | 7 | "type": "array",
|
|
92 | 26 | },
|
93 | 27 | "targetSchema": {
|
94 | 28 | "description": "JSON Schema describing the link target",
|
95 |
| - "$ref": "#" |
| 29 | + "allOf": [{"$ref": "#"}] |
96 | 30 | },
|
97 | 31 | "mediaType": {
|
98 | 32 | "description": "media type (as defined by RFC 2046) describing the link target",
|
|
109 | 43 | },
|
110 | 44 | "schema": {
|
111 | 45 | "description": "Schema describing the data to submit along with the request",
|
112 |
| - "$ref": "#" |
| 46 | + "allOf": [{"$ref": "#"}] |
| 47 | + } |
| 48 | + } |
| 49 | + }, |
| 50 | + "hyperSchema": { |
| 51 | + "type": "object", |
| 52 | + "properties": { |
| 53 | + "additionalItems": { "$ref": "#" }, |
| 54 | + "additionalProperties": { "$ref": "#" }, |
| 55 | + "dependencies": { |
| 56 | + "additionalProperties": { |
| 57 | + "anyOf": [ |
| 58 | + {"$ref": "#"}, |
| 59 | + {"type": "array"} |
| 60 | + ] |
| 61 | + } |
| 62 | + }, |
| 63 | + "items": { |
| 64 | + "anyOf": [ |
| 65 | + {"$ref": "#"}, |
| 66 | + {"$ref": "#/definitions/schemaArray"} |
| 67 | + ] |
| 68 | + }, |
| 69 | + "definitions": { |
| 70 | + "additionalProperties": {"$ref": "#"} |
| 71 | + }, |
| 72 | + "patternProperties": { |
| 73 | + "additionalProperties": {"$ref": "#"} |
| 74 | + }, |
| 75 | + "properties": { |
| 76 | + "additionalProperties": {"$ref": "#"} |
| 77 | + }, |
| 78 | + "allOf": {"$ref": "#/definitions/schemaArray"}, |
| 79 | + "anyOf": {"$ref": "#/definitions/schemaArray"}, |
| 80 | + "oneOf": {"$ref": "#/definitions/schemaArray"}, |
| 81 | + "not": { "$ref": "#" }, |
| 82 | + |
| 83 | + "base": { |
| 84 | + "description": "URI Template resolved as for the 'href' keyword in the Link Description Object. The resulting URI Reference is resolved against the current URI base and sets the new URI base for URI references within the instance.", |
| 85 | + "type": "string" |
| 86 | + }, |
| 87 | + "links": { |
| 88 | + "type": "array", |
| 89 | + "items": {"$ref": "#/definitions/linkDescription"} |
| 90 | + }, |
| 91 | + "media": { |
| 92 | + "type": "object", |
| 93 | + "properties": { |
| 94 | + "type": { |
| 95 | + "description": "A media type, as described in RFC 2046", |
| 96 | + "type": "string" |
| 97 | + }, |
| 98 | + "binaryEncoding": { |
| 99 | + "description": "A content encoding scheme, as described in RFC 2045", |
| 100 | + "type": "string" |
| 101 | + } |
| 102 | + } |
113 | 103 | }
|
114 | 104 | }
|
115 | 105 | }
|
|
124 | 114 | "href": "{+($ref)}"
|
125 | 115 | }
|
126 | 116 | ]
|
| 117 | + "anyOf": [ |
| 118 | + {"allOf": [ |
| 119 | + {"$ref": "#/definitions/hyperSchema"}, |
| 120 | + {"$ref": "http://json-schema.org/draft/schema#/definitions/schemaObject"} |
| 121 | + ]}, |
| 122 | + {"type": "boolean"}, |
| 123 | + {"$ref": "http://json-schema.org/draft/schema#/definitions/jsonReference"} |
| 124 | + ], |
| 125 | + "default": true |
127 | 126 | }
|
0 commit comments