@seamapi/types 1.947.0 → 1.949.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/dist/connect.cjs +432 -65
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1177 -167
- package/dist/index.cjs +432 -65
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +0 -71
- package/lib/seam/connect/models/access-codes/managed-access-code.js +0 -14
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +0 -26
- package/lib/seam/connect/models/events/access-codes.d.ts +126 -0
- package/lib/seam/connect/models/events/access-grants.d.ts +42 -0
- package/lib/seam/connect/models/events/access-methods.d.ts +36 -0
- package/lib/seam/connect/models/events/acs/access-groups.d.ts +6 -0
- package/lib/seam/connect/models/events/acs/common.d.ts +3 -0
- package/lib/seam/connect/models/events/acs/credentials.d.ts +24 -0
- package/lib/seam/connect/models/events/acs/encoders.d.ts +12 -0
- package/lib/seam/connect/models/events/acs/entrances.d.ts +12 -0
- package/lib/seam/connect/models/events/acs/index.d.ts +42 -0
- package/lib/seam/connect/models/events/acs/systems.d.ts +18 -0
- package/lib/seam/connect/models/events/acs/users.d.ts +12 -0
- package/lib/seam/connect/models/events/action-attempts.d.ts +48 -0
- package/lib/seam/connect/models/events/client-sessions.d.ts +6 -0
- package/lib/seam/connect/models/events/common.d.ts +3 -0
- package/lib/seam/connect/models/events/common.js +4 -0
- package/lib/seam/connect/models/events/common.js.map +1 -1
- package/lib/seam/connect/models/events/connect-webviews.d.ts +12 -0
- package/lib/seam/connect/models/events/connected-accounts.d.ts +48 -0
- package/lib/seam/connect/models/events/devices.d.ts +210 -0
- package/lib/seam/connect/models/events/enrollment-automations.d.ts +6 -0
- package/lib/seam/connect/models/events/phones.d.ts +6 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +321 -0
- package/lib/seam/connect/models/events/spaces.d.ts +18 -0
- package/lib/seam/connect/openapi.js +428 -54
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +856 -99
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +0 -15
- package/src/lib/seam/connect/models/events/common.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +535 -64
- package/src/lib/seam/connect/route-types.ts +856 -110
|
@@ -200,33 +200,6 @@ const openapi = {
|
|
|
200
200
|
type: 'object',
|
|
201
201
|
'x-resource-type': 'access_code',
|
|
202
202
|
},
|
|
203
|
-
{
|
|
204
|
-
description: 'An attempt to modify this access code was prevented.',
|
|
205
|
-
properties: {
|
|
206
|
-
created_at: {
|
|
207
|
-
description: 'Date and time at which Seam created the error.',
|
|
208
|
-
format: 'date-time',
|
|
209
|
-
type: 'string',
|
|
210
|
-
},
|
|
211
|
-
error_code: {
|
|
212
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
213
|
-
enum: ['duplicate_code_attempt_prevented'],
|
|
214
|
-
type: 'string',
|
|
215
|
-
},
|
|
216
|
-
is_access_code_error: {
|
|
217
|
-
description: 'Indicates that this is an access code error.',
|
|
218
|
-
enum: [true],
|
|
219
|
-
type: 'boolean',
|
|
220
|
-
},
|
|
221
|
-
message: {
|
|
222
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
223
|
-
type: 'string',
|
|
224
|
-
},
|
|
225
|
-
},
|
|
226
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
227
|
-
type: 'object',
|
|
228
|
-
'x-resource-type': 'access_code',
|
|
229
|
-
},
|
|
230
203
|
{
|
|
231
204
|
description: 'No space for access code on device.',
|
|
232
205
|
properties: {
|
|
@@ -15652,6 +15625,10 @@ const openapi = {
|
|
|
15652
15625
|
format: 'uuid',
|
|
15653
15626
|
type: 'string',
|
|
15654
15627
|
},
|
|
15628
|
+
event_description: {
|
|
15629
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
15630
|
+
type: 'string',
|
|
15631
|
+
},
|
|
15655
15632
|
event_id: {
|
|
15656
15633
|
description: 'ID of the event.',
|
|
15657
15634
|
format: 'uuid',
|
|
@@ -15748,6 +15725,10 @@ const openapi = {
|
|
|
15748
15725
|
format: 'uuid',
|
|
15749
15726
|
type: 'string',
|
|
15750
15727
|
},
|
|
15728
|
+
event_description: {
|
|
15729
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
15730
|
+
type: 'string',
|
|
15731
|
+
},
|
|
15751
15732
|
event_id: {
|
|
15752
15733
|
description: 'ID of the event.',
|
|
15753
15734
|
format: 'uuid',
|
|
@@ -15819,6 +15800,10 @@ const openapi = {
|
|
|
15819
15800
|
format: 'uuid',
|
|
15820
15801
|
type: 'string',
|
|
15821
15802
|
},
|
|
15803
|
+
event_description: {
|
|
15804
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
15805
|
+
type: 'string',
|
|
15806
|
+
},
|
|
15822
15807
|
event_id: {
|
|
15823
15808
|
description: 'ID of the event.',
|
|
15824
15809
|
format: 'uuid',
|
|
@@ -15920,6 +15905,10 @@ const openapi = {
|
|
|
15920
15905
|
format: 'uuid',
|
|
15921
15906
|
type: 'string',
|
|
15922
15907
|
},
|
|
15908
|
+
event_description: {
|
|
15909
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
15910
|
+
type: 'string',
|
|
15911
|
+
},
|
|
15923
15912
|
event_id: {
|
|
15924
15913
|
description: 'ID of the event.',
|
|
15925
15914
|
format: 'uuid',
|
|
@@ -16021,6 +16010,10 @@ const openapi = {
|
|
|
16021
16010
|
format: 'uuid',
|
|
16022
16011
|
type: 'string',
|
|
16023
16012
|
},
|
|
16013
|
+
event_description: {
|
|
16014
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
16015
|
+
type: 'string',
|
|
16016
|
+
},
|
|
16024
16017
|
event_id: {
|
|
16025
16018
|
description: 'ID of the event.',
|
|
16026
16019
|
format: 'uuid',
|
|
@@ -16128,6 +16121,10 @@ const openapi = {
|
|
|
16128
16121
|
format: 'uuid',
|
|
16129
16122
|
type: 'string',
|
|
16130
16123
|
},
|
|
16124
|
+
event_description: {
|
|
16125
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
16126
|
+
type: 'string',
|
|
16127
|
+
},
|
|
16131
16128
|
event_id: {
|
|
16132
16129
|
description: 'ID of the event.',
|
|
16133
16130
|
format: 'uuid',
|
|
@@ -16236,6 +16233,10 @@ const openapi = {
|
|
|
16236
16233
|
format: 'uuid',
|
|
16237
16234
|
type: 'string',
|
|
16238
16235
|
},
|
|
16236
|
+
event_description: {
|
|
16237
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
16238
|
+
type: 'string',
|
|
16239
|
+
},
|
|
16239
16240
|
event_id: {
|
|
16240
16241
|
description: 'ID of the event.',
|
|
16241
16242
|
format: 'uuid',
|
|
@@ -16311,6 +16312,10 @@ const openapi = {
|
|
|
16311
16312
|
format: 'uuid',
|
|
16312
16313
|
type: 'string',
|
|
16313
16314
|
},
|
|
16315
|
+
event_description: {
|
|
16316
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
16317
|
+
type: 'string',
|
|
16318
|
+
},
|
|
16314
16319
|
event_id: {
|
|
16315
16320
|
description: 'ID of the event.',
|
|
16316
16321
|
format: 'uuid',
|
|
@@ -16382,6 +16387,10 @@ const openapi = {
|
|
|
16382
16387
|
format: 'uuid',
|
|
16383
16388
|
type: 'string',
|
|
16384
16389
|
},
|
|
16390
|
+
event_description: {
|
|
16391
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
16392
|
+
type: 'string',
|
|
16393
|
+
},
|
|
16385
16394
|
event_id: {
|
|
16386
16395
|
description: 'ID of the event.',
|
|
16387
16396
|
format: 'uuid',
|
|
@@ -16596,6 +16605,10 @@ const openapi = {
|
|
|
16596
16605
|
},
|
|
16597
16606
|
type: 'array',
|
|
16598
16607
|
},
|
|
16608
|
+
event_description: {
|
|
16609
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
16610
|
+
type: 'string',
|
|
16611
|
+
},
|
|
16599
16612
|
event_id: {
|
|
16600
16613
|
description: 'ID of the event.',
|
|
16601
16614
|
format: 'uuid',
|
|
@@ -16816,6 +16829,10 @@ const openapi = {
|
|
|
16816
16829
|
},
|
|
16817
16830
|
type: 'array',
|
|
16818
16831
|
},
|
|
16832
|
+
event_description: {
|
|
16833
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
16834
|
+
type: 'string',
|
|
16835
|
+
},
|
|
16819
16836
|
event_id: {
|
|
16820
16837
|
description: 'ID of the event.',
|
|
16821
16838
|
format: 'uuid',
|
|
@@ -16897,6 +16914,10 @@ const openapi = {
|
|
|
16897
16914
|
format: 'uuid',
|
|
16898
16915
|
type: 'string',
|
|
16899
16916
|
},
|
|
16917
|
+
event_description: {
|
|
16918
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
16919
|
+
type: 'string',
|
|
16920
|
+
},
|
|
16900
16921
|
event_id: {
|
|
16901
16922
|
description: 'ID of the event.',
|
|
16902
16923
|
format: 'uuid',
|
|
@@ -17109,6 +17130,10 @@ const openapi = {
|
|
|
17109
17130
|
},
|
|
17110
17131
|
type: 'array',
|
|
17111
17132
|
},
|
|
17133
|
+
event_description: {
|
|
17134
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
17135
|
+
type: 'string',
|
|
17136
|
+
},
|
|
17112
17137
|
event_id: {
|
|
17113
17138
|
description: 'ID of the event.',
|
|
17114
17139
|
format: 'uuid',
|
|
@@ -17329,6 +17354,10 @@ const openapi = {
|
|
|
17329
17354
|
},
|
|
17330
17355
|
type: 'array',
|
|
17331
17356
|
},
|
|
17357
|
+
event_description: {
|
|
17358
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
17359
|
+
type: 'string',
|
|
17360
|
+
},
|
|
17332
17361
|
event_id: {
|
|
17333
17362
|
description: 'ID of the event.',
|
|
17334
17363
|
format: 'uuid',
|
|
@@ -17405,6 +17434,10 @@ const openapi = {
|
|
|
17405
17434
|
format: 'uuid',
|
|
17406
17435
|
type: 'string',
|
|
17407
17436
|
},
|
|
17437
|
+
event_description: {
|
|
17438
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
17439
|
+
type: 'string',
|
|
17440
|
+
},
|
|
17408
17441
|
event_id: {
|
|
17409
17442
|
description: 'ID of the event.',
|
|
17410
17443
|
format: 'uuid',
|
|
@@ -17475,6 +17508,10 @@ const openapi = {
|
|
|
17475
17508
|
format: 'uuid',
|
|
17476
17509
|
type: 'string',
|
|
17477
17510
|
},
|
|
17511
|
+
event_description: {
|
|
17512
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
17513
|
+
type: 'string',
|
|
17514
|
+
},
|
|
17478
17515
|
event_id: {
|
|
17479
17516
|
description: 'ID of the event.',
|
|
17480
17517
|
format: 'uuid',
|
|
@@ -17549,6 +17586,10 @@ const openapi = {
|
|
|
17549
17586
|
format: 'uuid',
|
|
17550
17587
|
type: 'string',
|
|
17551
17588
|
},
|
|
17589
|
+
event_description: {
|
|
17590
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
17591
|
+
type: 'string',
|
|
17592
|
+
},
|
|
17552
17593
|
event_id: {
|
|
17553
17594
|
description: 'ID of the event.',
|
|
17554
17595
|
format: 'uuid',
|
|
@@ -17620,6 +17661,10 @@ const openapi = {
|
|
|
17620
17661
|
format: 'uuid',
|
|
17621
17662
|
type: 'string',
|
|
17622
17663
|
},
|
|
17664
|
+
event_description: {
|
|
17665
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
17666
|
+
type: 'string',
|
|
17667
|
+
},
|
|
17623
17668
|
event_id: {
|
|
17624
17669
|
description: 'ID of the event.',
|
|
17625
17670
|
format: 'uuid',
|
|
@@ -17834,6 +17879,10 @@ const openapi = {
|
|
|
17834
17879
|
},
|
|
17835
17880
|
type: 'array',
|
|
17836
17881
|
},
|
|
17882
|
+
event_description: {
|
|
17883
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
17884
|
+
type: 'string',
|
|
17885
|
+
},
|
|
17837
17886
|
event_id: {
|
|
17838
17887
|
description: 'ID of the event.',
|
|
17839
17888
|
format: 'uuid',
|
|
@@ -17910,6 +17959,10 @@ const openapi = {
|
|
|
17910
17959
|
format: 'uuid',
|
|
17911
17960
|
type: 'string',
|
|
17912
17961
|
},
|
|
17962
|
+
event_description: {
|
|
17963
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
17964
|
+
type: 'string',
|
|
17965
|
+
},
|
|
17913
17966
|
event_id: {
|
|
17914
17967
|
description: 'ID of the event.',
|
|
17915
17968
|
format: 'uuid',
|
|
@@ -17980,6 +18033,10 @@ const openapi = {
|
|
|
17980
18033
|
format: 'uuid',
|
|
17981
18034
|
type: 'string',
|
|
17982
18035
|
},
|
|
18036
|
+
event_description: {
|
|
18037
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
18038
|
+
type: 'string',
|
|
18039
|
+
},
|
|
17983
18040
|
event_id: {
|
|
17984
18041
|
description: 'ID of the event.',
|
|
17985
18042
|
format: 'uuid',
|
|
@@ -18026,6 +18083,10 @@ const openapi = {
|
|
|
18026
18083
|
format: 'date-time',
|
|
18027
18084
|
type: 'string',
|
|
18028
18085
|
},
|
|
18086
|
+
event_description: {
|
|
18087
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
18088
|
+
type: 'string',
|
|
18089
|
+
},
|
|
18029
18090
|
event_id: {
|
|
18030
18091
|
description: 'ID of the event.',
|
|
18031
18092
|
format: 'uuid',
|
|
@@ -18067,6 +18128,10 @@ const openapi = {
|
|
|
18067
18128
|
format: 'date-time',
|
|
18068
18129
|
type: 'string',
|
|
18069
18130
|
},
|
|
18131
|
+
event_description: {
|
|
18132
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
18133
|
+
type: 'string',
|
|
18134
|
+
},
|
|
18070
18135
|
event_id: {
|
|
18071
18136
|
description: 'ID of the event.',
|
|
18072
18137
|
format: 'uuid',
|
|
@@ -18108,6 +18173,10 @@ const openapi = {
|
|
|
18108
18173
|
format: 'date-time',
|
|
18109
18174
|
type: 'string',
|
|
18110
18175
|
},
|
|
18176
|
+
event_description: {
|
|
18177
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
18178
|
+
type: 'string',
|
|
18179
|
+
},
|
|
18111
18180
|
event_id: {
|
|
18112
18181
|
description: 'ID of the event.',
|
|
18113
18182
|
format: 'uuid',
|
|
@@ -18157,6 +18226,10 @@ const openapi = {
|
|
|
18157
18226
|
format: 'date-time',
|
|
18158
18227
|
type: 'string',
|
|
18159
18228
|
},
|
|
18229
|
+
event_description: {
|
|
18230
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
18231
|
+
type: 'string',
|
|
18232
|
+
},
|
|
18160
18233
|
event_id: {
|
|
18161
18234
|
description: 'ID of the event.',
|
|
18162
18235
|
format: 'uuid',
|
|
@@ -18207,6 +18280,10 @@ const openapi = {
|
|
|
18207
18280
|
format: 'date-time',
|
|
18208
18281
|
type: 'string',
|
|
18209
18282
|
},
|
|
18283
|
+
event_description: {
|
|
18284
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
18285
|
+
type: 'string',
|
|
18286
|
+
},
|
|
18210
18287
|
event_id: {
|
|
18211
18288
|
description: 'ID of the event.',
|
|
18212
18289
|
format: 'uuid',
|
|
@@ -18260,6 +18337,10 @@ const openapi = {
|
|
|
18260
18337
|
description: 'The new end time for the access grant.',
|
|
18261
18338
|
type: 'string',
|
|
18262
18339
|
},
|
|
18340
|
+
event_description: {
|
|
18341
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
18342
|
+
type: 'string',
|
|
18343
|
+
},
|
|
18263
18344
|
event_id: {
|
|
18264
18345
|
description: 'ID of the event.',
|
|
18265
18346
|
format: 'uuid',
|
|
@@ -18312,6 +18393,10 @@ const openapi = {
|
|
|
18312
18393
|
description: 'Description of why the access methods could not be created.',
|
|
18313
18394
|
type: 'string',
|
|
18314
18395
|
},
|
|
18396
|
+
event_description: {
|
|
18397
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
18398
|
+
type: 'string',
|
|
18399
|
+
},
|
|
18315
18400
|
event_id: {
|
|
18316
18401
|
description: 'ID of the event.',
|
|
18317
18402
|
format: 'uuid',
|
|
@@ -18378,6 +18463,10 @@ const openapi = {
|
|
|
18378
18463
|
format: 'date-time',
|
|
18379
18464
|
type: 'string',
|
|
18380
18465
|
},
|
|
18466
|
+
event_description: {
|
|
18467
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
18468
|
+
type: 'string',
|
|
18469
|
+
},
|
|
18381
18470
|
event_id: {
|
|
18382
18471
|
description: 'ID of the event.',
|
|
18383
18472
|
format: 'uuid',
|
|
@@ -18434,6 +18523,10 @@ const openapi = {
|
|
|
18434
18523
|
format: 'date-time',
|
|
18435
18524
|
type: 'string',
|
|
18436
18525
|
},
|
|
18526
|
+
event_description: {
|
|
18527
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
18528
|
+
type: 'string',
|
|
18529
|
+
},
|
|
18437
18530
|
event_id: {
|
|
18438
18531
|
description: 'ID of the event.',
|
|
18439
18532
|
format: 'uuid',
|
|
@@ -18486,6 +18579,10 @@ const openapi = {
|
|
|
18486
18579
|
format: 'date-time',
|
|
18487
18580
|
type: 'string',
|
|
18488
18581
|
},
|
|
18582
|
+
event_description: {
|
|
18583
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
18584
|
+
type: 'string',
|
|
18585
|
+
},
|
|
18489
18586
|
event_id: {
|
|
18490
18587
|
description: 'ID of the event.',
|
|
18491
18588
|
format: 'uuid',
|
|
@@ -18541,6 +18638,10 @@ const openapi = {
|
|
|
18541
18638
|
format: 'date-time',
|
|
18542
18639
|
type: 'string',
|
|
18543
18640
|
},
|
|
18641
|
+
event_description: {
|
|
18642
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
18643
|
+
type: 'string',
|
|
18644
|
+
},
|
|
18544
18645
|
event_id: {
|
|
18545
18646
|
description: 'ID of the event.',
|
|
18546
18647
|
format: 'uuid',
|
|
@@ -18597,6 +18698,10 @@ const openapi = {
|
|
|
18597
18698
|
format: 'date-time',
|
|
18598
18699
|
type: 'string',
|
|
18599
18700
|
},
|
|
18701
|
+
event_description: {
|
|
18702
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
18703
|
+
type: 'string',
|
|
18704
|
+
},
|
|
18600
18705
|
event_id: {
|
|
18601
18706
|
description: 'ID of the event.',
|
|
18602
18707
|
format: 'uuid',
|
|
@@ -18653,6 +18758,10 @@ const openapi = {
|
|
|
18653
18758
|
format: 'date-time',
|
|
18654
18759
|
type: 'string',
|
|
18655
18760
|
},
|
|
18761
|
+
event_description: {
|
|
18762
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
18763
|
+
type: 'string',
|
|
18764
|
+
},
|
|
18656
18765
|
event_id: {
|
|
18657
18766
|
description: 'ID of the event.',
|
|
18658
18767
|
format: 'uuid',
|
|
@@ -18700,6 +18809,10 @@ const openapi = {
|
|
|
18700
18809
|
format: 'date-time',
|
|
18701
18810
|
type: 'string',
|
|
18702
18811
|
},
|
|
18812
|
+
event_description: {
|
|
18813
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
18814
|
+
type: 'string',
|
|
18815
|
+
},
|
|
18703
18816
|
event_id: {
|
|
18704
18817
|
description: 'ID of the event.',
|
|
18705
18818
|
format: 'uuid',
|
|
@@ -18746,6 +18859,10 @@ const openapi = {
|
|
|
18746
18859
|
format: 'date-time',
|
|
18747
18860
|
type: 'string',
|
|
18748
18861
|
},
|
|
18862
|
+
event_description: {
|
|
18863
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
18864
|
+
type: 'string',
|
|
18865
|
+
},
|
|
18749
18866
|
event_id: {
|
|
18750
18867
|
description: 'ID of the event.',
|
|
18751
18868
|
format: 'uuid',
|
|
@@ -18888,6 +19005,10 @@ const openapi = {
|
|
|
18888
19005
|
format: 'date-time',
|
|
18889
19006
|
type: 'string',
|
|
18890
19007
|
},
|
|
19008
|
+
event_description: {
|
|
19009
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19010
|
+
type: 'string',
|
|
19011
|
+
},
|
|
18891
19012
|
event_id: {
|
|
18892
19013
|
description: 'ID of the event.',
|
|
18893
19014
|
format: 'uuid',
|
|
@@ -18943,6 +19064,10 @@ const openapi = {
|
|
|
18943
19064
|
format: 'date-time',
|
|
18944
19065
|
type: 'string',
|
|
18945
19066
|
},
|
|
19067
|
+
event_description: {
|
|
19068
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19069
|
+
type: 'string',
|
|
19070
|
+
},
|
|
18946
19071
|
event_id: {
|
|
18947
19072
|
description: 'ID of the event.',
|
|
18948
19073
|
format: 'uuid',
|
|
@@ -18995,6 +19120,10 @@ const openapi = {
|
|
|
18995
19120
|
format: 'date-time',
|
|
18996
19121
|
type: 'string',
|
|
18997
19122
|
},
|
|
19123
|
+
event_description: {
|
|
19124
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19125
|
+
type: 'string',
|
|
19126
|
+
},
|
|
18998
19127
|
event_id: {
|
|
18999
19128
|
description: 'ID of the event.',
|
|
19000
19129
|
format: 'uuid',
|
|
@@ -19047,6 +19176,10 @@ const openapi = {
|
|
|
19047
19176
|
format: 'date-time',
|
|
19048
19177
|
type: 'string',
|
|
19049
19178
|
},
|
|
19179
|
+
event_description: {
|
|
19180
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19181
|
+
type: 'string',
|
|
19182
|
+
},
|
|
19050
19183
|
event_id: {
|
|
19051
19184
|
description: 'ID of the event.',
|
|
19052
19185
|
format: 'uuid',
|
|
@@ -19099,6 +19232,10 @@ const openapi = {
|
|
|
19099
19232
|
format: 'date-time',
|
|
19100
19233
|
type: 'string',
|
|
19101
19234
|
},
|
|
19235
|
+
event_description: {
|
|
19236
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19237
|
+
type: 'string',
|
|
19238
|
+
},
|
|
19102
19239
|
event_id: {
|
|
19103
19240
|
description: 'ID of the event.',
|
|
19104
19241
|
format: 'uuid',
|
|
@@ -19154,6 +19291,10 @@ const openapi = {
|
|
|
19154
19291
|
format: 'date-time',
|
|
19155
19292
|
type: 'string',
|
|
19156
19293
|
},
|
|
19294
|
+
event_description: {
|
|
19295
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19296
|
+
type: 'string',
|
|
19297
|
+
},
|
|
19157
19298
|
event_id: {
|
|
19158
19299
|
description: 'ID of the event.',
|
|
19159
19300
|
format: 'uuid',
|
|
@@ -19206,6 +19347,10 @@ const openapi = {
|
|
|
19206
19347
|
format: 'date-time',
|
|
19207
19348
|
type: 'string',
|
|
19208
19349
|
},
|
|
19350
|
+
event_description: {
|
|
19351
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19352
|
+
type: 'string',
|
|
19353
|
+
},
|
|
19209
19354
|
event_id: {
|
|
19210
19355
|
description: 'ID of the event.',
|
|
19211
19356
|
format: 'uuid',
|
|
@@ -19258,6 +19403,10 @@ const openapi = {
|
|
|
19258
19403
|
format: 'date-time',
|
|
19259
19404
|
type: 'string',
|
|
19260
19405
|
},
|
|
19406
|
+
event_description: {
|
|
19407
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19408
|
+
type: 'string',
|
|
19409
|
+
},
|
|
19261
19410
|
event_id: {
|
|
19262
19411
|
description: 'ID of the event.',
|
|
19263
19412
|
format: 'uuid',
|
|
@@ -19310,6 +19459,10 @@ const openapi = {
|
|
|
19310
19459
|
format: 'date-time',
|
|
19311
19460
|
type: 'string',
|
|
19312
19461
|
},
|
|
19462
|
+
event_description: {
|
|
19463
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19464
|
+
type: 'string',
|
|
19465
|
+
},
|
|
19313
19466
|
event_id: {
|
|
19314
19467
|
description: 'ID of the event.',
|
|
19315
19468
|
format: 'uuid',
|
|
@@ -19362,6 +19515,10 @@ const openapi = {
|
|
|
19362
19515
|
format: 'date-time',
|
|
19363
19516
|
type: 'string',
|
|
19364
19517
|
},
|
|
19518
|
+
event_description: {
|
|
19519
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19520
|
+
type: 'string',
|
|
19521
|
+
},
|
|
19365
19522
|
event_id: {
|
|
19366
19523
|
description: 'ID of the event.',
|
|
19367
19524
|
format: 'uuid',
|
|
@@ -19417,6 +19574,10 @@ const openapi = {
|
|
|
19417
19574
|
format: 'date-time',
|
|
19418
19575
|
type: 'string',
|
|
19419
19576
|
},
|
|
19577
|
+
event_description: {
|
|
19578
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19579
|
+
type: 'string',
|
|
19580
|
+
},
|
|
19420
19581
|
event_id: {
|
|
19421
19582
|
description: 'ID of the event.',
|
|
19422
19583
|
format: 'uuid',
|
|
@@ -19469,6 +19630,10 @@ const openapi = {
|
|
|
19469
19630
|
format: 'date-time',
|
|
19470
19631
|
type: 'string',
|
|
19471
19632
|
},
|
|
19633
|
+
event_description: {
|
|
19634
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19635
|
+
type: 'string',
|
|
19636
|
+
},
|
|
19472
19637
|
event_id: {
|
|
19473
19638
|
description: 'ID of the event.',
|
|
19474
19639
|
format: 'uuid',
|
|
@@ -19511,6 +19676,10 @@ const openapi = {
|
|
|
19511
19676
|
format: 'date-time',
|
|
19512
19677
|
type: 'string',
|
|
19513
19678
|
},
|
|
19679
|
+
event_description: {
|
|
19680
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19681
|
+
type: 'string',
|
|
19682
|
+
},
|
|
19514
19683
|
event_id: {
|
|
19515
19684
|
description: 'ID of the event.',
|
|
19516
19685
|
format: 'uuid',
|
|
@@ -19568,6 +19737,10 @@ const openapi = {
|
|
|
19568
19737
|
description: 'The customer key associated with this connected account, if any.',
|
|
19569
19738
|
type: 'string',
|
|
19570
19739
|
},
|
|
19740
|
+
event_description: {
|
|
19741
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19742
|
+
type: 'string',
|
|
19743
|
+
},
|
|
19571
19744
|
event_id: {
|
|
19572
19745
|
description: 'ID of the event.',
|
|
19573
19746
|
format: 'uuid',
|
|
@@ -19624,6 +19797,10 @@ const openapi = {
|
|
|
19624
19797
|
format: 'date-time',
|
|
19625
19798
|
type: 'string',
|
|
19626
19799
|
},
|
|
19800
|
+
event_description: {
|
|
19801
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19802
|
+
type: 'string',
|
|
19803
|
+
},
|
|
19627
19804
|
event_id: {
|
|
19628
19805
|
description: 'ID of the event.',
|
|
19629
19806
|
format: 'uuid',
|
|
@@ -19682,6 +19859,10 @@ const openapi = {
|
|
|
19682
19859
|
format: 'date-time',
|
|
19683
19860
|
type: 'string',
|
|
19684
19861
|
},
|
|
19862
|
+
event_description: {
|
|
19863
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19864
|
+
type: 'string',
|
|
19865
|
+
},
|
|
19685
19866
|
event_id: {
|
|
19686
19867
|
description: 'ID of the event.',
|
|
19687
19868
|
format: 'uuid',
|
|
@@ -19783,6 +19964,10 @@ const openapi = {
|
|
|
19783
19964
|
format: 'date-time',
|
|
19784
19965
|
type: 'string',
|
|
19785
19966
|
},
|
|
19967
|
+
event_description: {
|
|
19968
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
19969
|
+
type: 'string',
|
|
19970
|
+
},
|
|
19786
19971
|
event_id: {
|
|
19787
19972
|
description: 'ID of the event.',
|
|
19788
19973
|
format: 'uuid',
|
|
@@ -19836,6 +20021,10 @@ const openapi = {
|
|
|
19836
20021
|
format: 'date-time',
|
|
19837
20022
|
type: 'string',
|
|
19838
20023
|
},
|
|
20024
|
+
event_description: {
|
|
20025
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
20026
|
+
type: 'string',
|
|
20027
|
+
},
|
|
19839
20028
|
event_id: {
|
|
19840
20029
|
description: 'ID of the event.',
|
|
19841
20030
|
format: 'uuid',
|
|
@@ -19895,6 +20084,10 @@ const openapi = {
|
|
|
19895
20084
|
description: 'The customer key associated with this connected account, if any.',
|
|
19896
20085
|
type: 'string',
|
|
19897
20086
|
},
|
|
20087
|
+
event_description: {
|
|
20088
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
20089
|
+
type: 'string',
|
|
20090
|
+
},
|
|
19898
20091
|
event_id: {
|
|
19899
20092
|
description: 'ID of the event.',
|
|
19900
20093
|
format: 'uuid',
|
|
@@ -19946,6 +20139,10 @@ const openapi = {
|
|
|
19946
20139
|
format: 'date-time',
|
|
19947
20140
|
type: 'string',
|
|
19948
20141
|
},
|
|
20142
|
+
event_description: {
|
|
20143
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
20144
|
+
type: 'string',
|
|
20145
|
+
},
|
|
19949
20146
|
event_id: {
|
|
19950
20147
|
description: 'ID of the event.',
|
|
19951
20148
|
format: 'uuid',
|
|
@@ -20047,6 +20244,10 @@ const openapi = {
|
|
|
20047
20244
|
format: 'date-time',
|
|
20048
20245
|
type: 'string',
|
|
20049
20246
|
},
|
|
20247
|
+
event_description: {
|
|
20248
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
20249
|
+
type: 'string',
|
|
20250
|
+
},
|
|
20050
20251
|
event_id: {
|
|
20051
20252
|
description: 'ID of the event.',
|
|
20052
20253
|
format: 'uuid',
|
|
@@ -20107,6 +20308,10 @@ const openapi = {
|
|
|
20107
20308
|
format: 'uuid',
|
|
20108
20309
|
type: 'string',
|
|
20109
20310
|
},
|
|
20311
|
+
event_description: {
|
|
20312
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
20313
|
+
type: 'string',
|
|
20314
|
+
},
|
|
20110
20315
|
event_id: {
|
|
20111
20316
|
description: 'ID of the event.',
|
|
20112
20317
|
format: 'uuid',
|
|
@@ -20168,6 +20373,10 @@ const openapi = {
|
|
|
20168
20373
|
format: 'uuid',
|
|
20169
20374
|
type: 'string',
|
|
20170
20375
|
},
|
|
20376
|
+
event_description: {
|
|
20377
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
20378
|
+
type: 'string',
|
|
20379
|
+
},
|
|
20171
20380
|
event_id: {
|
|
20172
20381
|
description: 'ID of the event.',
|
|
20173
20382
|
format: 'uuid',
|
|
@@ -20229,6 +20438,10 @@ const openapi = {
|
|
|
20229
20438
|
format: 'uuid',
|
|
20230
20439
|
type: 'string',
|
|
20231
20440
|
},
|
|
20441
|
+
event_description: {
|
|
20442
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
20443
|
+
type: 'string',
|
|
20444
|
+
},
|
|
20232
20445
|
event_id: {
|
|
20233
20446
|
description: 'ID of the event.',
|
|
20234
20447
|
format: 'uuid',
|
|
@@ -20290,6 +20503,10 @@ const openapi = {
|
|
|
20290
20503
|
format: 'uuid',
|
|
20291
20504
|
type: 'string',
|
|
20292
20505
|
},
|
|
20506
|
+
event_description: {
|
|
20507
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
20508
|
+
type: 'string',
|
|
20509
|
+
},
|
|
20293
20510
|
event_id: {
|
|
20294
20511
|
description: 'ID of the event.',
|
|
20295
20512
|
format: 'uuid',
|
|
@@ -20351,6 +20568,10 @@ const openapi = {
|
|
|
20351
20568
|
format: 'uuid',
|
|
20352
20569
|
type: 'string',
|
|
20353
20570
|
},
|
|
20571
|
+
event_description: {
|
|
20572
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
20573
|
+
type: 'string',
|
|
20574
|
+
},
|
|
20354
20575
|
event_id: {
|
|
20355
20576
|
description: 'ID of the event.',
|
|
20356
20577
|
format: 'uuid',
|
|
@@ -20412,6 +20633,10 @@ const openapi = {
|
|
|
20412
20633
|
format: 'uuid',
|
|
20413
20634
|
type: 'string',
|
|
20414
20635
|
},
|
|
20636
|
+
event_description: {
|
|
20637
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
20638
|
+
type: 'string',
|
|
20639
|
+
},
|
|
20415
20640
|
event_id: {
|
|
20416
20641
|
description: 'ID of the event.',
|
|
20417
20642
|
format: 'uuid',
|
|
@@ -20473,6 +20698,10 @@ const openapi = {
|
|
|
20473
20698
|
format: 'uuid',
|
|
20474
20699
|
type: 'string',
|
|
20475
20700
|
},
|
|
20701
|
+
event_description: {
|
|
20702
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
20703
|
+
type: 'string',
|
|
20704
|
+
},
|
|
20476
20705
|
event_id: {
|
|
20477
20706
|
description: 'ID of the event.',
|
|
20478
20707
|
format: 'uuid',
|
|
@@ -20536,6 +20765,10 @@ const openapi = {
|
|
|
20536
20765
|
format: 'uuid',
|
|
20537
20766
|
type: 'string',
|
|
20538
20767
|
},
|
|
20768
|
+
event_description: {
|
|
20769
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
20770
|
+
type: 'string',
|
|
20771
|
+
},
|
|
20539
20772
|
event_id: {
|
|
20540
20773
|
description: 'ID of the event.',
|
|
20541
20774
|
format: 'uuid',
|
|
@@ -20599,6 +20832,10 @@ const openapi = {
|
|
|
20599
20832
|
description: 'The customer key associated with this connect webview, if any.',
|
|
20600
20833
|
type: 'string',
|
|
20601
20834
|
},
|
|
20835
|
+
event_description: {
|
|
20836
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
20837
|
+
type: 'string',
|
|
20838
|
+
},
|
|
20602
20839
|
event_id: {
|
|
20603
20840
|
description: 'ID of the event.',
|
|
20604
20841
|
format: 'uuid',
|
|
@@ -20644,6 +20881,10 @@ const openapi = {
|
|
|
20644
20881
|
format: 'date-time',
|
|
20645
20882
|
type: 'string',
|
|
20646
20883
|
},
|
|
20884
|
+
event_description: {
|
|
20885
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
20886
|
+
type: 'string',
|
|
20887
|
+
},
|
|
20647
20888
|
event_id: {
|
|
20648
20889
|
description: 'ID of the event.',
|
|
20649
20890
|
format: 'uuid',
|
|
@@ -20711,6 +20952,10 @@ const openapi = {
|
|
|
20711
20952
|
format: 'uuid',
|
|
20712
20953
|
type: 'string',
|
|
20713
20954
|
},
|
|
20955
|
+
event_description: {
|
|
20956
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
20957
|
+
type: 'string',
|
|
20958
|
+
},
|
|
20714
20959
|
event_id: {
|
|
20715
20960
|
description: 'ID of the event.',
|
|
20716
20961
|
format: 'uuid',
|
|
@@ -20776,6 +21021,10 @@ const openapi = {
|
|
|
20776
21021
|
format: 'uuid',
|
|
20777
21022
|
type: 'string',
|
|
20778
21023
|
},
|
|
21024
|
+
event_description: {
|
|
21025
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
21026
|
+
type: 'string',
|
|
21027
|
+
},
|
|
20779
21028
|
event_id: {
|
|
20780
21029
|
description: 'ID of the event.',
|
|
20781
21030
|
format: 'uuid',
|
|
@@ -20841,6 +21090,10 @@ const openapi = {
|
|
|
20841
21090
|
format: 'uuid',
|
|
20842
21091
|
type: 'string',
|
|
20843
21092
|
},
|
|
21093
|
+
event_description: {
|
|
21094
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
21095
|
+
type: 'string',
|
|
21096
|
+
},
|
|
20844
21097
|
event_id: {
|
|
20845
21098
|
description: 'ID of the event.',
|
|
20846
21099
|
format: 'uuid',
|
|
@@ -20909,6 +21162,10 @@ const openapi = {
|
|
|
20909
21162
|
format: 'uuid',
|
|
20910
21163
|
type: 'string',
|
|
20911
21164
|
},
|
|
21165
|
+
event_description: {
|
|
21166
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
21167
|
+
type: 'string',
|
|
21168
|
+
},
|
|
20912
21169
|
event_id: {
|
|
20913
21170
|
description: 'ID of the event.',
|
|
20914
21171
|
format: 'uuid',
|
|
@@ -20977,6 +21234,10 @@ const openapi = {
|
|
|
20977
21234
|
format: 'uuid',
|
|
20978
21235
|
type: 'string',
|
|
20979
21236
|
},
|
|
21237
|
+
event_description: {
|
|
21238
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
21239
|
+
type: 'string',
|
|
21240
|
+
},
|
|
20980
21241
|
event_id: {
|
|
20981
21242
|
description: 'ID of the event.',
|
|
20982
21243
|
format: 'uuid',
|
|
@@ -21150,6 +21411,10 @@ const openapi = {
|
|
|
21150
21411
|
],
|
|
21151
21412
|
type: 'string',
|
|
21152
21413
|
},
|
|
21414
|
+
event_description: {
|
|
21415
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
21416
|
+
type: 'string',
|
|
21417
|
+
},
|
|
21153
21418
|
event_id: {
|
|
21154
21419
|
description: 'ID of the event.',
|
|
21155
21420
|
format: 'uuid',
|
|
@@ -21325,6 +21590,10 @@ const openapi = {
|
|
|
21325
21590
|
],
|
|
21326
21591
|
type: 'string',
|
|
21327
21592
|
},
|
|
21593
|
+
event_description: {
|
|
21594
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
21595
|
+
type: 'string',
|
|
21596
|
+
},
|
|
21328
21597
|
event_id: {
|
|
21329
21598
|
description: 'ID of the event.',
|
|
21330
21599
|
format: 'uuid',
|
|
@@ -21398,6 +21667,10 @@ const openapi = {
|
|
|
21398
21667
|
format: 'uuid',
|
|
21399
21668
|
type: 'string',
|
|
21400
21669
|
},
|
|
21670
|
+
event_description: {
|
|
21671
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
21672
|
+
type: 'string',
|
|
21673
|
+
},
|
|
21401
21674
|
event_id: {
|
|
21402
21675
|
description: 'ID of the event.',
|
|
21403
21676
|
format: 'uuid',
|
|
@@ -21470,6 +21743,10 @@ const openapi = {
|
|
|
21470
21743
|
format: 'uuid',
|
|
21471
21744
|
type: 'string',
|
|
21472
21745
|
},
|
|
21746
|
+
event_description: {
|
|
21747
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
21748
|
+
type: 'string',
|
|
21749
|
+
},
|
|
21473
21750
|
event_id: {
|
|
21474
21751
|
description: 'ID of the event.',
|
|
21475
21752
|
format: 'uuid',
|
|
@@ -21548,6 +21825,10 @@ const openapi = {
|
|
|
21548
21825
|
format: 'uuid',
|
|
21549
21826
|
type: 'string',
|
|
21550
21827
|
},
|
|
21828
|
+
event_description: {
|
|
21829
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
21830
|
+
type: 'string',
|
|
21831
|
+
},
|
|
21551
21832
|
event_id: {
|
|
21552
21833
|
description: 'ID of the event.',
|
|
21553
21834
|
format: 'uuid',
|
|
@@ -21618,6 +21899,10 @@ const openapi = {
|
|
|
21618
21899
|
format: 'uuid',
|
|
21619
21900
|
type: 'string',
|
|
21620
21901
|
},
|
|
21902
|
+
event_description: {
|
|
21903
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
21904
|
+
type: 'string',
|
|
21905
|
+
},
|
|
21621
21906
|
event_id: {
|
|
21622
21907
|
description: 'ID of the event.',
|
|
21623
21908
|
format: 'uuid',
|
|
@@ -21688,6 +21973,10 @@ const openapi = {
|
|
|
21688
21973
|
nullable: true,
|
|
21689
21974
|
type: 'string',
|
|
21690
21975
|
},
|
|
21976
|
+
event_description: {
|
|
21977
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
21978
|
+
type: 'string',
|
|
21979
|
+
},
|
|
21691
21980
|
event_id: {
|
|
21692
21981
|
description: 'ID of the event.',
|
|
21693
21982
|
format: 'uuid',
|
|
@@ -21753,6 +22042,10 @@ const openapi = {
|
|
|
21753
22042
|
format: 'uuid',
|
|
21754
22043
|
type: 'string',
|
|
21755
22044
|
},
|
|
22045
|
+
event_description: {
|
|
22046
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
22047
|
+
type: 'string',
|
|
22048
|
+
},
|
|
21756
22049
|
event_id: {
|
|
21757
22050
|
description: 'ID of the event.',
|
|
21758
22051
|
format: 'uuid',
|
|
@@ -21821,6 +22114,10 @@ const openapi = {
|
|
|
21821
22114
|
format: 'uuid',
|
|
21822
22115
|
type: 'string',
|
|
21823
22116
|
},
|
|
22117
|
+
event_description: {
|
|
22118
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
22119
|
+
type: 'string',
|
|
22120
|
+
},
|
|
21824
22121
|
event_id: {
|
|
21825
22122
|
description: 'ID of the event.',
|
|
21826
22123
|
format: 'uuid',
|
|
@@ -21889,6 +22186,10 @@ const openapi = {
|
|
|
21889
22186
|
format: 'uuid',
|
|
21890
22187
|
type: 'string',
|
|
21891
22188
|
},
|
|
22189
|
+
event_description: {
|
|
22190
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
22191
|
+
type: 'string',
|
|
22192
|
+
},
|
|
21892
22193
|
event_id: {
|
|
21893
22194
|
description: 'ID of the event.',
|
|
21894
22195
|
format: 'uuid',
|
|
@@ -21957,6 +22258,10 @@ const openapi = {
|
|
|
21957
22258
|
format: 'uuid',
|
|
21958
22259
|
type: 'string',
|
|
21959
22260
|
},
|
|
22261
|
+
event_description: {
|
|
22262
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
22263
|
+
type: 'string',
|
|
22264
|
+
},
|
|
21960
22265
|
event_id: {
|
|
21961
22266
|
description: 'ID of the event.',
|
|
21962
22267
|
format: 'uuid',
|
|
@@ -22121,6 +22426,10 @@ const openapi = {
|
|
|
22121
22426
|
},
|
|
22122
22427
|
type: 'array',
|
|
22123
22428
|
},
|
|
22429
|
+
event_description: {
|
|
22430
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
22431
|
+
type: 'string',
|
|
22432
|
+
},
|
|
22124
22433
|
event_id: {
|
|
22125
22434
|
description: 'ID of the event.',
|
|
22126
22435
|
format: 'uuid',
|
|
@@ -22193,6 +22502,10 @@ const openapi = {
|
|
|
22193
22502
|
format: 'uuid',
|
|
22194
22503
|
type: 'string',
|
|
22195
22504
|
},
|
|
22505
|
+
event_description: {
|
|
22506
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
22507
|
+
type: 'string',
|
|
22508
|
+
},
|
|
22196
22509
|
event_id: {
|
|
22197
22510
|
description: 'ID of the event.',
|
|
22198
22511
|
format: 'uuid',
|
|
@@ -22357,6 +22670,10 @@ const openapi = {
|
|
|
22357
22670
|
},
|
|
22358
22671
|
type: 'array',
|
|
22359
22672
|
},
|
|
22673
|
+
event_description: {
|
|
22674
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
22675
|
+
type: 'string',
|
|
22676
|
+
},
|
|
22360
22677
|
event_id: {
|
|
22361
22678
|
description: 'ID of the event.',
|
|
22362
22679
|
format: 'uuid',
|
|
@@ -22429,6 +22746,10 @@ const openapi = {
|
|
|
22429
22746
|
format: 'uuid',
|
|
22430
22747
|
type: 'string',
|
|
22431
22748
|
},
|
|
22749
|
+
event_description: {
|
|
22750
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
22751
|
+
type: 'string',
|
|
22752
|
+
},
|
|
22432
22753
|
event_id: {
|
|
22433
22754
|
description: 'ID of the event.',
|
|
22434
22755
|
format: 'uuid',
|
|
@@ -22497,6 +22818,10 @@ const openapi = {
|
|
|
22497
22818
|
format: 'uuid',
|
|
22498
22819
|
type: 'string',
|
|
22499
22820
|
},
|
|
22821
|
+
event_description: {
|
|
22822
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
22823
|
+
type: 'string',
|
|
22824
|
+
},
|
|
22500
22825
|
event_id: {
|
|
22501
22826
|
description: 'ID of the event.',
|
|
22502
22827
|
format: 'uuid',
|
|
@@ -22661,6 +22986,10 @@ const openapi = {
|
|
|
22661
22986
|
},
|
|
22662
22987
|
type: 'array',
|
|
22663
22988
|
},
|
|
22989
|
+
event_description: {
|
|
22990
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
22991
|
+
type: 'string',
|
|
22992
|
+
},
|
|
22664
22993
|
event_id: {
|
|
22665
22994
|
description: 'ID of the event.',
|
|
22666
22995
|
format: 'uuid',
|
|
@@ -22733,6 +23062,10 @@ const openapi = {
|
|
|
22733
23062
|
format: 'uuid',
|
|
22734
23063
|
type: 'string',
|
|
22735
23064
|
},
|
|
23065
|
+
event_description: {
|
|
23066
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
23067
|
+
type: 'string',
|
|
23068
|
+
},
|
|
22736
23069
|
event_id: {
|
|
22737
23070
|
description: 'ID of the event.',
|
|
22738
23071
|
format: 'uuid',
|
|
@@ -22848,6 +23181,10 @@ const openapi = {
|
|
|
22848
23181
|
format: 'uuid',
|
|
22849
23182
|
type: 'string',
|
|
22850
23183
|
},
|
|
23184
|
+
event_description: {
|
|
23185
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
23186
|
+
type: 'string',
|
|
23187
|
+
},
|
|
22851
23188
|
event_id: {
|
|
22852
23189
|
description: 'ID of the event.',
|
|
22853
23190
|
format: 'uuid',
|
|
@@ -22960,6 +23297,10 @@ const openapi = {
|
|
|
22960
23297
|
format: 'uuid',
|
|
22961
23298
|
type: 'string',
|
|
22962
23299
|
},
|
|
23300
|
+
event_description: {
|
|
23301
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
23302
|
+
type: 'string',
|
|
23303
|
+
},
|
|
22963
23304
|
event_id: {
|
|
22964
23305
|
description: 'ID of the event.',
|
|
22965
23306
|
format: 'uuid',
|
|
@@ -23063,6 +23404,10 @@ const openapi = {
|
|
|
23063
23404
|
format: 'uuid',
|
|
23064
23405
|
type: 'string',
|
|
23065
23406
|
},
|
|
23407
|
+
event_description: {
|
|
23408
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
23409
|
+
type: 'string',
|
|
23410
|
+
},
|
|
23066
23411
|
event_id: {
|
|
23067
23412
|
description: 'ID of the event.',
|
|
23068
23413
|
format: 'uuid',
|
|
@@ -23136,6 +23481,10 @@ const openapi = {
|
|
|
23136
23481
|
format: 'uuid',
|
|
23137
23482
|
type: 'string',
|
|
23138
23483
|
},
|
|
23484
|
+
event_description: {
|
|
23485
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
23486
|
+
type: 'string',
|
|
23487
|
+
},
|
|
23139
23488
|
event_id: {
|
|
23140
23489
|
description: 'ID of the event.',
|
|
23141
23490
|
format: 'uuid',
|
|
@@ -23227,6 +23576,10 @@ const openapi = {
|
|
|
23227
23576
|
format: 'uuid',
|
|
23228
23577
|
type: 'string',
|
|
23229
23578
|
},
|
|
23579
|
+
event_description: {
|
|
23580
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
23581
|
+
type: 'string',
|
|
23582
|
+
},
|
|
23230
23583
|
event_id: {
|
|
23231
23584
|
description: 'ID of the event.',
|
|
23232
23585
|
format: 'uuid',
|
|
@@ -23321,6 +23674,10 @@ const openapi = {
|
|
|
23321
23674
|
format: 'uuid',
|
|
23322
23675
|
type: 'string',
|
|
23323
23676
|
},
|
|
23677
|
+
event_description: {
|
|
23678
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
23679
|
+
type: 'string',
|
|
23680
|
+
},
|
|
23324
23681
|
event_id: {
|
|
23325
23682
|
description: 'ID of the event.',
|
|
23326
23683
|
format: 'uuid',
|
|
@@ -23429,6 +23786,10 @@ const openapi = {
|
|
|
23429
23786
|
format: 'uuid',
|
|
23430
23787
|
type: 'string',
|
|
23431
23788
|
},
|
|
23789
|
+
event_description: {
|
|
23790
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
23791
|
+
type: 'string',
|
|
23792
|
+
},
|
|
23432
23793
|
event_id: {
|
|
23433
23794
|
description: 'ID of the event.',
|
|
23434
23795
|
format: 'uuid',
|
|
@@ -23547,6 +23908,10 @@ const openapi = {
|
|
|
23547
23908
|
format: 'uuid',
|
|
23548
23909
|
type: 'string',
|
|
23549
23910
|
},
|
|
23911
|
+
event_description: {
|
|
23912
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
23913
|
+
type: 'string',
|
|
23914
|
+
},
|
|
23550
23915
|
event_id: {
|
|
23551
23916
|
description: 'ID of the event.',
|
|
23552
23917
|
format: 'uuid',
|
|
@@ -23627,6 +23992,10 @@ const openapi = {
|
|
|
23627
23992
|
format: 'uuid',
|
|
23628
23993
|
type: 'string',
|
|
23629
23994
|
},
|
|
23995
|
+
event_description: {
|
|
23996
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
23997
|
+
type: 'string',
|
|
23998
|
+
},
|
|
23630
23999
|
event_id: {
|
|
23631
24000
|
description: 'ID of the event.',
|
|
23632
24001
|
format: 'uuid',
|
|
@@ -23711,6 +24080,10 @@ const openapi = {
|
|
|
23711
24080
|
description: 'The new name of the affected device.',
|
|
23712
24081
|
type: 'string',
|
|
23713
24082
|
},
|
|
24083
|
+
event_description: {
|
|
24084
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
24085
|
+
type: 'string',
|
|
24086
|
+
},
|
|
23714
24087
|
event_id: {
|
|
23715
24088
|
description: 'ID of the event.',
|
|
23716
24089
|
format: 'uuid',
|
|
@@ -23782,6 +24155,10 @@ const openapi = {
|
|
|
23782
24155
|
format: 'uuid',
|
|
23783
24156
|
type: 'string',
|
|
23784
24157
|
},
|
|
24158
|
+
event_description: {
|
|
24159
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
24160
|
+
type: 'string',
|
|
24161
|
+
},
|
|
23785
24162
|
event_id: {
|
|
23786
24163
|
description: 'ID of the event.',
|
|
23787
24164
|
format: 'uuid',
|
|
@@ -23863,6 +24240,10 @@ const openapi = {
|
|
|
23863
24240
|
format: 'uuid',
|
|
23864
24241
|
type: 'string',
|
|
23865
24242
|
},
|
|
24243
|
+
event_description: {
|
|
24244
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
24245
|
+
type: 'string',
|
|
24246
|
+
},
|
|
23866
24247
|
event_id: {
|
|
23867
24248
|
description: 'ID of the event.',
|
|
23868
24249
|
format: 'uuid',
|
|
@@ -23915,6 +24296,10 @@ const openapi = {
|
|
|
23915
24296
|
format: 'uuid',
|
|
23916
24297
|
type: 'string',
|
|
23917
24298
|
},
|
|
24299
|
+
event_description: {
|
|
24300
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
24301
|
+
type: 'string',
|
|
24302
|
+
},
|
|
23918
24303
|
event_id: {
|
|
23919
24304
|
description: 'ID of the event.',
|
|
23920
24305
|
format: 'uuid',
|
|
@@ -23966,6 +24351,10 @@ const openapi = {
|
|
|
23966
24351
|
format: 'uuid',
|
|
23967
24352
|
type: 'string',
|
|
23968
24353
|
},
|
|
24354
|
+
event_description: {
|
|
24355
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
24356
|
+
type: 'string',
|
|
24357
|
+
},
|
|
23969
24358
|
event_id: {
|
|
23970
24359
|
description: 'ID of the event.',
|
|
23971
24360
|
format: 'uuid',
|
|
@@ -24012,6 +24401,10 @@ const openapi = {
|
|
|
24012
24401
|
items: { format: 'uuid', type: 'string' },
|
|
24013
24402
|
type: 'array',
|
|
24014
24403
|
},
|
|
24404
|
+
event_description: {
|
|
24405
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
24406
|
+
type: 'string',
|
|
24407
|
+
},
|
|
24015
24408
|
event_id: {
|
|
24016
24409
|
description: 'ID of the event.',
|
|
24017
24410
|
format: 'uuid',
|
|
@@ -24073,6 +24466,10 @@ const openapi = {
|
|
|
24073
24466
|
items: { format: 'uuid', type: 'string' },
|
|
24074
24467
|
type: 'array',
|
|
24075
24468
|
},
|
|
24469
|
+
event_description: {
|
|
24470
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
24471
|
+
type: 'string',
|
|
24472
|
+
},
|
|
24076
24473
|
event_id: {
|
|
24077
24474
|
description: 'ID of the event.',
|
|
24078
24475
|
format: 'uuid',
|
|
@@ -24134,6 +24531,10 @@ const openapi = {
|
|
|
24134
24531
|
items: { format: 'uuid', type: 'string' },
|
|
24135
24532
|
type: 'array',
|
|
24136
24533
|
},
|
|
24534
|
+
event_description: {
|
|
24535
|
+
description: 'Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.',
|
|
24536
|
+
type: 'string',
|
|
24537
|
+
},
|
|
24137
24538
|
event_id: {
|
|
24138
24539
|
description: 'ID of the event.',
|
|
24139
24540
|
format: 'uuid',
|
|
@@ -26177,33 +26578,6 @@ const openapi = {
|
|
|
26177
26578
|
type: 'object',
|
|
26178
26579
|
'x-resource-type': 'access_code',
|
|
26179
26580
|
},
|
|
26180
|
-
{
|
|
26181
|
-
description: 'An attempt to modify this access code was prevented.',
|
|
26182
|
-
properties: {
|
|
26183
|
-
created_at: {
|
|
26184
|
-
description: 'Date and time at which Seam created the error.',
|
|
26185
|
-
format: 'date-time',
|
|
26186
|
-
type: 'string',
|
|
26187
|
-
},
|
|
26188
|
-
error_code: {
|
|
26189
|
-
description: 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
26190
|
-
enum: ['duplicate_code_attempt_prevented'],
|
|
26191
|
-
type: 'string',
|
|
26192
|
-
},
|
|
26193
|
-
is_access_code_error: {
|
|
26194
|
-
description: 'Indicates that this is an access code error.',
|
|
26195
|
-
enum: [true],
|
|
26196
|
-
type: 'boolean',
|
|
26197
|
-
},
|
|
26198
|
-
message: {
|
|
26199
|
-
description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
26200
|
-
type: 'string',
|
|
26201
|
-
},
|
|
26202
|
-
},
|
|
26203
|
-
required: ['message', 'is_access_code_error', 'error_code'],
|
|
26204
|
-
type: 'object',
|
|
26205
|
-
'x-resource-type': 'access_code',
|
|
26206
|
-
},
|
|
26207
26581
|
{
|
|
26208
26582
|
description: 'No space for access code on device.',
|
|
26209
26583
|
properties: {
|