@connectedxm/admin 6.13.2 → 6.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/openapi.json CHANGED
@@ -132,6 +132,10 @@
132
132
  "name": "Events::Activations",
133
133
  "description": "Manage on-site check-ins, control access activations for special zones or sessions, and set permissions for scanning devices and staff"
134
134
  },
135
+ {
136
+ "name": "Events::Activations::Sessions",
137
+ "description": "Operations for events::activations::sessions"
138
+ },
135
139
  {
136
140
  "name": "Events::Addons",
137
141
  "description": "Offer supplementary items or services like exclusive workshops, networking upgrades, merchandise, or special amenities that enhance the attendee experience"
@@ -556,6 +560,10 @@
556
560
  "name": "Surveys::Sections",
557
561
  "description": "Organize survey questions into logical sections, improving survey structure and user experience"
558
562
  },
563
+ {
564
+ "name": "Surveys::Sessions",
565
+ "description": "Operations for surveys::sessions"
566
+ },
559
567
  {
560
568
  "name": "Surveys::Submissions",
561
569
  "description": "View and analyze survey responses submitted by participants, extracting insights and feedback data"
@@ -12833,6 +12841,253 @@
12833
12841
  ]
12834
12842
  }
12835
12843
  },
12844
+ "/events/{eventId}/activations/{activationId}/sessions": {
12845
+ "get": {
12846
+ "operationId": "GetEventActivationSessions",
12847
+ "summary": "Get Event Activation Sessions",
12848
+ "description": "Get Event Activation Sessions endpoint",
12849
+ "parameters": [
12850
+ {
12851
+ "in": "path",
12852
+ "name": "eventId",
12853
+ "schema": {
12854
+ "type": "string"
12855
+ },
12856
+ "description": "The event identifier",
12857
+ "required": true
12858
+ },
12859
+ {
12860
+ "in": "path",
12861
+ "name": "activationId",
12862
+ "schema": {
12863
+ "type": "string"
12864
+ },
12865
+ "description": "The activation identifier",
12866
+ "required": true
12867
+ },
12868
+ {
12869
+ "in": "query",
12870
+ "name": "page",
12871
+ "schema": {
12872
+ "type": "integer",
12873
+ "minimum": 1,
12874
+ "default": 1
12875
+ },
12876
+ "description": "Page number",
12877
+ "required": false
12878
+ },
12879
+ {
12880
+ "in": "query",
12881
+ "name": "pageSize",
12882
+ "schema": {
12883
+ "type": "integer",
12884
+ "minimum": 1,
12885
+ "maximum": 100,
12886
+ "default": 25
12887
+ },
12888
+ "description": "Number of items per page",
12889
+ "required": false
12890
+ },
12891
+ {
12892
+ "in": "query",
12893
+ "name": "orderBy",
12894
+ "schema": {
12895
+ "type": "string"
12896
+ },
12897
+ "description": "Field to order by",
12898
+ "required": false
12899
+ },
12900
+ {
12901
+ "in": "query",
12902
+ "name": "search",
12903
+ "schema": {
12904
+ "type": "string"
12905
+ },
12906
+ "description": "Search query",
12907
+ "required": false
12908
+ }
12909
+ ],
12910
+ "responses": {
12911
+ "200": {
12912
+ "description": "Successful response",
12913
+ "content": {
12914
+ "application/json": {
12915
+ "schema": {
12916
+ "type": "object",
12917
+ "properties": {
12918
+ "status": {
12919
+ "type": "string",
12920
+ "enum": [
12921
+ "ok"
12922
+ ]
12923
+ },
12924
+ "message": {
12925
+ "type": "string",
12926
+ "example": "Success message."
12927
+ },
12928
+ "data": {
12929
+ "type": "object"
12930
+ },
12931
+ "count": {
12932
+ "type": "integer",
12933
+ "example": 100
12934
+ }
12935
+ },
12936
+ "required": [
12937
+ "status",
12938
+ "message",
12939
+ "data"
12940
+ ]
12941
+ }
12942
+ }
12943
+ }
12944
+ }
12945
+ },
12946
+ "tags": [
12947
+ "Events::Activations"
12948
+ ]
12949
+ }
12950
+ },
12951
+ "/events/{eventId}/activations/{activationId}/sessions/{sessionId}": {
12952
+ "post": {
12953
+ "operationId": "AddEventActivationSession",
12954
+ "summary": "Add Event Activation Session",
12955
+ "description": "Add Event Activation Session endpoint",
12956
+ "parameters": [
12957
+ {
12958
+ "in": "path",
12959
+ "name": "eventId",
12960
+ "schema": {
12961
+ "type": "string"
12962
+ },
12963
+ "description": "The event identifier",
12964
+ "required": true
12965
+ },
12966
+ {
12967
+ "in": "path",
12968
+ "name": "activationId",
12969
+ "schema": {
12970
+ "type": "string"
12971
+ },
12972
+ "description": "The activation identifier",
12973
+ "required": true
12974
+ },
12975
+ {
12976
+ "in": "path",
12977
+ "name": "sessionId",
12978
+ "schema": {
12979
+ "type": "string"
12980
+ },
12981
+ "description": "The session identifier",
12982
+ "required": true
12983
+ }
12984
+ ],
12985
+ "responses": {
12986
+ "200": {
12987
+ "description": "Successful response",
12988
+ "content": {
12989
+ "application/json": {
12990
+ "schema": {
12991
+ "type": "object",
12992
+ "properties": {
12993
+ "status": {
12994
+ "type": "string",
12995
+ "enum": [
12996
+ "ok"
12997
+ ]
12998
+ },
12999
+ "message": {
13000
+ "type": "string",
13001
+ "example": "Success message."
13002
+ },
13003
+ "data": {
13004
+ "type": "object"
13005
+ }
13006
+ },
13007
+ "required": [
13008
+ "status",
13009
+ "message",
13010
+ "data"
13011
+ ]
13012
+ }
13013
+ }
13014
+ }
13015
+ }
13016
+ },
13017
+ "tags": [
13018
+ "Events::Activations::Sessions"
13019
+ ]
13020
+ },
13021
+ "delete": {
13022
+ "operationId": "RemoveEventActivationSession",
13023
+ "summary": "Remove Event Activation Session",
13024
+ "description": "Remove Event Activation Session endpoint",
13025
+ "parameters": [
13026
+ {
13027
+ "in": "path",
13028
+ "name": "eventId",
13029
+ "schema": {
13030
+ "type": "string"
13031
+ },
13032
+ "description": "The event identifier",
13033
+ "required": true
13034
+ },
13035
+ {
13036
+ "in": "path",
13037
+ "name": "activationId",
13038
+ "schema": {
13039
+ "type": "string"
13040
+ },
13041
+ "description": "The activation identifier",
13042
+ "required": true
13043
+ },
13044
+ {
13045
+ "in": "path",
13046
+ "name": "sessionId",
13047
+ "schema": {
13048
+ "type": "string"
13049
+ },
13050
+ "description": "The session identifier",
13051
+ "required": true
13052
+ }
13053
+ ],
13054
+ "responses": {
13055
+ "200": {
13056
+ "description": "Successful response",
13057
+ "content": {
13058
+ "application/json": {
13059
+ "schema": {
13060
+ "type": "object",
13061
+ "properties": {
13062
+ "status": {
13063
+ "type": "string",
13064
+ "enum": [
13065
+ "ok"
13066
+ ]
13067
+ },
13068
+ "message": {
13069
+ "type": "string",
13070
+ "example": "Success message."
13071
+ },
13072
+ "data": {
13073
+ "type": "object"
13074
+ }
13075
+ },
13076
+ "required": [
13077
+ "status",
13078
+ "message",
13079
+ "data"
13080
+ ]
13081
+ }
13082
+ }
13083
+ }
13084
+ }
13085
+ },
13086
+ "tags": [
13087
+ "Events::Activations::Sessions"
13088
+ ]
13089
+ }
13090
+ },
12836
13091
  "/events/{eventId}/activities": {
12837
13092
  "get": {
12838
13093
  "operationId": "GetEventActivities",
@@ -69077,11 +69332,11 @@
69077
69332
  ]
69078
69333
  }
