-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopenapi.yaml
310 lines (310 loc) · 7.49 KB
/
openapi.yaml
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
openapi: 3.0.1
info:
title: Greeter Microservice
description: Microservice for greeting people
contact:
name: Marc Kohaupt
url: http://debuglevel.de
license:
name: Unlicense
url: https://unlicense.org/
version: "0.1"
paths:
/greetings:
get:
tags:
- greetings
summary: Gets some greetings.
description: Gets some greetings.
operationId: getAllGreetings
responses:
"200":
description: Some greetings
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Greeting'
post:
tags:
- greetings
summary: Get a greeting for a person.
description: "Get a greeting for a person. If given, the greeting is localized\
\ in a language."
operationId: postOneGreeting
requestBody:
content:
application/json:
schema:
required:
- greetingRequest
type: object
properties:
greetingRequest:
$ref: '#/components/schemas/GreetingRequest'
required: true
responses:
"200":
description: A greeting for a person in a given language
content:
application/json:
schema:
$ref: '#/components/schemas/Greeting'
/greetings/{name}:
get:
tags:
- greetings
summary: Get a greeting for a person.
description: "Get a greeting for a person. If given, the greeting is localized\
\ in a language."
operationId: getOneGreeting
parameters:
- name: name
in: path
description: Name of the person to greet
required: true
schema:
type: string
- name: language
in: query
description: The language to greet the person in
schema:
type: string
nullable: true
responses:
"200":
description: A greeting for a person in a given language
content:
application/json:
schema:
$ref: '#/components/schemas/Greeting'
/persons:
get:
tags:
- persons
summary: Get all persons
description: Get all persons
operationId: getAllPersons
responses:
"200":
description: All persons
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/GetPersonResponse'
post:
tags:
- persons
summary: Create a person.
description: Create a person.
operationId: postOnePerson
requestBody:
content:
application/json:
schema:
required:
- addPersonRequest
type: object
properties:
addPersonRequest:
$ref: '#/components/schemas/AddPersonRequest'
required: true
responses:
"200":
description: A person with their ID
content:
application/json:
schema:
$ref: '#/components/schemas/AddPersonResponse'
delete:
tags:
- persons
summary: Delete all person.
description: Delete all person.
operationId: deleteAllPersons
responses:
"200":
description: deleteAllPersons 200 response
content:
application/json:
schema:
$ref: '#/components/schemas/Unit'
/persons/VIPs:
get:
tags:
- persons
summary: Get all VIPs
description: Get all VIPs
operationId: getVIPs
responses:
"200":
description: All VIPs
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/GetPersonResponse'
/persons/endlessRandom:
get:
tags:
- persons
summary: Download a never ending file of random names
description: Download a never ending file of random names
operationId: downloadRandomEndless
responses:
"200":
description: downloadRandomEndless 200 response
content:
application/json:
schema:
type: string
format: binary
/persons/{id}:
get:
tags:
- persons
summary: Get a person
description: Get a person
operationId: getOnePerson
parameters:
- name: id
in: path
description: ID of the person
required: true
schema:
type: string
format: uuid
responses:
"200":
description: A person
content:
application/json:
schema:
$ref: '#/components/schemas/GetPersonResponse'
put:
tags:
- persons
summary: Update a person.
description: Update a person.
operationId: putOnePerson
parameters:
- name: id
in: path
description: ID of the person
required: true
schema:
type: string
format: uuid
requestBody:
content:
application/json:
schema:
required:
- updatePersonRequest
type: object
properties:
updatePersonRequest:
$ref: '#/components/schemas/UpdatePersonRequest'
required: true
responses:
"200":
description: The updated person
content:
application/json:
schema:
$ref: '#/components/schemas/UpdatePersonResponse'
delete:
tags:
- persons
summary: Delete a person.
description: Delete a person.
operationId: deleteOnePerson
parameters:
- name: id
in: path
description: ID of the person
required: true
schema:
type: string
format: uuid
responses:
"200":
description: deleteOnePerson 200 response
content:
application/json:
schema:
$ref: '#/components/schemas/Unit'
components:
schemas:
AddPersonRequest:
required:
- name
type: object
properties:
name:
type: string
AddPersonResponse:
required:
- id
- name
type: object
properties:
id:
type: string
format: uuid
name:
type: string
GetPersonResponse:
required:
- id
- name
type: object
properties:
id:
type: string
format: uuid
name:
type: string
Greeting:
required:
- greeting
type: object
properties:
greeting:
type: string
description: Greeting for the given person
description: A greeting
GreetingRequest:
required:
- name
type: object
properties:
name:
type: string
language:
type: string
nullable: true
Unit:
type: object
UpdatePersonRequest:
required:
- name
type: object
properties:
name:
type: string
UpdatePersonResponse:
required:
- id
- name
type: object
properties:
id:
type: string
format: uuid
name:
type: string