-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.json
More file actions
213 lines (213 loc) · 7.41 KB
/
schema.json
File metadata and controls
213 lines (213 loc) · 7.41 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"$schema": {
"type": "string"
},
"software": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the software."
},
"version": {
"type": "string",
"pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$",
"description": "Semantic version of the software."
},
"user_agent": {
"type": "string",
"description": "User agent used for API calls."
}
},
"required": [
"version"
]
},
"webhooks" : {
"type": "object",
"properties": {
"fallback": {
"type": "string",
"description": "Used if no error-specific webhook is specified."
},
"critical": {
"type": "string",
"description": "Webhook used for critical errors."
},
"error": {
"type": "string",
"description": "Webhook used for errors."
},
"warning": {
"type": "string",
"description": "Webhook used for warnings."
},
"info": {
"type": "string",
"description": "Webhook used for info."
},
"debug": {
"type": "string",
"description": "Webhook used for debugging."
}
}
},
"eddn": {
"type": "object",
"properties": {
"software_name": {
"type": "string",
"description": "Software name when sending data to EDDN."
},
"software_version": {
"type": "string",
"pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$",
"description": "Software version when sending data to EDDN."
},
"user_agent": {
"type": "string",
"description": "User agent to use when sending data to EDDN."
},
"game_version": {
"type": "string",
"description": "Reported Elite Dangerous version when sending data to EDDN."
},
"game_build": {
"type": "string",
"description": "Reported Elite Dangerous build number when sending data to EDDN."
}
},
"required": [
"game_version",
"game_build"
]
},
"capi": {
"type": "object",
"properties": {
"client_id": {
"type": "string",
"description": "Client ID when authenticating with CAPI."
},
"client_name": {
"type": "string",
"description": "Name displayed on Frontier's authentication page."
},
"redirect_url": {
"type": "string",
"description": "Redirect to this URL when CAPI has authenticated."
},
"user_agent": {
"type": "string",
"description": "User agent to use when interacting with CAPI."
},
"retry_refresh": {
"type": "boolean",
"description": "Attempt to refresh tokens after expiry."
},
"use_epic": {
"type": "boolean",
"description": "Allow using Epic games for CAPI authentication."
}
},
"required": [
"client_id",
"redirect_url",
"retry_refresh",
"use_epic"
]
},
"discord": {
"type": "object",
"properties": {
"hauler_role_id": {
"type": "integer",
"description": "Discord role to ping in restock tasks."
},
"depot_role_id": {
"type": "integer",
"description": "Discord role for depot owners."
},
"rescue_role_id": {
"type": "integer",
"description": "Discord role to ping in rescue tasks."
},
"restock_channel_id": {
"type": "integer",
"description": "Forum channel to post restock tasks."
},
"rescue_channel_id": {
"type": "integer",
"description": "Forum channel to post rescue tasks."
},
"alert_channel_id": {
"type": "integer",
"description": "Text channel to send outdated market alerts."
},
"main_guild_id": {
"type": "integer",
"description": "Main guild for restock tasks and standard slash commands."
},
"test_guild_id": {
"type": "integer",
"description": "Test guild for debugging and maintenance slash commands."
}
},
"required": [
"hauler_role_id",
"restock_channel_id",
"main_guild_id",
"test_guild_id"
]
},
"timings": {
"type": "object",
"properties": {
"market_expiry": {
"type": "integer",
"description": "Flag depots with markets older then this many days."
},
"market_warning": {
"type": "integer",
"description": "Send warnings to depots with markets older then this many days."
},
"market_followup": {
"type": "integer",
"description": "Number of hours between consecutive market warnings."
},
"capi_followup": {
"type": "integer",
"description": "Number of hours between consecutive capi warnings."
},
"task_revive": {
"type": "integer",
"description": "Number of days between consecutive restock and rescue revives."
},
"tick": {
"type": "string",
"description": "Daily time to perform certain actions."
}
},
"required": [
"market_expiry",
"market_warning",
"market_followup",
"capi_followup",
"task_revive",
"tick"
]
}
},
"required": [
"$schema",
"software",
"webhooks",
"eddn",
"capi",
"discord",
"timings"
]
}