69079
69334
  },
69080
- "/surveys/{surveyId}/submissions": {
69335
+ "/surveys/{surveyId}/sessions": {
69081
69336
  "get": {
69082
- "operationId": "GetSurveySubmissions",
69083
- "summary": "Get Survey Submissions",
69084
- "description": "Get Survey Submissions endpoint",
69337
+ "operationId": "GetSurveySessions",
69338
+ "summary": "Get Survey Sessions",
69339
+ "description": "Get Survey Sessions endpoint",
69085
69340
  "parameters": [
69086
69341
  {
69087
69342
  "in": "path",
@@ -69153,7 +69408,10 @@
69153
69408
  "example": "Success message."
69154
69409
  },
69155
69410
  "data": {
69156
- "type": "object"
69411
+ "type": "array",
69412
+ "items": {
69413
+ "$ref": "#/components/schemas/EventSession"
69414
+ }
69157
69415
  },
69158
69416
  "count": {
69159
69417
  "type": "integer",
@@ -69171,15 +69429,15 @@
69171
69429
  }
69172
69430
  },
69173
69431
  "tags": [
69174
- "Surveys::Submissions"
69432
+ "Surveys"
69175
69433
  ]
69176
69434
  }
69177
69435
  },
69178
- "/surveys/{surveyId}/submissions/{submissionId}": {
69179
- "get": {
69180
- "operationId": "GetSurveySubmission",
69181
- "summary": "Get Survey Submission",
69182
- "description": "Get Survey Submission endpoint",
69436
+ "/surveys/{surveyId}/sessions/{sessionId}": {
69437
+ "post": {
69438
+ "operationId": "AddSurveySession",
69439
+ "summary": "Add Survey Session",
69440
+ "description": "Add Survey Session endpoint",
69183
69441
  "parameters": [
69184
69442
  {
69185
69443
  "in": "path",
@@ -69192,11 +69450,231 @@
69192
69450
  },
69193
69451
  {
69194
69452
  "in": "path",
69195
- "name": "submissionId",
69453
+ "name": "sessionId",
69196
69454
  "schema": {
69197
69455
  "type": "string"
69198
69456
  },
69199
- "description": "The submission identifier",
69457
+ "description": "The session identifier",
69458
+ "required": true
69459
+ }
69460
+ ],
69461
+ "responses": {
69462
+ "200": {
69463
+ "description": "Successful response",
69464
+ "content": {
69465
+ "application/json": {
69466
+ "schema": {
69467
+ "type": "object",
69468
+ "properties": {
69469
+ "status": {
69470
+ "type": "string",
69471
+ "enum": [
69472
+ "ok"
69473
+ ]
69474
+ },
69475
+ "message": {
69476
+ "type": "string",
69477
+ "example": "Success message."
69478
+ },
69479
+ "data": {
69480
+ "$ref": "#/components/schemas/Survey"
69481
+ }
69482
+ },
69483
+ "required": [
69484
+ "status",
69485
+ "message",
69486
+ "data"
69487
+ ]
69488
+ }
69489
+ }
69490
+ }
69491
+ }
69492
+ },
69493
+ "tags": [
69494
+ "Surveys::Sessions"
69495
+ ]
69496
+ },
69497
+ "delete": {
69498
+ "operationId": "RemoveSurveySession",
69499
+ "summary": "Remove Survey Session",
69500
+ "description": "Remove Survey Session endpoint",
69501
+ "parameters": [
69502
+ {
69503
+ "in": "path",
69504
+ "name": "surveyId",
69505
+ "schema": {
69506
+ "type": "string"
69507
+ },
69508
+ "description": "The survey identifier",
69509
+ "required": true
69510
+ },
69511
+ {
69512
+ "in": "path",
69513
+ "name": "sessionId",
69514
+ "schema": {
69515
+ "type": "string"
69516
+ },
69517
+ "description": "The session identifier",
69518
+ "required": true
69519
+ }
69520
+ ],
69521
+ "responses": {
69522
+ "200": {
69523
+ "description": "Successful response",
69524
+ "content": {
69525
+ "application/json": {
69526
+ "schema": {
69527
+ "type": "object",
69528
+ "properties": {
69529
+ "status": {
69530
+ "type": "string",
69531
+ "enum": [
69532
+ "ok"
69533
+ ]
69534
+ },
69535
+ "message": {
69536
+ "type": "string",
69537
+ "example": "Success message."
69538
+ },
69539
+ "data": {
69540
+ "$ref": "#/components/schemas/Survey"
69541
+ }
69542
+ },
69543
+ "required": [
69544
+ "status",
69545
+ "message",
69546
+ "data"
69547
+ ]
69548
+ }
69549
+ }
69550
+ }
69551
+ }
69552
+ },
69553
+ "tags": [
69554
+ "Surveys::Sessions"
69555
+ ]
69556
+ }
69557
+ },
69558
+ "/surveys/{surveyId}/submissions": {
69559
+ "get": {
69560
+ "operationId": "GetSurveySubmissions",
69561
+ "summary": "Get Survey Submissions",
69562
+ "description": "Get Survey Submissions endpoint",
69563
+ "parameters": [
69564
+ {
69565
+ "in": "path",
69566
+ "name": "surveyId",
69567
+ "schema": {
69568
+ "type": "string"
69569
+ },
69570
+ "description": "The survey identifier",
69571
+ "required": true
69572
+ },
69573
+ {
69574
+ "in": "query",
69575
+ "name": "page",
69576
+ "schema": {
69577
+ "type": "integer",
69578
+ "minimum": 1,
69579
+ "default": 1
69580
+ },
69581
+ "description": "Page number",
69582
+ "required": false
69583
+ },
69584
+ {
69585
+ "in": "query",
69586
+ "name": "pageSize",
69587
+ "schema": {
69588
+ "type": "integer",
69589
+ "minimum": 1,
69590
+ "maximum": 100,
69591
+ "default": 25
69592
+ },
69593
+ "description": "Number of items per page",
69594
+ "required": false
69595
+ },
69596
+ {
69597
+ "in": "query",
69598
+ "name": "orderBy",
69599
+ "schema": {
69600
+ "type": "string"
69601
+ },
69602
+ "description": "Field to order by",
69603
+ "required": false
69604
+ },
69605
+ {
69606
+ "in": "query",
69607
+ "name": "search",
69608
+ "schema": {
69609
+ "type": "string"
69610
+ },
69611
+ "description": "Search query",
69612
+ "required": false
69613
+ }
69614
+ ],
69615
+ "responses": {
69616
+ "200": {
69617
+ "description": "Successful response",
69618
+ "content": {
69619
+ "application/json": {
69620
+ "schema": {
69621
+ "type": "object",
69622
+ "properties": {
69623
+ "status": {
69624
+ "type": "string",
69625
+ "enum": [
69626
+ "ok"
69627
+ ]
69628
+ },
69629
+ "message": {
69630
+ "type": "string",
69631
+ "example": "Success message."
69632
+ },
69633
+ "data": {
69634
+ "type": "object"
69635
+ },
69636
+ "count": {
69637
+ "type": "integer",
69638
+ "example": 100
69639
+ }
69640
+ },
69641
+ "required": [
69642
+ "status",
69643
+ "message",
69644
+ "data"
69645
+ ]
69646
+ }
69647
+ }
69648
+ }
69649
+ }
69650
+ },
69651
+ "tags": [
69652
+ "Surveys::Submissions"
69653
+ ]
69654
+ }
69655
+ },
69656
+ "/surveys/{surveyId}/submissions/{submissionId}": {
69657
+ "get": {
69658
+ "operationId": "GetSurveySubmission",
69659
+ "summary": "Get Survey Submission",
69660
+ "description": "Get Survey Submission endpoint",
69661
+ "parameters": [
69662
+ {
69663
+ "in": "path",
69664
+ "name": "surveyId",
69665
+ "schema": {
69666
+ "type": "string"
69667
+ },
69668
+ "description": "The survey identifier",
69669
+ "required": true
69670
+ },
69671
+ {
69672
+ "in": "path",
69673
+ "name": "submissionId",
69674
+ "schema": {
69675
+ "type": "string"
69676
+ },
69677
+ "description": "The submission identifier",
69200
69678
  "required": true
69201
69679
  }
69202
69680
  ],
@@ -73828,6 +74306,14 @@
73828
74306
  "countryStateCity"
73829
74307
  ]
73830
74308
  },
74309
+ "OnSiteScanType": {
74310
+ "type": "string",
74311
+ "enum": [
74312
+ "both",
74313
+ "qr",
74314
+ "code128"
74315
+ ]
74316
+ },
73831
74317
  "BaseOrganizationModule": {
73832
74318
  "type": "object",
73833
74319
  "properties": {
@@ -74996,13 +75482,16 @@
74996
75482
  ],
74997
75483
  "nullable": true
74998
75484
  },
74999
- "session": {
75000
- "allOf": [
75001
- {
75002
- "$ref": "#/components/schemas/BaseEventSession"
75485
+ "_count": {
75486
+ "type": "object",
75487
+ "properties": {
75488
+ "sessions": {
75489
+ "type": "number"
75003
75490
  }
75004
- ],
75005
- "nullable": true
75491
+ },
75492
+ "required": [
75493
+ "sessions"
75494
+ ]
75006
75495
  }
75007
75496
  },
75008
75497
  "required": [
@@ -75016,7 +75505,7 @@
75016
75505
  "type",
75017
75506
  "accessLevel",
75018
75507
  "survey",
75019
- "session"
75508
+ "_count"
75020
75509
  ]
75021
75510
  },
75022
75511
  "EventActivation": {
@@ -75056,6 +75545,9 @@
75056
75545
  "continuousScanning": {
75057
75546
  "type": "boolean"
75058
75547
  },
75548
+ "scanType": {
75549
+ "$ref": "#/components/schemas/OnSiteScanType"
75550
+ },
75059
75551
  "createdAt": {
75060
75552
  "type": "string"
75061
75553
  },
@@ -75071,6 +75563,7 @@
75071
75563
  "protectionCode",
75072
75564
  "longDescription",
75073
75565
  "continuousScanning",
75566
+ "scanType",
75074
75567
  "createdAt",
75075
75568
  "updatedAt"
75076
75569
  ]
@@ -77851,6 +78344,9 @@
77851
78344
  "continuousScanning": {
77852
78345
  "type": "boolean"
77853
78346
  },
78347
+ "scanType": {
78348
+ "$ref": "#/components/schemas/OnSiteScanType"
78349
+ },
77854
78350
  "options": {
77855
78351
  "type": "object",
77856
78352
  "nullable": true
@@ -77895,6 +78391,7 @@
77895
78391
  "meetingId",
77896
78392
  "meeting",
77897
78393
  "continuousScanning",
78394
+ "scanType",
77898
78395
  "options"
77899
78396
  ]
77900
78397
  }
@@ -83784,6 +84281,9 @@
83784
84281
  },
83785
84282
  "continuousScanning": {
83786
84283
  "type": "boolean"
84284
+ },
84285
+ "scanType": {
84286
+ "$ref": "#/components/schemas/OnSiteScanType"
83787
84287
  }
83788
84288
  },
