@connectedxm/admin 6.22.1 → 6.23.1

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.
package/openapi.json CHANGED
@@ -112,6 +112,22 @@
112
112
  "name": "Bookings::Places::Translations",
113
113
  "description": "Operations for bookings::places::translations"
114
114
  },
115
+ {
116
+ "name": "Bookings::Questions",
117
+ "description": "Operations for bookings::questions"
118
+ },
119
+ {
120
+ "name": "Bookings::Questions::Choices",
121
+ "description": "Operations for bookings::questions::choices"
122
+ },
123
+ {
124
+ "name": "Bookings::Questions::Choices::Translations",
125
+ "description": "Operations for bookings::questions::choices::translations"
126
+ },
127
+ {
128
+ "name": "Bookings::Questions::Translations",
129
+ "description": "Operations for bookings::questions::translations"
130
+ },
115
131
  {
116
132
  "name": "Bookings::Spaces",
117
133
  "description": "Create specific, individual areas within a larger place that attendees can reserve for time-slots, such as meeting rooms, booths, or photo-op locations"
@@ -9429,88 +9445,11 @@
9429
9445
  ]
9430
9446
  }
9431
9447
  },
9432
- "/bookings/places/{placeId}/spaces/{spaceId}/slots": {
9448
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions": {
9433
9449
  "get": {
9434
- "operationId": "GetBookingSpaceSlots",
9435
- "summary": "Get Booking Space Slots",
9436
- "description": "Get Booking Space Slots endpoint",
9437
- "parameters": [
9438
- {
9439
- "in": "path",
9440
- "name": "placeId",
9441
- "schema": {
9442
- "type": "string"
9443
- },
9444
- "description": "The place identifier",
9445
- "required": true
9446
- },
9447
- {
9448
- "in": "path",
9449
- "name": "spaceId",
9450
- "schema": {
9451
- "type": "string"
9452
- },
9453
- "description": "The space identifier",
9454
- "required": true
9455
- },
9456
- {
9457
- "in": "query",
9458
- "name": "firstDayOfMonth",
9459
- "schema": {
9460
- "type": "string"
9461
- },
9462
- "description": "Filter by firstDayOfMonth",
9463
- "required": true
9464
- }
9465
- ],
9466
- "responses": {
9467
- "200": {
9468
- "description": "Successful response",
9469
- "content": {
9470
- "application/json": {
9471
- "schema": {
9472
- "type": "object",
9473
- "properties": {
9474
- "status": {
9475
- "type": "string",
9476
- "enum": [
9477
- "ok"
9478
- ]
9479
- },
9480
- "message": {
9481
- "type": "string",
9482
- "example": "Success message."
9483
- },
9484
- "data": {
9485
- "type": "array",
9486
- "items": {
9487
- "type": "array",
9488
- "items": {
9489
- "type": "object"
9490
- }
9491
- }
9492
- }
9493
- },
9494
- "required": [
9495
- "status",
9496
- "message",
9497
- "data"
9498
- ]
9499
- }
9500
- }
9501
- }
9502
- }
9503
- },
9504
- "tags": [
9505
- "Bookings"
9506
- ]
9507
- }
9508
- },
9509
- "/bookings/places/{placeId}/spaces/{spaceId}/translations": {
9510
- "get": {
9511
- "operationId": "GetBookingSpaceTranslations",
9512
- "summary": "Get Booking Space Translations",
9513
- "description": "Get Booking Space Translations endpoint",
9450
+ "operationId": "GetBookingSpaceQuestions",
9451
+ "summary": "Get Booking Space Questions",
9452
+ "description": "Get Booking Space Questions endpoint",
9514
9453
  "parameters": [
9515
9454
  {
9516
9455
  "in": "path",
@@ -9593,7 +9532,7 @@
9593
9532
  "data": {
9594
9533
  "type": "array",
9595
9534
  "items": {
9596
- "$ref": "#/components/schemas/BookingSpaceTranslation"
9535
+ "$ref": "#/components/schemas/BookingSpaceQuestion"
9597
9536
  }
9598
9537
  },
9599
9538
  "count": {
@@ -9612,15 +9551,13 @@
9612
9551
  }
9613
9552
  },
9614
9553
  "tags": [
9615
- "Bookings"
9554
+ "Bookings::Questions"
9616
9555
  ]
9617
- }
9618
- },
9619
- "/bookings/places/{placeId}/spaces/{spaceId}/translations/{locale}": {
9620
- "get": {
9621
- "operationId": "GetBookingSpaceTranslation",
9622
- "summary": "Get Booking Space Translation",
9623
- "description": "Get Booking Space Translation endpoint",
9556
+ },
9557
+ "post": {
9558
+ "operationId": "CreateBookingSpaceQuestion",
9559
+ "summary": "Create Booking Space Question",
9560
+ "description": "Create Booking Space Question endpoint",
9624
9561
  "parameters": [
9625
9562
  {
9626
9563
  "in": "path",
@@ -9639,17 +9576,18 @@
9639
9576
  },
9640
9577
  "description": "The space identifier",
9641
9578
  "required": true
9642
- },
9643
- {
9644
- "in": "path",
9645
- "name": "locale",
9646
- "schema": {
9647
- "type": "string"
9648
- },
9649
- "description": "The locale identifier",
9650
- "required": true
9651
9579
  }
9652
9580
  ],
9581
+ "requestBody": {
9582
+ "required": true,
9583
+ "content": {
9584
+ "application/json": {
9585
+ "schema": {
9586
+ "$ref": "#/components/schemas/BookingSpaceQuestionCreateInputs"
9587
+ }
9588
+ }
9589
+ }
9590
+ },
9653
9591
  "responses": {
9654
9592
  "200": {
9655
9593
  "description": "Successful response",
@@ -9669,12 +9607,7 @@
9669
9607
  "example": "Success message."
9670
9608
  },
9671
9609
  "data": {
9672
- "allOf": [
9673
- {
9674
- "$ref": "#/components/schemas/BookingSpaceTranslation"
9675
- }
9676
- ],
9677
- "nullable": true
9610
+ "$ref": "#/components/schemas/BookingSpaceQuestion"
9678
9611
  }
9679
9612
  },
9680
9613
  "required": [
@@ -9688,13 +9621,15 @@
9688
9621
  }
9689
9622
  },
9690
9623
  "tags": [
9691
- "Bookings"
9624
+ "Bookings::Questions"
9692
9625
  ]
9693
- },
9626
+ }
9627
+ },
9628
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/reorder": {
9694
9629
  "put": {
9695
- "operationId": "UpdateBookingSpaceTranslation",
9696
- "summary": "Update Booking Space Translation",
9697
- "description": "Update Booking Space Translation endpoint",
9630
+ "operationId": "ReorderBookingSpaceQuestions",
9631
+ "summary": "Reorder Booking Space Questions",
9632
+ "description": "Reorder Booking Space Questions endpoint",
9698
9633
  "parameters": [
9699
9634
  {
9700
9635
  "in": "path",
@@ -9715,25 +9650,18 @@
9715
9650
  "required": true
9716
9651
  },
9717
9652
  {
9718
- "in": "path",
9719
- "name": "locale",
9653
+ "in": "query",
9654
+ "name": "questionsIds",
9720
9655
  "schema": {
9721
- "type": "string"
9656
+ "type": "array",
9657
+ "items": {
9658
+ "type": "string"
9659
+ }
9722
9660
  },
9723
- "description": "The locale identifier",
9661
+ "description": "Filter by questionsIds",
9724
9662
  "required": true
9725
9663
  }
9726
9664
  ],
9727
- "requestBody": {
9728
- "required": true,
9729
- "content": {
9730
- "application/json": {
9731
- "schema": {
9732
- "$ref": "#/components/schemas/BookingSpaceTranslationUpdateInputs"
9733
- }
9734
- }
9735
- }
9736
- },
9737
9665
  "responses": {
9738
9666
  "200": {
9739
9667
  "description": "Successful response",
@@ -9753,7 +9681,10 @@
9753
9681
  "example": "Success message."
9754
9682
  },
9755
9683
  "data": {
9756
- "type": "object"
9684
+ "type": "array",
9685
+ "items": {
9686
+ "$ref": "#/components/schemas/BookingSpaceQuestion"
9687
+ }
9757
9688
  }
9758
9689
  },
9759
9690
  "required": [
@@ -9767,13 +9698,15 @@
9767
9698
  }
9768
9699
  },
9769
9700
  "tags": [
9770
- "Bookings::Spaces::Translations"
9701
+ "Bookings::Questions"
9771
9702
  ]
9772
- },
9773
- "delete": {
9774
- "operationId": "DeleteBookingSpaceTranslation",
9775
- "summary": "Delete Booking Space Translation",
9776
- "description": "Delete Booking Space Translation endpoint",
9703
+ }
9704
+ },
9705
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}": {
9706
+ "get": {
9707
+ "operationId": "GetBookingSpaceQuestion",
9708
+ "summary": "Get Booking Space Question",
9709
+ "description": "Get Booking Space Question endpoint",
9777
9710
  "parameters": [
9778
9711
  {
9779
9712
  "in": "path",
@@ -9795,11 +9728,11 @@
9795
9728
  },
9796
9729
  {
9797
9730
  "in": "path",
9798
- "name": "locale",
9731
+ "name": "questionId",
9799
9732
  "schema": {
9800
9733
  "type": "string"
9801
9734
  },
9802
- "description": "The locale identifier",
9735
+ "description": "The question identifier",
9803
9736
  "required": true
9804
9737
  }
9805
9738
  ],
@@ -9822,7 +9755,7 @@
9822
9755
  "example": "Success message."
9823
9756
  },
9824
9757
  "data": {
9825
- "type": "object"
9758
+ "$ref": "#/components/schemas/BookingSpaceQuestion"
9826
9759
  }
9827
9760
  },
9828
9761
  "required": [
@@ -9836,15 +9769,13 @@
9836
9769
  }
9837
9770
  },
9838
9771
  "tags": [
9839
- "Bookings::Spaces::Translations"
9772
+ "Bookings::Questions"
9840
9773
  ]
9841
- }
9842
- },
9843
- "/bookings/places/{placeId}/translations": {
9844
- "get": {
9845
- "operationId": "GetBookingPlaceTranslations",
9846
- "summary": "Get Booking Place Translations",
9847
- "description": "Get Booking Place Translations endpoint",
9774
+ },
9775
+ "put": {
9776
+ "operationId": "UpdateBookingSpaceQuestion",
9777
+ "summary": "Update Booking Space Question",
9778
+ "description": "Update Booking Space Question endpoint",
9848
9779
  "parameters": [
9849
9780
  {
9850
9781
  "in": "path",
@@ -9856,47 +9787,34 @@
9856
9787
  "required": true
9857
9788
  },
9858
9789
  {
9859
- "in": "query",
9860
- "name": "page",
9861
- "schema": {
9862
- "type": "integer",
9863
- "minimum": 1,
9864
- "default": 1
9865
- },
9866
- "description": "Page number",
9867
- "required": false
9868
- },
9869
- {
9870
- "in": "query",
9871
- "name": "pageSize",
9872
- "schema": {
9873
- "type": "integer",
9874
- "minimum": 1,
9875
- "maximum": 100,
9876
- "default": 25
9877
- },
9878
- "description": "Number of items per page",
9879
- "required": false
9880
- },
9881
- {
9882
- "in": "query",
9883
- "name": "orderBy",
9790
+ "in": "path",
9791
+ "name": "spaceId",
9884
9792
  "schema": {
9885
9793
  "type": "string"
9886
9794
  },
9887
- "description": "Field to order by",
9888
- "required": false
9795
+ "description": "The space identifier",
9796
+ "required": true
9889
9797
  },
9890
9798
  {
9891
- "in": "query",
9892
- "name": "search",
9799
+ "in": "path",
9800
+ "name": "questionId",
9893
9801
  "schema": {
9894
9802
  "type": "string"
9895
9803
  },
9896
- "description": "Search query",
9897
- "required": false
9804
+ "description": "The question identifier",
9805
+ "required": true
9898
9806
  }
9899
9807
  ],
9808
+ "requestBody": {
9809
+ "required": true,
9810
+ "content": {
9811
+ "application/json": {
9812
+ "schema": {
9813
+ "$ref": "#/components/schemas/BookingSpaceQuestionUpdateInputs"
9814
+ }
9815
+ }
9816
+ }
9817
+ },
9900
9818
  "responses": {
9901
9819
  "200": {
9902
9820
  "description": "Successful response",
@@ -9916,14 +9834,7 @@
9916
9834
  "example": "Success message."
9917
9835
  },
9918
9836
  "data": {
9919
- "type": "array",
9920
- "items": {
9921
- "$ref": "#/components/schemas/BookingPlaceTranslation"
9922
- }
9923
- },
9924
- "count": {
9925
- "type": "integer",
9926
- "example": 100
9837
+ "$ref": "#/components/schemas/BookingSpaceQuestion"
9927
9838
  }
9928
9839
  },
9929
9840
  "required": [
@@ -9937,15 +9848,13 @@
9937
9848
  }
9938
9849
  },
9939
9850
  "tags": [
9940
- "Bookings"
9851
+ "Bookings::Questions"
9941
9852
  ]
9942
- }
9943
- },
9944
- "/bookings/places/{placeId}/translations/{locale}": {
9945
- "get": {
9946
- "operationId": "GetBookingPlaceTranslation",
9947
- "summary": "Get Booking Place Translation",
9948
- "description": "Get Booking Place Translation endpoint",
9853
+ },
9854
+ "delete": {
9855
+ "operationId": "DeleteBookingSpaceQuestion",
9856
+ "summary": "Delete Booking Space Question",
9857
+ "description": "Delete Booking Space Question endpoint",
9949
9858
  "parameters": [
9950
9859
  {
9951
9860
  "in": "path",
@@ -9958,11 +9867,1960 @@
9958
9867
  },
9959
9868
  {
9960
9869
  "in": "path",
9961
- "name": "locale",
9870
+ "name": "spaceId",
9962
9871
  "schema": {
9963
9872
  "type": "string"
9964
9873
  },
9965
- "description": "The locale identifier",
9874
+ "description": "The space identifier",
9875
+ "required": true
9876
+ },
9877
+ {
9878
+ "in": "path",
9879
+ "name": "questionId",
9880
+ "schema": {
9881
+ "type": "string"
9882
+ },
9883
+ "description": "The question identifier",
9884
+ "required": true
9885
+ }
9886
+ ],
9887
+ "responses": {
9888
+ "200": {
9889
+ "description": "Successful response",
9890
+ "content": {
9891
+ "application/json": {
9892
+ "schema": {
9893
+ "type": "object",
9894
+ "properties": {
9895
+ "status": {
9896
+ "type": "string",
9897
+ "enum": [
9898
+ "ok"
9899
+ ]
9900
+ },
9901
+ "message": {
9902
+ "type": "string",
9903
+ "example": "Success message."
9904
+ },
9905
+ "data": {
9906
+ "nullable": true
9907
+ }
9908
+ },
9909
+ "required": [
9910
+ "status",
9911
+ "message",
9912
+ "data"
9913
+ ]
9914
+ }
9915
+ }
9916
+ }
9917
+ }
9918
+ },
9919
+ "tags": [
9920
+ "Bookings::Questions"
9921
+ ]
9922
+ }
9923
+ },
9924
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}/choices": {
9925
+ "get": {
9926
+ "operationId": "GetBookingSpaceQuestionChoices",
9927
+ "summary": "Get Booking Space Question Choices",
9928
+ "description": "Get Booking Space Question Choices endpoint",
9929
+ "parameters": [
9930
+ {
9931
+ "in": "path",
9932
+ "name": "placeId",
9933
+ "schema": {
9934
+ "type": "string"
9935
+ },
9936
+ "description": "The place identifier",
9937
+ "required": true
9938
+ },
9939
+ {
9940
+ "in": "path",
9941
+ "name": "spaceId",
9942
+ "schema": {
9943
+ "type": "string"
9944
+ },
9945
+ "description": "The space identifier",
9946
+ "required": true
9947
+ },
9948
+ {
9949
+ "in": "path",
9950
+ "name": "questionId",
9951
+ "schema": {
9952
+ "type": "string"
9953
+ },
9954
+ "description": "The question identifier",
9955
+ "required": true
9956
+ },
9957
+ {
9958
+ "in": "query",
9959
+ "name": "page",
9960
+ "schema": {
9961
+ "type": "integer",
9962
+ "minimum": 1,
9963
+ "default": 1
9964
+ },
9965
+ "description": "Page number",
9966
+ "required": false
9967
+ },
9968
+ {
9969
+ "in": "query",
9970
+ "name": "pageSize",
9971
+ "schema": {
9972
+ "type": "integer",
9973
+ "minimum": 1,
9974
+ "maximum": 100,
9975
+ "default": 25
9976
+ },
9977
+ "description": "Number of items per page",
9978
+ "required": false
9979
+ },
9980
+ {
9981
+ "in": "query",
9982
+ "name": "orderBy",
9983
+ "schema": {
9984
+ "type": "string"
9985
+ },
9986
+ "description": "Field to order by",
9987
+ "required": false
9988
+ },
9989
+ {
9990
+ "in": "query",
9991
+ "name": "search",
9992
+ "schema": {
9993
+ "type": "string"
9994
+ },
9995
+ "description": "Search query",
9996
+ "required": false
9997
+ }
9998
+ ],
9999
+ "responses": {
10000
+ "200": {
10001
+ "description": "Successful response",
10002
+ "content": {
10003
+ "application/json": {
10004
+ "schema": {
10005
+ "type": "object",
10006
+ "properties": {
10007
+ "status": {
10008
+ "type": "string",
10009
+ "enum": [
10010
+ "ok"
10011
+ ]
10012
+ },
10013
+ "message": {
10014
+ "type": "string",
10015
+ "example": "Success message."
10016
+ },
10017
+ "data": {
10018
+ "type": "array",
10019
+ "items": {
10020
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoice"
10021
+ }
10022
+ },
10023
+ "count": {
10024
+ "type": "integer",
10025
+ "example": 100
10026
+ }
10027
+ },
10028
+ "required": [
10029
+ "status",
10030
+ "message",
10031
+ "data"
10032
+ ]
10033
+ }
10034
+ }
10035
+ }
10036
+ }
10037
+ },
10038
+ "tags": [
10039
+ "Bookings::Questions::Choices"
10040
+ ]
10041
+ },
10042
+ "post": {
10043
+ "operationId": "CreateBookingSpaceQuestionChoice",
10044
+ "summary": "Create Booking Space Question Choice",
10045
+ "description": "Create Booking Space Question Choice endpoint",
10046
+ "parameters": [
10047
+ {
10048
+ "in": "path",
10049
+ "name": "placeId",
10050
+ "schema": {
10051
+ "type": "string"
10052
+ },
10053
+ "description": "The place identifier",
10054
+ "required": true
10055
+ },
10056
+ {
10057
+ "in": "path",
10058
+ "name": "spaceId",
10059
+ "schema": {
10060
+ "type": "string"
10061
+ },
10062
+ "description": "The space identifier",
10063
+ "required": true
10064
+ },
10065
+ {
10066
+ "in": "path",
10067
+ "name": "questionId",
10068
+ "schema": {
10069
+ "type": "string"
10070
+ },
10071
+ "description": "The question identifier",
10072
+ "required": true
10073
+ }
10074
+ ],
10075
+ "requestBody": {
10076
+ "required": true,
10077
+ "content": {
10078
+ "application/json": {
10079
+ "schema": {
10080
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoiceCreateInputs"
10081
+ }
10082
+ }
10083
+ }
10084
+ },
10085
+ "responses": {
10086
+ "200": {
10087
+ "description": "Successful response",
10088
+ "content": {
10089
+ "application/json": {
10090
+ "schema": {
10091
+ "type": "object",
10092
+ "properties": {
10093
+ "status": {
10094
+ "type": "string",
10095
+ "enum": [
10096
+ "ok"
10097
+ ]
10098
+ },
10099
+ "message": {
10100
+ "type": "string",
10101
+ "example": "Success message."
10102
+ },
10103
+ "data": {
10104
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoice"
10105
+ }
10106
+ },
10107
+ "required": [
10108
+ "status",
10109
+ "message",
10110
+ "data"
10111
+ ]
10112
+ }
10113
+ }
10114
+ }
10115
+ }
10116
+ },
10117
+ "tags": [
10118
+ "Bookings::Questions::Choices"
10119
+ ]
10120
+ }
10121
+ },
10122
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}/choices/reorder": {
10123
+ "put": {
10124
+ "operationId": "ReorderBookingSpaceQuestionChoices",
10125
+ "summary": "Reorder Booking Space Question Choices",
10126
+ "description": "Reorder Booking Space Question Choices endpoint",
10127
+ "parameters": [
10128
+ {
10129
+ "in": "path",
10130
+ "name": "placeId",
10131
+ "schema": {
10132
+ "type": "string"
10133
+ },
10134
+ "description": "The place identifier",
10135
+ "required": true
10136
+ },
10137
+ {
10138
+ "in": "path",
10139
+ "name": "spaceId",
10140
+ "schema": {
10141
+ "type": "string"
10142
+ },
10143
+ "description": "The space identifier",
10144
+ "required": true
10145
+ },
10146
+ {
10147
+ "in": "path",
10148
+ "name": "questionId",
10149
+ "schema": {
10150
+ "type": "string"
10151
+ },
10152
+ "description": "The question identifier",
10153
+ "required": true
10154
+ },
10155
+ {
10156
+ "in": "query",
10157
+ "name": "choicesIds",
10158
+ "schema": {
10159
+ "type": "array",
10160
+ "items": {
10161
+ "type": "string"
10162
+ }
10163
+ },
10164
+ "description": "Filter by choicesIds",
10165
+ "required": true
10166
+ }
10167
+ ],
10168
+ "responses": {
10169
+ "200": {
10170
+ "description": "Successful response",
10171
+ "content": {
10172
+ "application/json": {
10173
+ "schema": {
10174
+ "type": "object",
10175
+ "properties": {
10176
+ "status": {
10177
+ "type": "string",
10178
+ "enum": [
10179
+ "ok"
10180
+ ]
10181
+ },
10182
+ "message": {
10183
+ "type": "string",
10184
+ "example": "Success message."
10185
+ },
10186
+ "data": {
10187
+ "type": "array",
10188
+ "items": {
10189
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoice"
10190
+ }
10191
+ }
10192
+ },
10193
+ "required": [
10194
+ "status",
10195
+ "message",
10196
+ "data"
10197
+ ]
10198
+ }
10199
+ }
10200
+ }
10201
+ }
10202
+ },
10203
+ "tags": [
10204
+ "Bookings::Questions::Choices"
10205
+ ]
10206
+ }
10207
+ },
10208
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}/choices/{choiceId}": {
10209
+ "get": {
10210
+ "operationId": "GetBookingSpaceQuestionChoice",
10211
+ "summary": "Get Booking Space Question Choice",
10212
+ "description": "Get Booking Space Question Choice endpoint",
10213
+ "parameters": [
10214
+ {
10215
+ "in": "path",
10216
+ "name": "placeId",
10217
+ "schema": {
10218
+ "type": "string"
10219
+ },
10220
+ "description": "The place identifier",
10221
+ "required": true
10222
+ },
10223
+ {
10224
+ "in": "path",
10225
+ "name": "spaceId",
10226
+ "schema": {
10227
+ "type": "string"
10228
+ },
10229
+ "description": "The space identifier",
10230
+ "required": true
10231
+ },
10232
+ {
10233
+ "in": "path",
10234
+ "name": "questionId",
10235
+ "schema": {
10236
+ "type": "string"
10237
+ },
10238
+ "description": "The question identifier",
10239
+ "required": true
10240
+ },
10241
+ {
10242
+ "in": "path",
10243
+ "name": "choiceId",
10244
+ "schema": {
10245
+ "type": "string"
10246
+ },
10247
+ "description": "The choice identifier",
10248
+ "required": true
10249
+ }
10250
+ ],
10251
+ "responses": {
10252
+ "200": {
10253
+ "description": "Successful response",
10254
+ "content": {
10255
+ "application/json": {
10256
+ "schema": {
10257
+ "type": "object",
10258
+ "properties": {
10259
+ "status": {
10260
+ "type": "string",
10261
+ "enum": [
10262
+ "ok"
10263
+ ]
10264
+ },
10265
+ "message": {
10266
+ "type": "string",
10267
+ "example": "Success message."
10268
+ },
10269
+ "data": {
10270
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoice"
10271
+ }
10272
+ },
10273
+ "required": [
10274
+ "status",
10275
+ "message",
10276
+ "data"
10277
+ ]
10278
+ }
10279
+ }
10280
+ }
10281
+ }
10282
+ },
10283
+ "tags": [
10284
+ "Bookings::Questions::Choices"
10285
+ ]
10286
+ },
10287
+ "put": {
10288
+ "operationId": "UpdateBookingSpaceQuestionChoice",
10289
+ "summary": "Update Booking Space Question Choice",
10290
+ "description": "Update Booking Space Question Choice endpoint",
10291
+ "parameters": [
10292
+ {
10293
+ "in": "path",
10294
+ "name": "placeId",
10295
+ "schema": {
10296
+ "type": "string"
10297
+ },
10298
+ "description": "The place identifier",
10299
+ "required": true
10300
+ },
10301
+ {
10302
+ "in": "path",
10303
+ "name": "spaceId",
10304
+ "schema": {
10305
+ "type": "string"
10306
+ },
10307
+ "description": "The space identifier",
10308
+ "required": true
10309
+ },
10310
+ {
10311
+ "in": "path",
10312
+ "name": "questionId",
10313
+ "schema": {
10314
+ "type": "string"
10315
+ },
10316
+ "description": "The question identifier",
10317
+ "required": true
10318
+ },
10319
+ {
10320
+ "in": "path",
10321
+ "name": "choiceId",
10322
+ "schema": {
10323
+ "type": "string"
10324
+ },
10325
+ "description": "The choice identifier",
10326
+ "required": true
10327
+ }
10328
+ ],
10329
+ "requestBody": {
10330
+ "required": true,
10331
+ "content": {
10332
+ "application/json": {
10333
+ "schema": {
10334
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoiceUpdateInputs"
10335
+ }
10336
+ }
10337
+ }
10338
+ },
10339
+ "responses": {
10340
+ "200": {
10341
+ "description": "Successful response",
10342
+ "content": {
10343
+ "application/json": {
10344
+ "schema": {
10345
+ "type": "object",
10346
+ "properties": {
10347
+ "status": {
10348
+ "type": "string",
10349
+ "enum": [
10350
+ "ok"
10351
+ ]
10352
+ },
10353
+ "message": {
10354
+ "type": "string",
10355
+ "example": "Success message."
10356
+ },
10357
+ "data": {
10358
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoice"
10359
+ }
10360
+ },
10361
+ "required": [
10362
+ "status",
10363
+ "message",
10364
+ "data"
10365
+ ]
10366
+ }
10367
+ }
10368
+ }
10369
+ }
10370
+ },
10371
+ "tags": [
10372
+ "Bookings::Questions::Choices"
10373
+ ]
10374
+ },
10375
+ "delete": {
10376
+ "operationId": "DeleteBookingSpaceQuestionChoice",
10377
+ "summary": "Delete Booking Space Question Choice",
10378
+ "description": "Delete Booking Space Question Choice endpoint",
10379
+ "parameters": [
10380
+ {
10381
+ "in": "path",
10382
+ "name": "placeId",
10383
+ "schema": {
10384
+ "type": "string"
10385
+ },
10386
+ "description": "The place identifier",
10387
+ "required": true
10388
+ },
10389
+ {
10390
+ "in": "path",
10391
+ "name": "spaceId",
10392
+ "schema": {
10393
+ "type": "string"
10394
+ },
10395
+ "description": "The space identifier",
10396
+ "required": true
10397
+ },
10398
+ {
10399
+ "in": "path",
10400
+ "name": "questionId",
10401
+ "schema": {
10402
+ "type": "string"
10403
+ },
10404
+ "description": "The question identifier",
10405
+ "required": true
10406
+ },
10407
+ {
10408
+ "in": "path",
10409
+ "name": "choiceId",
10410
+ "schema": {
10411
+ "type": "string"
10412
+ },
10413
+ "description": "The choice identifier",
10414
+ "required": true
10415
+ }
10416
+ ],
10417
+ "responses": {
10418
+ "200": {
10419
+ "description": "Successful response",
10420
+ "content": {
10421
+ "application/json": {
10422
+ "schema": {
10423
+ "type": "object",
10424
+ "properties": {
10425
+ "status": {
10426
+ "type": "string",
10427
+ "enum": [
10428
+ "ok"
10429
+ ]
10430
+ },
10431
+ "message": {
10432
+ "type": "string",
10433
+ "example": "Success message."
10434
+ },
10435
+ "data": {
10436
+ "nullable": true
10437
+ }
10438
+ },
10439
+ "required": [
10440
+ "status",
10441
+ "message",
10442
+ "data"
10443
+ ]
10444
+ }
10445
+ }
10446
+ }
10447
+ }
10448
+ },
10449
+ "tags": [
10450
+ "Bookings::Questions::Choices"
10451
+ ]
10452
+ }
10453
+ },
10454
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}/choices/{choiceId}/translations": {
10455
+ "get": {
10456
+ "operationId": "GetBookingSpaceQuestionChoiceTranslations",
10457
+ "summary": "Get Booking Space Question Choice Translations",
10458
+ "description": "Get Booking Space Question Choice Translations endpoint",
10459
+ "parameters": [
10460
+ {
10461
+ "in": "path",
10462
+ "name": "placeId",
10463
+ "schema": {
10464
+ "type": "string"
10465
+ },
10466
+ "description": "The place identifier",
10467
+ "required": true
10468
+ },
10469
+ {
10470
+ "in": "path",
10471
+ "name": "spaceId",
10472
+ "schema": {
10473
+ "type": "string"
10474
+ },
10475
+ "description": "The space identifier",
10476
+ "required": true
10477
+ },
10478
+ {
10479
+ "in": "path",
10480
+ "name": "questionId",
10481
+ "schema": {
10482
+ "type": "string"
10483
+ },
10484
+ "description": "The question identifier",
10485
+ "required": true
10486
+ },
10487
+ {
10488
+ "in": "path",
10489
+ "name": "choiceId",
10490
+ "schema": {
10491
+ "type": "string"
10492
+ },
10493
+ "description": "The choice identifier",
10494
+ "required": true
10495
+ }
10496
+ ],
10497
+ "responses": {
10498
+ "200": {
10499
+ "description": "Successful response",
10500
+ "content": {
10501
+ "application/json": {
10502
+ "schema": {
10503
+ "type": "object",
10504
+ "properties": {
10505
+ "status": {
10506
+ "type": "string",
10507
+ "enum": [
10508
+ "ok"
10509
+ ]
10510
+ },
10511
+ "message": {
10512
+ "type": "string",
10513
+ "example": "Success message."
10514
+ },
10515
+ "data": {
10516
+ "type": "array",
10517
+ "items": {
10518
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoiceTranslation"
10519
+ }
10520
+ }
10521
+ },
10522
+ "required": [
10523
+ "status",
10524
+ "message",
10525
+ "data"
10526
+ ]
10527
+ }
10528
+ }
10529
+ }
10530
+ }
10531
+ },
10532
+ "tags": [
10533
+ "Bookings::Questions::Choices::Translations"
10534
+ ]
10535
+ }
10536
+ },
10537
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}/choices/{choiceId}/translations/{locale}": {
10538
+ "get": {
10539
+ "operationId": "GetBookingSpaceQuestionChoiceTranslation",
10540
+ "summary": "Get Booking Space Question Choice Translation",
10541
+ "description": "Get Booking Space Question Choice Translation endpoint",
10542
+ "parameters": [
10543
+ {
10544
+ "in": "path",
10545
+ "name": "placeId",
10546
+ "schema": {
10547
+ "type": "string"
10548
+ },
10549
+ "description": "The place identifier",
10550
+ "required": true
10551
+ },
10552
+ {
10553
+ "in": "path",
10554
+ "name": "spaceId",
10555
+ "schema": {
10556
+ "type": "string"
10557
+ },
10558
+ "description": "The space identifier",
10559
+ "required": true
10560
+ },
10561
+ {
10562
+ "in": "path",
10563
+ "name": "questionId",
10564
+ "schema": {
10565
+ "type": "string"
10566
+ },
10567
+ "description": "The question identifier",
10568
+ "required": true
10569
+ },
10570
+ {
10571
+ "in": "path",
10572
+ "name": "choiceId",
10573
+ "schema": {
10574
+ "type": "string"
10575
+ },
10576
+ "description": "The choice identifier",
10577
+ "required": true
10578
+ },
10579
+ {
10580
+ "in": "path",
10581
+ "name": "locale",
10582
+ "schema": {
10583
+ "type": "string"
10584
+ },
10585
+ "description": "The locale identifier",
10586
+ "required": true
10587
+ }
10588
+ ],
10589
+ "responses": {
10590
+ "200": {
10591
+ "description": "Successful response",
10592
+ "content": {
10593
+ "application/json": {
10594
+ "schema": {
10595
+ "type": "object",
10596
+ "properties": {
10597
+ "status": {
10598
+ "type": "string",
10599
+ "enum": [
10600
+ "ok"
10601
+ ]
10602
+ },
10603
+ "message": {
10604
+ "type": "string",
10605
+ "example": "Success message."
10606
+ },
10607
+ "data": {
10608
+ "allOf": [
10609
+ {
10610
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoiceTranslation"
10611
+ }
10612
+ ],
10613
+ "nullable": true
10614
+ }
10615
+ },
10616
+ "required": [
10617
+ "status",
10618
+ "message",
10619
+ "data"
10620
+ ]
10621
+ }
10622
+ }
10623
+ }
10624
+ }
10625
+ },
10626
+ "tags": [
10627
+ "Bookings::Questions::Choices::Translations"
10628
+ ]
10629
+ },
10630
+ "put": {
10631
+ "operationId": "UpdateBookingSpaceQuestionChoiceTranslation",
10632
+ "summary": "Update Booking Space Question Choice Translation",
10633
+ "description": "Update Booking Space Question Choice Translation endpoint",
10634
+ "parameters": [
10635
+ {
10636
+ "in": "path",
10637
+ "name": "placeId",
10638
+ "schema": {
10639
+ "type": "string"
10640
+ },
10641
+ "description": "The place identifier",
10642
+ "required": true
10643
+ },
10644
+ {
10645
+ "in": "path",
10646
+ "name": "spaceId",
10647
+ "schema": {
10648
+ "type": "string"
10649
+ },
10650
+ "description": "The space identifier",
10651
+ "required": true
10652
+ },
10653
+ {
10654
+ "in": "path",
10655
+ "name": "questionId",
10656
+ "schema": {
10657
+ "type": "string"
10658
+ },
10659
+ "description": "The question identifier",
10660
+ "required": true
10661
+ },
10662
+ {
10663
+ "in": "path",
10664
+ "name": "choiceId",
10665
+ "schema": {
10666
+ "type": "string"
10667
+ },
10668
+ "description": "The choice identifier",
10669
+ "required": true
10670
+ },
10671
+ {
10672
+ "in": "path",
10673
+ "name": "locale",
10674
+ "schema": {
10675
+ "type": "string"
10676
+ },
10677
+ "description": "The locale identifier",
10678
+ "required": true
10679
+ }
10680
+ ],
10681
+ "requestBody": {
10682
+ "required": true,
10683
+ "content": {
10684
+ "application/json": {
10685
+ "schema": {
10686
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoiceTranslationUpdateInputs"
10687
+ }
10688
+ }
10689
+ }
10690
+ },
10691
+ "responses": {
10692
+ "200": {
10693
+ "description": "Successful response",
10694
+ "content": {
10695
+ "application/json": {
10696
+ "schema": {
10697
+ "type": "object",
10698
+ "properties": {
10699
+ "status": {
10700
+ "type": "string",
10701
+ "enum": [
10702
+ "ok"
10703
+ ]
10704
+ },
10705
+ "message": {
10706
+ "type": "string",
10707
+ "example": "Success message."
10708
+ },
10709
+ "data": {
10710
+ "$ref": "#/components/schemas/BookingSpaceQuestionChoiceTranslation"
10711
+ }
10712
+ },
10713
+ "required": [
10714
+ "status",
10715
+ "message",
10716
+ "data"
10717
+ ]
10718
+ }
10719
+ }
10720
+ }
10721
+ }
10722
+ },
10723
+ "tags": [
10724
+ "Bookings::Questions::Choices::Translations"
10725
+ ]
10726
+ },
10727
+ "delete": {
10728
+ "operationId": "DeleteBookingSpaceQuestionChoiceTranslation",
10729
+ "summary": "Delete Booking Space Question Choice Translation",
10730
+ "description": "Delete Booking Space Question Choice Translation endpoint",
10731
+ "parameters": [
10732
+ {
10733
+ "in": "path",
10734
+ "name": "placeId",
10735
+ "schema": {
10736
+ "type": "string"
10737
+ },
10738
+ "description": "The place identifier",
10739
+ "required": true
10740
+ },
10741
+ {
10742
+ "in": "path",
10743
+ "name": "spaceId",
10744
+ "schema": {
10745
+ "type": "string"
10746
+ },
10747
+ "description": "The space identifier",
10748
+ "required": true
10749
+ },
10750
+ {
10751
+ "in": "path",
10752
+ "name": "questionId",
10753
+ "schema": {
10754
+ "type": "string"
10755
+ },
10756
+ "description": "The question identifier",
10757
+ "required": true
10758
+ },
10759
+ {
10760
+ "in": "path",
10761
+ "name": "choiceId",
10762
+ "schema": {
10763
+ "type": "string"
10764
+ },
10765
+ "description": "The choice identifier",
10766
+ "required": true
10767
+ },
10768
+ {
10769
+ "in": "path",
10770
+ "name": "locale",
10771
+ "schema": {
10772
+ "type": "string"
10773
+ },
10774
+ "description": "The locale identifier",
10775
+ "required": true
10776
+ }
10777
+ ],
10778
+ "responses": {
10779
+ "200": {
10780
+ "description": "Successful response",
10781
+ "content": {
10782
+ "application/json": {
10783
+ "schema": {
10784
+ "type": "object",
10785
+ "properties": {
10786
+ "status": {
10787
+ "type": "string",
10788
+ "enum": [
10789
+ "ok"
10790
+ ]
10791
+ },
10792
+ "message": {
10793
+ "type": "string",
10794
+ "example": "Success message."
10795
+ },
10796
+ "data": {
10797
+ "type": "object"
10798
+ }
10799
+ },
10800
+ "required": [
10801
+ "status",
10802
+ "message",
10803
+ "data"
10804
+ ]
10805
+ }
10806
+ }
10807
+ }
10808
+ }
10809
+ },
10810
+ "tags": [
10811
+ "Bookings::Questions::Choices::Translations"
10812
+ ]
10813
+ }
10814
+ },
10815
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}/searchlist": {
10816
+ "put": {
10817
+ "operationId": "AttachBookingSpaceQuestionSearchList",
10818
+ "summary": "Attach Booking Space Question Search List",
10819
+ "description": "Attach Booking Space Question Search List endpoint",
10820
+ "parameters": [
10821
+ {
10822
+ "in": "path",
10823
+ "name": "placeId",
10824
+ "schema": {
10825
+ "type": "string"
10826
+ },
10827
+ "description": "The place identifier",
10828
+ "required": true
10829
+ },
10830
+ {
10831
+ "in": "path",
10832
+ "name": "spaceId",
10833
+ "schema": {
10834
+ "type": "string"
10835
+ },
10836
+ "description": "The space identifier",
10837
+ "required": true
10838
+ },
10839
+ {
10840
+ "in": "path",
10841
+ "name": "questionId",
10842
+ "schema": {
10843
+ "type": "string"
10844
+ },
10845
+ "description": "The question identifier",
10846
+ "required": true
10847
+ }
10848
+ ],
10849
+ "requestBody": {
10850
+ "required": true,
10851
+ "content": {
10852
+ "application/json": {
10853
+ "schema": {
10854
+ "$ref": "#/components/schemas/AttachSearchListInputs"
10855
+ }
10856
+ }
10857
+ }
10858
+ },
10859
+ "responses": {
10860
+ "200": {
10861
+ "description": "Successful response",
10862
+ "content": {
10863
+ "application/json": {
10864
+ "schema": {
10865
+ "type": "object",
10866
+ "properties": {
10867
+ "status": {
10868
+ "type": "string",
10869
+ "enum": [
10870
+ "ok"
10871
+ ]
10872
+ },
10873
+ "message": {
10874
+ "type": "string",
10875
+ "example": "Success message."
10876
+ },
10877
+ "data": {
10878
+ "$ref": "#/components/schemas/BookingSpaceQuestion"
10879
+ }
10880
+ },
10881
+ "required": [
10882
+ "status",
10883
+ "message",
10884
+ "data"
10885
+ ]
10886
+ }
10887
+ }
10888
+ }
10889
+ }
10890
+ },
10891
+ "tags": [
10892
+ "Bookings::Questions"
10893
+ ]
10894
+ },
10895
+ "delete": {
10896
+ "operationId": "DetachBookingSpaceQuestionSearchList",
10897
+ "summary": "Detach Booking Space Question Search List",
10898
+ "description": "Detach Booking Space Question Search List endpoint",
10899
+ "parameters": [
10900
+ {
10901
+ "in": "path",
10902
+ "name": "placeId",
10903
+ "schema": {
10904
+ "type": "string"
10905
+ },
10906
+ "description": "The place identifier",
10907
+ "required": true
10908
+ },
10909
+ {
10910
+ "in": "path",
10911
+ "name": "spaceId",
10912
+ "schema": {
10913
+ "type": "string"
10914
+ },
10915
+ "description": "The space identifier",
10916
+ "required": true
10917
+ },
10918
+ {
10919
+ "in": "path",
10920
+ "name": "questionId",
10921
+ "schema": {
10922
+ "type": "string"
10923
+ },
10924
+ "description": "The question identifier",
10925
+ "required": true
10926
+ }
10927
+ ],
10928
+ "responses": {
10929
+ "200": {
10930
+ "description": "Successful response",
10931
+ "content": {
10932
+ "application/json": {
10933
+ "schema": {
10934
+ "type": "object",
10935
+ "properties": {
10936
+ "status": {
10937
+ "type": "string",
10938
+ "enum": [
10939
+ "ok"
10940
+ ]
10941
+ },
10942
+ "message": {
10943
+ "type": "string",
10944
+ "example": "Success message."
10945
+ },
10946
+ "data": {
10947
+ "$ref": "#/components/schemas/BookingSpaceQuestion"
10948
+ }
10949
+ },
10950
+ "required": [
10951
+ "status",
10952
+ "message",
10953
+ "data"
10954
+ ]
10955
+ }
10956
+ }
10957
+ }
10958
+ }
10959
+ },
10960
+ "tags": [
10961
+ "Bookings::Questions"
10962
+ ]
10963
+ }
10964
+ },
10965
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}/translations": {
10966
+ "get": {
10967
+ "operationId": "GetBookingSpaceQuestionTranslations",
10968
+ "summary": "Get Booking Space Question Translations",
10969
+ "description": "Get Booking Space Question Translations endpoint",
10970
+ "parameters": [
10971
+ {
10972
+ "in": "path",
10973
+ "name": "placeId",
10974
+ "schema": {
10975
+ "type": "string"
10976
+ },
10977
+ "description": "The place identifier",
10978
+ "required": true
10979
+ },
10980
+ {
10981
+ "in": "path",
10982
+ "name": "spaceId",
10983
+ "schema": {
10984
+ "type": "string"
10985
+ },
10986
+ "description": "The space identifier",
10987
+ "required": true
10988
+ },
10989
+ {
10990
+ "in": "path",
10991
+ "name": "questionId",
10992
+ "schema": {
10993
+ "type": "string"
10994
+ },
10995
+ "description": "The question identifier",
10996
+ "required": true
10997
+ }
10998
+ ],
10999
+ "responses": {
11000
+ "200": {
11001
+ "description": "Successful response",
11002
+ "content": {
11003
+ "application/json": {
11004
+ "schema": {
11005
+ "type": "object",
11006
+ "properties": {
11007
+ "status": {
11008
+ "type": "string",
11009
+ "enum": [
11010
+ "ok"
11011
+ ]
11012
+ },
11013
+ "message": {
11014
+ "type": "string",
11015
+ "example": "Success message."
11016
+ },
11017
+ "data": {
11018
+ "type": "array",
11019
+ "items": {
11020
+ "$ref": "#/components/schemas/BookingSpaceQuestionTranslation"
11021
+ }
11022
+ }
11023
+ },
11024
+ "required": [
11025
+ "status",
11026
+ "message",
11027
+ "data"
11028
+ ]
11029
+ }
11030
+ }
11031
+ }
11032
+ }
11033
+ },
11034
+ "tags": [
11035
+ "Bookings::Questions::Translations"
11036
+ ]
11037
+ }
11038
+ },
11039
+ "/bookings/places/{placeId}/spaces/{spaceId}/questions/{questionId}/translations/{locale}": {
11040
+ "get": {
11041
+ "operationId": "GetBookingSpaceQuestionTranslation",
11042
+ "summary": "Get Booking Space Question Translation",
11043
+ "description": "Get Booking Space Question Translation endpoint",
11044
+ "parameters": [
11045
+ {
11046
+ "in": "path",
11047
+ "name": "placeId",
11048
+ "schema": {
11049
+ "type": "string"
11050
+ },
11051
+ "description": "The place identifier",
11052
+ "required": true
11053
+ },
11054
+ {
11055
+ "in": "path",
11056
+ "name": "spaceId",
11057
+ "schema": {
11058
+ "type": "string"
11059
+ },
11060
+ "description": "The space identifier",
11061
+ "required": true
11062
+ },
11063
+ {
11064
+ "in": "path",
11065
+ "name": "questionId",
11066
+ "schema": {
11067
+ "type": "string"
11068
+ },
11069
+ "description": "The question identifier",
11070
+ "required": true
11071
+ },
11072
+ {
11073
+ "in": "path",
11074
+ "name": "locale",
11075
+ "schema": {
11076
+ "type": "string"
11077
+ },
11078
+ "description": "The locale identifier",
11079
+ "required": true
11080
+ }
11081
+ ],
11082
+ "responses": {
11083
+ "200": {
11084
+ "description": "Successful response",
11085
+ "content": {
11086
+ "application/json": {
11087
+ "schema": {
11088
+ "type": "object",
11089
+ "properties": {
11090
+ "status": {
11091
+ "type": "string",
11092
+ "enum": [
11093
+ "ok"
11094
+ ]
11095
+ },
11096
+ "message": {
11097
+ "type": "string",
11098
+ "example": "Success message."
11099
+ },
11100
+ "data": {
11101
+ "allOf": [
11102
+ {
11103
+ "$ref": "#/components/schemas/BookingSpaceQuestionTranslation"
11104
+ }
11105
+ ],
11106
+ "nullable": true
11107
+ }
11108
+ },
11109
+ "required": [
11110
+ "status",
11111
+ "message",
11112
+ "data"
11113
+ ]
11114
+ }
11115
+ }
11116
+ }
11117
+ }
11118
+ },
11119
+ "tags": [
11120
+ "Bookings::Questions::Translations"
11121
+ ]
11122
+ },
11123
+ "put": {
11124
+ "operationId": "UpdateBookingSpaceQuestionTranslation",
11125
+ "summary": "Update Booking Space Question Translation",
11126
+ "description": "Update Booking Space Question Translation endpoint",
11127
+ "parameters": [
11128
+ {
11129
+ "in": "path",
11130
+ "name": "placeId",
11131
+ "schema": {
11132
+ "type": "string"
11133
+ },
11134
+ "description": "The place identifier",
11135
+ "required": true
11136
+ },
11137
+ {
11138
+ "in": "path",
11139
+ "name": "spaceId",
11140
+ "schema": {
11141
+ "type": "string"
11142
+ },
11143
+ "description": "The space identifier",
11144
+ "required": true
11145
+ },
11146
+ {
11147
+ "in": "path",
11148
+ "name": "questionId",
11149
+ "schema": {
11150
+ "type": "string"
11151
+ },
11152
+ "description": "The question identifier",
11153
+ "required": true
11154
+ },
11155
+ {
11156
+ "in": "path",
11157
+ "name": "locale",
11158
+ "schema": {
11159
+ "type": "string"
11160
+ },
11161
+ "description": "The locale identifier",
11162
+ "required": true
11163
+ }
11164
+ ],
11165
+ "requestBody": {
11166
+ "required": true,
11167
+ "content": {
11168
+ "application/json": {
11169
+ "schema": {
11170
+ "$ref": "#/components/schemas/BookingSpaceQuestionTranslationUpdateInputs"
11171
+ }
11172
+ }
11173
+ }
11174
+ },
11175
+ "responses": {
11176
+ "200": {
11177
+ "description": "Successful response",
11178
+ "content": {
11179
+ "application/json": {
11180
+ "schema": {
11181
+ "type": "object",
11182
+ "properties": {
11183
+ "status": {
11184
+ "type": "string",
11185
+ "enum": [
11186
+ "ok"
11187
+ ]
11188
+ },
11189
+ "message": {
11190
+ "type": "string",
11191
+ "example": "Success message."
11192
+ },
11193
+ "data": {
11194
+ "$ref": "#/components/schemas/BookingSpaceQuestionTranslation"
11195
+ }
11196
+ },
11197
+ "required": [
11198
+ "status",
11199
+ "message",
11200
+ "data"
11201
+ ]
11202
+ }
11203
+ }
11204
+ }
11205
+ }
11206
+ },
11207
+ "tags": [
11208
+ "Bookings::Questions::Translations"
11209
+ ]
11210
+ },
11211
+ "delete": {
11212
+ "operationId": "DeleteBookingSpaceQuestionTranslation",
11213
+ "summary": "Delete Booking Space Question Translation",
11214
+ "description": "Delete Booking Space Question Translation endpoint",
11215
+ "parameters": [
11216
+ {
11217
+ "in": "path",
11218
+ "name": "placeId",
11219
+ "schema": {
11220
+ "type": "string"
11221
+ },
11222
+ "description": "The place identifier",
11223
+ "required": true
11224
+ },
11225
+ {
11226
+ "in": "path",
11227
+ "name": "spaceId",
11228
+ "schema": {
11229
+ "type": "string"
11230
+ },
11231
+ "description": "The space identifier",
11232
+ "required": true
11233
+ },
11234
+ {
11235
+ "in": "path",
11236
+ "name": "questionId",
11237
+ "schema": {
11238
+ "type": "string"
11239
+ },
11240
+ "description": "The question identifier",
11241
+ "required": true
11242
+ },
11243
+ {
11244
+ "in": "path",
11245
+ "name": "locale",
11246
+ "schema": {
11247
+ "type": "string"
11248
+ },
11249
+ "description": "The locale identifier",
11250
+ "required": true
11251
+ }
11252
+ ],
11253
+ "responses": {
11254
+ "200": {
11255
+ "description": "Successful response",
11256
+ "content": {
11257
+ "application/json": {
11258
+ "schema": {
11259
+ "type": "object",
11260
+ "properties": {
11261
+ "status": {
11262
+ "type": "string",
11263
+ "enum": [
11264
+ "ok"
11265
+ ]
11266
+ },
11267
+ "message": {
11268
+ "type": "string",
11269
+ "example": "Success message."
11270
+ },
11271
+ "data": {
11272
+ "type": "object"
11273
+ }
11274
+ },
11275
+ "required": [
11276
+ "status",
11277
+ "message",
11278
+ "data"
11279
+ ]
11280
+ }
11281
+ }
11282
+ }
11283
+ }
11284
+ },
11285
+ "tags": [
11286
+ "Bookings::Questions::Translations"
11287
+ ]
11288
+ }
11289
+ },
11290
+ "/bookings/places/{placeId}/spaces/{spaceId}/slots": {
11291
+ "get": {
11292
+ "operationId": "GetBookingSpaceSlots",
11293
+ "summary": "Get Booking Space Slots",
11294
+ "description": "Get Booking Space Slots endpoint",
11295
+ "parameters": [
11296
+ {
11297
+ "in": "path",
11298
+ "name": "placeId",
11299
+ "schema": {
11300
+ "type": "string"
11301
+ },
11302
+ "description": "The place identifier",
11303
+ "required": true
11304
+ },
11305
+ {
11306
+ "in": "path",
11307
+ "name": "spaceId",
11308
+ "schema": {
11309
+ "type": "string"
11310
+ },
11311
+ "description": "The space identifier",
11312
+ "required": true
11313
+ },
11314
+ {
11315
+ "in": "query",
11316
+ "name": "firstDayOfMonth",
11317
+ "schema": {
11318
+ "type": "string"
11319
+ },
11320
+ "description": "Filter by firstDayOfMonth",
11321
+ "required": true
11322
+ }
11323
+ ],
11324
+ "responses": {
11325
+ "200": {
11326
+ "description": "Successful response",
11327
+ "content": {
11328
+ "application/json": {
11329
+ "schema": {
11330
+ "type": "object",
11331
+ "properties": {
11332
+ "status": {
11333
+ "type": "string",
11334
+ "enum": [
11335
+ "ok"
11336
+ ]
11337
+ },
11338
+ "message": {
11339
+ "type": "string",
11340
+ "example": "Success message."
11341
+ },
11342
+ "data": {
11343
+ "type": "array",
11344
+ "items": {
11345
+ "type": "array",
11346
+ "items": {
11347
+ "type": "object"
11348
+ }
11349
+ }
11350
+ }
11351
+ },
11352
+ "required": [
11353
+ "status",
11354
+ "message",
11355
+ "data"
11356
+ ]
11357
+ }
11358
+ }
11359
+ }
11360
+ }
11361
+ },
11362
+ "tags": [
11363
+ "Bookings"
11364
+ ]
11365
+ }
11366
+ },
11367
+ "/bookings/places/{placeId}/spaces/{spaceId}/translations": {
11368
+ "get": {
11369
+ "operationId": "GetBookingSpaceTranslations",
11370
+ "summary": "Get Booking Space Translations",
11371
+ "description": "Get Booking Space Translations endpoint",
11372
+ "parameters": [
11373
+ {
11374
+ "in": "path",
11375
+ "name": "placeId",
11376
+ "schema": {
11377
+ "type": "string"
11378
+ },
11379
+ "description": "The place identifier",
11380
+ "required": true
11381
+ },
11382
+ {
11383
+ "in": "path",
11384
+ "name": "spaceId",
11385
+ "schema": {
11386
+ "type": "string"
11387
+ },
11388
+ "description": "The space identifier",
11389
+ "required": true
11390
+ },
11391
+ {
11392
+ "in": "query",
11393
+ "name": "page",
11394
+ "schema": {
11395
+ "type": "integer",
11396
+ "minimum": 1,
11397
+ "default": 1
11398
+ },
11399
+ "description": "Page number",
11400
+ "required": false
11401
+ },
11402
+ {
11403
+ "in": "query",
11404
+ "name": "pageSize",
11405
+ "schema": {
11406
+ "type": "integer",
11407
+ "minimum": 1,
11408
+ "maximum": 100,
11409
+ "default": 25
11410
+ },
11411
+ "description": "Number of items per page",
11412
+ "required": false
11413
+ },
11414
+ {
11415
+ "in": "query",
11416
+ "name": "orderBy",
11417
+ "schema": {
11418
+ "type": "string"
11419
+ },
11420
+ "description": "Field to order by",
11421
+ "required": false
11422
+ },
11423
+ {
11424
+ "in": "query",
11425
+ "name": "search",
11426
+ "schema": {
11427
+ "type": "string"
11428
+ },
11429
+ "description": "Search query",
11430
+ "required": false
11431
+ }
11432
+ ],
11433
+ "responses": {
11434
+ "200": {
11435
+ "description": "Successful response",
11436
+ "content": {
11437
+ "application/json": {
11438
+ "schema": {
11439
+ "type": "object",
11440
+ "properties": {
11441
+ "status": {
11442
+ "type": "string",
11443
+ "enum": [
11444
+ "ok"
11445
+ ]
11446
+ },
11447
+ "message": {
11448
+ "type": "string",
11449
+ "example": "Success message."
11450
+ },
11451
+ "data": {
11452
+ "type": "array",
11453
+ "items": {
11454
+ "$ref": "#/components/schemas/BookingSpaceTranslation"
11455
+ }
11456
+ },
11457
+ "count": {
11458
+ "type": "integer",
11459
+ "example": 100
11460
+ }
11461
+ },
11462
+ "required": [
11463
+ "status",
11464
+ "message",
11465
+ "data"
11466
+ ]
11467
+ }
11468
+ }
11469
+ }
11470
+ }
11471
+ },
11472
+ "tags": [
11473
+ "Bookings"
11474
+ ]
11475
+ }
11476
+ },
11477
+ "/bookings/places/{placeId}/spaces/{spaceId}/translations/{locale}": {
11478
+ "get": {
11479
+ "operationId": "GetBookingSpaceTranslation",
11480
+ "summary": "Get Booking Space Translation",
11481
+ "description": "Get Booking Space Translation endpoint",
11482
+ "parameters": [
11483
+ {
11484
+ "in": "path",
11485
+ "name": "placeId",
11486
+ "schema": {
11487
+ "type": "string"
11488
+ },
11489
+ "description": "The place identifier",
11490
+ "required": true
11491
+ },
11492
+ {
11493
+ "in": "path",
11494
+ "name": "spaceId",
11495
+ "schema": {
11496
+ "type": "string"
11497
+ },
11498
+ "description": "The space identifier",
11499
+ "required": true
11500
+ },
11501
+ {
11502
+ "in": "path",
11503
+ "name": "locale",
11504
+ "schema": {
11505
+ "type": "string"
11506
+ },
11507
+ "description": "The locale identifier",
11508
+ "required": true
11509
+ }
11510
+ ],
11511
+ "responses": {
11512
+ "200": {
11513
+ "description": "Successful response",
11514
+ "content": {
11515
+ "application/json": {
11516
+ "schema": {
11517
+ "type": "object",
11518
+ "properties": {
11519
+ "status": {
11520
+ "type": "string",
11521
+ "enum": [
11522
+ "ok"
11523
+ ]
11524
+ },
11525
+ "message": {
11526
+ "type": "string",
11527
+ "example": "Success message."
11528
+ },
11529
+ "data": {
11530
+ "allOf": [
11531
+ {
11532
+ "$ref": "#/components/schemas/BookingSpaceTranslation"
11533
+ }
11534
+ ],
11535
+ "nullable": true
11536
+ }
11537
+ },
11538
+ "required": [
11539
+ "status",
11540
+ "message",
11541
+ "data"
11542
+ ]
11543
+ }
11544
+ }
11545
+ }
11546
+ }
11547
+ },
11548
+ "tags": [
11549
+ "Bookings"
11550
+ ]
11551
+ },
11552
+ "put": {
11553
+ "operationId": "UpdateBookingSpaceTranslation",
11554
+ "summary": "Update Booking Space Translation",
11555
+ "description": "Update Booking Space Translation endpoint",
11556
+ "parameters": [
11557
+ {
11558
+ "in": "path",
11559
+ "name": "placeId",
11560
+ "schema": {
11561
+ "type": "string"
11562
+ },
11563
+ "description": "The place identifier",
11564
+ "required": true
11565
+ },
11566
+ {
11567
+ "in": "path",
11568
+ "name": "spaceId",
11569
+ "schema": {
11570
+ "type": "string"
11571
+ },
11572
+ "description": "The space identifier",
11573
+ "required": true
11574
+ },
11575
+ {
11576
+ "in": "path",
11577
+ "name": "locale",
11578
+ "schema": {
11579
+ "type": "string"
11580
+ },
11581
+ "description": "The locale identifier",
11582
+ "required": true
11583
+ }
11584
+ ],
11585
+ "requestBody": {
11586
+ "required": true,
11587
+ "content": {
11588
+ "application/json": {
11589
+ "schema": {
11590
+ "$ref": "#/components/schemas/BookingSpaceTranslationUpdateInputs"
11591
+ }
11592
+ }
11593
+ }
11594
+ },
11595
+ "responses": {
11596
+ "200": {
11597
+ "description": "Successful response",
11598
+ "content": {
11599
+ "application/json": {
11600
+ "schema": {
11601
+ "type": "object",
11602
+ "properties": {
11603
+ "status": {
11604
+ "type": "string",
11605
+ "enum": [
11606
+ "ok"
11607
+ ]
11608
+ },
11609
+ "message": {
11610
+ "type": "string",
11611
+ "example": "Success message."
11612
+ },
11613
+ "data": {
11614
+ "type": "object"
11615
+ }
11616
+ },
11617
+ "required": [
11618
+ "status",
11619
+ "message",
11620
+ "data"
11621
+ ]
11622
+ }
11623
+ }
11624
+ }
11625
+ }
11626
+ },
11627
+ "tags": [
11628
+ "Bookings::Spaces::Translations"
11629
+ ]
11630
+ },
11631
+ "delete": {
11632
+ "operationId": "DeleteBookingSpaceTranslation",
11633
+ "summary": "Delete Booking Space Translation",
11634
+ "description": "Delete Booking Space Translation endpoint",
11635
+ "parameters": [
11636
+ {
11637
+ "in": "path",
11638
+ "name": "placeId",
11639
+ "schema": {
11640
+ "type": "string"
11641
+ },
11642
+ "description": "The place identifier",
11643
+ "required": true
11644
+ },
11645
+ {
11646
+ "in": "path",
11647
+ "name": "spaceId",
11648
+ "schema": {
11649
+ "type": "string"
11650
+ },
11651
+ "description": "The space identifier",
11652
+ "required": true
11653
+ },
11654
+ {
11655
+ "in": "path",
11656
+ "name": "locale",
11657
+ "schema": {
11658
+ "type": "string"
11659
+ },
11660
+ "description": "The locale identifier",
11661
+ "required": true
11662
+ }
11663
+ ],
11664
+ "responses": {
11665
+ "200": {
11666
+ "description": "Successful response",
11667
+ "content": {
11668
+ "application/json": {
11669
+ "schema": {
11670
+ "type": "object",
11671
+ "properties": {
11672
+ "status": {
11673
+ "type": "string",
11674
+ "enum": [
11675
+ "ok"
11676
+ ]
11677
+ },
11678
+ "message": {
11679
+ "type": "string",
11680
+ "example": "Success message."
11681
+ },
11682
+ "data": {
11683
+ "type": "object"
11684
+ }
11685
+ },
11686
+ "required": [
11687
+ "status",
11688
+ "message",
11689
+ "data"
11690
+ ]
11691
+ }
11692
+ }
11693
+ }
11694
+ }
11695
+ },
11696
+ "tags": [
11697
+ "Bookings::Spaces::Translations"
11698
+ ]
11699
+ }
11700
+ },
11701
+ "/bookings/places/{placeId}/translations": {
11702
+ "get": {
11703
+ "operationId": "GetBookingPlaceTranslations",
11704
+ "summary": "Get Booking Place Translations",
11705
+ "description": "Get Booking Place Translations endpoint",
11706
+ "parameters": [
11707
+ {
11708
+ "in": "path",
11709
+ "name": "placeId",
11710
+ "schema": {
11711
+ "type": "string"
11712
+ },
11713
+ "description": "The place identifier",
11714
+ "required": true
11715
+ },
11716
+ {
11717
+ "in": "query",
11718
+ "name": "page",
11719
+ "schema": {
11720
+ "type": "integer",
11721
+ "minimum": 1,
11722
+ "default": 1
11723
+ },
11724
+ "description": "Page number",
11725
+ "required": false
11726
+ },
11727
+ {
11728
+ "in": "query",
11729
+ "name": "pageSize",
11730
+ "schema": {
11731
+ "type": "integer",
11732
+ "minimum": 1,
11733
+ "maximum": 100,
11734
+ "default": 25
11735
+ },
11736
+ "description": "Number of items per page",
11737
+ "required": false
11738
+ },
11739
+ {
11740
+ "in": "query",
11741
+ "name": "orderBy",
11742
+ "schema": {
11743
+ "type": "string"
11744
+ },
11745
+ "description": "Field to order by",
11746
+ "required": false
11747
+ },
11748
+ {
11749
+ "in": "query",
11750
+ "name": "search",
11751
+ "schema": {
11752
+ "type": "string"
11753
+ },
11754
+ "description": "Search query",
11755
+ "required": false
11756
+ }
11757
+ ],
11758
+ "responses": {
11759
+ "200": {
11760
+ "description": "Successful response",
11761
+ "content": {
11762
+ "application/json": {
11763
+ "schema": {
11764
+ "type": "object",
11765
+ "properties": {
11766
+ "status": {
11767
+ "type": "string",
11768
+ "enum": [
11769
+ "ok"
11770
+ ]
11771
+ },
11772
+ "message": {
11773
+ "type": "string",
11774
+ "example": "Success message."
11775
+ },
11776
+ "data": {
11777
+ "type": "array",
11778
+ "items": {
11779
+ "$ref": "#/components/schemas/BookingPlaceTranslation"
11780
+ }
11781
+ },
11782
+ "count": {
11783
+ "type": "integer",
11784
+ "example": 100
11785
+ }
11786
+ },
11787
+ "required": [
11788
+ "status",
11789
+ "message",
11790
+ "data"
11791
+ ]
11792
+ }
11793
+ }
11794
+ }
11795
+ }
11796
+ },
11797
+ "tags": [
11798
+ "Bookings"
11799
+ ]
11800
+ }
11801
+ },
11802
+ "/bookings/places/{placeId}/translations/{locale}": {
11803
+ "get": {
11804
+ "operationId": "GetBookingPlaceTranslation",
11805
+ "summary": "Get Booking Place Translation",
11806
+ "description": "Get Booking Place Translation endpoint",
11807
+ "parameters": [
11808
+ {
11809
+ "in": "path",
11810
+ "name": "placeId",
11811
+ "schema": {
11812
+ "type": "string"
11813
+ },
11814
+ "description": "The place identifier",
11815
+ "required": true
11816
+ },
11817
+ {
11818
+ "in": "path",
11819
+ "name": "locale",
11820
+ "schema": {
11821
+ "type": "string"
11822
+ },
11823
+ "description": "The locale identifier",
9966
11824
  "required": true
9967
11825
  }
9968
11826
  ],
@@ -10191,6 +12049,62 @@
10191
12049
  ]
10192
12050
  }
