-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.yaml
792 lines (783 loc) · 23.7 KB
/
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
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
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
openapi: 3.0.3
info:
title: Basic Book CRUD API Documentation
description: Documentation for Basic Book CRUD API
version: 0.0.1
servers:
- url: https://book-crud-service-6dmqxfovfq-et.a.run.app
description: Remote Server
paths:
/api/books:
get:
summary: Get list of book model added by user
tags:
- "Book"
security:
- UserAuth: [ ]
parameters:
- in: header
name: Accept
schema:
type: string
description: Response Accept type. Must be value of "application/json" for API.
example: "application/json"
description: MIME type for the response format. Must be value of "application/json" for API.
required: true
responses:
200:
description: Return all books owned by authenticated user
content:
application/json:
schema:
$ref: "#/components/schemas/IndexBookResponse200"
401:
description: User is unauthenticated
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
500:
description: Server error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/api/books/add:
post:
summary: "Add new Book model to user's List of Books"
tags:
- "Book"
security:
- UserAuth: [ ]
parameters:
- in: header
name: Accept
schema:
type: string
description: Response Accept type. Must be value of "application/json" for API.
example: "application/json"
description: MIME type for the response format. Must be value of "application/json" for API.
required: true
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/StoreBookRequest"
responses:
200:
description: Add new Book success response
content:
application/json:
schema:
type: object
properties:
message:
type: string
description: Add Book description message
example: Book created
book:
$ref: "#/components/schemas/Book"
401:
description: User is not authenticated
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
422:
description: Request body error
content:
application/json:
schema:
$ref: "#/components/schemas/StoreBookResponse422"
500:
description: Server Error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/api/books/{book_id}/edit:
put:
summary: "Update user's Book model"
tags:
- "Book"
security:
- UserAuth: [ ]
parameters:
- in: header
name: Accept
schema:
type: string
description: Response Accept type. Must be value of "application/json" for API.
example: "application/json"
description: MIME type for the response format. Must be value of "application/json" for API.
required: true
- in: path
name: book_id
schema:
type: number
description: Book model identifier
example: 1
required: true
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/StoreBookRequest"
responses:
200:
description: Update Book success response
content:
application/json:
schema:
type: object
properties:
message:
type: string
description: Update Book description message
example: Book updated
book:
$ref: "#/components/schemas/Book"
401:
description: User is not authenticated
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
403:
description: User doesn't have right to do the request
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
422:
description: Request body error
content:
application/json:
schema:
$ref: "#/components/schemas/StoreBookResponse422"
500:
description: Server Error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/api/books/{book_id}:
get:
summary: Get specific book model by Book ID
tags:
- "Book"
security:
- UserAuth: [ ]
parameters:
- in: header
name: Accept
schema:
type: string
description: Response Accept type. Must be value of "application/json" for API.
example: "application/json"
description: MIME type for the response format. Must be value of "application/json" for API.
required: true
- in: path
name: book_id
schema:
type: string
description: Book ID
required: true
responses:
200:
description: Return specific book model by Book ID
content:
application/json:
schema:
$ref: "#/components/schemas/Book"
401:
description: User is not authenticated
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
403:
description: User doesn't have right to do the request
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
404:
description: Book ID not found
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
500:
description: Server Error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
delete:
summary: Delete specific book model by Book ID
tags:
- "Book"
security:
- UserAuth: [ ]
parameters:
- in: header
name: Accept
schema:
type: string
description: Response Accept type. Must be value of "application/json" for API.
example: "application/json"
description: MIME type for the response format. Must be value of "application/json" for API.
required: true
- in: path
name: book_id
schema:
type: string
description: Book ID
required: true
responses:
200:
description: Delete Book success response
content:
application/json:
schema:
type: object
properties:
message:
type: string
description: Book delete description message
example: Book deleted
book:
$ref: "#/components/schemas/Book"
401:
description: User is not authenticated
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
403:
description: User doesn't have right to do the request
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
404:
description: Book ID not found
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
500:
description: Server Error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/api/register:
post:
summary: Register new user account
tags:
- "User"
parameters:
- in: header
name: Accept
schema:
type: string
description: Response Accept type. Must be value of "application/json" for API.
example: "application/json"
description: MIME type for the response format. Must be value of "application/json" for API.
required: true
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/StoreUserRequest"
responses:
200:
description: Register new user success
content:
application/json:
schema:
type: object
properties:
message:
type: string
description: Register user success message detail.
example: User created
user:
$ref: "#/components/schemas/User"
422:
description: Request body error
content:
application/json:
schema:
$ref: "#/components/schemas/StoreUserResponse422"
500:
description: Server Error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/api/login:
post:
summary: Create session token to authenticated user
tags:
- "User"
parameters:
- in: header
name: Accept
schema:
type: string
description: Response Accept type. Must be value of "application/json" for API.
example: "application/json"
description: MIME type for the response format. Must be value of "application/json" for API.
required: true
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/LoginUserRequest"
responses:
200:
description: Login success
content:
application/json:
schema:
type: object
properties:
message:
type: string
description: User authenticate.
example: User created
token:
type: string
description: User session token
example: "6|v6TLNNdBjdHHLUqtw2aENki82b4cu4V10lz2yLee"
401:
description: Invalid credentials
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
422:
description: Request body error
content:
application/json:
schema:
$ref: "#/components/schemas/LoginUserResponse422"
500:
description: Server Error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/api/user:
get:
summary: Get profile of authenticated User
tags:
- "User"
security:
- UserAuth: [ ]
parameters:
- in: header
name: Accept
schema:
type: string
description: Response Accept type. Must be value of "application/json" for API.
example: "application/json"
description: MIME type for the response format. Must be value of "application/json" for API.
required: true
responses:
200:
description: Get user profile
content:
application/json:
schema:
$ref: "#/components/schemas/User"
401:
description: User is not authenticated
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
500:
description: Server Error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/api/user/logout:
delete:
summary: Delete authenticated user session token
tags:
- "User"
security:
- UserAuth: [ ]
parameters:
- in: header
name: Accept
schema:
type: string
description: Response Accept type. Must be value of "application/json" for API.
example: "application/json"
description: MIME type for the response format. Must be value of "application/json" for API.
required: true
responses:
200:
description: User logged out
content:
application/json:
schema:
type: object
properties:
message:
type: string
description: Logout success detail.
example: Logged out
401:
description: User is not authenticated
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
500:
description: Server Error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
components:
securitySchemes:
UserAuth:
description: Autentikasi untuk user
type: http
scheme: bearer
schemas:
Book:
type: object
properties:
id:
type: number
description: Book ID
example: 1
user_id:
type: number
description: User ID
example: 1
isbn:
type: string
description: Book ISBN Number
example: "9781491943533"
title:
type: string
description: Book title
example: Practical Modern JavaScript
subtitle:
type: string
description: Book subtitle
example: Dive into ES6 and the Future of JavaScript
nullable: true
author:
type: string
description: Book author
example: "Nicolás Bevacqua"
nullable: true
published:
type: string
description: "Book publish date (format: Y-m-d H:i:s)"
example: "2017-07-16 00:00:00"
nullable: true
publisher:
type: string
description: Book publisher
example: "O'Reilly Media"
nullable: true
pages:
type: number
description: Book total page
example: 334
nullable: true
description:
type: string
description: Book description
example: "To get the most out of modern JavaScript, you need learn the latest features of its parent specification, ECMAScript 6 (ES6). This book provides a highly practical look at ES6, without getting lost in the specification or its implementation details."
nullable: true
website:
type: string
description: Book Url
example: "https://github.com/mjavascript/practical-modern-javascript"
nullable: true
created_at:
type: string
description: Datetime when book model was created
example: "2023-01-12T14:50:05.000000Z"
updated_at:
type: string
description: Datetime when book model was last updated
example: "2023-01-12T14:50:05.000000Z"
User:
type: object
properties:
id:
type: string
description: User ID
example: 1
name:
type: string
description: User name
example: Mark
email_verified_at:
type: string
description: Datetime when user was verified
example: "2023-01-13T03:16:45.000000Z"
created_at:
type: string
description: Datetime when user model was created.
example: "2023-01-13T03:16:45.000000Z"
updated_at:
type: string
description: Datetime when user model last updated.
example: "2023-01-13T03:16:45.000000Z"
IndexBookResponse200:
type: object
properties:
current_page:
type: number
description: Current page number.
example: 1
data:
type: array
items:
$ref: "#/components/schemas/Book"
first_page_url:
type: string
description: Pagination first page URL.
example: https://basic-book-crud-e3u54evafq-et.a.run.app/api/books?page=1
from:
type: number
description: Number of the first item in the page.
nullable: true
example: 1
last_page:
type: number
description: Page number of the last available page.
example: 2
last_page_url:
type: string
description: Pagination last page URL.
example: https://basic-book-crud-e3u54evafq-et.a.run.app/api/books?page=2
next_page_url:
type: string
description: URL for the next page.
nullable: true
example: https://basic-book-crud-e3u54evafq-et.a.run.app/api/books?page=2
path:
type: string
description: URL of the page.
example: https://basic-book-crud-e3u54evafq-et.a.run.app/api/books
per_page:
type: number
description: Number of items per page.
example: 10
prev_page_url:
type: string
description: URL for the next page.
nullable: true
example: https://basic-book-crud-e3u54evafq-et.a.run.app/api/books?page=1
to:
type: number
description: Number of the last item in the page.
nullable: true
example: 10
total:
type: number
description: Total of items.
example: 16
StoreBookRequest:
type: object
properties:
isbn:
type: string
description: Book ISBN Number
example: "9781491943533"
title:
type: string
description: Book title
example: Practical Modern JavaScript
subtitle:
type: string
description: Book subtitle
example: Dive into ES6 and the Future of JavaScript
nullable: true
author:
type: string
description: Book author
example: "Nicolás Bevacqua"
nullable: true
published:
type: string
description: "Book publish date (format: Y-m-d H:i:s)"
example: "2017-07-16 00:00:00"
nullable: true
publisher:
type: string
description: Book publisher
example: "O'Reilly Media"
nullable: true
pages:
type: number
description: Book total page
example: 334
nullable: true
description:
type: string
description: Book description
example: "To get the most out of modern JavaScript, you need learn the latest features of its parent specification, ECMAScript 6 (ES6). This book provides a highly practical look at ES6, without getting lost in the specification or its implementation details."
nullable: true
website:
type: string
description: Book Url
example: "https://github.com/mjavascript/practical-modern-javascript"
nullable: true
StoreBookResponse422:
type: object
properties:
message:
type: string
description: Details of error
errors:
type: object
properties:
isbn:
type: array
items:
type: string
description: isbn parameters error details
title:
type: array
items:
type: string
description: title parameters error details
subtitle:
type: array
items:
type: string
description: subtitle parameters error details
author:
type: array
items:
type: string
description: author parameters error details
published:
type: array
items:
type: string
description: published parameters error details
publisher:
type: array
items:
type: string
description: publisher parameters error details
pages:
type: array
items:
type: string
description: pages parameters error details
description:
type: array
items:
type: string
description: description parameters error details
website:
type: array
items:
type: string
description: website parameters error details
StoreUserRequest:
type: object
properties:
name:
type: string
description: User name
example: Mark
email:
type: string
description: User email
example: [email protected]
password:
type: string
description: User password
example: password
password_confirmation:
type: string
description: User password confirmation must be same with password
example: password
StoreUserResponse422:
type: object
properties:
message:
type: string
description: Details of error
errors:
type: object
properties:
name:
type: array
items:
type: string
description: name parameters error details
email:
type: array
items:
type: string
description: email parameters error details
password:
type: array
items:
type: string
description: password parameters error details
password_confirmation:
type: array
items:
type: string
description: password_confirmation parameters error details
LoginUserRequest:
type: object
properties:
email:
type: string
description: User email
example: [email protected]
password:
type: string
description: User password
example: password
LoginUserResponse422:
type: object
properties:
message:
type: string
description: Details of error
errors:
type: object
properties:
email:
type: array
items:
type: string
description: email parameters error details
password:
type: array
items:
type: string
description: password parameters error details
Error:
type: object
properties:
message:
type: string
description: Error message description