-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yml
More file actions
243 lines (236 loc) · 5.43 KB
/
openapi.yml
File metadata and controls
243 lines (236 loc) · 5.43 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
openapi: 3.0.3
info:
title: OnlineVagtplan REST API
description: Yep!
version: "0.42"
servers:
- url: https://onlinevagtplan.localcinema.org/api/v1
paths:
/users:
get:
tags:
- users
summary: List users
responses:
"200":
description: OK
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/User"
/users/{name}:
get:
tags:
- users
summary: Get user info
description: "Not very useful because users don't have much data..."
parameters:
- name: name
in: path
description: Name of user
required: true
schema:
type: string
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/User"
"404":
description: User does not exist
/shifts:
get:
tags:
- shifts
summary: Get list of shifts
description: "Retrieves shifts by showing `id`'s."
responses:
"200":
description: OK
content:
application/json:
schema:
type: object
example:
20:
"billy42": "cleaner"
"jimmy7": "technician"
21:
"billy42": "cleaner"
"jimmy7": "technician"
additionalProperties:
$ref: "#/components/schemas/Shift"
/shifts/{name}:
get:
tags:
- shifts
summary: Get shifts by user
parameters:
- name: name
in: path
description: The name of the user
required: true
schema:
type: string
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/Shift"
/shifts/{name}/{id}:
put:
tags:
- shifts
summary: Create or modify shift
parameters:
- name: name
in: path
description: Name of user
required: true
schema:
type: string
- name: id
in: path
description: "Showing `id`"
required: true
schema:
type: string
- name: job
in: query
description: Shift job
required: true
schema:
$ref: "#/components/schemas/Job"
responses:
"200":
description: OK
delete:
tags:
- shifts
summary: Cancel shift
parameters:
- name: name
in: path
description: Name of user
required: true
schema:
type: string
- name: id
in: path
description: "Showing `id`"
required: true
schema:
type: string
responses:
"200":
description: OK
"404":
description: Shift did not exist to begin with
/showings:
get:
tags:
- showings
summary: List showings
description: "Retrieve showings by showing `id`."
responses:
"200":
description: OK
content:
application/json:
schema:
type: object
additionalProperties:
$ref: "#/components/schemas/Showing"
example:
20:
date: 10/10/2024
movies:
- title: Kill Bill
duration: 5194
- title: Pulp Fiction
duration: 5432
/showings/{id}:
get:
tags:
- showings
summary: Get showing information
parameters:
- name: id
in: path
description: "`id` of the show"
required: true
schema:
type: string
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/Showing"
"404":
description: Showing does not exist
components:
schemas:
Job:
type: string
enum:
- cleaner
- handyperson
- technician
- salesperson
User:
required:
- name
type: object
properties:
name:
type: string
example: billy42
Shift:
required:
- name
type: object
additionalProperties:
$ref: "#/components/schemas/Job"
example:
20: "cleaner"
21: "technician"
Showing:
type: object
required:
- date
- movies
properties:
date:
type: string
format: date
example: "11/09/2025"
movies:
type: array
minItems: 6
maxItems: 6
items:
type: array
items:
type: object
properties:
title:
type: string
example: Kill Bill
duration:
type: integer
example: 5194
securitySchemes:
api_key:
type: apiKey
name: api_key
in: query
security:
- api_key: []