@connectedxm/admin 6.10.1 → 6.11.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
@@ -476,6 +476,14 @@
476
476
  "name": "Series",
477
477
  "description": "Operations for managing event series"
478
478
  },
479
+ {
480
+ "name": "Series::Questions",
481
+ "description": "Operations for series::questions"
482
+ },
483
+ {
484
+ "name": "Series::Questions::Choices",
485
+ "description": "Operations for series::questions::choices"
486
+ },
479
487
  {
480
488
  "name": "Series::Registrations",
481
489
  "description": "Manage account registrations for event series"
@@ -62365,11 +62373,11 @@
62365
62373
  ]
62366
62374
  }
62367
62375
  },
62368
- "/series/{seriesId}/registrations": {
62376
+ "/series/{seriesId}/questions": {
62369
62377
  "get": {
62370
- "operationId": "GetSeriesRegistrations",
62371
- "summary": "Get Series Registrations",
62372
- "description": "Get Series Registrations endpoint",
62378
+ "operationId": "GetSeriesQuestions",
62379
+ "summary": "Get Series Questions",
62380
+ "description": "Get Series Questions endpoint",
62373
62381
  "parameters": [
62374
62382
  {
62375
62383
  "in": "path",
@@ -62380,15 +62388,6 @@
62380
62388
  "description": "The series identifier",
62381
62389
  "required": true
62382
62390
  },
62383
- {
62384
- "in": "query",
62385
- "name": "status",
62386
- "schema": {
62387
- "$ref": "#/components/schemas/PurchaseStatus"
62388
- },
62389
- "description": "Filter by status",
62390
- "required": false
62391
- },
62392
62391
  {
62393
62392
  "in": "query",
62394
62393
  "name": "page",
@@ -62468,13 +62467,13 @@
62468
62467
  }
62469
62468
  },
62470
62469
  "tags": [
62471
- "Series::Registrations"
62470
+ "Series::Questions"
62472
62471
  ]
62473
62472
  },
62474
62473
  "post": {
62475
- "operationId": "CreateSeriesRegistration",
62476
- "summary": "Create Series Registration",
62477
- "description": "Create Series Registration endpoint",
62474
+ "operationId": "CreateSeriesQuestion",
62475
+ "summary": "Create Series Question",
62476
+ "description": "Create Series Question endpoint",
62478
62477
  "parameters": [
62479
62478
  {
62480
62479
  "in": "path",
@@ -62491,7 +62490,7 @@
62491
62490
  "content": {
62492
62491
  "application/json": {
62493
62492
  "schema": {
62494
- "$ref": "#/components/schemas/SeriesRegistrationCreateInputs"
62493
+ "$ref": "#/components/schemas/SeriesQuestionCreateInputs"
62495
62494
  }
62496
62495
  }
62497
62496
  }
@@ -62529,15 +62528,15 @@
62529
62528
  }
62530
62529
  },
62531
62530
  "tags": [
62532
- "Series::Registrations"
62531
+ "Series::Questions"
62533
62532
  ]
62534
62533
  }
62535
62534
  },
62536
- "/series/{seriesId}/registrations/{registrationId}": {
62535
+ "/series/{seriesId}/questions/{questionId}": {
62537
62536
  "get": {
62538
- "operationId": "GetSeriesRegistration",
62539
- "summary": "Get Series Registration",
62540
- "description": "Get Series Registration endpoint",
62537
+ "operationId": "GetSeriesQuestion",
62538
+ "summary": "Get Series Question",
62539
+ "description": "Get Series Question endpoint",
62541
62540
  "parameters": [
62542
62541
  {
62543
62542
  "in": "path",
@@ -62550,11 +62549,11 @@
62550
62549
  },
62551
62550
  {
62552
62551
  "in": "path",
62553
- "name": "registrationId",
62552
+ "name": "questionId",
62554
62553
  "schema": {
62555
62554
  "type": "string"
62556
62555
  },
62557
- "description": "The registration identifier",
62556
+ "description": "The question identifier",
62558
62557
  "required": true
62559
62558
  }
62560
62559
  ],
@@ -62591,13 +62590,13 @@
62591
62590
  }
62592
62591
  },
62593
62592
  "tags": [
62594
- "Series::Registrations"
62593
+ "Series::Questions"
62595
62594
  ]
62596
62595
  },
62597
62596
  "put": {
62598
- "operationId": "UpdateSeriesRegistration",
62599
- "summary": "Update Series Registration",
62600
- "description": "Update Series Registration endpoint",
62597
+ "operationId": "UpdateSeriesQuestion",
62598
+ "summary": "Update Series Question",
62599
+ "description": "Update Series Question endpoint",
62601
62600
  "parameters": [
62602
62601
  {
62603
62602
  "in": "path",
@@ -62610,11 +62609,247 @@
62610
62609
  },
62611
62610
  {
62612
62611
  "in": "path",
62613
- "name": "registrationId",
62612
+ "name": "questionId",
62614
62613
  "schema": {
62615
62614
  "type": "string"
62616
62615
  },
62617
- "description": "The registration identifier",
62616
+ "description": "The question identifier",
62617
+ "required": true
62618
+ },
62619
+ {
62620
+ "in": "query",
62621
+ "name": "question",
62622
+ "schema": {
62623
+ "$ref": "#/components/schemas/SeriesQuestionUpdateInputs"
62624
+ },
62625
+ "description": "Filter by question",
62626
+ "required": true
62627
+ }
62628
+ ],
62629
+ "responses": {
62630
+ "200": {
62631
+ "description": "Successful response",
62632
+ "content": {
62633
+ "application/json": {
62634
+ "schema": {
62635
+ "type": "object",
62636
+ "properties": {
62637
+ "status": {
62638
+ "type": "string",
62639
+ "enum": [
62640
+ "ok"
62641
+ ]
62642
+ },
62643
+ "message": {
62644
+ "type": "string",
62645
+ "example": "Success message."
62646
+ },
62647
+ "data": {
62648
+ "type": "object"
62649
+ }
62650
+ },
62651
+ "required": [
62652
+ "status",
62653
+ "message",
62654
+ "data"
62655
+ ]
62656
+ }
62657
+ }
62658
+ }
62659
+ }
62660
+ },
62661
+ "tags": [
62662
+ "Series::Questions"
62663
+ ]
62664
+ },
62665
+ "delete": {
62666
+ "operationId": "DeleteSeriesQuestion",
62667
+ "summary": "Delete Series Question",
62668
+ "description": "Delete Series Question endpoint",
62669
+ "parameters": [
62670
+ {
62671
+ "in": "path",
62672
+ "name": "seriesId",
62673
+ "schema": {
62674
+ "type": "string"
62675
+ },
62676
+ "description": "The series identifier",
62677
+ "required": true
62678
+ },
62679
+ {
62680
+ "in": "path",
62681
+ "name": "questionId",
62682
+ "schema": {
62683
+ "type": "string"
62684
+ },
62685
+ "description": "The question identifier",
62686
+ "required": true
62687
+ }
62688
+ ],
62689
+ "responses": {
62690
+ "200": {
62691
+ "description": "Successful response",
62692
+ "content": {
62693
+ "application/json": {
62694
+ "schema": {
62695
+ "type": "object",
62696
+ "properties": {
62697
+ "status": {
62698
+ "type": "string",
62699
+ "enum": [
62700
+ "ok"
62701
+ ]
62702
+ },
62703
+ "message": {
62704
+ "type": "string",
62705
+ "example": "Success message."
62706
+ },
62707
+ "data": {
62708
+ "nullable": true
62709
+ }
62710
+ },
62711
+ "required": [
62712
+ "status",
62713
+ "message",
62714
+ "data"
62715
+ ]
62716
+ }
62717
+ }
62718
+ }
62719
+ }
62720
+ },
62721
+ "tags": [
62722
+ "Series::Questions"
62723
+ ]
62724
+ }
62725
+ },
62726
+ "/series/{seriesId}/questions/{questionId}/choices": {
62727
+ "get": {
62728
+ "operationId": "GetSeriesQuestionChoices",
62729
+ "summary": "Get Series Question Choices",
62730
+ "description": "Get Series Question Choices endpoint",
62731
+ "parameters": [
62732
+ {
62733
+ "in": "path",
62734
+ "name": "seriesId",
62735
+ "schema": {
62736
+ "type": "string"
62737
+ },
62738
+ "description": "The series identifier",
62739
+ "required": true
62740
+ },
62741
+ {
62742
+ "in": "path",
62743
+ "name": "questionId",
62744
+ "schema": {
62745
+ "type": "string"
62746
+ },
62747
+ "description": "The question identifier",
62748
+ "required": true
62749
+ },
62750
+ {
62751
+ "in": "query",
62752
+ "name": "page",
62753
+ "schema": {
62754
+ "type": "integer",
62755
+ "minimum": 1,
62756
+ "default": 1
62757
+ },
62758
+ "description": "Page number",
62759
+ "required": false
62760
+ },
62761
+ {
62762
+ "in": "query",
62763
+ "name": "pageSize",
62764
+ "schema": {
62765
+ "type": "integer",
62766
+ "minimum": 1,
62767
+ "maximum": 100,
62768
+ "default": 25
62769
+ },
62770
+ "description": "Number of items per page",
62771
+ "required": false
62772
+ },
62773
+ {
62774
+ "in": "query",
62775
+ "name": "orderBy",
62776
+ "schema": {
62777
+ "type": "string"
62778
+ },
62779
+ "description": "Field to order by",
62780
+ "required": false
62781
+ },
62782
+ {
62783
+ "in": "query",
62784
+ "name": "search",
62785
+ "schema": {
62786
+ "type": "string"
62787
+ },
62788
+ "description": "Search query",
62789
+ "required": false
62790
+ }
62791
+ ],
62792
+ "responses": {
62793
+ "200": {
62794
+ "description": "Successful response",
62795
+ "content": {
62796
+ "application/json": {
62797
+ "schema": {
62798
+ "type": "object",
62799
+ "properties": {
62800
+ "status": {
62801
+ "type": "string",
62802
+ "enum": [
62803
+ "ok"
62804
+ ]
62805
+ },
62806
+ "message": {
62807
+ "type": "string",
62808
+ "example": "Success message."
62809
+ },
62810
+ "data": {
62811
+ "type": "object"
62812
+ },
62813
+ "count": {
62814
+ "type": "integer",
62815
+ "example": 100
62816
+ }
62817
+ },
62818
+ "required": [
62819
+ "status",
62820
+ "message",
62821
+ "data"
62822
+ ]
62823
+ }
62824
+ }
62825
+ }
62826
+ }
62827
+ },
62828
+ "tags": [
62829
+ "Series::Questions"
62830
+ ]
62831
+ },
62832
+ "post": {
62833
+ "operationId": "CreateSeriesQuestionChoice",
62834
+ "summary": "Create Series Question Choice",
62835
+ "description": "Create Series Question Choice endpoint",
62836
+ "parameters": [
62837
+ {
62838
+ "in": "path",
62839
+ "name": "seriesId",
62840
+ "schema": {
62841
+ "type": "string"
62842
+ },
62843
+ "description": "The series identifier",
62844
+ "required": true
62845
+ },
62846
+ {
62847
+ "in": "path",
62848
+ "name": "questionId",
62849
+ "schema": {
62850
+ "type": "string"
62851
+ },
62852
+ "description": "The question identifier",
62618
62853
  "required": true
62619
62854
  }
62620
62855
  ],
@@ -62623,7 +62858,599 @@
62623
62858
  "content": {
62624
62859
  "application/json": {
62625
62860
  "schema": {
62626
- "$ref": "#/components/schemas/SeriesRegistrationUpdateInputs"
62861
+ "$ref": "#/components/schemas/SeriesQuestionChoiceCreateInputs"
62862
+ }
62863
+ }
62864
+ }
62865
+ },
62866
+ "responses": {
62867
+ "200": {
62868
+ "description": "Successful response",
62869
+ "content": {
62870
+ "application/json": {
62871
+ "schema": {
62872
+ "type": "object",
62873
+ "properties": {
62874
+ "status": {
62875
+ "type": "string",
62876
+ "enum": [
62877
+ "ok"
62878
+ ]
62879
+ },
62880
+ "message": {
62881
+ "type": "string",
62882
+ "example": "Success message."
62883
+ },
62884
+ "data": {
62885
+ "type": "object"
62886
+ }
62887
+ },
62888
+ "required": [
62889
+ "status",
62890
+ "message",
62891
+ "data"
62892
+ ]
62893
+ }
62894
+ }
62895
+ }
62896
+ }
62897
+ },
62898
+ "tags": [
62899
+ "Series::Questions::Choices"
62900
+ ]
62901
+ }
62902
+ },
62903
+ "/series/{seriesId}/questions/{questionId}/choices/reorder": {
62904
+ "put": {
62905
+ "operationId": "ReorderSeriesQuestionChoices",
62906
+ "summary": "Reorder Series Question Choices",
62907
+ "description": "Reorder Series Question Choices endpoint",
62908
+ "parameters": [
62909
+ {
62910
+ "in": "path",
62911
+ "name": "seriesId",
62912
+ "schema": {
62913
+ "type": "string"
62914
+ },
62915
+ "description": "The series identifier",
62916
+ "required": true
62917
+ },
62918
+ {
62919
+ "in": "path",
62920
+ "name": "questionId",
62921
+ "schema": {
62922
+ "type": "string"
62923
+ },
62924
+ "description": "The question identifier",
62925
+ "required": true
62926
+ },
62927
+ {
62928
+ "in": "query",
62929
+ "name": "choicesIds",
62930
+ "schema": {
62931
+ "type": "array",
62932
+ "items": {
62933
+ "type": "string"
62934
+ }
62935
+ },
62936
+ "description": "Filter by choicesIds",
62937
+ "required": true
62938
+ }
62939
+ ],
62940
+ "responses": {
62941
+ "200": {
62942
+ "description": "Successful response",
62943
+ "content": {
62944
+ "application/json": {
62945
+ "schema": {
62946
+ "type": "object",
62947
+ "properties": {
62948
+ "status": {
62949
+ "type": "string",
62950
+ "enum": [
62951
+ "ok"
62952
+ ]
62953
+ },
62954
+ "message": {
62955
+ "type": "string",
62956
+ "example": "Success message."
62957
+ },
62958
+ "data": {
62959
+ "type": "object"
62960
+ }
62961
+ },
62962
+ "required": [
62963
+ "status",
62964
+ "message",
62965
+ "data"
62966
+ ]
62967
+ }
62968
+ }
62969
+ }
62970
+ }
62971
+ },
62972
+ "tags": [
62973
+ "Series::Questions::Choices"
62974
+ ]
62975
+ }
62976
+ },
62977
+ "/series/{seriesId}/questions/{questionId}/choices/{choiceId}": {
62978
+ "get": {
62979
+ "operationId": "GetSeriesQuestionChoice",
62980
+ "summary": "Get Series Question Choice",
62981
+ "description": "Get Series Question Choice endpoint",
62982
+ "parameters": [
62983
+ {
62984
+ "in": "path",
62985
+ "name": "seriesId",
62986
+ "schema": {
62987
+ "type": "string"
62988
+ },
62989
+ "description": "The series identifier",
62990
+ "required": true
62991
+ },
62992
+ {
62993
+ "in": "path",
62994
+ "name": "questionId",
62995
+ "schema": {
62996
+ "type": "string"
62997
+ },
62998
+ "description": "The question identifier",
62999
+ "required": true
63000
+ },
63001
+ {
63002
+ "in": "path",
63003
+ "name": "choiceId",
63004
+ "schema": {
63005
+ "type": "string"
63006
+ },
63007
+ "description": "The choice identifier",
63008
+ "required": true
63009
+ }
63010
+ ],
63011
+ "responses": {
63012
+ "200": {
63013
+ "description": "Successful response",
63014
+ "content": {
63015
+ "application/json": {
63016
+ "schema": {
63017
+ "type": "object",
63018
+ "properties": {
63019
+ "status": {
63020
+ "type": "string",
63021
+ "enum": [
63022
+ "ok"
63023
+ ]
63024
+ },
63025
+ "message": {
63026
+ "type": "string",
63027
+ "example": "Success message."
63028
+ },
63029
+ "data": {
63030
+ "type": "object"
63031
+ }
63032
+ },
63033
+ "required": [
63034
+ "status",
63035
+ "message",
63036
+ "data"
63037
+ ]
63038
+ }
63039
+ }
63040
+ }
63041
+ }
63042
+ },
63043
+ "tags": [
63044
+ "Series::Questions"
63045
+ ]
63046
+ },
63047
+ "put": {
63048
+ "operationId": "UpdateSeriesQuestionChoice",
63049
+ "summary": "Update Series Question Choice",
63050
+ "description": "Update Series Question Choice endpoint",
63051
+ "parameters": [
63052
+ {
63053
+ "in": "path",
63054
+ "name": "seriesId",
63055
+ "schema": {
63056
+ "type": "string"
63057
+ },
63058
+ "description": "The series identifier",
63059
+ "required": true
63060
+ },
63061
+ {
63062
+ "in": "path",
63063
+ "name": "questionId",
63064
+ "schema": {
63065
+ "type": "string"
63066
+ },
63067
+ "description": "The question identifier",
63068
+ "required": true
63069
+ },
63070
+ {
63071
+ "in": "path",
63072
+ "name": "choiceId",
63073
+ "schema": {
63074
+ "type": "string"
63075
+ },
63076
+ "description": "The choice identifier",
63077
+ "required": true
63078
+ },
63079
+ {
63080
+ "in": "query",
63081
+ "name": "choice",
63082
+ "schema": {
63083
+ "$ref": "#/components/schemas/SeriesQuestionChoiceUpdateInputs"
63084
+ },
63085
+ "description": "Filter by choice",
63086
+ "required": true
63087
+ }
63088
+ ],
63089
+ "responses": {
63090
+ "200": {
63091
+ "description": "Successful response",
63092
+ "content": {
63093
+ "application/json": {
63094
+ "schema": {
63095
+ "type": "object",
63096
+ "properties": {
63097
+ "status": {
63098
+ "type": "string",
63099
+ "enum": [
63100
+ "ok"
63101
+ ]
63102
+ },
63103
+ "message": {
63104
+ "type": "string",
63105
+ "example": "Success message."
63106
+ },
63107
+ "data": {
63108
+ "type": "object"
63109
+ }
63110
+ },
63111
+ "required": [
63112
+ "status",
63113
+ "message",
63114
+ "data"
63115
+ ]
63116
+ }
63117
+ }
63118
+ }
63119
+ }
63120
+ },
63121
+ "tags": [
63122
+ "Series::Questions::Choices"
63123
+ ]
63124
+ },
63125
+ "delete": {
63126
+ "operationId": "DeleteSeriesQuestionChoice",
63127
+ "summary": "Delete Series Question Choice",
63128
+ "description": "Delete Series Question Choice endpoint",
63129
+ "parameters": [
63130
+ {
63131
+ "in": "path",
63132
+ "name": "seriesId",
63133
+ "schema": {
63134
+ "type": "string"
63135
+ },
63136
+ "description": "The series identifier",
63137
+ "required": true
63138
+ },
63139
+ {
63140
+ "in": "path",
63141
+ "name": "questionId",
63142
+ "schema": {
63143
+ "type": "string"
63144
+ },
63145
+ "description": "The question identifier",
63146
+ "required": true
63147
+ },
63148
+ {
63149
+ "in": "path",
63150
+ "name": "choiceId",
63151
+ "schema": {
63152
+ "type": "string"
63153
+ },
63154
+ "description": "The choice identifier",
63155
+ "required": true
63156
+ }
63157
+ ],
63158
+ "responses": {
63159
+ "200": {
63160
+ "description": "Successful response",
63161
+ "content": {
63162
+ "application/json": {
63163
+ "schema": {
63164
+ "type": "object",
63165
+ "properties": {
63166
+ "status": {
63167
+ "type": "string",
63168
+ "enum": [
63169
+ "ok"
63170
+ ]
63171
+ },
63172
+ "message": {
63173
+ "type": "string",
63174
+ "example": "Success message."
63175
+ },
63176
+ "data": {
63177
+ "nullable": true
63178
+ }
63179
+ },
63180
+ "required": [
63181
+ "status",
63182
+ "message",
63183
+ "data"
63184
+ ]
63185
+ }
63186
+ }
63187
+ }
63188
+ }
63189
+ },
63190
+ "tags": [
63191
+ "Series::Questions::Choices"
63192
+ ]
63193
+ }
63194
+ },
63195
+ "/series/{seriesId}/registrations": {
63196
+ "get": {
63197
+ "operationId": "GetSeriesRegistrations",
63198
+ "summary": "Get Series Registrations",
63199
+ "description": "Get Series Registrations endpoint",
63200
+ "parameters": [
63201
+ {
63202
+ "in": "path",
63203
+ "name": "seriesId",
63204
+ "schema": {
63205
+ "type": "string"
63206
+ },
63207
+ "description": "The series identifier",
63208
+ "required": true
63209
+ },
63210
+ {
63211
+ "in": "query",
63212
+ "name": "status",
63213
+ "schema": {
63214
+ "$ref": "#/components/schemas/PurchaseStatus"
63215
+ },
63216
+ "description": "Filter by status",
63217
+ "required": false
63218
+ },
63219
+ {
63220
+ "in": "query",
63221
+ "name": "page",
63222
+ "schema": {
63223
+ "type": "integer",
63224
+ "minimum": 1,
63225
+ "default": 1
63226
+ },
63227
+ "description": "Page number",
63228
+ "required": false
63229
+ },
63230
+ {
63231
+ "in": "query",
63232
+ "name": "pageSize",
63233
+ "schema": {
63234
+ "type": "integer",
63235
+ "minimum": 1,
63236
+ "maximum": 100,
63237
+ "default": 25
63238
+ },
63239
+ "description": "Number of items per page",
63240
+ "required": false
63241
+ },
63242
+ {
63243
+ "in": "query",
63244
+ "name": "orderBy",
63245
+ "schema": {
63246
+ "type": "string"
63247
+ },
63248
+ "description": "Field to order by",
63249
+ "required": false
63250
+ },
63251
+ {
63252
+ "in": "query",
63253
+ "name": "search",
63254
+ "schema": {
63255
+ "type": "string"
63256
+ },
63257
+ "description": "Search query",
63258
+ "required": false
63259
+ }
63260
+ ],
63261
+ "responses": {
63262
+ "200": {
63263
+ "description": "Successful response",
63264
+ "content": {
63265
+ "application/json": {
63266
+ "schema": {
63267
+ "type": "object",
63268
+ "properties": {
63269
+ "status": {
63270
+ "type": "string",
63271
+ "enum": [
63272
+ "ok"
63273
+ ]
63274
+ },
63275
+ "message": {
63276
+ "type": "string",
63277
+ "example": "Success message."
63278
+ },
63279
+ "data": {
63280
+ "type": "object"
63281
+ },
63282
+ "count": {
63283
+ "type": "integer",
63284
+ "example": 100
63285
+ }
63286
+ },
63287
+ "required": [
63288
+ "status",
63289
+ "message",
63290
+ "data"
63291
+ ]
63292
+ }
63293
+ }
63294
+ }
63295
+ }
63296
+ },
63297
+ "tags": [
63298
+ "Series::Registrations"
63299
+ ]
63300
+ },
63301
+ "post": {
63302
+ "operationId": "CreateSeriesRegistration",
63303
+ "summary": "Create Series Registration",
63304
+ "description": "Create Series Registration endpoint",
63305
+ "parameters": [
63306
+ {
63307
+ "in": "path",
63308
+ "name": "seriesId",
63309
+ "schema": {
63310
+ "type": "string"
63311
+ },
63312
+ "description": "The series identifier",
63313
+ "required": true
63314
+ }
63315
+ ],
63316
+ "requestBody": {
63317
+ "required": true,
63318
+ "content": {
63319
+ "application/json": {
63320
+ "schema": {
63321
+ "$ref": "#/components/schemas/SeriesRegistrationCreateInputs"
63322
+ }
63323
+ }
63324
+ }
63325
+ },
63326
+ "responses": {
63327
+ "200": {
63328
+ "description": "Successful response",
63329
+ "content": {
63330
+ "application/json": {
63331
+ "schema": {
63332
+ "type": "object",
63333
+ "properties": {
63334
+ "status": {
63335
+ "type": "string",
63336
+ "enum": [
63337
+ "ok"
63338
+ ]
63339
+ },
63340
+ "message": {
63341
+ "type": "string",
63342
+ "example": "Success message."
63343
+ },
63344
+ "data": {
63345
+ "type": "object"
63346
+ }
63347
+ },
63348
+ "required": [
63349
+ "status",
63350
+ "message",
63351
+ "data"
63352
+ ]
63353
+ }
63354
+ }
63355
+ }
63356
+ }
63357
+ },
63358
+ "tags": [
63359
+ "Series::Registrations"
63360
+ ]
63361
+ }
63362
+ },
63363
+ "/series/{seriesId}/registrations/{registrationId}": {
63364
+ "get": {
63365
+ "operationId": "GetSeriesRegistration",
63366
+ "summary": "Get Series Registration",
63367
+ "description": "Get Series Registration endpoint",
63368
+ "parameters": [
63369
+ {
63370
+ "in": "path",
63371
+ "name": "seriesId",
63372
+ "schema": {
63373
+ "type": "string"
63374
+ },
63375
+ "description": "The series identifier",
63376
+ "required": true
63377
+ },
63378
+ {
63379
+ "in": "path",
63380
+ "name": "registrationId",
63381
+ "schema": {
63382
+ "type": "string"
63383
+ },
63384
+ "description": "The registration identifier",
63385
+ "required": true
63386
+ }
63387
+ ],
63388
+ "responses": {
63389
+ "200": {
63390
+ "description": "Successful response",
63391
+ "content": {
63392
+ "application/json": {
63393
+ "schema": {
63394
+ "type": "object",
63395
+ "properties": {
63396
+ "status": {
63397
+ "type": "string",
63398
+ "enum": [
63399
+ "ok"
63400
+ ]
63401
+ },
63402
+ "message": {
63403
+ "type": "string",
63404
+ "example": "Success message."
63405
+ },
63406
+ "data": {
63407
+ "type": "object"
63408
+ }
63409
+ },
63410
+ "required": [
63411
+ "status",
63412
+ "message",
63413
+ "data"
63414
+ ]
63415
+ }
63416
+ }
63417
+ }
63418
+ }
63419
+ },
63420
+ "tags": [
63421
+ "Series::Registrations"
63422
+ ]
63423
+ },
63424
+ "put": {
63425
+ "operationId": "UpdateSeriesRegistration",
63426
+ "summary": "Update Series Registration",
63427
+ "description": "Update Series Registration endpoint",
63428
+ "parameters": [
63429
+ {
63430
+ "in": "path",
63431
+ "name": "seriesId",
63432
+ "schema": {
63433
+ "type": "string"
63434
+ },
63435
+ "description": "The series identifier",
63436
+ "required": true
63437
+ },
63438
+ {
63439
+ "in": "path",
63440
+ "name": "registrationId",
63441
+ "schema": {
63442
+ "type": "string"
63443
+ },
63444
+ "description": "The registration identifier",
63445
+ "required": true
63446
+ }
63447
+ ],
63448
+ "requestBody": {
63449
+ "required": true,
63450
+ "content": {
63451
+ "application/json": {
63452
+ "schema": {
63453
+ "$ref": "#/components/schemas/SeriesRegistrationUpdateInputs"
62627
63454
  }
62628
63455
  }
62629
63456
  }
@@ -62939,6 +63766,137 @@
62939
63766
  ]
62940
63767
  }
62941
63768
  },
