-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
264 lines (254 loc) · 7.05 KB
/
Copy pathopenapi.yaml
File metadata and controls
264 lines (254 loc) · 7.05 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
openapi: 3.0.0
info:
title: Workshifts Service
version: 1.0.0
description: >
Workshift management for a personnel administration application. This microservice handles the scheduling, assignment, and modification of employee work shifts, including last-minute adjustments and cancellations.
servers:
- url: http://localhost:3011/api/v1
description: Local server for development
- url: /api/v1
description: Production server
tags:
- name: Workshifts
description: Endpoints related to workshifts management
paths:
/workshifts:
get:
tags:
- Workshifts
security:
- cookieAuth: []
summary: Get all workshifts
responses:
'200':
description: Retrieve a list of workshifts
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Workshift'
'500':
description: Server error
post:
tags:
- Workshifts
security:
- cookieAuth: []
summary: Create a new workshift
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/WorkshiftInput'
responses:
'201':
description: Workshift created
content:
application/json:
schema:
$ref: '#/components/schemas/Workshift'
'400':
description: Validation error
/workshifts/week:
post:
tags:
- Workshifts
security:
- cookieAuth: []
summary: Create a new workshift for a week
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
doctorId:
type: string
description: "Unique identifier for the doctor"
clinicId:
type: string
description: "Unique identifier for the clinic"
duration:
type: integer
description: "Duration of each work shift in minutes"
example: 480
periodStartDate:
type: string
format: date-time
description: "Start date of the week, must be a Monday"
periodEndDate:
type: string
format: date
description: "End date of the week, must be a Sunday within the same week as weekStartDate"
required:
- doctorId
- clinicId
- duration
- weekStartDate
- weekEndDate
responses:
'201':
description: Workshifts created successfully
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Workshift'
'400':
description: Invalid input or validation error
content:
application/json:
schema:
type: object
properties:
message:
type: string
description: "Error message explaining the issue"
example: "weekStartDate must be a Monday and weekEndDate a Sunday of the same week"
/workshifts/{id}:
get:
tags:
- Workshifts
security:
- cookieAuth: []
summary: Get a workshift by ID
parameters:
- name: id
in: path
required: true
description: Workshift ID
schema:
type: string
responses:
'200':
description: Retrieve a workshift
content:
application/json:
schema:
$ref: '#/components/schemas/Workshift'
'404':
description: Workshift not found
'500':
description: Server error
put:
tags:
- Workshifts
security:
- cookieAuth: []
summary: Update a workshift by ID
parameters:
- name: id
in: path
required: true
description: Workshift ID
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/WorkshiftInput'
responses:
'200':
description: Workshift updated
content:
application/json:
schema:
$ref: '#/components/schemas/Workshift'
'404':
description: Workshift not found
'400':
description: Validation error
delete:
tags:
- Workshifts
security:
- cookieAuth: []
summary: Delete a workshift by ID
parameters:
- name: id
in: path
required: true
description: Workshift ID
schema:
type: string
responses:
'204':
description: Workshift deleted
'404':
description: Workshift not found
'500':
description: Server error
/workshifts/doctor/{doctorId}:
get:
tags:
- Workshifts
security:
- cookieAuth: []
summary: Get workshifts by doctor ID
parameters:
- name: doctorId
in: path
required: true
description: Doctor ID
schema:
type: string
responses:
'200':
description: Lista de workshifts
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Workshift'
'500':
description: Error del servidor
components:
schemas:
Workshift:
type: object
properties:
id:
type: string
example: "850154d5-6617-4128-b76b-88979b1cbc44"
doctorId:
type: string
example: "850154d5-6617-4128-b76b-88979b1cbc46"
clinicId:
type: string
example: "ea12fd3d-4d3c-4ba2-b871-673c29fb69d3"
startDate:
type: string
format: date-time
example: "2024-11-01T09:00:00Z"
duration:
type: integer
example: 120
WorkshiftInput:
type: object
properties:
doctorId:
type: string
example: "850154d5-6617-4128-b76b-88979b1cbc46"
clinicId:
type: string
example: "ea12fd3d-4d3c-4ba2-b871-673c29fb69d3"
startDate:
type: string
format: date-time
example: "2024-11-01T09:00:00Z"
duration:
type: integer
example: 30
securitySchemes:
cookieAuth:
type: apiKey
in: cookie
name: token