-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathswagger.yaml
More file actions
1489 lines (1488 loc) · 54.9 KB
/
swagger.yaml
File metadata and controls
1489 lines (1488 loc) · 54.9 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
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
openapi: 3.0.3
info:
title: Camping API
version: 1.1.0
contact: {}
servers:
- url: "http://localhost:8080/api"
paths:
/user/{userId}:
get:
tags:
- User
summary: GET User by UID
description: Get User from Camping DB using firebase registered user UID
operationId: getUserById
parameters:
- name: userId
required: true
in: path
schema:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/User"
/user/:
patch:
tags:
- User
summary: Update User Profile
description: Update User profile to tell about yourself for other teammates
operationId: updateUserProfile
requestBody:
content:
application/json:
schema:
type: object
properties:
fullname:
type: string
example: Genious
bio:
type: string
example: >-
full enthusiasm, well-motivated person and ready to constructive communication
occupation:
type: string
example: Web developer
uid:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
example:
fullname: Genious
bio: >-
full enthusiasm, well-motivated person and ready to constructive communication
occupation: Web developer
uid: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: User profile updated successfully
/user/avatar:
patch:
tags:
- User
summary: Update User Avatar
description: Update User avatar image as base64 format
operationId: updateUserAvatar
requestBody:
content:
application/json:
schema:
type: object
properties:
avatar:
type: string
example: >-
data:image/png;base64,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
uid:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
example:
avatar: >-
data:image/png;base64,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
uid: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: User avatar was changed
"400":
description: "Bad Request"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Avatar format is not allowed or incorrect. Use base64 instead
/trip/bag/all/{userId}:
get:
tags:
- Bag
summary: Get bag items
description: Get bag items of activated trip
operationId: getBagItems
parameters:
- in: path
name: userId
required: true
schema:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: array
items:
"$ref": "#/components/schemas/Bag"
"404":
description: "Not Found"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: User has no activated trip
/trip/bag/{tripId}:
post:
tags:
- Bag
summary: Add bag item
description: Add bag item into trip
operationId: addBagItem
parameters:
- in: path
name: tripId
required: true
schema:
type: string
example: 63c93dbe37daeff8aa65cc98
requestBody:
content:
application/json:
schema:
type: object
properties:
description:
type: string
example: Camera
userId:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
example:
description: Camera
userId: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Bag item added successfully
/trip/bag/image:
patch:
tags:
- Bag
summary: Update bag image
description: Update bag item image as base64 format
operationId: updateBagImage
requestBody:
content:
application/json:
schema:
type: object
properties:
bagItemId:
type: string
example: 205c24f86d4b8c79201f5d4d26c7d3c4
image:
type: string
example: >-
data:image/png;base64,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
userId:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
example:
bagItemId: 205c24f86d4b8c79201f5d4d26c7d3c4
image: >-
data:image/png;base64,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
userId: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Bag item image updated successfully
"400":
description: Bad Request
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Image format is not allowed or incorrect. Use base64 instead
"404":
description: Not Found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: User has no activated trip
/trip/bag/count:
patch:
tags:
- Bag
summary: Update bag item count
description: ""
operationId: updateBagItemCount
requestBody:
content:
application/json:
schema:
type: object
properties:
userId:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
bagItemId:
type: string
example: 205c24f86d4b8c79201f5d4d26c7d3c4
count:
type: number
example: 2
example:
userId: RgYM60evCyfBxbYmxWg7o0Pqhpz2
bagItemId: 205c24f86d4b8c79201f5d4d26c7d3c4
count: 2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Bag item count has been updated successfully
"404":
description: Not Found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Bag item with id {BAG_ITEM_ID} is not found
/trip/bag/delete:
delete:
tags:
- Bag
summary: Remove bag item
description: Remove bag item
operationId: removeBagItem
parameters:
- name: userId
in: query
schema:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
- name: bagItemId
in: query
schema:
type: string
example: 675b736ea96c83b655516b57b8600044
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Bag item has been deleted successfully
"404":
description: Not Found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example:
[
"Bag item with id {BAG_ITEM_ID} is not found",
"User has no activated trip",
]
/trip/activity/all/{userId}:
get:
tags:
- Activity
summary: Get activities
description: Get activities items of activated trip
operationId: getActivities
parameters:
- in: path
name: userId
required: true
schema:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Activity"
"404":
description: "Not Found"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: User has no activated trip
/trip/activity/{userId}:
post:
tags:
- Activity
summary: Add activity
description: Add Activity to active trip by userId
operationId: addActivity
parameters:
- name: userId
required: true
in: path
schema:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
requestBody:
content:
application/json:
schema:
type: object
properties:
description:
type: string
example: >-
We need to find a perfect place for set up our camp’s and
where we will be protected from the angry Bears.
heading:
type: string
example: Find a Place
example:
description: >-
We need to find a perfect place for set up our camp’s and where
we will be protected from the angry Bears.
heading: Find a Place
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Activity added successfully
"404":
description: Not Found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: User has no activated trip
/trip/activity/complete:
patch:
tags:
- Activity
summary: Set activity completed
description: Set activity completed
operationId: setActivityCompleted
requestBody:
content:
application/json:
schema:
type: object
properties:
activityId:
type: string
example: 0ecf3c37d251c0479a09d0d88775e2e9
userId:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
example:
activityId: 0ecf3c37d251c0479a09d0d88775e2e9
userId: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Activity with id {ACTIVITY_ITEM_ID} has been completed successfully
"404":
description: Not Found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example:
[
"Activity item with id {ACTIVITY_ITEM_ID} is not found in activated trip",
"User has no activated trip",
]
/trip/activity/delete:
delete:
tags:
- Activity
summary: Delete activity
description: Delete activity
operationId: deleteActivity
parameters:
- name: userId
in: query
schema:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
- name: activityId
in: query
schema:
type: string
example: 292ed90808df312625d81dac028b1b9d
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Activity with id {ACTIVITY_ITEM_ID} has been deleted successfully
"404":
description: Not Found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example:
[
"Activity item with id {ACTIVITY_ITEM_ID} is not found in activated trip",
"User has no activated trip",
]
/trip/all/{userId}:
get:
tags:
- Trip
summary: Get all trips
description: Get all trips from Camping DB
operationId: getAllTrips
parameters:
- name: userId
required: true
in: path
schema:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Trip"
/trip/activated/{userId}:
get:
tags:
- Trip
summary: Get activated trip
description: ""
operationId: getActivatedTrip
parameters:
- name: userId
required: true
in: path
schema:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/Trip"
"404":
description: "Not Found"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: User has no activated trip
/trip/create:
post:
tags:
- Trip
summary: Create New Trip
description: ""
operationId: createNewTrip
requestBody:
content:
application/json:
schema:
type: object
properties:
tripName:
type: string
example: Around the world trip
tripPeriod:
type: object
properties:
endDate:
type: string
example: >-
Tue Dec 23 2024 11:23:26 GMT+0200 (Eastern European
Standard Time)
formatted:
type: string
example: From 23 to 23 December (1 year)
startDate:
type: string
example: >-
Tue Dec 23 2023 11:23:26 GMT+0200 (Eastern European
Standard Time)
userId:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
example:
tripName: Around the world trip
tripPeriod:
endDate: >-
Tue Dec 23 2024 11:23:26 GMT+0200 (Eastern European Standard
Time)
formatted: From 23 to 23 December (1 year)
startDate: >-
Tue Dec 23 2023 11:23:26 GMT+0200 (Eastern European Standard
Time)
userId: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/Trip"
/trip/delete:
delete:
tags:
- Trip
summary: Delete trip
description: ""
operationId: deleteTrip
parameters:
- name: userId
in: query
schema:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
- name: tripId
in: query
schema:
type: string
example: 292ed90808df312625d81dac028b1b9d
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Trip deleted successfully
"404":
description: Not Found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Trip is not found or already removed
/trip/complete/{userId}:
patch:
tags:
- Trip
summary: Complete trip
description: Set Trip completed after filling initial data
operationId: completeTrip
parameters:
- in: path
name: userId
required: true
schema:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Trip with id {TRIP_ID} completed successfully
"404":
description: Not Found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: User has no trips which is not completed yet
/trip/activate:
patch:
tags:
- Trip
summary: Activate trip
description: Set activated field for given Trip and User
operationId: activateTrip
requestBody:
content:
application/json:
schema:
type: object
properties:
tripId:
type: string
example: 63c93dbe37daeff8aa65cc98
userId:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
example:
tripId: 63c93dbe37daeff8aa65cc98
userId: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Trip activated successfully
"404":
description: Not Found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Trip is not found or already activated
/trip/deactivate/{userId}:
patch:
tags:
- Trip
summary: Deactivate trip
description: Turn off activated field for current Trip
operationId: deactivateTrip
parameters:
- in: path
name: userId
required: true
schema:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Trip deactivated successfully
"404":
description: Not Found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: User has no activated trip
/trip/snaps/{userId}:
get:
tags:
- Snap
summary: Get trip snaps
description: Get all user snaps for all trips
operationId: getAllUserTripSnaps
parameters:
- in: path
name: userId
required: true
schema:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Snap"
"404":
description: Not Found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: User has no activated trip
/trip/snaps/create:
post:
tags:
- Snap
summary: Create trip snap
description: ""
operationId: createTripSnap
requestBody:
content:
application/json:
schema:
type: object
properties:
image:
type: string
example: data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAl/SURBVHgB1Zt/bBTHFce/s3tnbJ
userId:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
example:
image: data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAl/SURBVHgB1Zt/bBTHFce/s3tnbJ
userId: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/Snap"
"404":
description: Not Found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: User has no activated trip
/teammates/all/{userId}:
get:
tags:
- Teammate
summary: Get all user teammates of activated trip
description: ""
operationId: getAllUserTeammates
parameters:
- in: path
name: userId
required: true
schema:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/User"
default: []
"404":
description: Not Found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: User has no activated trip
/teammates/add:
post:
tags:
- Teammate
summary: Add teammate to activated trip
description: ""
operationId: addTeammate
requestBody:
content:
application/json:
schema:
type: object
properties:
userId:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
teammateId:
type: string
example: 3UMKTRM6JYMPL2OP2MWZWQRKXBY2
example:
userId: RgYM60evCyfBxbYmxWg7o0Pqhpz2
teammateId: J9h69v4MiSWNK6VdFUBAKWQac4e2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Teammate added successfully
"404":
description: Not Found
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: User has no activated trip
/teammates/delete:
post:
tags:
- Teammate
summary: Delete teammate from activated trip
description: ""
operationId: deleteTeammate
requestBody:
content:
application/json:
schema:
type: object
properties:
userId:
type: string
example: RgYM60evCyfBxbYmxWg7o0Pqhpz2
teammateId:
type: string
example: J9h69v4MiSWNK6VdFUBAKWQac4e2
example:
userId: RgYM60evCyfBxbYmxWg7o0Pqhpz2
teammateId: J9h69v4MiSWNK6VdFUBAKWQac4e2
responses:
"500":
description: Internal Server Error
"200":
description: "OK"
content:
application/json:
schema: