-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.yaml
815 lines (798 loc) · 24 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
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
openapi: 3.1.0
info:
title: Online Booking App API
version: 1.0.0
description: RESTful API for an online booking app using Express.js and Prisma
servers:
- url: https://api.example.com/v1
paths:
/login:
post:
summary: User Login
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
username:
type: string
example: johndoe
password:
type: string
example: mys3cur3p@ss
responses:
"200":
description: Successful login
content:
application/json:
schema:
type: object
properties:
token:
type: string
example: mytoken
"401":
description: Unauthorized
/users:
get:
summary: Get all users
responses:
"200":
description: Successful retrieval of users
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/User"
post:
summary: Create a new user
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/UserCreate"
responses:
"201":
description: User created successfully
"400":
description: Bad request
/users/{userId}:
parameters:
- in: path
name: userId
required: true
schema:
type: string
get:
summary: Get user by ID
responses:
"200":
description: Successful retrieval of user
content:
application/json:
schema:
$ref: "#/components/schemas/User"
"404":
description: User not found
put:
summary: Update user by ID
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/UserUpdate"
responses:
"200":
description: User updated successfully
"404":
description: User not found
"400":
description: Bad request
delete:
summary: Delete user by ID
responses:
"200":
description: User deleted successfully
"404":
description: User not found
/hosts:
get:
summary: Get all hosts
responses:
"200":
description: Successful retrieval of hosts
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Host"
post:
summary: Create a new host
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/HostCreate"
responses:
"201":
description: Host created successfully
"400":
description: Bad request
/hosts/{hostId}:
parameters:
- in: path
name: hostId
required: true
schema:
type: string
get:
summary: Get host by ID
responses:
"200":
description: Successful retrieval of host
content:
application/json:
schema:
$ref: "#/components/schemas/Host"
"404":
description: Host not found
put:
summary: Update host by ID
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/HostUpdate"
responses:
"200":
description: Host updated successfully
"404":
description: Host not found
"400":
description: Bad request
delete:
summary: Delete host by ID
responses:
"200":
description: Host deleted successfully
"404":
description: Host not found
/properties:
get:
summary: Get all properties
responses:
"200":
description: Successful retrieval of properties
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Property"
post:
summary: Create a new property
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/PropertyCreate"
responses:
"201":
description: Property created successfully
"400":
description: Bad request
/properties/{propertyId}:
parameters:
- in: path
name: propertyId
required: true
schema:
type: string
get:
summary: Get property by ID
responses:
"200":
description: Successful retrieval of property
content:
application/json:
schema:
$ref: "#/components/schemas/Property"
"404":
description: Property not found
put:
summary: Update property by ID
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/PropertyUpdate"
responses:
"200":
description: Property updated successfully
"404":
description: Property not found
"400":
description: Bad request
delete:
summary: Delete property by ID
responses:
"200":
description: Property deleted successfully
"404":
description: Property not found
/amenities:
get:
summary: Get all amenities
responses:
"200":
description: Successful retrieval of amenities
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Amenity"
post:
summary: Create a new amenity
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/AmenityCreate"
responses:
"201":
description: Amenity created successfully
"400":
description: Bad request
/amenities/{amenityId}:
parameters:
- in: path
name: amenityId
required: true
schema:
type: string
get:
summary: Get amenity by ID
responses:
"200":
description: Successful retrieval of amenity
content:
application/json:
schema:
$ref: "#/components/schemas/Amenity"
"404":
description: Amenity not found
put:
summary: Update amenity by ID
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/AmenityUpdate"
responses:
"200":
description: Amenity updated successfully
"404":
description: Amenity not found
"400":
description: Bad request
delete:
summary: Delete amenity by ID
responses:
"200":
description: Amenity deleted successfully
"404":
description: Amenity not found
/bookings:
get:
summary: Get all bookings
responses:
"200":
description: Successful retrieval of bookings
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Booking"
post:
summary: Create a new booking
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/BookingCreate"
responses:
"201":
description: Booking created successfully
"400":
description: Bad request
/bookings/{bookingId}:
parameters:
- in: path
name: bookingId
required: true
schema:
type: string
get:
summary: Get booking by ID
responses:
"200":
description: Successful retrieval of booking
content:
application/json:
schema:
$ref: "#/components/schemas/Booking"
"404":
description: Booking not found
put:
summary: Update booking by ID
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/BookingUpdate"
responses:
"200":
description: Booking updated successfully
"404":
description: Booking not found
"400":
description: Bad request
delete:
summary: Delete booking by ID
responses:
"200":
description: Booking deleted successfully
"404":
description: Booking not found
/reviews:
get:
summary: Get all reviews
responses:
"200":
description: Successful retrieval of reviews
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Review"
post:
summary: Create a new review
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/ReviewCreate"
responses:
"201":
description: Review created successfully
"400":
description: Bad request
/reviews/{reviewId}:
parameters:
- in: path
name: reviewId
required: true
schema:
type: string
get:
summary: Get review by ID
responses:
"200":
description: Successful retrieval of review
content:
application/json:
schema:
$ref: "#/components/schemas/Review"
"404":
description: Review not found
put:
summary: Update review by ID
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/ReviewUpdate"
responses:
"200":
description: Review updated successfully
"404":
description: Review not found
"400":
description: Bad request
delete:
summary: Delete review by ID
responses:
"200":
description: Review deleted successfully
"404":
description: Review not found
components:
schemas:
User:
type: object
properties:
id:
type: string
example: "a1234567-89ab-cdef-0123-456789abcdef"
username:
type: string
example: "jdoe"
name:
type: string
example: "John Doe"
email:
type: string
example: "[email protected]"
phoneNumber:
type: string
example: "123-456-7890"
profilePicture:
type: string
example: "https://example.com/images/johndoe.jpg"
Host:
type: object
properties:
id:
type: string
example: "f1234567-89ab-cdef-0123-456789abcdef"
username:
type: string
example: "johnDoe"
name:
type: string
example: "John Doe"
email:
type: string
example: "[email protected]"
phoneNumber:
type: string
example: "+11234567890"
profilePicture:
type: string
example: "https://example.com/images/johndoe.jpg"
aboutMe:
type: string
example: "I'm a passionate traveler who loves to share my home with fellow explorers. Welcome!"
Property:
type: object
properties:
id:
type: string
example: "g9012345-67ef-0123-4567-89abcdef0123"
title:
type: string
example: "Cozy Mountain Retreat"
description:
type: string
example: "Experience tranquility in our cozy cabin situated on a serene mountain peak."
location:
type: string
example: "Rocky Mountains, Colorado"
pricePerNight:
type: number
example: 120.5
bedroomCount:
type: integer
example: 3
bathRoomCount:
type: integer
example: 2
maxGuestCount:
type: integer
example: 5
hostId:
type: string
example: "f1234567-89ab-cdef-0123-456789abcdef"
rating:
type: number
example: 5
Amenity:
type: object
properties:
id:
type: string
example: "l4567890-12gh-ijkl-1234-56789abcdef0"
name:
type: string
example: "Wifi"
Booking:
type: object
properties:
id:
type: string
example: "f0123456-78ab-cdef-0123-456789abcdef"
userId:
type: string
example: "a1234567-89ab-cdef-0123-456789abcdef"
propertyId:
type: string
example: "z9876543-21fe-dcba-1098-76543210dcba"
checkinDate:
type: string
format: date-time
example: "2023-03-10T18:00:00.000Z"
checkoutDate:
type: string
format: date-time
example: "2023-03-15T10:00:00.000Z"
numberOfGuests:
type: integer
example: 2
totalPrice:
type: number
example: 150.25
bookingStatus:
type: string
example: "confirmed"
Review:
type: object
properties:
id:
type: string
example: "g7890123-45cd-ef01-2345-6789abcdef01"
userId:
type: string
example: "a1234567-89ab-cdef-0123-456789abcdef"
propertyId:
type: string
example: "z0123456-78ab-cdef-9012-3456789abcdef"
rating:
type: number
example: 5
comment:
type: string
example: "The property was amazing, and the host was very accommodating!"
UserCreate:
type: object
properties:
username:
type: string
example: "jdoe"
password:
type: string
example: "password123"
name:
type: string
example: "John Doe"
email:
type: string
example: "[email protected]"
phoneNumber:
type: string
example: "123-456-7890"
profilePicture:
type: string
example: "https://global-uploads.webflow.com/5eecfecbe625d195e35b89f2/624bfb093da7d92733c001c0_Ignacio%20Villafruela%20Rodr%C3%ADguez.jpg"
required:
- username
- password
- name
- email
- phoneNumber
UserUpdate:
type: object
properties:
username:
type: string
example: "jdoe_updated"
name:
type: string
example: "John Doe Updated"
email:
type: string
example: "[email protected]"
phoneNumber:
type: string
example: "987-654-3210"
profilePicture:
type: string
example: "https://updated-example.com/images/johndoe.jpg"
HostCreate:
type: object
properties:
username:
type: string
example: "johnDoe"
password:
type: string
example: "johnDoe123"
name:
type: string
example: "John Doe"
email:
type: string
example: "[email protected]"
phoneNumber:
type: string
example: "+11234567890"
profilePicture:
type: string
example: "https://example.com/images/johndoe.jpg"
aboutMe:
type: string
example: "I'm a passionate traveler who loves to share my home with fellow explorers. Welcome!"
required:
- username
- password
- name
- email
- phoneNumber
HostUpdate:
type: object
properties:
username:
type: string
example: "johnDoe_updated"
name:
type: string
example: "John Doe Updated"
email:
type: string
example: "[email protected]"
phoneNumber:
type: string
example: "+11234567890"
profilePicture:
type: string
example: "https://updated-example.com/images/johndoe.jpg"
aboutMe:
type: string
example: "Updated bio for John Doe"
PropertyCreate:
type: object
properties:
title:
type: string
example: "Cozy Mountain Retreat"
description:
type: string
example: "Experience tranquility in our cozy cabin situated on a serene mountain peak."
location:
type: string
example: "Rocky Mountains, Colorado"
pricePerNight:
type: number
example: 120.5
bedroomCount:
type: integer
example: 3
bathRoomCount:
type: integer
example: 2
maxGuestCount:
type: integer
example: 5
hostId:
type: string
example: "f1234567-89ab-cdef-0123-456789abcdef"
rating:
type: number
example: 5
PropertyUpdate:
type: object
properties:
title:
type: string
example: "Updated Cozy Mountain Retreat"
description:
type: string
example: "Updated description for the cozy mountain retreat."
location:
type: string
example: "Updated Location"
pricePerNight:
type: number
example: 150.5
bedroomCount:
type: integer
example: 4
bathRoomCount:
type: integer
example: 3
maxGuestCount:
type: integer
example: 6
rating:
type: number
example: 4.5
AmenityCreate:
type: object
properties:
name:
type: string
example: "Wifi"
AmenityUpdate:
type: object
properties:
name:
type: string
example: "Updated Wifi"
ReviewCreate:
type: object
properties:
userId:
type: string
example: "a1234567-89ab-cdef-0123-456789abcdef"
propertyId:
type: string
example: "z0123456-78ab-cdef-9012-3456789abcdef"
rating:
type: number
example: 5
comment:
type: string
example: "The property was amazing, and the host was very accommodating!"
ReviewUpdate:
type: object
properties:
rating:
type: number
example: 4
comment:
type: string
example: "Updated review for the property."
BookingCreate:
type: object
properties:
userId:
type: string
example: "a1234567-89ab-cdef-0123-456789abcdef"
propertyId:
type: string
example: "z9876543-21fe-dcba-1098-76543210dcba"
checkinDate:
type: string
format: date-time
example: "2023-03-10T18:00:00.000Z"
checkoutDate:
type: string
format: date-time
example: "2023-03-15T10:00:00.000Z"
numberOfGuests:
type: integer
example: 2
totalPrice:
type: number
example: 150.25
bookingStatus:
type: string
example: "confirmed"
BookingUpdate:
type: object
properties:
checkinDate:
type: string
format: date-time
example: "2023-03-11T18:00:00.000Z"
checkoutDate:
type: string
format: date-time
example: "2023-03-16T10:00:00.000Z"
numberOfGuests:
type: integer
example: 3
totalPrice:
type: number
example: 200.75
bookingStatus:
type: string
example: "updated"