-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemployeeApi-1.0.yaml
127 lines (121 loc) · 2.82 KB
/
employeeApi-1.0.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
openapi: 3.0.0
info:
description: Sonat employee api
version: "1.0.0"
title: Sonat employee
tags:
- name: Employee
paths:
/employees:
get:
tags:
- Employee
summary: Returns all employees
operationId: getEmployees
responses:
200:
description: successful
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Employee'
post:
tags:
- Employee
summary: Add a new employee
operationId: addEmployee
responses:
201:
description: Created
400:
description: Bad request
requestBody:
$ref: '#/components/requestBodies/Employee'
put:
tags:
- Employee
summary: Update an existing employee
operationId: updateEmployee
responses:
204:
description: No content
400:
description: Bad request
404:
description: Employee not found
requestBody:
$ref: '#/components/requestBodies/Employee'
'/employees/{employeeId}':
get:
tags:
- Employee
summary: Find employee by ID
description: Returns a single employee
operationId: getEmployeeById
parameters:
- name: employeeId
in: path
description: ID of employee to return
required: true
schema:
type: integer
format: int64
responses:
200:
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/Employee'
400:
description: Invalid ID supplied
404:
description: Employee not found
delete:
tags:
- Employee
summary: Delete an employee
operationId: deleteEmployee
parameters:
- name: employeeId
in: path
description: Employee id to delete
required: true
schema:
type: integer
format: int64
responses:
204:
description: No content
400:
description: Invalid ID supplied
404:
description: Employee not found
components:
schemas:
Employee:
type: object
required:
- id
- firstName
- lastName
properties:
id:
type: integer
format: int64
firstName:
type: string
example: Espen
lastName:
type: string
example: Kvalheim
requestBodies:
Employee:
content:
application/json:
schema:
$ref: '#/components/schemas/Employee'
description: Employee object
required: true