10193
12051
  },
12052
+ "/bookings/{bookingId}/responses": {
12053
+ "get": {
12054
+ "operationId": "GetBookingResponses",
12055
+ "summary": "Get Booking Responses",
12056
+ "description": "Get Booking Responses endpoint",
12057
+ "parameters": [
12058
+ {
12059
+ "in": "path",
12060
+ "name": "bookingId",
12061
+ "schema": {
12062
+ "type": "string"
12063
+ },
12064
+ "description": "The booking identifier",
12065
+ "required": true
12066
+ }
12067
+ ],
12068
+ "responses": {
12069
+ "200": {
12070
+ "description": "Successful response",
12071
+ "content": {
12072
+ "application/json": {
12073
+ "schema": {
12074
+ "type": "object",
12075
+ "properties": {
12076
+ "status": {
12077
+ "type": "string",
12078
+ "enum": [
12079
+ "ok"
12080
+ ]
12081
+ },
12082
+ "message": {
12083
+ "type": "string",
12084
+ "example": "Success message."
12085
+ },
12086
+ "data": {
12087
+ "type": "array",
12088
+ "items": {
12089
+ "$ref": "#/components/schemas/BaseBookingQuestionResponse"
12090
+ }
12091
+ }
12092
+ },
12093
+ "required": [
12094
+ "status",
12095
+ "message",
12096
+ "data"
12097
+ ]
12098
+ }
12099
+ }
12100
+ }
12101
+ }
12102
+ },
12103
+ "tags": [
12104
+ "Bookings"
12105
+ ]
12106
+ }
12107
+ },
10194
12108
  "/channels": {
10195
12109
  "get": {
10196
12110
  "operationId": "GetChannels",
@@ -104104,6 +106018,362 @@
104104
106018
  }
104105
106019
  ]