63769
+ "/series/{seriesId}/registrations/{registrationId}/responses": {
63770
+ "get": {
63771
+ "operationId": "GetSeriesRegistrationResponses",
63772
+ "summary": "Get Series Registration Responses",
63773
+ "description": "Get Series Registration Responses endpoint",
63774
+ "parameters": [
63775
+ {
63776
+ "in": "path",
63777
+ "name": "seriesId",
63778
+ "schema": {
63779
+ "type": "string"
63780
+ },
63781
+ "description": "The series identifier",
63782
+ "required": true
63783
+ },
63784
+ {
63785
+ "in": "path",
63786
+ "name": "registrationId",
63787
+ "schema": {
63788
+ "type": "string"
63789
+ },
63790
+ "description": "The registration identifier",
63791
+ "required": true
63792
+ }
63793
+ ],
63794
+ "responses": {
63795
+ "200": {
63796
+ "description": "Successful response",
63797
+ "content": {
63798
+ "application/json": {
63799
+ "schema": {
63800
+ "type": "object",
63801
+ "properties": {
63802
+ "status": {
63803
+ "type": "string",
63804
+ "enum": [
63805
+ "ok"
63806
+ ]
63807
+ },
63808
+ "message": {
63809
+ "type": "string",
63810
+ "example": "Success message."
63811
+ },
63812
+ "data": {
63813
+ "type": "object"
63814
+ }
63815
+ },
63816
+ "required": [
63817
+ "status",
63818
+ "message",
63819
+ "data"
63820
+ ]
63821
+ }
63822
+ }
63823
+ }
63824
+ }
63825
+ },
63826
+ "tags": [
63827
+ "Series::Registrations"
63828
+ ]
63829
+ },
63830
+ "put": {
63831
+ "operationId": "UpdateSeriesRegistrationResponses",
63832
+ "summary": "Update Series Registration Responses",
63833
+ "description": "Update Series Registration Responses endpoint",
63834
+ "parameters": [
63835
+ {
63836
+ "in": "path",
63837
+ "name": "seriesId",
63838
+ "schema": {
63839
+ "type": "string"
63840
+ },
63841
+ "description": "The series identifier",
63842
+ "required": true
63843
+ },
63844
+ {
63845
+ "in": "path",
63846
+ "name": "registrationId",
63847
+ "schema": {
63848
+ "type": "string"
63849
+ },
63850
+ "description": "The registration identifier",
63851
+ "required": true
63852
+ },
63853
+ {
63854
+ "in": "query",
63855
+ "name": "responses",
63856
+ "schema": {
63857
+ "$ref": "#/components/schemas/SeriesRegistrationResponsesUpdateInputs[\"responses\"]"
63858
+ },
63859
+ "description": "Filter by responses",
63860
+ "required": true
63861
+ }
63862
+ ],
63863
+ "responses": {
63864
+ "200": {
63865
+ "description": "Successful response",
63866
+ "content": {
63867
+ "application/json": {
63868
+ "schema": {
63869
+ "type": "object",
63870
+ "properties": {
63871
+ "status": {
63872
+ "type": "string",
63873
+ "enum": [
63874
+ "ok"
63875
+ ]
63876
+ },
63877
+ "message": {
63878
+ "type": "string",
63879
+ "example": "Success message."
63880
+ },
63881
+ "data": {
63882
+ "nullable": true
63883
+ }
63884
+ },
63885
+ "required": [
63886
+ "status",
63887
+ "message",
63888
+ "data"
63889
+ ]
63890
+ }
63891
+ }
63892
+ }
63893
+ }
63894
+ },
63895
+ "tags": [
63896
+ "Series::Registrations"
63897
+ ]
63898
+ }
63899
+ },
62942
63900
  "/streams": {
62943
63901
  "get": {
62944
63902
  "operationId": "GetStreamInputs",
@@ -81646,6 +82604,366 @@
81646
82604
  }
81647
82605
  ]
