-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherror.json
53 lines (53 loc) · 1.32 KB
/
error.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
{
"$schema": "http://json-schema.org/draft-04/schema",
"id": "http://example.com/example.json",
"type": "object",
"title": "The root schema",
"description": "The root schema comprises the entire JSON document.",
"default": {},
"examples": [
{
"code": "2002",
"message": "No video with this ID.",
"example": "https://rt.pornhub.com/webmasters/tags?list=a"
}
],
"required": [
"code",
"message",
"example"
],
"properties": {
"code": {
"id": "#/properties/code",
"type": "string",
"title": "The code schema",
"description": "An explanation about the purpose of this instance.",
"default": "",
"examples": [
"2002"
]
},
"message": {
"id": "#/properties/message",
"type": "string",
"title": "The message schema",
"description": "An explanation about the purpose of this instance.",
"default": "",
"examples": [
"No video with this ID."
]
},
"example": {
"id": "#/properties/example",
"type": "string",
"title": "The example schema",
"description": "An explanation about the purpose of this instance.",
"default": "",
"examples": [
"https://rt.pornhub.com/webmasters/tags?list=a"
]
}
},
"additionalProperties": true
}