-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathswagger.yaml
More file actions
585 lines (585 loc) · 14.7 KB
/
Copy pathswagger.yaml
File metadata and controls
585 lines (585 loc) · 14.7 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
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
basePath: /
definitions:
main.activateUserRequest:
properties:
token:
example: ABCDEFGHIJKLMNOPQRSTUVWX12
type: string
type: object
main.authErrorResponse:
properties:
error:
example: invalid or missing authenticatGion token
type: string
type: object
main.authenticationTokenResponse:
properties:
authentication_token:
$ref: "#/definitions/main.tokenSchema"
type: object
main.conflictErrorResponse:
properties:
error:
example: unable to update the record due to an edit conflict, please try again
type: string
type: object
main.createAuthenticationTokenRequest:
properties:
email:
example: vin@example.com
type: string
password:
example: supersecret123
type: string
type: object
main.createMovieRequest:
properties:
genres:
example:
- fantasy
- adventure
items:
type: string
type: array
runtime:
example: 126 mins
type: string
title:
example: The Final Empire
type: string
year:
example: 2006
type: integer
type: object
main.errorResponse:
properties:
error:
example: the requested resource could not be found
type: string
type: object
main.healthcheckResponse:
properties:
status:
example: available
type: string
system_info:
$ref: "#/definitions/main.healthcheckSystemInfo"
type: object
main.healthcheckSystemInfo:
properties:
environment:
example: development
type: string
version:
example: 1.0.0
type: string
type: object
main.messageResponse:
properties:
message:
example: movie successfully deleted
type: string
type: object
main.metadataSchema:
properties:
current_page:
example: 1
type: integer
first_page:
example: 1
type: integer
last_page:
example: 3
type: integer
page_size:
example: 20
type: integer
total_records:
example: 45
type: integer
type: object
main.movieResponse:
properties:
movie:
$ref: "#/definitions/main.movieSchema"
type: object
main.movieSchema:
properties:
genres:
example:
- fantasy
- adventure
items:
type: string
type: array
id:
example: 1
type: integer
runtime:
example: 126 mins
type: string
title:
example: The Final Empire
type: string
version:
example: 1
type: integer
year:
example: 2006
type: integer
type: object
main.moviesResponse:
properties:
metadata:
$ref: "#/definitions/main.metadataSchema"
movies:
items:
$ref: "#/definitions/main.movieSchema"
type: array
type: object
main.registerUserRequest:
properties:
email:
example: vin@example.com
type: string
name:
example: Vin
type: string
password:
example: supersecret123
type: string
type: object
main.tokenSchema:
properties:
expiry:
example: "2026-06-20T15:04:05Z"
type: string
token:
example: ABCDEFGHIJKLMNOPQRSTUVWX12
type: string
type: object
main.updateMovieRequest:
properties:
genres:
example:
- fantasy
- epic
items:
type: string
type: array
runtime:
example: 130 mins
type: string
title:
example: The Well of Ascension
type: string
year:
example: 2007
type: integer
type: object
main.userResponse:
properties:
user:
$ref: "#/definitions/main.userSchema"
type: object
main.userSchema:
properties:
activated:
example: false
type: boolean
created_at:
example: "2026-06-17T12:00:00Z"
type: string
email:
example: vin@example.com
type: string
id:
example: 1
type: integer
name:
example: Vin
type: string
type: object
main.validationErrorResponse:
properties:
error:
additionalProperties:
type: string
type: object
type: object
info:
contact: {}
description: REST API for managing movies, users, activation, and authentication.
title: Scadrial API
version: "1.0"
paths:
/v1/healthcheck:
get:
description: Returns API health and build information.
produces:
- application/json
responses:
"200":
description: OK
schema:
$ref: "#/definitions/main.healthcheckResponse"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/main.errorResponse"
summary: Healthcheck
tags:
- healthcheck
/v1/movies:
get:
description:
Returns a paginated list of movies with optional search and sorting
filters.
parameters:
- description: Movie title full-text search
in: query
name: title
type: string
- description: Comma-separated genres
in: query
name: genres
type: string
- default: 1
description: Page number
in: query
name: page
type: integer
- default: 20
description: Items per page
in: query
name: page_size
type: integer
- default: id
description: "Sort field: id, title, year, runtime, -id, -title, -year, -runtime"
in: query
name: sort
type: string
produces:
- application/json
responses:
"200":
description: OK
schema:
$ref: "#/definitions/main.moviesResponse"
"401":
description: Unauthorized
schema:
$ref: "#/definitions/main.authErrorResponse"
"403":
description: Forbidden
schema:
$ref: "#/definitions/main.errorResponse"
"422":
description: Unprocessable Entity
schema:
$ref: "#/definitions/main.validationErrorResponse"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/main.errorResponse"
security:
- BearerAuth: []
summary: List movies
tags:
- movies
post:
consumes:
- application/json
description: Creates a new movie record.
parameters:
- description: Movie payload
in: body
name: input
required: true
schema:
$ref: "#/definitions/main.createMovieRequest"
produces:
- application/json
responses:
"201":
description: Created
schema:
$ref: "#/definitions/main.movieResponse"
"400":
description: Bad Request
schema:
$ref: "#/definitions/main.errorResponse"
"401":
description: Unauthorized
schema:
$ref: "#/definitions/main.authErrorResponse"
"403":
description: Forbidden
schema:
$ref: "#/definitions/main.errorResponse"
"422":
description: Unprocessable Entity
schema:
$ref: "#/definitions/main.validationErrorResponse"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/main.errorResponse"
security:
- BearerAuth: []
summary: Create movie
tags:
- movies
/v1/movies/{id}:
delete:
description: Deletes a movie by ID.
parameters:
- description: Movie ID
in: path
name: id
required: true
type: integer
produces:
- application/json
responses:
"200":
description: OK
schema:
$ref: "#/definitions/main.messageResponse"
"401":
description: Unauthorized
schema:
$ref: "#/definitions/main.authErrorResponse"
"403":
description: Forbidden
schema:
$ref: "#/definitions/main.errorResponse"
"404":
description: Not Found
schema:
$ref: "#/definitions/main.errorResponse"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/main.errorResponse"
security:
- BearerAuth: []
summary: Delete movie
tags:
- movies
get:
description: Fetches a single movie by ID.
parameters:
- description: Movie ID
in: path
name: id
required: true
type: integer
produces:
- application/json
responses:
"200":
description: OK
schema:
$ref: "#/definitions/main.movieResponse"
"401":
description: Unauthorized
schema:
$ref: "#/definitions/main.authErrorResponse"
"403":
description: Forbidden
schema:
$ref: "#/definitions/main.errorResponse"
"404":
description: Not Found
schema:
$ref: "#/definitions/main.errorResponse"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/main.errorResponse"
security:
- BearerAuth: []
summary: Get movie
tags:
- movies
patch:
consumes:
- application/json
description: Partially updates a movie by ID.
parameters:
- description: Movie ID
in: path
name: id
required: true
type: integer
- description: Expected current movie version for optimistic locking
in: header
name: X-Expected-Version
type: string
- description: Movie fields to update
in: body
name: input
required: true
schema:
$ref: "#/definitions/main.updateMovieRequest"
produces:
- application/json
responses:
"200":
description: OK
schema:
$ref: "#/definitions/main.movieResponse"
"400":
description: Bad Request
schema:
$ref: "#/definitions/main.errorResponse"
"401":
description: Unauthorized
schema:
$ref: "#/definitions/main.authErrorResponse"
"403":
description: Forbidden
schema:
$ref: "#/definitions/main.errorResponse"
"404":
description: Not Found
schema:
$ref: "#/definitions/main.errorResponse"
"409":
description: Conflict
schema:
$ref: "#/definitions/main.conflictErrorResponse"
"422":
description: Unprocessable Entity
schema:
$ref: "#/definitions/main.validationErrorResponse"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/main.errorResponse"
security:
- BearerAuth: []
summary: Update movie
tags:
- movies
/v1/tokens/authentication:
post:
consumes:
- application/json
description: Authenticates a user and returns a bearer token.
parameters:
- description: Login credentials
in: body
name: input
required: true
schema:
$ref: "#/definitions/main.createAuthenticationTokenRequest"
produces:
- application/json
responses:
"201":
description: Created
schema:
$ref: "#/definitions/main.authenticationTokenResponse"
"400":
description: Bad Request
schema:
$ref: "#/definitions/main.errorResponse"
"401":
description: Unauthorized
schema:
$ref: "#/definitions/main.errorResponse"
"422":
description: Unprocessable Entity
schema:
$ref: "#/definitions/main.validationErrorResponse"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/main.errorResponse"
summary: Create authentication token
tags:
- authentication
/v1/users:
post:
consumes:
- application/json
description: Creates a new user account and sends an activation email.
parameters:
- description: Registration payload
in: body
name: input
required: true
schema:
$ref: "#/definitions/main.registerUserRequest"
produces:
- application/json
responses:
"201":
description: Created
schema:
$ref: "#/definitions/main.userResponse"
"400":
description: Bad Request
schema:
$ref: "#/definitions/main.errorResponse"
"422":
description: Unprocessable Entity
schema:
$ref: "#/definitions/main.validationErrorResponse"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/main.errorResponse"
summary: Register user
tags:
- users
/v1/users/activated:
put:
consumes:
- application/json
description: Activates a user account using an activation token.
parameters:
- description: Activation token
in: body
name: input
required: true
schema:
$ref: "#/definitions/main.activateUserRequest"
produces:
- application/json
responses:
"200":
description: OK
schema:
$ref: "#/definitions/main.userResponse"
"400":
description: Bad Request
schema:
$ref: "#/definitions/main.errorResponse"
"409":
description: Conflict
schema:
$ref: "#/definitions/main.conflictErrorResponse"
"422":
description: Unprocessable Entity
schema:
$ref: "#/definitions/main.validationErrorResponse"
"500":
description: Internal Server Error
schema:
$ref: "#/definitions/main.errorResponse"
summary: Activate user
tags:
- users
schemes:
- http
- https
securityDefinitions:
BearerAuth:
description: "Enter the bearer token as: Bearer <token>"
in: header
name: Authorization
type: apiKey
swagger: "2.0"