-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger.yaml
1791 lines (1789 loc) · 44.3 KB
/
swagger.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
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
swagger: '2.0'
info:
title: API V1
version: v1
securityDefinitions:
Bearer:
type: apiKey
name: token
in: header
definitions:
Bookmark:
type: object
properties:
hotel_id:
type: integer
example: 34973
room_package_id:
type: integer
example: 475112
hotel_name:
type: string
example: Somerset Greenways Chennai
hotel_image:
type: string
example: 'https://az712897.vo.msecnd.net/images/full/efe5b459-71fe-4797-9b01-1194314e87e7.jpeg'
check_in:
type: string
example: '2017-10-19'
check_out:
type: string
example: '2017-10-26'
star_rating:
type: number
example: '5.0'
user_rating:
type: number
example: '5.0'
active:
type: boolean
example: true
room_name:
type: string
example: Studio Premier
bookmarked_price:
type: integer
example: 95
cancellable:
type: boolean
description: Package is cancellable
example: false
meal:
type: string
example: Room Only
bed:
type: string
example: 'Double/Twin, Single'
hotel_address:
type: string
example: 'Sathyadev Avenue Mrc Nagar Santhome 94, Chennai, India'
hotel_city:
type: string
example: Chennai
hotel_country:
type: string
example: India
hotel_amenities:
type: array
items:
type: object
properties:
code:
type: string
example: swimmingpool
required:
- code
number_of_rooms:
type: integer
example: 1
number_of_adults:
type: integer
example: 2
number_of_kids:
type: integer
example: 0
bookmarked_at:
type: string
example: '2017-10-04T05:34:18.000Z'
required:
- hotel_id
- room_package_id
- hotel_name
- check_in
- check_out
- star_rating
- user_rating
- active
- room_name
- bookmarked_price
- cancellable
- meal
- bed
- hotel_address
- hotel_amenities
- number_of_rooms
- number_of_adults
- number_of_kids
- bookmarked_at
Differentiator:
type: object
properties:
label:
type: string
example: Visit Singapore
link:
type: string
example: 'http://www.visitsingapore.com'
image_url:
type: string
example: 'http://somecdnsomewhere.com/bucket/singapore_image.jpg'
required:
- label
- link
- image_url
DifferentiatorList:
type: array
items:
$ref: '#/definitions/Differentiator'
CurrencyRate:
type: object
properties:
to:
type: string
example: USD
label:
type: string
example: US Dollar
rate:
type: integer
example: 1
required:
- to
- label
- rate
CurrencyRateList:
type: array
items:
$ref: '#/definitions/CurrencyRate'
HotelSearchListingItem:
type: object
properties:
id:
type: integer
example: 25
name:
type: string
example: Somerset Greenways Chennai
city:
type: string
example: Chennai
country:
type: string
example: India
address:
type: string
example: Sathyadev Avenue Mrc Nagar Santhome 94
latitude:
type: number
example: -0.08426
longitude:
type: number
example: 51.52249
star_rating:
type: number
example: '5.0'
user_rating:
type: number
example: '5.0'
image_url:
type: string
example: 'https://az712897.vo.msecnd.net/images/full/efe5b459-71fe-4797-9b01-1194314e87e7.jpeg'
amenities:
type: array
items:
type: object
properties:
code:
type: string
example: swimmingpool
required:
- code
UserBookmarks:
type: object
properties:
last_bookmarks_update_at:
type: string
example: '2017-10-18 19:18:04'
bookmarks:
type: array
items:
$ref: '#/definitions/Bookmark'
required:
- last_bookmarks_update_at
- bookmarks
SearchContextRoom:
type: object
properties:
adults:
type: integer
example: 2
children:
type: integer
example: 1
children_ages:
type: array
items:
type: integer
example: 8
required:
- adults
- children
Errors:
type: object
properties:
errors:
type: array
items:
type: string
example: Room package has already been taken
required:
- errors
UserBookmarksWithErrors:
allOf:
- $ref: '#/definitions/Errors'
- $ref: '#/definitions/UserBookmarks'
LoginRequest:
type: object
properties:
email:
type: string
example: [email protected]
password:
type: string
example: myP@55w0rd!
last_differentiators_fetch_at:
type: string
description: Date of differentiators last update
example: '2017-10-18T19:18:04Z'
device:
$ref: '#/definitions/Device'
required:
- email
- password
- last_differentiators_fetch_at
LoginResponse:
type: object
properties:
access_token:
type: string
example: 8c188a2d8dbe2396c26f57e9c3b5bad1
token_type:
type: string
example: bearer
token_timeout:
type: integer
example: 1800
info:
$ref: '#/definitions/UserProfileResponse'
differentiators:
$ref: '#/definitions/DifferentiatorList'
forex:
$ref: '#/definitions/CurrencyRateList'
required:
- access_token
- token_type
- token_timeout
- info
PreloginRequest:
type: object
properties:
last_differentiators_fetch_at:
type: string
description: Date of differentiators last update
example: '2017-10-18T19:18:04Z'
device:
$ref: '#/definitions/Device'
required:
- last_differentiators_fetch_at
- device
PreloginResponse:
type: object
properties:
differentiators:
$ref: '#/definitions/DifferentiatorList'
forex:
$ref: '#/definitions/CurrencyRateList'
UserPrebookingRequest:
type: object
properties:
user_traveling:
type: boolean
description: Is the user also the one traveling?
example: true
first_name:
type: string
example: John
last_name:
type: string
example: Doe
mobile:
type: string
example: +1-206-555-1234
street_address:
type: string
example: '1234 Elm St, Suite 5A'
city:
type: string
example: Riverside
state:
type: string
example: AZ
postal_code:
type: integer
example: 90211
country_of_residence:
type: string
example: US
currency_id:
type: string
example: USD
room_package_id:
type: integer
example: 475112
required:
- user_traveling
- first_name
- last_name
- mobile
- street_address
- city
- postal_code
- country_of_residence
- currency_id
- room_package_id
UserPrebookingResponse:
type: object
properties:
email:
type: string
example: [email protected]
first_name:
type: string
example: John
last_name:
type: string
example: Doe
date_of_birth:
type: string
example: '1980-03-24'
gender:
type: string
enum:
- male
- female
- other
mobile:
type: string
example: +1-206-555-1234
passport:
type: string
example: A12345678
nationality:
type: string
example: CA
street_address:
type: string
example: '1234 Elm St, Suite 5A'
city:
type: string
example: Riverside
state:
type: string
example: AZ
postal_code:
type: integer
example: 90211
country_of_residence:
type: string
example: US
currency_id:
type: string
example: USD
photo_url:
type: string
example: 'https://myblackbook.com/xyz/abc/123/456/789.png'
user_id:
type: integer
example: 659463419306
booking:
$ref: '#/definitions/HotelBooking'
PrebookingRequest:
type: object
properties:
email:
type: string
example: [email protected]
password:
type: string
example: myP@55w0rd!
first_name:
type: string
example: John
last_name:
type: string
example: Doe
gender:
type: string
enum:
- male
- female
- other
mobile:
type: string
example: +1-206-555-1234
street_address:
type: string
example: '1234 Elm St, Suite 5A'
city:
type: string
example: Riverside
state:
type: string
example: AZ
postal_code:
type: string
example: '90211'
country_of_residence:
type: string
description: alpha2 code of country of residence
example: US
currency_id:
type: string
example: USD
room_package_id:
type: integer
example: 475112
device:
$ref: '#/definitions/Device'
required:
- email
- password
- first_name
- last_name
- country_of_residence
- currency_id
- room_package_id
PrebookingResponse:
type: object
properties:
access_token:
type: string
example: 8c188a2d8dbe2396c26f57e9c3b5bad1
token_type:
type: string
example: bearer
token_timeout:
type: integer
example: 1800
info:
$ref: '#/definitions/UserProfileResponse'
booking:
$ref: '#/definitions/HotelBooking'
required:
- access_token
- token_type
- token_timeout
- info
- booking
RegisterUserRequest:
type: object
properties:
email:
type: string
example: [email protected]
password:
type: string
example: myP@55w0rd!
first_name:
type: string
example: John
last_name:
type: string
example: Doe
last_differentiators_fetch_at:
type: string
description: Date of differentiators last update
example: '2017-10-18T19:18:04Z'
device:
$ref: '#/definitions/Device'
required:
- email
- password
- first_name
- last_name
- country_of_residence
- last_differentiators_fetch_at
UpdatePasswordRequest:
type: object
properties:
password:
type: string
example: myP@55w0rd!
required:
- password
HotelBooking:
type: object
properties:
id:
type: integer
example: 28874
status:
type: string
enum:
- Initial
- Paid
- Booked
final_price:
type: number
example: 240.54
displayed_currency:
type: string
example: USD
exchange_rate:
type: number
example: 23.99
required:
- id
- status
- final_price
- displayed_currency
- exchange_rate
UserProfile:
type: object
properties:
email:
type: string
example: [email protected]
first_name:
type: string
example: John
last_name:
type: string
example: Doe
date_of_birth:
type: string
example: '1980-03-24'
gender:
type: string
enum:
- male
- female
- other
mobile:
type: string
example: +1-206-555-1234
passport:
type: string
example: A12345678
nationality:
type: string
description: alpha2 code of country of nationality
example: CA
street_address:
type: string
example: '1234 Elm St, Suite 5A'
city:
type: string
example: Riverside
state:
type: string
example: AZ
postal_code:
type: string
example: '90211'
country_of_residence:
type: string
description: alpha2 code of country of residence
example: US
currency_id:
type: string
example: USD
required:
- email
- first_name
- last_name
- date_of_birth
- gender
- mobile
- passport
- nationality
- street_address
- city
- state
- postal_code
- country_of_residence
UserProfilePhotoUrl:
type: object
properties:
photo_url:
type: string
description: URL for profile photo
example: 'https://myblackbook.com/xyz/abc/123/456/789.png'
required:
- photo_url
UserProfileUserId:
type: object
properties:
user_id:
type: string
description: 12-digit numeric User ID
example: '659463419306'
required:
- user_id
UserProfileResponse:
allOf:
- $ref: '#/definitions/UserProfile'
- $ref: '#/definitions/UserProfilePhotoUrl'
- $ref: '#/definitions/UserProfileUserId'
- $ref: '#/definitions/UserBookmarks'
CreateBookmarkRequest:
type: object
properties:
hotel_id:
type: string
description: ID of Hotel
example: '21'
room_package_id:
type: string
description: ID of Room Package
example: '981'
last_bookmarks_update_at:
type: string
description: Date of last bookmarks update
example: '2017-10-18T19:18:04Z'
RoomPackageGroup:
type: object
properties:
name:
type: string
example: Deluxe Grand
room_packages:
type: array
items:
$ref: '#/definitions/RoomPackage'
required:
- name
- room_packages
RoomPackage:
type: object
properties:
id:
type: integer
example: 56213
cancellable:
type: boolean
description: Package is cancellable
example: false
price:
type: integer
description: Price
example: 820
extra_person_night_fee:
type: number
description: Extra person per night fee
example: 102.5
num_extra_people:
type: number
description: Extra people
example: 2.5
total_benchmark_tax_fees_percent:
type: number
description: Total Benchmark Tax Fees Percent
example: 23
tax_and_fees_breakdown:
type: array
description: Tax and Fees Breakdown
items:
type: object
properties:
name:
type: string
example: Tax
percentage:
type: number
example: 11.5
required:
- name
- percentage
meal:
type: string
description: Type of meal
example: Room Only
bed:
type: string
description: Bed type
example: King
bookmarked:
type: boolean
description: Is package bookmarked by the current user?
example: false
required:
- id
- cancellable
- description
- price
- extra_person_night_fee
- num_extra_people
- total_benchmark_tax_fees_percent
- tax_and_fees_breakdown
- meal
- bed
- bookmarked
SearchContextRequest:
type: object
properties:
query_text:
type: string
example: Singapore
suggestion_id:
type: integer
example: 45083
checkin:
type: string
example: '2017-10-24'
checkout:
type: string
example: '2017-10-28'
occupancy:
type: array
items:
$ref: '#/definitions/SearchContextRoom'
amenity_codes:
type: string
description: 'Comma-separated list of required amenities. Current codes: swimmingpool, wifi, restaurant, ac, airporttransport, golf, gym, spasauna, sports.'
example: 'swimmingpool,golf,ac'
star_ratings:
type: string
description: Comma-separated list of allowed star ratings.
example: '1,3,4'
user_rating:
type: number
description: Minimum user rating.
example: '3.25'
neighborhood_suggestion_ids:
type: string
description: Comma-separated list of neighborhood suggestion ids
example: '71596, 71597'
sort_order:
type: string
description: 'Desired sort order, one of recommended, star-rating, user-rating, price, name-asc, and name-desc'
example: recommended
required:
- query_text
- checkin
- checkout
- occupancy
HotelListingItemDetail:
type: object
properties:
images:
type: array
items:
$ref: '#/definitions/HotelImage'
hotel_name:
type: string
example: Somerset Greenways Chennai
short_description:
type: string
example: Short description
long_description:
type: string
example: A Very Long Description Of The Hotel Facilities
star_rating:
type: number
example: '5.0'
user_rating:
type: number
example: '5.0'
city:
type: string
example: Chennai
country:
type: string
example: India
address:
type: string
example: Sathyadev Avenue Mrc Nagar Santhome 94
amenities:
type: array
items:
title: Amenity
type: object
properties:
code:
type: string
example: swimmingpool
required:
- code
map:
title: MapInfo
type: object
properties:
longitude:
type: number
example: 51.52249
latitude:
type: number
example: -0.08426
zoom:
type: number
example: 12
markers:
type: string
example: 'color:red|51.52249,-0.08426'
maptype:
type: string
example: roadmap
key:
type: string
example: AIzaSyCAGx341Pssess47o6AxJfX2gJpKNBBcs0
size:
type: string
example: 317x171
map_image_url:
type: string
example: 'https://maps.googleapis.com/maps/api/staticmap?zoom=12&size=317x171&maptype=roadmap&markers=color:red|51.52249,-0.08426&key=AIzaSyCAGx341Pssess47o6AxJfX2gJpKNBBcs0'
required:
- longitude
- latitude
- zoom
- markers
- maptype
- key
- size
- map_image_url
rating_info:
title: RatingInfo
type: object
description: Only present if there is a rating source for the hotel
properties:
rating_provider:
type: string
description: 'Rating provide code, one of ''blackbook'' and ''trustyou''.'
example: trustyou
summary_rating:
type: number
example: 4.5
review_count:
type: integer
example: 18257
hotel_url:
type: string
example: 'https://www.tripadvisor.com/Hotel_Review-xyz-abc.html'
ranking_string:
type: string
example: '#40 of 319 hotels in Singapore'
write_review_url:
type: string
example: 'https://www.tripadvisor.com/UserReview-xyz-abc.html'
category_ratings:
type: array
items:
title: CategoryRating
type: object
properties:
score:
type: integer
example: 90
label:
type: string
example: Breakfast
max_scale:
type: integer
example: 10
required:
- score
- label
star_ratings:
type: array
items:
title: StarRating
type: object
properties:
score:
type: integer
example: 5
count:
type: integer
example: 16327
label:
type: string
example: Excellent
max_scale:
type: integer
example: 5
required:
- score
- count
- label
trip_types:
type: array
items:
title: TripType
type: object
properties:
label:
type: string
example: Business
count:
type: integer
example: 1354
required:
- label
- count
required:
- rating_provider
- review_count
- category_ratings
- star_ratings
- trip_types
required:
- images
- hotel_name
- star_rating
- user_rating
- city
- country
- address
- amenities
- map
- rating_info
HotelImage:
type: object
properties:
url:
type: string
description: Image URL
example: 'https://hotels.net/images/full/19bfcdf5.jpg'
required:
- url
HotelSearchListingItemRoomPackageGroups:
type: object
properties:
room_package_groups:
type: array
description: 'This is present only if prices and availability have already been obtained from the suppliers. Otherwise, the caller needs to call the Get Room Packages API.'
items:
$ref: '#/definitions/RoomPackageGroup'
HotelSearchListingItemDetail:
allOf:
- $ref: '#/definitions/HotelListingItemDetail'
- $ref: '#/definitions/HotelSearchListingItemRoomPackageGroups'
BookmarkRoomPackages:
type: object
properties:
room_package_info:
type: array
items:
$ref: '#/definitions/RoomPackage'
required:
- room_package_info
BookmarkDetail:
allOf:
- $ref: '#/definitions/HotelListingItemDetail'
- $ref: '#/definitions/BookmarkRoomPackages'
SearchContextResponse:
type: object
properties:
uuid:
type: string
example: 94a269b6-76cc-48a0-884f-5b97afb61683
search_type:
type: string
enum:
- city
- country
- multi_keyword
- neighborhood
- partial_name
- single_hotel
hotels:
type: array
items:
$ref: '#/definitions/HotelSearchListingItem'
neighborhoods:
type: array
items:
$ref: '#/definitions/Neighborhood'
page_size:
type: integer
example: 50