-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathswagger.yml
More file actions
284 lines (280 loc) · 7.64 KB
/
swagger.yml
File metadata and controls
284 lines (280 loc) · 7.64 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
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
openapi: 3.0.3
info:
title: Mtx Key-Store DB
description: A persistent key value store with usage analytics
version: 1.0.0
servers:
- url: 'http://localhost:8080'
paths:
/kvstore/savekv:
post:
summary: Store a key/value pair
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
key:
type: string
value:
type: string
required:
- key
- value
parameters:
- name: Authorization
in: header
required: true
responses:
'200':
description: Successfully saved new key/value pair
content:
application/json:
schema:
$ref: '#/components/schemas/ApiResponse'
'201':
description: Successfully saved new value under existing key
content:
application/json:
schema:
$ref: '#/components/schemas/ApiResponse'
'400':
description: Invalid request
'422':
description: Field exceeds max length
'401':
description: Missing authentication header
'403':
description: Invalid authentication header
/kvstore/getkv:
get:
summary: Get a value given a key
parameters:
- name: key
in: query
required: true
schema:
type: string
- name: Authorization
in: header
required: true
responses:
'200':
description: Value found
content:
application/json:
schema:
$ref: '#/components/schemas/ApiResponse'
'400':
description: Missing key parameter
'404':
description: No value found under given key
'401':
description: Missing authentication header
'403':
description: Invalid authentication header
/kvstore/deletekv:
delete:
summary: Delete a value given a key
parameters:
- name: key
in: query
required: true
schema:
type: string
- name: Authorization
in: header
required: true
responses:
'200':
description: Value deleted. Old value returned, or null if none existed
content:
application/json:
schema:
$ref: '#/components/schemas/ApiResponse'
'400':
description: Missing key parameter
'401':
description: Missing authentication header
'403':
description: Invalid authentication header
/urlshortner/saveurl:
post:
summary: Store a url/name pair
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
url:
type: string
name:
type: string
required:
- url
parameters:
- name: Authorization
in: header
required: true
responses:
'201':
description: Successfully saved new url/name pair
content:
application/json:
schema:
$ref: '#/components/schemas/ApiResponse'
'400':
description: Invalid request
'422':
description: Field invalid or exceeds max length
'426':
description: Url Shortener disabled in app config
'401':
description: Missing authentication header
'403':
description: Invalid authentication header
'503':
description: Cooldown is still active and prevented the action
/urlshortener/geturl:
get:
summary: Get a url given a name
parameters:
- name: name
in: query
required: true
schema:
type: string
- name: Authorization
in: header
required: true
responses:
'200':
description: Url found
content:
application/json:
schema:
$ref: '#/components/schemas/ApiResponse'
'400':
description: Missing name parameter
'404':
description: No url found with given name
'422':
description: Param exceeds max length
'426':
description: Url Shortener disabled in app config
'401':
description: Missing authentication header
'403':
description: Invalid authentication header
/urlshortener/gotourl:
get:
summary: Redirect to a url given a name
parameters:
- name: name
in: query
required: true
schema:
type: string
- name: Authorization
in: header
required: true
responses:
'303':
description: Url found
'400':
description: Missing name parameter
'404':
description: No url found with given name
'426':
description: Url Shortener disabled in app config
'401':
description: Missing authentication header
'403':
description: Invalid authentication header
/urlshortener/getallurls:
get:
summary: Get all saved urls
parameters:
- name: batchSize
in: query
description: number of results to return
schema:
type: integer
- name: offset
in: query
description: index to start returning results from
schema:
type: integer
- name: Authorization
in: header
required: true
responses:
'200':
description: Urls loaded and returned
content:
application/json:
schema:
$ref: '#/components/schemas/ApiResponse'
'400':
description: Missing a parameter
'404':
description: No url found with given name
'422':
description: Invalid parameter
'426':
description: Url Shortener disabled in app config
'401':
description: Missing authentication header
'403':
description: Invalid authentication header
/stats:
get:
summary: Get information about the app and api usages
parameters:
- name: Authorization
in: header
required: true
responses:
'200':
description: All available app data
content:
application/json:
schema:
$ref: '#/components/schemas/ApiResponse'
'401':
description: Missing authentication header
'403':
description: Invalid authentication header
'501':
description: Stats disabled in app config
components:
schemas:
ApiResponse:
type: object
properties:
requestUri:
type: string
description: URI sent to the server that led you here
message:
type: string
description: Message from the server in response
status:
type: integer
format: int32
description: HTTP status code
timestamp:
type: string
format: date-time
description: Timestamp of when this response was generated
body:
type: object
description: Response content
required:
- requestUri
- message
- status
- timestamp