83789
84289
  "required": [
@@ -83799,7 +84299,8 @@
83799
84299
  "activationId",
83800
84300
  "activation",
83801
84301
  "allowedTiers",
83802
- "continuousScanning"
84302
+ "continuousScanning",
84303
+ "scanType"
83803
84304
  ]
83804
84305
  }
83805
84306
  ]
@@ -89922,6 +90423,39 @@
89922
90423
  }
89923
90424
  ]
89924
90425
  },
90426
+ "EventMediaItemTranslation": {
90427
+ "type": "object",
90428
+ "properties": {
90429
+ "id": {
90430
+ "type": "string"
90431
+ },
90432
+ "locale": {
90433
+ "type": "string"
90434
+ },
90435
+ "name": {
90436
+ "type": "string",
90437
+ "nullable": true
90438
+ },
90439
+ "description": {
90440
+ "type": "string",
90441
+ "nullable": true
90442
+ },
90443
+ "createdAt": {
90444
+ "type": "string"
90445
+ },
90446
+ "updatedAt": {
90447
+ "type": "string"
90448
+ }
90449
+ },
90450
+ "required": [
90451
+ "id",
90452
+ "locale",
90453
+ "name",
90454
+ "description",
90455
+ "createdAt",
90456
+ "updatedAt"
90457
+ ]
90458
+ },
89925
90459
  "BaseEventSponsorshipLevel": {
89926
90460
  "type": "object",
89927
90461
  "properties": {
@@ -90192,18 +90726,6 @@
90192
90726
  ],
90193
90727
  "nullable": true
90194
90728
  },
