-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinput.json
60 lines (60 loc) · 2.28 KB
/
input.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "http://example.com/example.json",
"type": "object",
"description": "The root schema comprises the entire JSON document.",
"required": [
"kind",
"request"
],
"properties": {
"kind": {
"$id": "#/properties/kind",
"type": "string",
"description": "An explanation about the purpose of this instance."
},
"request": {
"$id": "#/properties/request",
"type": "object",
"description": "An explanation about the purpose of this instance.",
"required": [
"kind",
"object"
],
"properties": {
"kind": {
"$id": "#/properties/request/properties/kind",
"type": "object",
"description": "An explanation about the purpose of this instance.",
"required": [
"kind",
"version"
],
"properties": {
"kind": {
"$id": "#/properties/request/properties/kind/properties/kind",
"type": "string",
"description": "An explanation about the purpose of this instance."
},
"version": {
"$id": "#/properties/request/properties/kind/properties/version",
"type": "string",
"description": "An explanation about the purpose of this instance."
}
},
"additionalProperties": false
},
"object": {
"$id": "#/properties/request/properties/object",
"type": "object",
"description": "An explanation about the purpose of this instance.",
"properties": {
},
"additionalProperties": false
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}