We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bb18f4 commit 3324952Copy full SHA for 3324952
test/schemas/complex-null.json
@@ -0,0 +1,33 @@
1
+{
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "$id": "http://example.com/build/complex-null.json",
4
+ "version": "1.1.1",
5
+ "title": "JSON API Schema",
6
+ "description": "This is a schema for responses in the JSON API format. For more, see http://jsonapi.org",
7
+ "type": "object",
8
+ "required": [
9
+ "errors"
10
+ ],
11
+ "properties": {
12
+ "errors": {
13
14
15
+ "message": {
16
+ "oneOf": [
17
+ {
18
+ "$ref": "#/definitions/message"
19
+ },
20
21
+ "type": "null"
22
+ }
23
+ ]
24
25
26
27
28
+ "definitions": {
29
30
+ "type": "string"
31
32
33
+}
0 commit comments