90195
- "sessionId": {
90196
- "type": "string",
90197
- "nullable": true
90198
- },
90199
- "session": {
90200
- "allOf": [
90201
- {
90202
- "$ref": "#/components/schemas/BaseEventSession"
90203
- }
90204
- ],
90205
- "nullable": true
90206
- },
90207
90729
  "activationId": {
90208
90730
  "type": "string",
90209
90731
  "nullable": true
@@ -90242,8 +90764,6 @@
90242
90764
  "updatedAt",
90243
90765
  "eventId",
90244
90766
  "event",
90245
- "sessionId",
90246
- "session",
90247
90767
  "activationId",
90248
90768
  "activation",
90249
90769
  "passTypes",
@@ -94156,6 +94676,14 @@
94156
94676
  },
94157
94677
  "continuousScanning": {
94158
94678
  "type": "boolean"
94679
+ },
94680
+ "scanType": {
94681
+ "allOf": [
94682
+ {
94683
+ "$ref": "#/components/schemas/OnSiteScanType"
94684
+ }
94685
+ ],
94686
+ "nullable": true
94159
94687
  }
94160
94688
  },
94161
94689
  "required": [
@@ -94240,6 +94768,14 @@
94240
94768
  },
94241
94769
  "continuousScanning": {
94242
94770
  "type": "boolean"
94771
+ },
94772
+ "scanType": {
94773
+ "allOf": [
94774
+ {
94775
+ "$ref": "#/components/schemas/OnSiteScanType"
94776
+ }
94777
+ ],
94778
+ "nullable": true
94243
94779
  }
