@voyant-travel/openapi 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1166 @@
1
+ {
2
+ "openapi": "3.1.0",
3
+ "info": {
4
+ "title": "Voyant Framework API",
5
+ "version": "0.0.0",
6
+ "description": "Generated from the Voyant framework's standard module composition. Do not edit by hand."
7
+ },
8
+ "components": {
9
+ "schemas": {},
10
+ "parameters": {}
11
+ },
12
+ "paths": {
13
+ "/v1/public/pricing/products/{productId}/pricing": {
14
+ "get": {
15
+ "parameters": [
16
+ {
17
+ "schema": {
18
+ "type": "string"
19
+ },
20
+ "required": true,
21
+ "name": "productId",
22
+ "in": "path"
23
+ },
24
+ {
25
+ "schema": {
26
+ "type": "string"
27
+ },
28
+ "required": false,
29
+ "name": "catalogId",
30
+ "in": "query"
31
+ },
32
+ {
33
+ "schema": {
34
+ "type": "string"
35
+ },
36
+ "required": false,
37
+ "name": "optionId",
38
+ "in": "query"
39
+ },
40
+ {
41
+ "schema": {
42
+ "type": "string",
43
+ "format": "date"
44
+ },
45
+ "required": false,
46
+ "name": "date",
47
+ "in": "query"
48
+ },
49
+ {
50
+ "schema": {
51
+ "type": "string"
52
+ },
53
+ "required": false,
54
+ "name": "departureId",
55
+ "in": "query"
56
+ }
57
+ ],
58
+ "responses": {
59
+ "200": {
60
+ "description": "Public pricing snapshot for a product",
61
+ "content": {
62
+ "application/json": {
63
+ "schema": {
64
+ "type": "object",
65
+ "properties": {
66
+ "data": {
67
+ "type": "object",
68
+ "properties": {
69
+ "productId": {
70
+ "type": "string"
71
+ },
72
+ "catalog": {
73
+ "type": "object",
74
+ "properties": {
75
+ "id": {
76
+ "type": "string"
77
+ },
78
+ "code": {
79
+ "type": "string"
80
+ },
81
+ "name": {
82
+ "type": "string"
83
+ },
84
+ "currencyCode": {
85
+ "type": [
86
+ "string",
87
+ "null"
88
+ ]
89
+ }
90
+ },
91
+ "required": [
92
+ "id",
93
+ "code",
94
+ "name",
95
+ "currencyCode"
96
+ ]
97
+ },
98
+ "options": {
99
+ "type": "array",
100
+ "items": {
101
+ "type": "object",
102
+ "properties": {
103
+ "id": {
104
+ "type": "string"
105
+ },
106
+ "name": {
107
+ "type": "string"
108
+ },
109
+ "description": {
110
+ "type": [
111
+ "string",
112
+ "null"
113
+ ]
114
+ },
115
+ "status": {
116
+ "type": "string",
117
+ "enum": [
118
+ "draft",
119
+ "active",
120
+ "archived"
121
+ ]
122
+ },
123
+ "isDefault": {
124
+ "type": "boolean"
125
+ },
126
+ "bookingMode": {
127
+ "type": "string",
128
+ "enum": [
129
+ "date",
130
+ "date_time",
131
+ "open",
132
+ "stay",
133
+ "transfer",
134
+ "itinerary",
135
+ "other"
136
+ ]
137
+ },
138
+ "capacityMode": {
139
+ "type": "string",
140
+ "enum": [
141
+ "free_sale",
142
+ "limited",
143
+ "on_request"
144
+ ]
145
+ },
146
+ "pricingRules": {
147
+ "type": "array",
148
+ "items": {
149
+ "type": "object",
150
+ "properties": {
151
+ "id": {
152
+ "type": "string"
153
+ },
154
+ "name": {
155
+ "type": "string"
156
+ },
157
+ "description": {
158
+ "type": [
159
+ "string",
160
+ "null"
161
+ ]
162
+ },
163
+ "pricingMode": {
164
+ "type": "string",
165
+ "enum": [
166
+ "per_person",
167
+ "per_booking",
168
+ "starting_from",
169
+ "free",
170
+ "on_request"
171
+ ]
172
+ },
173
+ "baseSellAmountCents": {
174
+ "type": [
175
+ "integer",
176
+ "null"
177
+ ]
178
+ },
179
+ "minPerBooking": {
180
+ "type": [
181
+ "integer",
182
+ "null"
183
+ ]
184
+ },
185
+ "maxPerBooking": {
186
+ "type": [
187
+ "integer",
188
+ "null"
189
+ ]
190
+ },
191
+ "isDefault": {
192
+ "type": "boolean"
193
+ },
194
+ "cancellationPolicyId": {
195
+ "type": [
196
+ "string",
197
+ "null"
198
+ ]
199
+ },
200
+ "unitPrices": {
201
+ "type": "array",
202
+ "items": {
203
+ "type": "object",
204
+ "properties": {
205
+ "id": {
206
+ "type": "string"
207
+ },
208
+ "unitId": {
209
+ "type": "string"
210
+ },
211
+ "unitName": {
212
+ "type": "string"
213
+ },
214
+ "unitType": {
215
+ "type": "string",
216
+ "enum": [
217
+ "person",
218
+ "group",
219
+ "room",
220
+ "vehicle",
221
+ "service",
222
+ "other"
223
+ ]
224
+ },
225
+ "pricingMode": {
226
+ "type": "string",
227
+ "enum": [
228
+ "per_unit",
229
+ "per_person",
230
+ "per_booking",
231
+ "included",
232
+ "free",
233
+ "on_request"
234
+ ]
235
+ },
236
+ "sellAmountCents": {
237
+ "type": [
238
+ "integer",
239
+ "null"
240
+ ]
241
+ },
242
+ "minQuantity": {
243
+ "type": [
244
+ "integer",
245
+ "null"
246
+ ]
247
+ },
248
+ "maxQuantity": {
249
+ "type": [
250
+ "integer",
251
+ "null"
252
+ ]
253
+ },
254
+ "pricingCategoryId": {
255
+ "type": [
256
+ "string",
257
+ "null"
258
+ ]
259
+ },
260
+ "sortOrder": {
261
+ "type": "integer"
262
+ },
263
+ "tiers": {
264
+ "type": "array",
265
+ "items": {
266
+ "type": "object",
267
+ "properties": {
268
+ "id": {
269
+ "type": "string"
270
+ },
271
+ "minQuantity": {
272
+ "type": "integer"
273
+ },
274
+ "maxQuantity": {
275
+ "type": [
276
+ "integer",
277
+ "null"
278
+ ]
279
+ },
280
+ "sellAmountCents": {
281
+ "type": [
282
+ "integer",
283
+ "null"
284
+ ]
285
+ },
286
+ "sortOrder": {
287
+ "type": "integer"
288
+ }
289
+ },
290
+ "required": [
291
+ "id",
292
+ "minQuantity",
293
+ "maxQuantity",
294
+ "sellAmountCents",
295
+ "sortOrder"
296
+ ]
297
+ }
298
+ }
299
+ },
300
+ "required": [
301
+ "id",
302
+ "unitId",
303
+ "unitName",
304
+ "unitType",
305
+ "pricingMode",
306
+ "sellAmountCents",
307
+ "minQuantity",
308
+ "maxQuantity",
309
+ "pricingCategoryId",
310
+ "sortOrder",
311
+ "tiers"
312
+ ]
313
+ }
314
+ },
315
+ "startTimeAdjustments": {
316
+ "type": "array",
317
+ "items": {
318
+ "type": "object",
319
+ "properties": {
320
+ "id": {
321
+ "type": "string"
322
+ },
323
+ "startTimeId": {
324
+ "type": "string"
325
+ },
326
+ "label": {
327
+ "type": [
328
+ "string",
329
+ "null"
330
+ ]
331
+ },
332
+ "startTimeLocal": {
333
+ "type": "string"
334
+ },
335
+ "ruleMode": {
336
+ "type": "string",
337
+ "enum": [
338
+ "included",
339
+ "excluded",
340
+ "override",
341
+ "adjustment"
342
+ ]
343
+ },
344
+ "adjustmentType": {
345
+ "type": [
346
+ "string",
347
+ "null"
348
+ ],
349
+ "enum": [
350
+ "fixed",
351
+ "percentage",
352
+ null
353
+ ]
354
+ },
355
+ "sellAdjustmentCents": {
356
+ "type": [
357
+ "integer",
358
+ "null"
359
+ ]
360
+ },
361
+ "adjustmentBasisPoints": {
362
+ "type": [
363
+ "integer",
364
+ "null"
365
+ ]
366
+ }
367
+ },
368
+ "required": [
369
+ "id",
370
+ "startTimeId",
371
+ "label",
372
+ "startTimeLocal",
373
+ "ruleMode",
374
+ "adjustmentType",
375
+ "sellAdjustmentCents",
376
+ "adjustmentBasisPoints"
377
+ ]
378
+ }
379
+ }
380
+ },
381
+ "required": [
382
+ "id",
383
+ "name",
384
+ "description",
385
+ "pricingMode",
386
+ "baseSellAmountCents",
387
+ "minPerBooking",
388
+ "maxPerBooking",
389
+ "isDefault",
390
+ "cancellationPolicyId",
391
+ "unitPrices",
392
+ "startTimeAdjustments"
393
+ ]
394
+ }
395
+ }
396
+ },
397
+ "required": [
398
+ "id",
399
+ "name",
400
+ "description",
401
+ "status",
402
+ "isDefault",
403
+ "bookingMode",
404
+ "capacityMode",
405
+ "pricingRules"
406
+ ]
407
+ }
408
+ }
409
+ },
410
+ "required": [
411
+ "productId",
412
+ "catalog",
413
+ "options"
414
+ ]
415
+ }
416
+ },
417
+ "required": [
418
+ "data"
419
+ ]
420
+ }
421
+ }
422
+ }
423
+ },
424
+ "404": {
425
+ "description": "Product or pricing snapshot not found",
426
+ "content": {
427
+ "application/json": {
428
+ "schema": {
429
+ "type": "object",
430
+ "properties": {
431
+ "error": {
432
+ "type": "string"
433
+ }
434
+ },
435
+ "required": [
436
+ "error"
437
+ ]
438
+ }
439
+ }
440
+ }
441
+ }
442
+ }
443
+ }
444
+ },
445
+ "/v1/markets/markets": {
446
+ "get": {
447
+ "parameters": [
448
+ {
449
+ "schema": {
450
+ "type": "integer",
451
+ "minimum": 1,
452
+ "maximum": 200,
453
+ "default": 50
454
+ },
455
+ "required": false,
456
+ "name": "limit",
457
+ "in": "query"
458
+ },
459
+ {
460
+ "schema": {
461
+ "type": [
462
+ "integer",
463
+ "null"
464
+ ],
465
+ "minimum": 0,
466
+ "default": 0
467
+ },
468
+ "required": false,
469
+ "name": "offset",
470
+ "in": "query"
471
+ },
472
+ {
473
+ "schema": {
474
+ "type": "string",
475
+ "enum": [
476
+ "active",
477
+ "inactive",
478
+ "archived"
479
+ ]
480
+ },
481
+ "required": false,
482
+ "name": "status",
483
+ "in": "query"
484
+ },
485
+ {
486
+ "schema": {
487
+ "type": "string"
488
+ },
489
+ "required": false,
490
+ "name": "countryCode",
491
+ "in": "query"
492
+ },
493
+ {
494
+ "schema": {
495
+ "type": "string"
496
+ },
497
+ "required": false,
498
+ "name": "search",
499
+ "in": "query"
500
+ }
501
+ ],
502
+ "responses": {
503
+ "200": {
504
+ "description": "Paginated list of markets",
505
+ "content": {
506
+ "application/json": {
507
+ "schema": {
508
+ "type": "object",
509
+ "properties": {
510
+ "data": {
511
+ "type": "array",
512
+ "items": {
513
+ "type": "object",
514
+ "properties": {
515
+ "id": {
516
+ "type": "string"
517
+ },
518
+ "code": {
519
+ "type": "string"
520
+ },
521
+ "name": {
522
+ "type": "string"
523
+ },
524
+ "status": {
525
+ "type": "string",
526
+ "enum": [
527
+ "active",
528
+ "inactive",
529
+ "archived"
530
+ ]
531
+ },
532
+ "regionCode": {
533
+ "type": [
534
+ "string",
535
+ "null"
536
+ ]
537
+ },
538
+ "countryCode": {
539
+ "type": [
540
+ "string",
541
+ "null"
542
+ ]
543
+ },
544
+ "defaultLanguageTag": {
545
+ "type": "string"
546
+ },
547
+ "defaultCurrency": {
548
+ "type": "string"
549
+ },
550
+ "timezone": {
551
+ "type": [
552
+ "string",
553
+ "null"
554
+ ]
555
+ },
556
+ "taxContext": {
557
+ "type": [
558
+ "string",
559
+ "null"
560
+ ]
561
+ },
562
+ "metadata": {
563
+ "type": [
564
+ "object",
565
+ "null"
566
+ ],
567
+ "additionalProperties": {}
568
+ },
569
+ "createdAt": {
570
+ "type": "string"
571
+ },
572
+ "updatedAt": {
573
+ "type": "string"
574
+ }
575
+ },
576
+ "required": [
577
+ "id",
578
+ "code",
579
+ "name",
580
+ "status",
581
+ "regionCode",
582
+ "countryCode",
583
+ "defaultLanguageTag",
584
+ "defaultCurrency",
585
+ "timezone",
586
+ "taxContext",
587
+ "metadata",
588
+ "createdAt",
589
+ "updatedAt"
590
+ ]
591
+ }
592
+ },
593
+ "total": {
594
+ "type": "integer"
595
+ },
596
+ "limit": {
597
+ "type": "integer"
598
+ },
599
+ "offset": {
600
+ "type": "integer"
601
+ }
602
+ },
603
+ "required": [
604
+ "data",
605
+ "total",
606
+ "limit",
607
+ "offset"
608
+ ]
609
+ }
610
+ }
611
+ }
612
+ }
613
+ }
614
+ }
615
+ },
616
+ "/v1/admin/promotions": {
617
+ "get": {
618
+ "parameters": [
619
+ {
620
+ "schema": {
621
+ "anyOf": [
622
+ {
623
+ "type": "string",
624
+ "enum": [
625
+ "true"
626
+ ]
627
+ },
628
+ {
629
+ "type": "string",
630
+ "enum": [
631
+ "false"
632
+ ]
633
+ }
634
+ ]
635
+ },
636
+ "required": false,
637
+ "name": "active",
638
+ "in": "query"
639
+ },
640
+ {
641
+ "schema": {
642
+ "type": "string",
643
+ "minLength": 1,
644
+ "maxLength": 80
645
+ },
646
+ "required": false,
647
+ "name": "code",
648
+ "in": "query"
649
+ },
650
+ {
651
+ "schema": {
652
+ "type": "string",
653
+ "minLength": 1,
654
+ "maxLength": 200
655
+ },
656
+ "required": false,
657
+ "name": "search",
658
+ "in": "query"
659
+ },
660
+ {
661
+ "schema": {
662
+ "type": "string",
663
+ "enum": [
664
+ "auto",
665
+ "code"
666
+ ]
667
+ },
668
+ "required": false,
669
+ "name": "applicationMode",
670
+ "in": "query"
671
+ },
672
+ {
673
+ "schema": {
674
+ "type": "string",
675
+ "enum": [
676
+ "active",
677
+ "scheduled",
678
+ "expired",
679
+ "archived"
680
+ ]
681
+ },
682
+ "required": false,
683
+ "name": "status",
684
+ "in": "query"
685
+ },
686
+ {
687
+ "schema": {
688
+ "type": "string",
689
+ "enum": [
690
+ "global",
691
+ "products",
692
+ "categories",
693
+ "destinations",
694
+ "markets",
695
+ "audiences",
696
+ "fare_codes",
697
+ "cabin_grades"
698
+ ]
699
+ },
700
+ "required": false,
701
+ "name": "scopeKind",
702
+ "in": "query"
703
+ },
704
+ {
705
+ "schema": {
706
+ "type": "string",
707
+ "format": "date"
708
+ },
709
+ "required": false,
710
+ "name": "validFrom",
711
+ "in": "query"
712
+ },
713
+ {
714
+ "schema": {
715
+ "type": "string",
716
+ "format": "date"
717
+ },
718
+ "required": false,
719
+ "name": "validUntil",
720
+ "in": "query"
721
+ },
722
+ {
723
+ "schema": {
724
+ "type": "integer",
725
+ "exclusiveMinimum": 0,
726
+ "maximum": 200,
727
+ "default": 50
728
+ },
729
+ "required": false,
730
+ "name": "limit",
731
+ "in": "query"
732
+ },
733
+ {
734
+ "schema": {
735
+ "type": [
736
+ "integer",
737
+ "null"
738
+ ],
739
+ "minimum": 0,
740
+ "default": 0
741
+ },
742
+ "required": false,
743
+ "name": "offset",
744
+ "in": "query"
745
+ }
746
+ ],
747
+ "responses": {
748
+ "200": {
749
+ "description": "Paginated list of promotional offers",
750
+ "content": {
751
+ "application/json": {
752
+ "schema": {
753
+ "type": "object",
754
+ "properties": {
755
+ "data": {
756
+ "type": "array",
757
+ "items": {
758
+ "type": "object",
759
+ "properties": {
760
+ "id": {
761
+ "type": "string"
762
+ },
763
+ "name": {
764
+ "type": "string"
765
+ },
766
+ "slug": {
767
+ "type": "string"
768
+ },
769
+ "description": {
770
+ "type": [
771
+ "string",
772
+ "null"
773
+ ]
774
+ },
775
+ "discountType": {
776
+ "type": "string",
777
+ "enum": [
778
+ "percentage",
779
+ "fixed_amount"
780
+ ]
781
+ },
782
+ "discountPercent": {
783
+ "type": [
784
+ "string",
785
+ "null"
786
+ ]
787
+ },
788
+ "discountAmountCents": {
789
+ "type": [
790
+ "integer",
791
+ "null"
792
+ ]
793
+ },
794
+ "currency": {
795
+ "type": [
796
+ "string",
797
+ "null"
798
+ ]
799
+ },
800
+ "scope": {
801
+ "oneOf": [
802
+ {
803
+ "type": "object",
804
+ "properties": {
805
+ "kind": {
806
+ "type": "string",
807
+ "enum": [
808
+ "global"
809
+ ]
810
+ }
811
+ },
812
+ "required": [
813
+ "kind"
814
+ ]
815
+ },
816
+ {
817
+ "type": "object",
818
+ "properties": {
819
+ "kind": {
820
+ "type": "string",
821
+ "enum": [
822
+ "products"
823
+ ]
824
+ },
825
+ "productIds": {
826
+ "type": "array",
827
+ "items": {
828
+ "type": "string",
829
+ "minLength": 1
830
+ },
831
+ "minItems": 1
832
+ }
833
+ },
834
+ "required": [
835
+ "kind",
836
+ "productIds"
837
+ ]
838
+ },
839
+ {
840
+ "type": "object",
841
+ "properties": {
842
+ "kind": {
843
+ "type": "string",
844
+ "enum": [
845
+ "categories"
846
+ ]
847
+ },
848
+ "categoryIds": {
849
+ "type": "array",
850
+ "items": {
851
+ "type": "string",
852
+ "minLength": 1
853
+ },
854
+ "minItems": 1
855
+ }
856
+ },
857
+ "required": [
858
+ "kind",
859
+ "categoryIds"
860
+ ]
861
+ },
862
+ {
863
+ "type": "object",
864
+ "properties": {
865
+ "kind": {
866
+ "type": "string",
867
+ "enum": [
868
+ "destinations"
869
+ ]
870
+ },
871
+ "destinationIds": {
872
+ "type": "array",
873
+ "items": {
874
+ "type": "string",
875
+ "minLength": 1
876
+ },
877
+ "minItems": 1
878
+ }
879
+ },
880
+ "required": [
881
+ "kind",
882
+ "destinationIds"
883
+ ]
884
+ },
885
+ {
886
+ "type": "object",
887
+ "properties": {
888
+ "kind": {
889
+ "type": "string",
890
+ "enum": [
891
+ "markets"
892
+ ]
893
+ },
894
+ "marketIds": {
895
+ "type": "array",
896
+ "items": {
897
+ "type": "string",
898
+ "minLength": 1
899
+ },
900
+ "minItems": 1
901
+ }
902
+ },
903
+ "required": [
904
+ "kind",
905
+ "marketIds"
906
+ ]
907
+ },
908
+ {
909
+ "type": "object",
910
+ "properties": {
911
+ "kind": {
912
+ "type": "string",
913
+ "enum": [
914
+ "audiences"
915
+ ]
916
+ },
917
+ "audiences": {
918
+ "type": "array",
919
+ "items": {
920
+ "type": "string",
921
+ "enum": [
922
+ "staff",
923
+ "customer",
924
+ "partner",
925
+ "supplier"
926
+ ]
927
+ },
928
+ "minItems": 1
929
+ }
930
+ },
931
+ "required": [
932
+ "kind",
933
+ "audiences"
934
+ ]
935
+ },
936
+ {
937
+ "type": "object",
938
+ "properties": {
939
+ "kind": {
940
+ "type": "string",
941
+ "enum": [
942
+ "fare_codes"
943
+ ]
944
+ },
945
+ "fareCodes": {
946
+ "type": "array",
947
+ "items": {
948
+ "type": "string",
949
+ "minLength": 1
950
+ },
951
+ "minItems": 1
952
+ }
953
+ },
954
+ "required": [
955
+ "kind",
956
+ "fareCodes"
957
+ ]
958
+ },
959
+ {
960
+ "type": "object",
961
+ "properties": {
962
+ "kind": {
963
+ "type": "string",
964
+ "enum": [
965
+ "cabin_grades"
966
+ ]
967
+ },
968
+ "cabinGradeCodes": {
969
+ "type": "array",
970
+ "items": {
971
+ "type": "string",
972
+ "minLength": 1
973
+ },
974
+ "minItems": 1
975
+ }
976
+ },
977
+ "required": [
978
+ "kind",
979
+ "cabinGradeCodes"
980
+ ]
981
+ }
982
+ ]
983
+ },
984
+ "conditions": {
985
+ "type": "object",
986
+ "properties": {
987
+ "minPax": {
988
+ "type": "integer",
989
+ "exclusiveMinimum": 0
990
+ },
991
+ "pastGuestOnly": {
992
+ "type": "boolean"
993
+ },
994
+ "soloTravelerOnly": {
995
+ "type": "boolean"
996
+ },
997
+ "childTravelerOnly": {
998
+ "type": "boolean"
999
+ },
1000
+ "familyOnly": {
1001
+ "type": "boolean"
1002
+ }
1003
+ }
1004
+ },
1005
+ "validFrom": {
1006
+ "type": [
1007
+ "string",
1008
+ "null"
1009
+ ]
1010
+ },
1011
+ "validUntil": {
1012
+ "type": [
1013
+ "string",
1014
+ "null"
1015
+ ]
1016
+ },
1017
+ "code": {
1018
+ "type": [
1019
+ "string",
1020
+ "null"
1021
+ ]
1022
+ },
1023
+ "stackable": {
1024
+ "type": "boolean"
1025
+ },
1026
+ "active": {
1027
+ "type": "boolean"
1028
+ },
1029
+ "metadata": {},
1030
+ "createdAt": {
1031
+ "type": "string"
1032
+ },
1033
+ "updatedAt": {
1034
+ "type": "string"
1035
+ }
1036
+ },
1037
+ "required": [
1038
+ "id",
1039
+ "name",
1040
+ "slug",
1041
+ "description",
1042
+ "discountType",
1043
+ "discountPercent",
1044
+ "discountAmountCents",
1045
+ "currency",
1046
+ "scope",
1047
+ "conditions",
1048
+ "validFrom",
1049
+ "validUntil",
1050
+ "code",
1051
+ "stackable",
1052
+ "active",
1053
+ "createdAt",
1054
+ "updatedAt"
1055
+ ]
1056
+ }
1057
+ },
1058
+ "total": {
1059
+ "type": "integer"
1060
+ },
1061
+ "limit": {
1062
+ "type": "integer"
1063
+ },
1064
+ "offset": {
1065
+ "type": "integer"
1066
+ }
1067
+ },
1068
+ "required": [
1069
+ "data",
1070
+ "total",
1071
+ "limit",
1072
+ "offset"
1073
+ ]
1074
+ }
1075
+ }
1076
+ }
1077
+ }
1078
+ }
1079
+ }
1080
+ },
1081
+ "/v1/public/products/tags": {
1082
+ "get": {
1083
+ "parameters": [
1084
+ {
1085
+ "schema": {
1086
+ "type": "string"
1087
+ },
1088
+ "required": false,
1089
+ "name": "search",
1090
+ "in": "query"
1091
+ },
1092
+ {
1093
+ "schema": {
1094
+ "type": "integer",
1095
+ "example": 100
1096
+ },
1097
+ "required": false,
1098
+ "name": "limit",
1099
+ "in": "query"
1100
+ },
1101
+ {
1102
+ "schema": {
1103
+ "type": [
1104
+ "integer",
1105
+ "null"
1106
+ ],
1107
+ "minimum": 0,
1108
+ "default": 0
1109
+ },
1110
+ "required": false,
1111
+ "name": "offset",
1112
+ "in": "query"
1113
+ }
1114
+ ],
1115
+ "responses": {
1116
+ "200": {
1117
+ "description": "Paginated list of public catalog tags",
1118
+ "content": {
1119
+ "application/json": {
1120
+ "schema": {
1121
+ "type": "object",
1122
+ "properties": {
1123
+ "data": {
1124
+ "type": "array",
1125
+ "items": {
1126
+ "type": "object",
1127
+ "properties": {
1128
+ "id": {
1129
+ "type": "string"
1130
+ },
1131
+ "name": {
1132
+ "type": "string"
1133
+ }
1134
+ },
1135
+ "required": [
1136
+ "id",
1137
+ "name"
1138
+ ]
1139
+ }
1140
+ },
1141
+ "total": {
1142
+ "type": "integer"
1143
+ },
1144
+ "limit": {
1145
+ "type": "integer"
1146
+ },
1147
+ "offset": {
1148
+ "type": "integer"
1149
+ }
1150
+ },
1151
+ "required": [
1152
+ "data",
1153
+ "total",
1154
+ "limit",
1155
+ "offset"
1156
+ ]
1157
+ }
1158
+ }
1159
+ }
1160
+ }
1161
+ }
1162
+ }
1163
+ }
1164
+ },
1165
+ "webhooks": {}
1166
+ }