81648
82606
  },
82607
+ "SeriesQuestionType": {
82608
+ "type": "string",
82609
+ "enum": [
82610
+ "text",
82611
+ "textarea",
82612
+ "number",
82613
+ "time",
82614
+ "date",
82615
+ "toggle",
82616
+ "select",
82617
+ "radio",
82618
+ "checkbox",
82619
+ "search",
82620
+ "file",
82621
+ "location"
82622
+ ]
82623
+ },
82624
+ "BaseSeriesQuestionChoice": {
82625
+ "type": "object",
82626
+ "properties": {
82627
+ "id": {
82628
+ "type": "string"
82629
+ },
82630
+ "value": {
82631
+ "type": "string"
82632
+ },
82633
+ "text": {
82634
+ "type": "string",
82635
+ "nullable": true
82636
+ },
82637
+ "description": {
82638
+ "type": "string",
82639
+ "nullable": true
82640
+ },
82641
+ "supply": {
82642
+ "type": "number",
82643
+ "nullable": true
82644
+ },
82645
+ "sortOrder": {
82646
+ "type": "number"
82647
+ }
82648
+ },
82649
+ "required": [
82650
+ "id",
82651
+ "value",
82652
+ "text",
82653
+ "description",
82654
+ "supply",
82655
+ "sortOrder"
82656
+ ]
82657
+ },
82658
+ "SeriesQuestionChoice": {
82659
+ "allOf": [
82660
+ {
82661
+ "$ref": "#/components/schemas/BaseSeriesQuestionChoice"
82662
+ },
82663
+ {
82664
+ "type": "object",
82665
+ "properties": {
82666
+ "questionId": {
82667
+ "type": "string"
82668
+ },
82669
+ "question": {
82670
+ "$ref": "#/components/schemas/BaseSeriesQuestion"
82671
+ },
82672
+ "createdAt": {
82673
+ "type": "string"
82674
+ },
82675
+ "updatedAt": {
82676
+ "type": "string"
82677
+ }
82678
+ },
82679
+ "required": [
82680
+ "questionId",
82681
+ "question",
82682
+ "createdAt",
82683
+ "updatedAt"
82684
+ ]
82685
+ }
82686
+ ]
82687
+ },
82688
+ "SeriesQuestionChoiceTranslation": {
82689
+ "type": "object",
82690
+ "properties": {
82691
+ "id": {
82692
+ "type": "string"
82693
+ },
82694
+ "locale": {
82695
+ "type": "string"
82696
+ },
82697
+ "value": {
82698
+ "type": "string"
82699
+ },
82700
+ "text": {
82701
+ "type": "string",
82702
+ "nullable": true
82703
+ },
82704
+ "description": {
82705
+ "type": "string",
82706
+ "nullable": true
82707
+ },
82708
+ "createdAt": {
82709
+ "type": "string"
82710
+ },
82711
+ "updatedAt": {
82712
+ "type": "string"
82713
+ }
82714
+ },
82715
+ "required": [
82716
+ "id",
82717
+ "locale",
82718
+ "value",
82719
+ "text",
82720
+ "description",
82721
+ "createdAt",
82722
+ "updatedAt"
82723
+ ]
82724
+ },
82725
+ "BaseSeriesQuestion": {
82726
+ "type": "object",
82727
+ "properties": {
82728
+ "id": {
82729
+ "type": "string"
82730
+ },
82731
+ "seriesId": {
82732
+ "type": "string"
82733
+ },
82734
+ "type": {
82735
+ "$ref": "#/components/schemas/SeriesQuestionType"
82736
+ },
82737
+ "name": {
82738
+ "type": "string"
82739
+ },
82740
+ "required": {
82741
+ "type": "boolean"
82742
+ },
82743
+ "description": {
82744
+ "type": "string",
82745
+ "nullable": true
82746
+ },
82747
+ "label": {
82748
+ "type": "string",
82749
+ "nullable": true
82750
+ },
82751
+ "placeholder": {
82752
+ "type": "string",
82753
+ "nullable": true
82754
+ },
82755
+ "default": {
82756
+ "type": "string",
82757
+ "nullable": true
82758
+ },
82759
+ "searchListId": {
82760
+ "type": "string",
82761
+ "nullable": true
82762
+ },
82763
+ "searchList": {
82764
+ "allOf": [
82765
+ {
82766
+ "$ref": "#/components/schemas/BaseSearchList"
82767
+ }
82768
+ ],
82769
+ "nullable": true
82770
+ },
82771
+ "mutable": {
82772
+ "type": "boolean"
82773
+ },
82774
+ "min": {
82775
+ "type": "string",
82776
+ "nullable": true
82777
+ },
82778
+ "max": {
82779
+ "type": "string",
82780
+ "nullable": true
82781
+ },
82782
+ "masked": {
82783
+ "type": "boolean"
82784
+ },
82785
+ "validation": {
82786
+ "type": "string",
82787
+ "nullable": true
82788
+ },
82789
+ "validationMessage": {
82790
+ "type": "string",
82791
+ "nullable": true
82792
+ },
82793
+ "locationOption": {
82794
+ "allOf": [
82795
+ {
82796
+ "$ref": "#/components/schemas/LocationQuestionOption"
82797
+ }
82798
+ ],
82799
+ "nullable": true
82800
+ },
82801
+ "sortOrder": {
82802
+ "type": "number"
82803
+ },
82804
+ "featured": {
82805
+ "type": "boolean"
82806
+ },
82807
+ "choices": {
82808
+ "type": "array",
82809
+ "items": {
82810
+ "$ref": "#/components/schemas/BaseSeriesQuestionChoice"
82811
+ }
82812
+ }
82813
+ },
82814
+ "required": [
82815
+ "id",
82816
+ "seriesId",
82817
+ "type",
82818
+ "name",
82819
+ "required",
82820
+ "description",
82821
+ "label",
82822
+ "placeholder",
82823
+ "default",
82824
+ "searchListId",
82825
+ "searchList",
82826
+ "mutable",
82827
+ "min",
82828
+ "max",
82829
+ "masked",
82830
+ "validation",
82831
+ "validationMessage",
82832
+ "locationOption",
82833
+ "sortOrder",
82834
+ "featured",
82835
+ "choices"
82836
+ ]
82837
+ },
82838
+ "SeriesQuestion": {
82839
+ "allOf": [
82840
+ {
82841
+ "$ref": "#/components/schemas/BaseSeriesQuestion"
82842
+ },
82843
+ {
82844
+ "type": "object",
82845
+ "properties": {
82846
+ "dashboardVisibility": {
82847
+ "type": "boolean"
82848
+ },
82849
+ "createdAt": {
82850
+ "type": "string"
82851
+ },
82852
+ "updatedAt": {
82853
+ "type": "string"
82854
+ },
82855
+ "translations": {
82856
+ "type": "array",
82857
+ "items": {
82858
+ "$ref": "#/components/schemas/SeriesQuestionTranslation"
82859
+ }
82860
+ }
82861
+ },
82862
+ "required": [
82863
+ "dashboardVisibility",
82864
+ "createdAt",
82865
+ "updatedAt"
82866
+ ]
82867
+ }
82868
+ ]
82869
+ },
82870
+ "SeriesQuestionTranslation": {
82871
+ "type": "object",
82872
+ "properties": {
82873
+ "id": {
82874
+ "type": "string"
82875
+ },
82876
+ "locale": {
82877
+ "type": "string"
82878
+ },
82879
+ "label": {
82880
+ "type": "string",
82881
+ "nullable": true
82882
+ },
82883
+ "placeholder": {
82884
+ "type": "string",
82885
+ "nullable": true
82886
+ },
82887
+ "description": {
82888
+ "type": "string",
82889
+ "nullable": true
82890
+ },
82891
+ "createdAt": {
82892
+ "type": "string"
82893
+ },
82894
+ "updatedAt": {
82895
+ "type": "string"
82896
+ }
82897
+ },
82898
+ "required": [
82899
+ "id",
82900
+ "locale",
82901
+ "label",
82902
+ "placeholder",
82903
+ "description",
82904
+ "createdAt",
82905
+ "updatedAt"
82906
+ ]
82907
+ },
82908
+ "BaseSeriesRegistrationQuestionResponse": {
82909
+ "type": "object",
82910
+ "properties": {
82911
+ "id": {
82912
+ "type": "string"
82913
+ },
82914
+ "value": {
82915
+ "type": "string"
82916
+ },
82917
+ "questionId": {
82918
+ "type": "string"
82919
+ },
82920
+ "question": {
82921
+ "$ref": "#/components/schemas/BaseSeriesQuestion"
82922
+ }
82923
+ },
82924
+ "required": [
82925
+ "id",
82926
+ "value",
82927
+ "questionId",
82928
+ "question"
82929
+ ]
82930
+ },
82931
+ "SeriesRegistrationQuestionResponse": {
82932
+ "allOf": [
82933
+ {
82934
+ "$ref": "#/components/schemas/BaseSeriesRegistrationQuestionResponse"
82935
+ },
82936
+ {
82937
+ "type": "object",
82938
+ "properties": {
82939
+ "fileId": {
82940
+ "type": "number",
82941
+ "nullable": true
82942
+ },
82943
+ "file": {
82944
+ "allOf": [
82945
+ {
82946
+ "$ref": "#/components/schemas/BaseFile"
82947
+ }
82948
+ ],
82949
+ "nullable": true
82950
+ },
82951
+ "createdAt": {
82952
+ "type": "string"
82953
+ },
82954
+ "updatedAt": {
82955
+ "type": "string"
82956
+ }
82957
+ },
82958
+ "required": [
82959
+ "fileId",
82960
+ "file",
82961
+ "createdAt",
82962
+ "updatedAt"
82963
+ ]
82964
+ }
82965
+ ]
82966
+ },
81649
82967
  "BaseSeries": {
81650
82968
  "type": "object",
81651
82969
  "properties": {
@@ -81685,6 +83003,14 @@
81685
83003
  }
81686
83004
  ],