94244
94780
  }
94245
94781
  },
@@ -95017,6 +95553,14 @@
95017
95553
  },
95018
95554
  "continuousScanning": {
95019
95555
  "type": "boolean"
95556
+ },
95557
+ "scanType": {
95558
+ "allOf": [
95559
+ {
95560
+ "$ref": "#/components/schemas/OnSiteScanType"
95561
+ }
95562
+ ],
95563
+ "nullable": true
95020
95564
  }
95021
95565
  },
95022
95566
  "required": [
@@ -95281,6 +95825,14 @@
95281
95825
  },
95282
95826
  "continuousScanning": {
95283
95827
  "type": "boolean"
95828
+ },
95829
+ "scanType": {
95830
+ "allOf": [
95831
+ {
95832
+ "$ref": "#/components/schemas/OnSiteScanType"
95833
+ }
95834
+ ],
95835
+ "nullable": true
95284
95836
  }
95285
95837
  }
95286
95838
  },
@@ -96056,6 +96608,14 @@
96056
96608
  },
96057
96609
  "continuousScanning": {
96058
96610
  "type": "boolean"
96611
+ },
96612
+ "scanType": {
96613
+ "allOf": [
96614
+ {
96615
+ "$ref": "#/components/schemas/OnSiteScanType"
96616
+ }
96617
+ ],
96618
+ "nullable": true
96059
96619
  }
