-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapi-docs.json
418 lines (418 loc) · 9.73 KB
/
api-docs.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
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
{
"$schema": "https://spec.openapis.org/oas/3.1/dialect/base",
"openapi": "3.1.0",
"servers": [
{
"description": "Sh0rt.zip API",
"url": "https://sh0rt.zip/"
}
],
"info": {
"description": "This API lets you create short URLs and get information about them.",
"version": "1.5.0",
"title": "Short URL API",
"contact": {
"url": "https://discord.gg/ZqzFUC8qe9"
}
},
"paths": {
"/{url}": {
"get": {
"summary": "Redirect to target",
"description": "Searches for a short URL with the given name and redirects to the target URL. Appended path and query parameters are preserved.",
"parameters": [
{
"in": "path",
"name": "url",
"description": "The short URL name to redirect to",
"required": true,
"schema": {
"type": "string",
"example": "bundbot"
}
}
],
"responses": {
"302": {
"description": "Redirect to target URL"
},
"404": {
"description": "Short URL does not exist",
"content": {
"text/plain": {
"schema": {
"type": "string",
"example": "Unknown short URL"
}
}
}
}
}
}
},
"/api/{url}": {
"get": {
"summary": "Short URL target",
"description": "Returns the target URL of a shortened URL",
"parameters": [
{
"in": "path",
"name": "url",
"description": "The short URL name",
"required": true,
"schema": {
"type": "string",
"example": "bundbot"
}
}
],
"responses": {
"200": {
"description": "The short URL target URL",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"description": "The target URL of the short URL, can also be a data URL if the target is a file",
"type": "string",
"format": "url",
"example": "https://github.com/DEVTomatoCake/Bundbot"
}
}
}
}
}
},
"404": {
"description": "The requested short URL doesn't exist"
}
}
}
},
"/qr/{url}": {
"get": {
"summary": "Short URL target",
"description": "Returns a QR code image of a shortened URL",
"parameters": [
{
"in": "path",
"name": "url",
"description": "The short URL name",
"required": true,
"schema": {
"type": "string",
"example": "bundbot"
}
}
],
"responses": {
"200": {
"description": "The generated QR code",
"content": {
"image/gif": {
"schema": {
"type": "image"
}
}
}
},
"404": {
"description": "Unknown short URL"
}
}
}
},
"/{eslint-plugin}/{rule}": {
"get": {
"summary": "ESLint plugin rule",
"description": "Redirects to the rule documentation of the given ESLint plugin",
"parameters": [
{
"in": "path",
"name": "eslint-plugin",
"description": "The ESLint plugin name",
"required": true,
"schema": {
"type": "string",
"enum": [
"angular",
"ava",
"cypress",
"es",
"eslint",
"stylistic",
"stylisticjs",
"stylisticts",
"eslint-comments",
"eslint-plugin",
"typescript",
"security",
"node",
"jest",
"stylelint",
"react",
"import",
"jasmine",
"mocha",
"svelte",
"redux-saga",
"jsx-a11y",
"lodash",
"testing-library",
"html",
"promise",
"nuxt",
"vue-a11y",
"fp",
"lit",
"jquery",
"sonarjs",
"unicorn",
"ember",
"react-native",
"jsonc",
"flowtype",
"vue",
"wc",
"xss",
"yml"
],
"example": "eslint"
}
},
{
"in": "path",
"name": "rule",
"description": "The rule name",
"required": true,
"schema": {
"type": "string",
"example": "no-dupe-keys"
}
}
],
"responses": {
"302": {
"description": "Redirects to the documentation of the given ESLint plugin, regardless of whether the rule exists there or not."
}
}
}
},
"/": {
"post": {
"summary": "Creates a short URL",
"description": "Creates a short URL to the given target",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"format": "url",
"example": "https://github.com/DEVTomatoCake/Bundbot"
},
"files": {
"description": "The files to upload",
"type": "array",
"items": {
"type": "object",
"required": [
"content"
],
"properties": {
"name": {
"description": "Name of the file (including the extension), randomly generated if not provided",
"type": "string",
"example": "index.js"
},
"content": {
"description": "Base64 encoded file content",
"type": "string",
"example": "data:application/text;base64,<base64 encoded content>"
}
}
}
},
"name": {
"description": "Name of the short URL to use after https://sh0rt.zip/",
"type": "string",
"example": "bundbot",
"default": "<4 random characters>"
},
"date": {
"description": "When to delete the short URL. Must be parseable using JavaScripts `Date()` function.",
"type": "string",
"format": "date-time",
"example": "2024-05-24T14:58:26.710Z",
"default": "<five days from now>"
}
}
}
}
}
},
"responses": {
"201": {
"description": "Short URL was created successfully at the given name.",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"name"
],
"properties": {
"uri": {
"description": "Full URL of the created short URL, if a URL was provided",
"type": "string",
"example": "https://sh0rt.zip/bundbot"
},
"name": {
"description": "Name of the created short URL to use after https://sh0rt.zip/",
"type": "string",
"example": "bundbot"
},
"files": {
"description": "The uploaded files",
"type": "array",
"items": {
"description": "The file path of a file that was uploaded",
"type": "object",
"required": [
"uri",
"name",
"expires"
],
"properties": {
"uri": {
"description": "The full URI to the file",
"type": "string",
"example": "file/bundbot/index.js"
},
"name": {
"description": "The file name of the file",
"type": "string",
"example": "index.js"
},
"expires": {
"description": "When the file will be deleted",
"type": "string",
"format": "date-time",
"example": "2024-05-24T14:58:26.710Z"
}
}
}
}
}
}
}
}
},
"400": {
"description": "Invalid input which prevents the short URL from being created, in this case a missing url.",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"error"
],
"properties": {
"error": {
"type": "string",
"enum": [
"missingurlbody"
]
}
}
}
}
}
},
"409": {
"description": "There is already a short URL with that name.",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"error"
],
"properties": {
"error": {
"type": "string",
"enum": [
"name_alreadyexists"
]
}
}
}
}
}
},
"413": {
"description": "The total file size or the one of a single file in the payload is too large.",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"error",
"limit"
],
"properties": {
"error": {
"type": "string",
"enum": [
"file_too_large",
"files_too_large"
]
},
"limit": {
"description": "The maximum file/total size in bytes, depending on the error.",
"type": "number",
"example": 5242880
}
}
}
}
}
},
"422": {
"description": "Invalid input which prevents the short URL from being created, such as an invalid URL or a redirect loop.",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"error"
],
"properties": {
"error": {
"type": "string",
"enum": [
"name_invalid",
"name_blacklisted",
"url_invalid"
]
}
}
}
}
}
}
}
}
}
}
}