104106
106020
  },
106021
+ "BookingSpaceQuestionType": {
106022
+ "type": "string",
106023
+ "enum": [
106024
+ "text",
106025
+ "textarea",
106026
+ "number",
106027
+ "time",
106028
+ "date",
106029
+ "toggle",
106030
+ "select",
106031
+ "radio",
106032
+ "checkbox",
106033
+ "search",
106034
+ "file",
106035
+ "location"
106036
+ ]
106037
+ },
106038
+ "BaseBookingSpaceQuestionChoice": {
106039
+ "type": "object",
106040
+ "properties": {
106041
+ "id": {
106042
+ "type": "string"
106043
+ },
106044
+ "value": {
106045
+ "type": "string"
106046
+ },
106047
+ "text": {
106048
+ "type": "string",
106049
+ "nullable": true
106050
+ },
106051
+ "description": {
106052
+ "type": "string",
106053
+ "nullable": true
106054
+ },
106055
+ "supply": {
106056
+ "type": "number",
106057
+ "nullable": true
106058
+ },
106059
+ "sortOrder": {
106060
+ "type": "number"
106061
+ }
106062
+ },
106063
+ "required": [
106064
+ "id",
106065
+ "value",
106066
+ "text",
106067
+ "description",
106068
+ "supply",
106069
+ "sortOrder"
106070
+ ]
106071
+ },
106072
+ "BookingSpaceQuestionChoice": {
106073
+ "allOf": [
106074
+ {
106075
+ "$ref": "#/components/schemas/BaseBookingSpaceQuestionChoice"
106076
+ },
106077
+ {
106078
+ "type": "object",
106079
+ "properties": {
106080
+ "questionId": {
106081
+ "type": "string"
106082
+ },
106083
+ "question": {
106084
+ "$ref": "#/components/schemas/BaseBookingSpaceQuestion"
106085
+ },
106086
+ "createdAt": {
106087
+ "type": "string"
106088
+ },
106089
+ "updatedAt": {
106090
+ "type": "string"
106091
+ }
106092
+ },
106093
+ "required": [
106094
+ "questionId",
106095
+ "question",
106096
+ "createdAt",
106097
+ "updatedAt"
106098
+ ]
106099
+ }
106100
+ ]
106101
+ },
106102
+ "BookingSpaceQuestionChoiceTranslation": {
106103
+ "type": "object",
106104
+ "properties": {
106105
+ "id": {
106106
+ "type": "string"
106107
+ },
106108
+ "locale": {
106109
+ "type": "string"
106110
+ },
106111
+ "value": {
106112
+ "type": "string"
106113
+ },
106114
+ "text": {
106115
+ "type": "string",
106116
+ "nullable": true
106117
+ },
106118
+ "description": {
106119
+ "type": "string",
106120
+ "nullable": true
106121
+ },
106122
+ "createdAt": {
106123
+ "type": "string"
106124
+ },
106125
+ "updatedAt": {
106126
+ "type": "string"
106127
+ }
106128
+ },
106129
+ "required": [
106130
+ "id",
106131
+ "locale",
106132
+ "value",
106133
+ "text",
106134
+ "description",
106135
+ "createdAt",
106136
+ "updatedAt"
106137
+ ]
106138
+ },
106139
+ "BaseBookingSpaceQuestion": {
106140
+ "type": "object",
106141
+ "properties": {
106142
+ "id": {
106143
+ "type": "string"
106144
+ },
106145
+ "type": {
106146
+ "$ref": "#/components/schemas/BookingSpaceQuestionType"
106147
+ },
106148
+ "name": {
106149
+ "type": "string"
106150
+ },
106151
+ "required": {
106152
+ "type": "boolean"
106153
+ },
106154
+ "description": {
106155
+ "type": "string",
106156
+ "nullable": true
106157
+ },
106158
+ "label": {
106159
+ "type": "string",
106160
+ "nullable": true
106161
+ },
106162
+ "placeholder": {
106163
+ "type": "string",
106164
+ "nullable": true
106165
+ },
106166
+ "default": {
106167
+ "type": "string",
106168
+ "nullable": true
106169
+ },
106170
+ "searchListId": {
106171
+ "type": "string",
106172
+ "nullable": true
106173
+ },
106174
+ "searchList": {
106175
+ "allOf": [
106176
+ {
106177
+ "$ref": "#/components/schemas/BaseSearchList"
106178
+ }
106179
+ ],
106180
+ "nullable": true
106181
+ },
106182
+ "mutable": {
106183
+ "type": "boolean"
106184
+ },
106185
+ "min": {
106186
+ "type": "string",
106187
+ "nullable": true
106188
+ },
106189
+ "max": {
106190
+ "type": "string",
106191
+ "nullable": true
106192
+ },
106193
+ "masked": {
106194
+ "type": "boolean"
106195
+ },
106196
+ "validation": {
106197
+ "type": "string",
106198
+ "nullable": true
106199
+ },
106200
+ "validationMessage": {
106201
+ "type": "string",
106202
+ "nullable": true
106203
+ },
106204
+ "locationOption": {
106205
+ "allOf": [
106206
+ {
106207
+ "$ref": "#/components/schemas/LocationQuestionOption"
106208
+ }
106209
+ ],
106210
+ "nullable": true
106211
+ },
106212
+ "sortOrder": {
106213
+ "type": "number"
106214
+ },
106215
+ "featured": {
106216
+ "type": "boolean"
106217
+ },
106218
+ "choices": {
106219
+ "type": "array",
106220
+ "items": {
106221
+ "$ref": "#/components/schemas/BaseBookingSpaceQuestionChoice"
106222
+ }
106223
+ }
106224
+ },
106225
+ "required": [
106226
+ "id",
106227
+ "type",
106228
+ "name",
106229
+ "required",
106230
+ "description",
106231
+ "label",
106232
+ "placeholder",
106233
+ "default",
106234
+ "searchListId",
106235
+ "searchList",
106236
+ "mutable",
106237
+ "min",
106238
+ "max",
106239
+ "masked",
106240
+ "validation",
106241
+ "validationMessage",
106242
+ "locationOption",
106243
+ "sortOrder",
106244
+ "featured",
106245
+ "choices"
106246
+ ]
106247
+ },
106248
+ "BookingSpaceQuestion": {
106249
+ "allOf": [
106250
+ {
106251
+ "$ref": "#/components/schemas/BaseBookingSpaceQuestion"
106252
+ },
106253
+ {
106254
+ "type": "object",
106255
+ "properties": {
106256
+ "dashboardVisibility": {
106257
+ "type": "boolean"
106258
+ },
106259
+ "createdAt": {
106260
+ "type": "string"
106261
+ },
106262
+ "updatedAt": {
106263
+ "type": "string"
106264
+ },
106265
+ "translations": {
106266
+ "type": "array",
106267
+ "items": {
106268
+ "$ref": "#/components/schemas/BookingSpaceQuestionTranslation"
106269
+ }
106270
+ }
106271
+ },
106272
+ "required": [
106273
+ "dashboardVisibility",
106274
+ "createdAt",
106275
+ "updatedAt"
106276
+ ]
106277
+ }
106278
+ ]
106279
+ },
106280
+ "BookingSpaceQuestionTranslation": {
106281
+ "type": "object",
106282
+ "properties": {
106283
+ "id": {
106284
+ "type": "string"
106285
+ },
106286
+ "locale": {
106287
+ "type": "string"
106288
+ },
106289
+ "label": {
106290
+ "type": "string",
106291
+ "nullable": true
106292
+ },
106293
+ "placeholder": {
106294
+ "type": "string",
106295
+ "nullable": true
106296
+ },
106297
+ "description": {
106298
+ "type": "string",
106299
+ "nullable": true
106300
+ },
106301
+ "createdAt": {
106302
+ "type": "string"
106303
+ },
106304
+ "updatedAt": {
106305
+ "type": "string"
106306
+ }
106307
+ },
106308
+ "required": [
106309
+ "id",
106310
+ "locale",
106311
+ "label",
106312
+ "placeholder",
106313
+ "description",
106314
+ "createdAt",
106315
+ "updatedAt"
106316
+ ]
106317
+ },
106318
+ "BaseBookingQuestionResponse": {
106319
+ "type": "object",
106320
+ "properties": {
106321
+ "id": {
106322
+ "type": "string"
106323
+ },
106324
+ "value": {
106325
+ "type": "string"
106326
+ },
106327
+ "questionId": {
106328
+ "type": "string"
106329
+ },
106330
+ "question": {
106331
+ "$ref": "#/components/schemas/BaseBookingSpaceQuestion"
106332
+ }
106333
+ },
106334
+ "required": [
106335
+ "id",
106336
+ "value",
106337
+ "questionId",
106338
+ "question"
106339
+ ]
106340
+ },
106341
+ "BookingQuestionResponse": {
106342
+ "allOf": [
106343
+ {
106344
+ "$ref": "#/components/schemas/BaseBookingQuestionResponse"
106345
+ },
106346
+ {
106347
+ "type": "object",
106348
+ "properties": {
106349
+ "fileId": {
106350
+ "type": "number",
106351
+ "nullable": true
106352
+ },
106353
+ "file": {
106354
+ "allOf": [
106355
+ {
106356
+ "$ref": "#/components/schemas/BaseFile"
106357
+ }
106358
+ ],
106359
+ "nullable": true
106360
+ },
106361
+ "createdAt": {
106362
+ "type": "string"
106363
+ },
106364
+ "updatedAt": {
106365
+ "type": "string"
106366
+ }
106367
+ },
106368
+ "required": [
106369
+ "fileId",
106370
+ "file",
106371
+ "createdAt",
106372
+ "updatedAt"
106373
+ ]
106374
+ }
106375
+ ]
106376
+ },
104107
106377
  "BaseBooking": {
104108
106378
  "type": "object",
104109
106379
  "properties": {
@@ -104168,6 +106438,12 @@
104168
106438
  },
104169
106439
  "updatedAt": {
104170
106440
  "type": "string"
106441
+ },
106442
+ "responses": {
106443
+ "type": "array",
106444
+ "items": {
106445
+ "$ref": "#/components/schemas/BaseBookingQuestionResponse"
106446
+ }
104171
106447
  }
104172
106448
  },