81687
83005
  "nullable": true
83006
+ },
83007
+ "_count": {
83008
+ "type": "object",
83009
+ "properties": {
83010
+ "questions": {
83011
+ "type": "number"
83012
+ }
83013
+ }
81688
83014
  }
81689
83015
  },
81690
83016
  "required": [
@@ -81841,6 +83167,12 @@
81841
83167
  },
81842
83168
  "status": {
81843
83169
  "$ref": "#/components/schemas/PurchaseStatus"
83170
+ },
83171
+ "responses": {
83172
+ "type": "array",
83173
+ "items": {
83174
+ "$ref": "#/components/schemas/BaseSeriesRegistrationQuestionResponse"
83175
+ }
81844
83176
  }
81845
83177
  },
81846
83178
  "required": [
@@ -93883,6 +95215,309 @@
93883
95215
  }
93884
95216
  }
93885
95217
  },
95218
+ "SeriesRegistrationResponsesUpdateInputs": {
95219
+ "type": "object",
95220
+ "properties": {
95221
+ "responses": {
95222
+ "type": "array",
95223
+ "items": {
95224
+ "type": "object",
95225
+ "properties": {
95226
+ "questionId": {
95227
+ "type": "string"
95228
+ },
95229
+ "value": {
95230
+ "type": "string"
95231
+ }
95232
+ },
95233
+ "required": [
95234
+ "questionId",
95235
+ "value"
95236
+ ]
95237
+ }
95238
+ }
95239
+ },
95240
+ "required": [
95241
+ "responses"
95242
+ ]
95243
+ },
95244
+ "SeriesQuestionCreateInputs": {
95245
+ "type": "object",
95246
+ "properties": {
95247
+ "name": {
95248
+ "type": "string"
95249
+ },
95250
+ "type": {
95251
+ "$ref": "#/components/schemas/SeriesQuestionType"
95252
+ },
95253
+ "required": {
95254
+ "type": "boolean"
95255
+ },
95256
+ "label": {
95257
+ "type": "string",
95258
+ "nullable": true
95259
+ },
95260
+ "placeholder": {
95261
+ "type": "string",
95262
+ "nullable": true
95263
+ },
95264
+ "description": {
95265
+ "type": "string",
95266
+ "nullable": true
95267
+ },
95268
+ "default": {
95269
+ "type": "string",
95270
+ "nullable": true
95271
+ },
95272
+ "dashboardVisibility": {
95273
+ "type": "boolean"
95274
+ },
95275
+ "mutable": {
95276
+ "type": "boolean"
95277
+ },
95278
+ "min": {
95279
+ "type": "string",
95280
+ "nullable": true
95281
+ },
95282
+ "max": {
95283
+ "type": "string",
95284
+ "nullable": true
95285
+ },
95286
+ "masked": {
95287
+ "type": "boolean"
95288
+ },
95289
+ "validation": {
95290
+ "type": "string",
95291
+ "nullable": true
95292
+ },
95293
+ "validationMessage": {
95294
+ "type": "string",
95295
+ "nullable": true
95296
+ },
95297
+ "locationOption": {
95298
+ "allOf": [
95299
+ {
95300
+ "$ref": "#/components/schemas/LocationQuestionOption"
95301
+ }
95302
+ ],
95303
+ "nullable": true
95304
+ },
95305
+ "sortOrder": {
95306
+ "oneOf": [
95307
+ {
95308
+ "type": "number"
95309
+ },
95310
+ {
95311
+ "type": "string"
95312
+ }
95313
+ ],
95314
+ "nullable": true
95315
+ },
95316
+ "featured": {
95317
+ "type": "boolean"
95318
+ },
95319
+ "searchListId": {
95320
+ "type": "string",
95321
+ "nullable": true
95322
+ },
95323
+ "choices": {
95324
+ "type": "array",
95325
+ "items": {
95326
+ "type": "string"
95327
+ }
95328
+ }
95329
+ },
95330
+ "required": [
95331
+ "name",
95332
+ "type"
95333
+ ]
95334
+ },
95335
+ "SeriesQuestionUpdateInputs": {
95336
+ "type": "object",
95337
+ "properties": {
95338
+ "name": {
95339
+ "type": "string",
95340
+ "nullable": true
95341
+ },
95342
+ "type": {
95343
+ "allOf": [
95344
+ {
95345
+ "$ref": "#/components/schemas/SeriesQuestionType"
95346
+ }
95347
+ ],
95348
+ "nullable": true
95349
+ },
95350
+ "required": {
95351
+ "type": "boolean"
95352
+ },
95353
+ "label": {
95354
+ "type": "string",
95355
+ "nullable": true
95356
+ },
95357
+ "placeholder": {
95358
+ "type": "string",
95359
+ "nullable": true
95360
+ },
95361
+ "description": {
95362
+ "type": "string",
95363
+ "nullable": true
95364
+ },
95365
+ "default": {
95366
+ "type": "string",
95367
+ "nullable": true
95368
+ },
95369
+ "dashboardVisibility": {
95370
+ "type": "boolean"
95371
+ },
95372
+ "mutable": {
95373
+ "type": "boolean"
95374
+ },
95375
+ "min": {
95376
+ "type": "string",
95377
+ "nullable": true
95378
+ },
95379
+ "max": {
95380
+ "type": "string",
95381
+ "nullable": true
95382
+ },
95383
+ "masked": {
95384
+ "type": "boolean"
95385
+ },
95386
+ "validation": {
95387
+ "type": "string",
95388
+ "nullable": true
95389
+ },
95390
+ "validationMessage": {
95391
+ "type": "string",
95392
+ "nullable": true
95393
+ },
95394
+ "locationOption": {
95395
+ "allOf": [
95396
+ {
95397
+ "$ref": "#/components/schemas/LocationQuestionOption"
95398
+ }
95399
+ ],
95400
+ "nullable": true
95401
+ },
95402
+ "sortOrder": {
95403
+ "oneOf": [
95404
+ {
95405
+ "type": "number"
95406
+ },
95407
+ {
95408
+ "type": "string"
95409
+ }
95410
+ ],
95411
+ "nullable": true
95412
+ },
95413
+ "featured": {
95414
+ "type": "boolean"
95415
+ },
95416
+ "searchListId": {
95417
+ "type": "string",
95418
+ "nullable": true
95419
+ },
95420
+ "choices": {
95421
+ "oneOf": [
95422
+ {
95423
+ "type": "array",
95424
+ "items": {
95425
+ "type": "string"
95426
+ }
95427
+ },
95428
+ {
95429
+ "type": "array",
95430
+ "items": {
95431
+ "$ref": "#/components/schemas/BaseSeriesQuestionChoice"
95432
+ }
95433
+ }
95434
+ ]
95435
+ }
95436
+ }
95437
+ },
95438
+ "SeriesQuestionChoiceCreateInputs": {
95439
+ "type": "object",
95440
+ "properties": {
95441
+ "value": {
95442
+ "type": "string"
95443
+ },
95444
+ "text": {
95445
+ "type": "string",
95446
+ "nullable": true
95447
+ },
95448
+ "description": {
95449
+ "type": "string",
95450
+ "nullable": true
95451
+ },
95452
+ "supply": {
95453
+ "type": "number",
95454
+ "nullable": true
95455
+ },
95456
+ "sortOrder": {
95457
+ "oneOf": [
95458
+ {
95459
+ "type": "number"
95460
+ },
95461
+ {
95462
+ "type": "string"
95463
+ }
95464
+ ],
95465
+ "nullable": true
95466
+ }
95467
+ },
95468
+ "required": [
95469
+ "value"
95470
+ ]
95471
+ },
95472
+ "SeriesQuestionChoiceUpdateInputs": {
95473
+ "type": "object",
95474
+ "properties": {
95475
+ "value": {
95476
+ "type": "string",
95477
+ "nullable": true
95478
+ },
95479
+ "text": {
95480
+ "type": "string",
95481
+ "nullable": true
95482
+ },
95483
+ "description": {
95484
+ "type": "string",
95485
+ "nullable": true
95486
+ },
95487
+ "supply": {
95488
+ "type": "number",
95489
+ "nullable": true
95490
+ },
95491
+ "sortOrder": {
95492
+ "oneOf": [
95493
+ {
95494
+ "type": "number"
95495
+ },
95496
+ {
95497
+ "type": "string"
95498
+ }
95499
+ ],
95500
+ "nullable": true
95501
+ }
95502
+ }
95503
+ },
95504
+ "SeriesQuestionTranslationUpdateInputs": {
95505
+ "type": "object",
95506
+ "properties": {
95507
+ "label": {
95508
+ "type": "string",
95509
+ "nullable": true
95510
+ },
95511
+ "placeholder": {
95512
+ "type": "string",
95513
+ "nullable": true
95514
+ },
95515
+ "description": {
95516
+ "type": "string",
95517
+ "nullable": true
95518
+ }
95519
+ }
95520
+ },
93886
95521
  "EventRegistrationBypassUpdateInputs": {
93887
95522
  "type": "object",
93888
95523
  "properties": {