-
Notifications
You must be signed in to change notification settings - Fork 2
/
wagesum-openapi.yaml
367 lines (358 loc) · 9.19 KB
/
wagesum-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
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
openapi: 3.0.1
info:
title: Employee wage sum
description: 'Wage sum - demo application with GO language'
contact:
email: lsmhun@github
license:
name: Apache 2.0
url: http://www.apache.org/licenses/LICENSE-2.0.html
version: 0.4.0
#servers:
#- url: https://wagesum.org/v1
tags:
- name: emp
description: Everything about employee
- name: sal
description: Everything about salary
- name: monitoring
description: Monitoring interface
paths:
/api/v1/emp:
put:
tags:
- emp
summary: Update an existing emp
description: Update an existing emp by Id
operationId: updateEmp
requestBody:
description: Update an existent emp in the store
content:
application/json:
schema:
$ref: '#/components/schemas/Emp'
examples:
exampleEmployee:
$ref: '#/components/examples/exampleEmployee'
required: true
responses:
'200':
description: Successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/Emp'
examples:
exampleEmployee:
$ref: '#/components/examples/exampleEmployee'
'400':
description: Invalid ID supplied
'404':
description: emp not found
'405':
description: Validation exception
post:
tags:
- emp
summary: Add a new emp to the store
description: Add a new emp to the store
operationId: addEmp
requestBody:
description: Create a new emp in the store
content:
application/json:
schema:
$ref: '#/components/schemas/Emp'
examples:
exampleEmployee:
$ref: '#/components/examples/exampleEmployee'
required: true
responses:
'200':
description: Successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/Emp'
examples:
exampleEmployee:
$ref: '#/components/examples/exampleEmployee'
'405':
description: Invalid input
/api/v1/emp/findByType:
get:
tags:
- emp
summary: Finds emps by type
description: Multiple status values can be provided with comma separated strings
operationId: findEmpsByType
parameters:
- name: type
in: query
description: Status values that need to be considered for filter
required: false
explode: true
schema:
type: string
default: MANAGER
example: EMPLOYEE
enum:
- MANAGER
- EMPLOYEE
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Emp'
example:
exampleEmployee:
$ref: '#/components/examples/exampleEmployee'
'400':
description: Invalid status value
/api/v1/emp/findByMgrId:
get:
tags:
- emp
summary: Finds emps by mgrId
description: Multiple status values can be provided with comma separated strings
operationId: findEmpsByMgrId
parameters:
- name: mgrId
in: query
description: Manager id
required: true
schema:
type: integer
format: int64
example: 1
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Emp'
example:
exampleEmployee:
$ref: '#/components/examples/exampleEmployee'
'400':
description: Invalid status value
/api/v1/emp/{empId}:
get:
tags:
- emp
summary: Find emp by ID
description: Returns a single emp
operationId: getEmpById
parameters:
- name: empId
in: path
description: ID of emp to return
required: true
schema:
type: integer
format: int64
example: 10
responses:
'200':
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/Emp'
examples:
exampleEmployee:
$ref: '#/components/examples/exampleEmployee'
'400':
description: Invalid ID supplied
'404':
description: emp not found
delete:
tags:
- emp
summary: Deletes an emp
description: delete an emp
operationId: deleteEmp
parameters:
- name: api_key
in: header
description: ''
required: false
schema:
type: string
- name: empId
in: path
description: emp id to delete
required: true
schema:
type: integer
format: int64
example: 10
responses:
'400':
description: Invalid emp value
/api/v1/sal/{empId}:
get:
tags:
- sal
summary: Find sal by ID
description: Returns a single emp
operationId: getSalByEmpId
parameters:
- name: empId
in: path
description: ID of emp
required: true
schema:
type: integer
format: int64
example: 10
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: string
example: "100000"
'400':
description: Invalid ID supplied
'404':
description: sal not found
post:
tags:
- sal
summary: Updates a sal in the store with form data
description: ''
operationId: updateSalWithForm
parameters:
- name: empId
in: path
description: ID of emp that needs to be updated
required: true
schema:
type: integer
format: int64
example: "100000"
- name: value
in: query
description: Name of sal that needs to be updated
schema:
type: string
example: "100000"
responses:
'405':
description: Invalid input
delete:
tags:
- sal
summary: Deletes a sal
description: delete a sal
operationId: deleteSal
parameters:
- name: empId
in: path
description: emp id to delete salary
required: true
schema:
type: integer
format: int64
example: "100000"
responses:
'400':
description: Invalid sal value
/api/v1/sal/wagesum/{empId}:
get:
tags:
- sal
summary: Find sum sal by manager ID
description: Returns a summary of salaries under mgrId
operationId: getWageSumByMgrId
parameters:
- name: empId
in: path
description: ID of manager
required: true
schema:
type: integer
format: int64
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: string
example: "100000"
'400':
description: Invalid ID supplied
'404':
description: sal not found
/api/health:
get:
tags:
- monitoring
summary: Health endpoint
description: Returns a health status
operationId: health
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: object
additionalProperties: true
components:
schemas:
Emp:
type: object
properties:
id:
type: integer
format: int64
empId:
type: integer
format: int64
userName:
type: string
firstName:
type: string
lastName:
type: string
mgrId:
type: integer
format: int64
type:
type: string
description: Employee Type
enum:
- MANAGER
- EMPLOYEE
status:
type: string
description: Employee Status
enum:
- ACTIVE
- INACTIVE
- DELETED
xml:
name: Emp
examples:
exampleEmployee:
summary: example employee - not manager
value:
id: 100
empId: 10
userName: "johndoe"
firstName: "John"
lastName: "Doe"
mgrId: 1
type: "EMPLOYEE"
status: "ACTIVE"