104173
106449
  "required": [
@@ -115825,6 +118101,300 @@
115825
118101
  }
115826
118102
  }
115827
118103
  },
118104
+ "BookingSpaceQuestionCreateInputs": {
118105
+ "type": "object",
118106
+ "properties": {
118107
+ "name": {
118108
+ "type": "string"
118109
+ },
118110
+ "type": {
118111
+ "$ref": "#/components/schemas/BookingSpaceQuestionType"
118112
+ },
118113
+ "required": {
118114
+ "type": "boolean"
118115
+ },
118116
+ "label": {
118117
+ "type": "string",
118118
+ "nullable": true
118119
+ },
118120
+ "placeholder": {
118121
+ "type": "string",
118122
+ "nullable": true
118123
+ },
118124
+ "description": {
118125
+ "type": "string",
118126
+ "nullable": true
118127
+ },
118128
+ "default": {
118129
+ "type": "string",
118130
+ "nullable": true
118131
+ },
118132
+ "dashboardVisibility": {
118133
+ "type": "boolean"
118134
+ },
118135
+ "mutable": {
118136
+ "type": "boolean"
118137
+ },
118138
+ "min": {
118139
+ "type": "string",
118140
+ "nullable": true
118141
+ },
118142
+ "max": {
118143
+ "type": "string",
118144
+ "nullable": true
118145
+ },
118146
+ "masked": {
118147
+ "type": "boolean"
118148
+ },
118149
+ "validation": {
118150
+ "type": "string",
118151
+ "nullable": true
118152
+ },
118153
+ "validationMessage": {
118154
+ "type": "string",
118155
+ "nullable": true
118156
+ },
118157
+ "locationOption": {
118158
+ "allOf": [
118159
+ {
118160
+ "$ref": "#/components/schemas/LocationQuestionOption"
118161
+ }
118162
+ ],
118163
+ "nullable": true
118164
+ },
118165
+ "sortOrder": {
118166
+ "oneOf": [
118167
+ {
118168
+ "type": "number"
118169
+ },
118170
+ {
118171
+ "type": "string"
118172
+ }
118173
+ ],
118174
+ "nullable": true
118175
+ },
118176
+ "featured": {
118177
+ "type": "boolean"
118178
+ },
118179
+ "searchListId": {
118180
+ "type": "string",
118181
+ "nullable": true
118182
+ },
118183
+ "choices": {
118184
+ "type": "array",
118185
+ "items": {
118186
+ "type": "string"
118187
+ }
118188
+ }
118189
+ },
118190
+ "required": [
118191
+ "name",
118192
+ "type"
118193
+ ]
118194
+ },
118195
+ "BookingSpaceQuestionUpdateInputs": {
118196
+ "type": "object",
118197
+ "properties": {
118198
+ "name": {
118199
+ "type": "string",
118200
+ "nullable": true
118201
+ },
118202
+ "type": {
118203
+ "allOf": [
118204
+ {
118205
+ "$ref": "#/components/schemas/BookingSpaceQuestionType"
118206
+ }
118207
+ ],
118208
+ "nullable": true
118209
+ },
118210
+ "required": {
118211
+ "type": "boolean"
118212
+ },
118213
+ "label": {
118214
+ "type": "string",
118215
+ "nullable": true
118216
+ },
118217
+ "placeholder": {
118218
+ "type": "string",
118219
+ "nullable": true
118220
+ },
118221
+ "description": {
118222
+ "type": "string",
118223
+ "nullable": true
118224
+ },
118225
+ "default": {
118226
+ "type": "string",
118227
+ "nullable": true
118228
+ },
118229
+ "dashboardVisibility": {
118230
+ "type": "boolean"
118231
+ },
118232
+ "mutable": {
118233
+ "type": "boolean"
118234
+ },
118235
+ "min": {
118236
+ "type": "string",
118237
+ "nullable": true
118238
+ },
118239
+ "max": {
118240
+ "type": "string",
118241
+ "nullable": true
118242
+ },
118243
+ "masked": {
118244
+ "type": "boolean"
118245
+ },
118246
+ "validation": {
118247
+ "type": "string",
118248
+ "nullable": true
118249
+ },
118250
+ "validationMessage": {
118251
+ "type": "string",
118252
+ "nullable": true
118253
+ },
118254
+ "locationOption": {
118255
+ "allOf": [
118256
+ {
118257
+ "$ref": "#/components/schemas/LocationQuestionOption"
118258
+ }
118259
+ ],
118260
+ "nullable": true
118261
+ },
118262
+ "sortOrder": {
118263
+ "oneOf": [
118264
+ {
118265
+ "type": "number"
118266
+ },
118267
+ {
118268
+ "type": "string"
118269
+ }
118270
+ ],
118271
+ "nullable": true
118272
+ },
118273
+ "featured": {
118274
+ "type": "boolean"
118275
+ },
118276
+ "searchListId": {
118277
+ "type": "string",
118278
+ "nullable": true
118279
+ },
118280
+ "choices": {
118281
+ "oneOf": [
118282
+ {
118283
+ "type": "array",
118284
+ "items": {
118285
+ "type": "string"
118286
+ }
118287
+ },
118288
+ {
118289
+ "type": "array",
118290
+ "items": {
118291
+ "$ref": "#/components/schemas/BaseBookingSpaceQuestionChoice"
118292
+ }
118293
+ }
118294
+ ]
118295
+ }
118296
+ }
118297
+ },
118298
+ "BookingSpaceQuestionChoiceCreateInputs": {
118299
+ "type": "object",
118300
+ "properties": {
118301
+ "value": {
118302
+ "type": "string"
118303
+ },
118304
+ "text": {
118305
+ "type": "string",
118306
+ "nullable": true
118307
+ },
118308
+ "description": {
118309
+ "type": "string",
118310
+ "nullable": true
118311
+ },
118312
+ "supply": {
118313
+ "type": "number",
118314
+ "nullable": true
118315
+ },
118316
+ "sortOrder": {
118317
+ "oneOf": [
118318
+ {
118319
+ "type": "number"
118320
+ },
118321
+ {
118322
+ "type": "string"
118323
+ }
118324
+ ],
118325
+ "nullable": true
118326
+ }
118327
+ },
118328
+ "required": [
118329
+ "value"
118330
+ ]
118331
+ },
118332
+ "BookingSpaceQuestionChoiceUpdateInputs": {
118333
+ "type": "object",
118334
+ "properties": {
118335
+ "value": {
118336
+ "type": "string",
118337
+ "nullable": true
118338
+ },
118339
+ "text": {
118340
+ "type": "string",
118341
+ "nullable": true
118342
+ },
118343
+ "description": {
118344
+ "type": "string",
118345
+ "nullable": true
118346
+ },
118347
+ "supply": {
118348
+ "type": "number",
118349
+ "nullable": true
118350
+ },
118351
+ "sortOrder": {
118352
+ "oneOf": [
118353
+ {
118354
+ "type": "number"
118355
+ },
118356
+ {
118357
+ "type": "string"
118358
+ }
118359
+ ],
118360
+ "nullable": true
118361
+ }
118362
+ }
118363
+ },
118364
+ "BookingSpaceQuestionTranslationUpdateInputs": {
118365
+ "type": "object",
118366
+ "properties": {
118367
+ "label": {
118368
+ "type": "string",
118369
+ "nullable": true
118370
+ },
118371
+ "placeholder": {
118372
+ "type": "string",
118373
+ "nullable": true
118374
+ },
118375
+ "description": {
118376
+ "type": "string",
118377
+ "nullable": true
118378
+ }
118379
+ }
118380
+ },
118381
+ "BookingSpaceQuestionChoiceTranslationUpdateInputs": {
118382
+ "type": "object",
118383
+ "properties": {
118384
+ "value": {
118385
+ "type": "string",
118386
+ "nullable": true
118387
+ },
118388
+ "text": {
118389
+ "type": "string",
118390
+ "nullable": true
118391
+ },
118392
+ "description": {
118393
+ "type": "string",
118394
+ "nullable": true
118395
+ }
118396
+ }
118397
+ },
115828
118398
  "BookingCreateInputs": {
115829
118399
  "type": "object",
115830
118400
  "properties": {