96060
96620
  },
96061
96621
  "required": [
@@ -96216,6 +96776,14 @@
96216
96776
  },
96217
96777
  "continuousScanning": {
96218
96778
  "type": "boolean"
96779
+ },
96780
+ "scanType": {
96781
+ "allOf": [
96782
+ {
96783
+ "$ref": "#/components/schemas/OnSiteScanType"
96784
+ }
96785
+ ],
96786
+ "nullable": true
96219
96787
  }
96220
96788
  }
96221
96789
  },
@@ -101041,10 +101609,6 @@
101041
101609
  "type": "string",
101042
101610
  "nullable": true
101043
101611
  },
101044
- "sessionId": {
101045
- "type": "string",
101046
- "nullable": true
101047
- },
101048
101612
  "activationId": {
101049
101613
  "type": "string",
101050
101614
  "nullable": true
@@ -101099,10 +101663,6 @@
101099
101663
  "type": "string",
101100
101664
  "nullable": true
101101
101665
  },
101102
- "sessionId": {
101103
- "type": "string",
101104
- "nullable": true
101105
- },
101106
101666
  "activationId": {
101107
101667
  "type": "string",
101108
101668
  "nullable": true
@@ -101757,6 +102317,19 @@
101757
102317
  }
101758
102318
  }
101759
102319
  },
102320
+ "EventMediaItemTranslationUpdateInputs": {
102321
+ "type": "object",
102322
+ "properties": {
102323
+ "name": {
102324
+ "type": "string",
102325
+ "nullable": true
102326
+ },
102327
+ "description": {
102328
+ "type": "string",
102329
+ "nullable": true
102330
+ }
102331
+ }
102332
+ },
101760
102333
  "EventSponsorshipLevelCreateInputs": {
101761
102334
  "type": "object",
101762
102335
  "properties": {