@seamapi/types 1.311.0 → 1.312.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 +4175 -44
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +4599 -107
- package/lib/seam/connect/openapi.d.ts +2409 -67
- package/lib/seam/connect/openapi.js +4174 -43
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2217 -67
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +4216 -43
- package/src/lib/seam/connect/route-types.ts +2376 -52
package/dist/connect.cjs
CHANGED
|
@@ -8124,44 +8124,4159 @@ var openapi_default = {
|
|
|
8124
8124
|
type: "object"
|
|
8125
8125
|
},
|
|
8126
8126
|
event: {
|
|
8127
|
-
|
|
8128
|
-
|
|
8129
|
-
|
|
8130
|
-
|
|
8131
|
-
|
|
8132
|
-
|
|
8133
|
-
|
|
8134
|
-
|
|
8135
|
-
|
|
8136
|
-
|
|
8137
|
-
|
|
8138
|
-
|
|
8139
|
-
|
|
8140
|
-
|
|
8141
|
-
|
|
8142
|
-
|
|
8143
|
-
|
|
8144
|
-
|
|
8145
|
-
|
|
8146
|
-
|
|
8147
|
-
|
|
8148
|
-
|
|
8149
|
-
|
|
8150
|
-
|
|
8151
|
-
|
|
8152
|
-
|
|
8127
|
+
discriminator: { propertyName: "event_type" },
|
|
8128
|
+
oneOf: [
|
|
8129
|
+
{
|
|
8130
|
+
description: "An access code was created.",
|
|
8131
|
+
properties: {
|
|
8132
|
+
access_code_id: {
|
|
8133
|
+
description: "The ID of the access code.",
|
|
8134
|
+
format: "uuid",
|
|
8135
|
+
type: "string",
|
|
8136
|
+
"x-title": "Access Code ID"
|
|
8137
|
+
},
|
|
8138
|
+
connected_account_id: {
|
|
8139
|
+
description: "The ID of the connected account.",
|
|
8140
|
+
format: "uuid",
|
|
8141
|
+
type: "string",
|
|
8142
|
+
"x-title": "Connected Account ID"
|
|
8143
|
+
},
|
|
8144
|
+
created_at: {
|
|
8145
|
+
description: "The time when the event was created.",
|
|
8146
|
+
format: "date-time",
|
|
8147
|
+
type: "string",
|
|
8148
|
+
"x-title": "Created At"
|
|
8149
|
+
},
|
|
8150
|
+
device_id: {
|
|
8151
|
+
description: "The ID of the device.",
|
|
8152
|
+
format: "uuid",
|
|
8153
|
+
type: "string",
|
|
8154
|
+
"x-title": "Device ID"
|
|
8155
|
+
},
|
|
8156
|
+
event_id: {
|
|
8157
|
+
description: "The ID of the event.",
|
|
8158
|
+
format: "uuid",
|
|
8159
|
+
type: "string",
|
|
8160
|
+
"x-title": "Event ID"
|
|
8161
|
+
},
|
|
8162
|
+
event_type: { enum: ["access_code.created"], type: "string" },
|
|
8163
|
+
occurred_at: {
|
|
8164
|
+
description: "The time when the event occurred.",
|
|
8165
|
+
format: "date-time",
|
|
8166
|
+
type: "string",
|
|
8167
|
+
"x-title": "Occurred At"
|
|
8168
|
+
},
|
|
8169
|
+
workspace_id: {
|
|
8170
|
+
description: "The ID of the workspace.",
|
|
8171
|
+
format: "uuid",
|
|
8172
|
+
type: "string",
|
|
8173
|
+
"x-title": "Workspace ID"
|
|
8174
|
+
}
|
|
8175
|
+
},
|
|
8176
|
+
required: [
|
|
8177
|
+
"event_id",
|
|
8178
|
+
"workspace_id",
|
|
8179
|
+
"created_at",
|
|
8180
|
+
"occurred_at",
|
|
8181
|
+
"access_code_id",
|
|
8182
|
+
"device_id",
|
|
8183
|
+
"connected_account_id",
|
|
8184
|
+
"event_type"
|
|
8185
|
+
],
|
|
8186
|
+
type: "object"
|
|
8187
|
+
},
|
|
8188
|
+
{
|
|
8189
|
+
description: "An access code was changed.",
|
|
8190
|
+
properties: {
|
|
8191
|
+
access_code_id: {
|
|
8192
|
+
description: "The ID of the access code.",
|
|
8193
|
+
format: "uuid",
|
|
8194
|
+
type: "string",
|
|
8195
|
+
"x-title": "Access Code ID"
|
|
8196
|
+
},
|
|
8197
|
+
connected_account_id: {
|
|
8198
|
+
description: "The ID of the connected account.",
|
|
8199
|
+
format: "uuid",
|
|
8200
|
+
type: "string",
|
|
8201
|
+
"x-title": "Connected Account ID"
|
|
8202
|
+
},
|
|
8203
|
+
created_at: {
|
|
8204
|
+
description: "The time when the event was created.",
|
|
8205
|
+
format: "date-time",
|
|
8206
|
+
type: "string",
|
|
8207
|
+
"x-title": "Created At"
|
|
8208
|
+
},
|
|
8209
|
+
device_id: {
|
|
8210
|
+
description: "The ID of the device.",
|
|
8211
|
+
format: "uuid",
|
|
8212
|
+
type: "string",
|
|
8213
|
+
"x-title": "Device ID"
|
|
8214
|
+
},
|
|
8215
|
+
event_id: {
|
|
8216
|
+
description: "The ID of the event.",
|
|
8217
|
+
format: "uuid",
|
|
8218
|
+
type: "string",
|
|
8219
|
+
"x-title": "Event ID"
|
|
8220
|
+
},
|
|
8221
|
+
event_type: { enum: ["access_code.changed"], type: "string" },
|
|
8222
|
+
occurred_at: {
|
|
8223
|
+
description: "The time when the event occurred.",
|
|
8224
|
+
format: "date-time",
|
|
8225
|
+
type: "string",
|
|
8226
|
+
"x-title": "Occurred At"
|
|
8227
|
+
},
|
|
8228
|
+
workspace_id: {
|
|
8229
|
+
description: "The ID of the workspace.",
|
|
8230
|
+
format: "uuid",
|
|
8231
|
+
type: "string",
|
|
8232
|
+
"x-title": "Workspace ID"
|
|
8233
|
+
}
|
|
8234
|
+
},
|
|
8235
|
+
required: [
|
|
8236
|
+
"event_id",
|
|
8237
|
+
"workspace_id",
|
|
8238
|
+
"created_at",
|
|
8239
|
+
"occurred_at",
|
|
8240
|
+
"access_code_id",
|
|
8241
|
+
"device_id",
|
|
8242
|
+
"connected_account_id",
|
|
8243
|
+
"event_type"
|
|
8244
|
+
],
|
|
8245
|
+
type: "object"
|
|
8246
|
+
},
|
|
8247
|
+
{
|
|
8248
|
+
description: "An access code was natively scheduled on a device.",
|
|
8249
|
+
properties: {
|
|
8250
|
+
access_code_id: {
|
|
8251
|
+
description: "The ID of the access code.",
|
|
8252
|
+
format: "uuid",
|
|
8253
|
+
type: "string",
|
|
8254
|
+
"x-title": "Access Code ID"
|
|
8255
|
+
},
|
|
8256
|
+
code: {
|
|
8257
|
+
description: "The code of the access code.",
|
|
8258
|
+
type: "string",
|
|
8259
|
+
"x-title": "Access Code"
|
|
8260
|
+
},
|
|
8261
|
+
connected_account_id: {
|
|
8262
|
+
description: "The ID of the connected account.",
|
|
8263
|
+
format: "uuid",
|
|
8264
|
+
type: "string",
|
|
8265
|
+
"x-title": "Connected Account ID"
|
|
8266
|
+
},
|
|
8267
|
+
created_at: {
|
|
8268
|
+
description: "The time when the event was created.",
|
|
8269
|
+
format: "date-time",
|
|
8270
|
+
type: "string",
|
|
8271
|
+
"x-title": "Created At"
|
|
8272
|
+
},
|
|
8273
|
+
device_id: {
|
|
8274
|
+
description: "The ID of the device.",
|
|
8275
|
+
format: "uuid",
|
|
8276
|
+
type: "string",
|
|
8277
|
+
"x-title": "Device ID"
|
|
8278
|
+
},
|
|
8279
|
+
event_id: {
|
|
8280
|
+
description: "The ID of the event.",
|
|
8281
|
+
format: "uuid",
|
|
8282
|
+
type: "string",
|
|
8283
|
+
"x-title": "Event ID"
|
|
8284
|
+
},
|
|
8285
|
+
event_type: {
|
|
8286
|
+
enum: ["access_code.scheduled_on_device"],
|
|
8287
|
+
type: "string"
|
|
8288
|
+
},
|
|
8289
|
+
occurred_at: {
|
|
8290
|
+
description: "The time when the event occurred.",
|
|
8291
|
+
format: "date-time",
|
|
8292
|
+
type: "string",
|
|
8293
|
+
"x-title": "Occurred At"
|
|
8294
|
+
},
|
|
8295
|
+
workspace_id: {
|
|
8296
|
+
description: "The ID of the workspace.",
|
|
8297
|
+
format: "uuid",
|
|
8298
|
+
type: "string",
|
|
8299
|
+
"x-title": "Workspace ID"
|
|
8300
|
+
}
|
|
8301
|
+
},
|
|
8302
|
+
required: [
|
|
8303
|
+
"event_id",
|
|
8304
|
+
"workspace_id",
|
|
8305
|
+
"created_at",
|
|
8306
|
+
"occurred_at",
|
|
8307
|
+
"access_code_id",
|
|
8308
|
+
"device_id",
|
|
8309
|
+
"connected_account_id",
|
|
8310
|
+
"event_type",
|
|
8311
|
+
"code"
|
|
8312
|
+
],
|
|
8313
|
+
type: "object"
|
|
8314
|
+
},
|
|
8315
|
+
{
|
|
8316
|
+
description: "An access code was set on a device.",
|
|
8317
|
+
properties: {
|
|
8318
|
+
access_code_id: {
|
|
8319
|
+
description: "The ID of the access code.",
|
|
8320
|
+
format: "uuid",
|
|
8321
|
+
type: "string",
|
|
8322
|
+
"x-title": "Access Code ID"
|
|
8323
|
+
},
|
|
8324
|
+
code: {
|
|
8325
|
+
description: "The code of the access code.",
|
|
8326
|
+
type: "string",
|
|
8327
|
+
"x-title": "Access Code"
|
|
8328
|
+
},
|
|
8329
|
+
connected_account_id: {
|
|
8330
|
+
description: "The ID of the connected account.",
|
|
8331
|
+
format: "uuid",
|
|
8332
|
+
type: "string",
|
|
8333
|
+
"x-title": "Connected Account ID"
|
|
8334
|
+
},
|
|
8335
|
+
created_at: {
|
|
8336
|
+
description: "The time when the event was created.",
|
|
8337
|
+
format: "date-time",
|
|
8338
|
+
type: "string",
|
|
8339
|
+
"x-title": "Created At"
|
|
8340
|
+
},
|
|
8341
|
+
device_id: {
|
|
8342
|
+
description: "The ID of the device.",
|
|
8343
|
+
format: "uuid",
|
|
8344
|
+
type: "string",
|
|
8345
|
+
"x-title": "Device ID"
|
|
8346
|
+
},
|
|
8347
|
+
event_id: {
|
|
8348
|
+
description: "The ID of the event.",
|
|
8349
|
+
format: "uuid",
|
|
8350
|
+
type: "string",
|
|
8351
|
+
"x-title": "Event ID"
|
|
8352
|
+
},
|
|
8353
|
+
event_type: {
|
|
8354
|
+
enum: ["access_code.set_on_device"],
|
|
8355
|
+
type: "string"
|
|
8356
|
+
},
|
|
8357
|
+
occurred_at: {
|
|
8358
|
+
description: "The time when the event occurred.",
|
|
8359
|
+
format: "date-time",
|
|
8360
|
+
type: "string",
|
|
8361
|
+
"x-title": "Occurred At"
|
|
8362
|
+
},
|
|
8363
|
+
workspace_id: {
|
|
8364
|
+
description: "The ID of the workspace.",
|
|
8365
|
+
format: "uuid",
|
|
8366
|
+
type: "string",
|
|
8367
|
+
"x-title": "Workspace ID"
|
|
8368
|
+
}
|
|
8369
|
+
},
|
|
8370
|
+
required: [
|
|
8371
|
+
"event_id",
|
|
8372
|
+
"workspace_id",
|
|
8373
|
+
"created_at",
|
|
8374
|
+
"occurred_at",
|
|
8375
|
+
"access_code_id",
|
|
8376
|
+
"device_id",
|
|
8377
|
+
"connected_account_id",
|
|
8378
|
+
"event_type",
|
|
8379
|
+
"code"
|
|
8380
|
+
],
|
|
8381
|
+
type: "object"
|
|
8382
|
+
},
|
|
8383
|
+
{
|
|
8384
|
+
description: "An access code was removed from a device.",
|
|
8385
|
+
properties: {
|
|
8386
|
+
access_code_id: {
|
|
8387
|
+
description: "The ID of the access code.",
|
|
8388
|
+
format: "uuid",
|
|
8389
|
+
type: "string",
|
|
8390
|
+
"x-title": "Access Code ID"
|
|
8391
|
+
},
|
|
8392
|
+
connected_account_id: {
|
|
8393
|
+
description: "The ID of the connected account.",
|
|
8394
|
+
format: "uuid",
|
|
8395
|
+
type: "string",
|
|
8396
|
+
"x-title": "Connected Account ID"
|
|
8397
|
+
},
|
|
8398
|
+
created_at: {
|
|
8399
|
+
description: "The time when the event was created.",
|
|
8400
|
+
format: "date-time",
|
|
8401
|
+
type: "string",
|
|
8402
|
+
"x-title": "Created At"
|
|
8403
|
+
},
|
|
8404
|
+
device_id: {
|
|
8405
|
+
description: "The ID of the device.",
|
|
8406
|
+
format: "uuid",
|
|
8407
|
+
type: "string",
|
|
8408
|
+
"x-title": "Device ID"
|
|
8409
|
+
},
|
|
8410
|
+
event_id: {
|
|
8411
|
+
description: "The ID of the event.",
|
|
8412
|
+
format: "uuid",
|
|
8413
|
+
type: "string",
|
|
8414
|
+
"x-title": "Event ID"
|
|
8415
|
+
},
|
|
8416
|
+
event_type: {
|
|
8417
|
+
enum: ["access_code.removed_from_device"],
|
|
8418
|
+
type: "string"
|
|
8419
|
+
},
|
|
8420
|
+
occurred_at: {
|
|
8421
|
+
description: "The time when the event occurred.",
|
|
8422
|
+
format: "date-time",
|
|
8423
|
+
type: "string",
|
|
8424
|
+
"x-title": "Occurred At"
|
|
8425
|
+
},
|
|
8426
|
+
workspace_id: {
|
|
8427
|
+
description: "The ID of the workspace.",
|
|
8428
|
+
format: "uuid",
|
|
8429
|
+
type: "string",
|
|
8430
|
+
"x-title": "Workspace ID"
|
|
8431
|
+
}
|
|
8432
|
+
},
|
|
8433
|
+
required: [
|
|
8434
|
+
"event_id",
|
|
8435
|
+
"workspace_id",
|
|
8436
|
+
"created_at",
|
|
8437
|
+
"occurred_at",
|
|
8438
|
+
"access_code_id",
|
|
8439
|
+
"device_id",
|
|
8440
|
+
"connected_account_id",
|
|
8441
|
+
"event_type"
|
|
8442
|
+
],
|
|
8443
|
+
type: "object"
|
|
8444
|
+
},
|
|
8445
|
+
{
|
|
8446
|
+
description: "There was an unusually long delay in setting an access code on a device.",
|
|
8447
|
+
properties: {
|
|
8448
|
+
access_code_id: {
|
|
8449
|
+
description: "The ID of the access code.",
|
|
8450
|
+
format: "uuid",
|
|
8451
|
+
type: "string",
|
|
8452
|
+
"x-title": "Access Code ID"
|
|
8453
|
+
},
|
|
8454
|
+
connected_account_id: {
|
|
8455
|
+
description: "The ID of the connected account.",
|
|
8456
|
+
format: "uuid",
|
|
8457
|
+
type: "string",
|
|
8458
|
+
"x-title": "Connected Account ID"
|
|
8459
|
+
},
|
|
8460
|
+
created_at: {
|
|
8461
|
+
description: "The time when the event was created.",
|
|
8462
|
+
format: "date-time",
|
|
8463
|
+
type: "string",
|
|
8464
|
+
"x-title": "Created At"
|
|
8465
|
+
},
|
|
8466
|
+
device_id: {
|
|
8467
|
+
description: "The ID of the device.",
|
|
8468
|
+
format: "uuid",
|
|
8469
|
+
type: "string",
|
|
8470
|
+
"x-title": "Device ID"
|
|
8471
|
+
},
|
|
8472
|
+
event_id: {
|
|
8473
|
+
description: "The ID of the event.",
|
|
8474
|
+
format: "uuid",
|
|
8475
|
+
type: "string",
|
|
8476
|
+
"x-title": "Event ID"
|
|
8477
|
+
},
|
|
8478
|
+
event_type: {
|
|
8479
|
+
enum: ["access_code.delay_in_setting_on_device"],
|
|
8480
|
+
type: "string"
|
|
8481
|
+
},
|
|
8482
|
+
occurred_at: {
|
|
8483
|
+
description: "The time when the event occurred.",
|
|
8484
|
+
format: "date-time",
|
|
8485
|
+
type: "string",
|
|
8486
|
+
"x-title": "Occurred At"
|
|
8487
|
+
},
|
|
8488
|
+
workspace_id: {
|
|
8489
|
+
description: "The ID of the workspace.",
|
|
8490
|
+
format: "uuid",
|
|
8491
|
+
type: "string",
|
|
8492
|
+
"x-title": "Workspace ID"
|
|
8493
|
+
}
|
|
8494
|
+
},
|
|
8495
|
+
required: [
|
|
8496
|
+
"event_id",
|
|
8497
|
+
"workspace_id",
|
|
8498
|
+
"created_at",
|
|
8499
|
+
"occurred_at",
|
|
8500
|
+
"access_code_id",
|
|
8501
|
+
"device_id",
|
|
8502
|
+
"connected_account_id",
|
|
8503
|
+
"event_type"
|
|
8504
|
+
],
|
|
8505
|
+
type: "object"
|
|
8506
|
+
},
|
|
8507
|
+
{
|
|
8508
|
+
description: "An access code failed to be set on a device.",
|
|
8509
|
+
properties: {
|
|
8510
|
+
access_code_id: {
|
|
8511
|
+
description: "The ID of the access code.",
|
|
8512
|
+
format: "uuid",
|
|
8513
|
+
type: "string",
|
|
8514
|
+
"x-title": "Access Code ID"
|
|
8515
|
+
},
|
|
8516
|
+
connected_account_id: {
|
|
8517
|
+
description: "The ID of the connected account.",
|
|
8518
|
+
format: "uuid",
|
|
8519
|
+
type: "string",
|
|
8520
|
+
"x-title": "Connected Account ID"
|
|
8521
|
+
},
|
|
8522
|
+
created_at: {
|
|
8523
|
+
description: "The time when the event was created.",
|
|
8524
|
+
format: "date-time",
|
|
8525
|
+
type: "string",
|
|
8526
|
+
"x-title": "Created At"
|
|
8527
|
+
},
|
|
8528
|
+
device_id: {
|
|
8529
|
+
description: "The ID of the device.",
|
|
8530
|
+
format: "uuid",
|
|
8531
|
+
type: "string",
|
|
8532
|
+
"x-title": "Device ID"
|
|
8533
|
+
},
|
|
8534
|
+
event_id: {
|
|
8535
|
+
description: "The ID of the event.",
|
|
8536
|
+
format: "uuid",
|
|
8537
|
+
type: "string",
|
|
8538
|
+
"x-title": "Event ID"
|
|
8539
|
+
},
|
|
8540
|
+
event_type: {
|
|
8541
|
+
enum: ["access_code.failed_to_set_on_device"],
|
|
8542
|
+
type: "string"
|
|
8543
|
+
},
|
|
8544
|
+
occurred_at: {
|
|
8545
|
+
description: "The time when the event occurred.",
|
|
8546
|
+
format: "date-time",
|
|
8547
|
+
type: "string",
|
|
8548
|
+
"x-title": "Occurred At"
|
|
8549
|
+
},
|
|
8550
|
+
workspace_id: {
|
|
8551
|
+
description: "The ID of the workspace.",
|
|
8552
|
+
format: "uuid",
|
|
8553
|
+
type: "string",
|
|
8554
|
+
"x-title": "Workspace ID"
|
|
8555
|
+
}
|
|
8556
|
+
},
|
|
8557
|
+
required: [
|
|
8558
|
+
"event_id",
|
|
8559
|
+
"workspace_id",
|
|
8560
|
+
"created_at",
|
|
8561
|
+
"occurred_at",
|
|
8562
|
+
"access_code_id",
|
|
8563
|
+
"device_id",
|
|
8564
|
+
"connected_account_id",
|
|
8565
|
+
"event_type"
|
|
8566
|
+
],
|
|
8567
|
+
type: "object"
|
|
8568
|
+
},
|
|
8569
|
+
{
|
|
8570
|
+
description: "An access code was deleted.",
|
|
8571
|
+
properties: {
|
|
8572
|
+
access_code_id: {
|
|
8573
|
+
description: "The ID of the access code.",
|
|
8574
|
+
format: "uuid",
|
|
8575
|
+
type: "string",
|
|
8576
|
+
"x-title": "Access Code ID"
|
|
8577
|
+
},
|
|
8578
|
+
code: {
|
|
8579
|
+
description: "The code of the access code.",
|
|
8580
|
+
nullable: true,
|
|
8581
|
+
type: "string",
|
|
8582
|
+
"x-title": "Access Code"
|
|
8583
|
+
},
|
|
8584
|
+
connected_account_id: {
|
|
8585
|
+
description: "The ID of the connected account.",
|
|
8586
|
+
format: "uuid",
|
|
8587
|
+
type: "string",
|
|
8588
|
+
"x-title": "Connected Account ID"
|
|
8589
|
+
},
|
|
8590
|
+
created_at: {
|
|
8591
|
+
description: "The time when the event was created.",
|
|
8592
|
+
format: "date-time",
|
|
8593
|
+
type: "string",
|
|
8594
|
+
"x-title": "Created At"
|
|
8595
|
+
},
|
|
8596
|
+
device_id: {
|
|
8597
|
+
description: "The ID of the device.",
|
|
8598
|
+
format: "uuid",
|
|
8599
|
+
type: "string",
|
|
8600
|
+
"x-title": "Device ID"
|
|
8601
|
+
},
|
|
8602
|
+
event_id: {
|
|
8603
|
+
description: "The ID of the event.",
|
|
8604
|
+
format: "uuid",
|
|
8605
|
+
type: "string",
|
|
8606
|
+
"x-title": "Event ID"
|
|
8607
|
+
},
|
|
8608
|
+
event_type: { enum: ["access_code.deleted"], type: "string" },
|
|
8609
|
+
occurred_at: {
|
|
8610
|
+
description: "The time when the event occurred.",
|
|
8611
|
+
format: "date-time",
|
|
8612
|
+
type: "string",
|
|
8613
|
+
"x-title": "Occurred At"
|
|
8614
|
+
},
|
|
8615
|
+
workspace_id: {
|
|
8616
|
+
description: "The ID of the workspace.",
|
|
8617
|
+
format: "uuid",
|
|
8618
|
+
type: "string",
|
|
8619
|
+
"x-title": "Workspace ID"
|
|
8620
|
+
}
|
|
8621
|
+
},
|
|
8622
|
+
required: [
|
|
8623
|
+
"event_id",
|
|
8624
|
+
"workspace_id",
|
|
8625
|
+
"created_at",
|
|
8626
|
+
"occurred_at",
|
|
8627
|
+
"access_code_id",
|
|
8628
|
+
"device_id",
|
|
8629
|
+
"connected_account_id",
|
|
8630
|
+
"event_type",
|
|
8631
|
+
"code"
|
|
8632
|
+
],
|
|
8633
|
+
type: "object"
|
|
8634
|
+
},
|
|
8635
|
+
{
|
|
8636
|
+
description: "There was an unusually long delay in removing an access code from a device.",
|
|
8637
|
+
properties: {
|
|
8638
|
+
access_code_id: {
|
|
8639
|
+
description: "The ID of the access code.",
|
|
8640
|
+
format: "uuid",
|
|
8641
|
+
type: "string",
|
|
8642
|
+
"x-title": "Access Code ID"
|
|
8643
|
+
},
|
|
8644
|
+
connected_account_id: {
|
|
8645
|
+
description: "The ID of the connected account.",
|
|
8646
|
+
format: "uuid",
|
|
8647
|
+
type: "string",
|
|
8648
|
+
"x-title": "Connected Account ID"
|
|
8649
|
+
},
|
|
8650
|
+
created_at: {
|
|
8651
|
+
description: "The time when the event was created.",
|
|
8652
|
+
format: "date-time",
|
|
8653
|
+
type: "string",
|
|
8654
|
+
"x-title": "Created At"
|
|
8655
|
+
},
|
|
8656
|
+
device_id: {
|
|
8657
|
+
description: "The ID of the device.",
|
|
8658
|
+
format: "uuid",
|
|
8659
|
+
type: "string",
|
|
8660
|
+
"x-title": "Device ID"
|
|
8661
|
+
},
|
|
8662
|
+
event_id: {
|
|
8663
|
+
description: "The ID of the event.",
|
|
8664
|
+
format: "uuid",
|
|
8665
|
+
type: "string",
|
|
8666
|
+
"x-title": "Event ID"
|
|
8667
|
+
},
|
|
8668
|
+
event_type: {
|
|
8669
|
+
enum: ["access_code.delay_in_removing_from_device"],
|
|
8670
|
+
type: "string"
|
|
8671
|
+
},
|
|
8672
|
+
occurred_at: {
|
|
8673
|
+
description: "The time when the event occurred.",
|
|
8674
|
+
format: "date-time",
|
|
8675
|
+
type: "string",
|
|
8676
|
+
"x-title": "Occurred At"
|
|
8677
|
+
},
|
|
8678
|
+
workspace_id: {
|
|
8679
|
+
description: "The ID of the workspace.",
|
|
8680
|
+
format: "uuid",
|
|
8681
|
+
type: "string",
|
|
8682
|
+
"x-title": "Workspace ID"
|
|
8683
|
+
}
|
|
8684
|
+
},
|
|
8685
|
+
required: [
|
|
8686
|
+
"event_id",
|
|
8687
|
+
"workspace_id",
|
|
8688
|
+
"created_at",
|
|
8689
|
+
"occurred_at",
|
|
8690
|
+
"access_code_id",
|
|
8691
|
+
"device_id",
|
|
8692
|
+
"connected_account_id",
|
|
8693
|
+
"event_type"
|
|
8694
|
+
],
|
|
8695
|
+
type: "object"
|
|
8696
|
+
},
|
|
8697
|
+
{
|
|
8698
|
+
description: "An access code failed to be removed from a device.",
|
|
8699
|
+
properties: {
|
|
8700
|
+
access_code_id: {
|
|
8701
|
+
description: "The ID of the access code.",
|
|
8702
|
+
format: "uuid",
|
|
8703
|
+
type: "string",
|
|
8704
|
+
"x-title": "Access Code ID"
|
|
8705
|
+
},
|
|
8706
|
+
connected_account_id: {
|
|
8707
|
+
description: "The ID of the connected account.",
|
|
8708
|
+
format: "uuid",
|
|
8709
|
+
type: "string",
|
|
8710
|
+
"x-title": "Connected Account ID"
|
|
8711
|
+
},
|
|
8712
|
+
created_at: {
|
|
8713
|
+
description: "The time when the event was created.",
|
|
8714
|
+
format: "date-time",
|
|
8715
|
+
type: "string",
|
|
8716
|
+
"x-title": "Created At"
|
|
8717
|
+
},
|
|
8718
|
+
device_id: {
|
|
8719
|
+
description: "The ID of the device.",
|
|
8720
|
+
format: "uuid",
|
|
8721
|
+
type: "string",
|
|
8722
|
+
"x-title": "Device ID"
|
|
8723
|
+
},
|
|
8724
|
+
event_id: {
|
|
8725
|
+
description: "The ID of the event.",
|
|
8726
|
+
format: "uuid",
|
|
8727
|
+
type: "string",
|
|
8728
|
+
"x-title": "Event ID"
|
|
8729
|
+
},
|
|
8730
|
+
event_type: {
|
|
8731
|
+
enum: ["access_code.failed_to_remove_from_device"],
|
|
8732
|
+
type: "string"
|
|
8733
|
+
},
|
|
8734
|
+
occurred_at: {
|
|
8735
|
+
description: "The time when the event occurred.",
|
|
8736
|
+
format: "date-time",
|
|
8737
|
+
type: "string",
|
|
8738
|
+
"x-title": "Occurred At"
|
|
8739
|
+
},
|
|
8740
|
+
workspace_id: {
|
|
8741
|
+
description: "The ID of the workspace.",
|
|
8742
|
+
format: "uuid",
|
|
8743
|
+
type: "string",
|
|
8744
|
+
"x-title": "Workspace ID"
|
|
8745
|
+
}
|
|
8746
|
+
},
|
|
8747
|
+
required: [
|
|
8748
|
+
"event_id",
|
|
8749
|
+
"workspace_id",
|
|
8750
|
+
"created_at",
|
|
8751
|
+
"occurred_at",
|
|
8752
|
+
"access_code_id",
|
|
8753
|
+
"device_id",
|
|
8754
|
+
"connected_account_id",
|
|
8755
|
+
"event_type"
|
|
8756
|
+
],
|
|
8757
|
+
type: "object"
|
|
8758
|
+
},
|
|
8759
|
+
{
|
|
8760
|
+
description: "An access code was modified external to Seam.",
|
|
8761
|
+
properties: {
|
|
8762
|
+
access_code_id: {
|
|
8763
|
+
description: "The ID of the access code.",
|
|
8764
|
+
format: "uuid",
|
|
8765
|
+
type: "string",
|
|
8766
|
+
"x-title": "Access Code ID"
|
|
8767
|
+
},
|
|
8768
|
+
connected_account_id: {
|
|
8769
|
+
description: "The ID of the connected account.",
|
|
8770
|
+
format: "uuid",
|
|
8771
|
+
type: "string",
|
|
8772
|
+
"x-title": "Connected Account ID"
|
|
8773
|
+
},
|
|
8774
|
+
created_at: {
|
|
8775
|
+
description: "The time when the event was created.",
|
|
8776
|
+
format: "date-time",
|
|
8777
|
+
type: "string",
|
|
8778
|
+
"x-title": "Created At"
|
|
8779
|
+
},
|
|
8780
|
+
device_id: {
|
|
8781
|
+
description: "The ID of the device.",
|
|
8782
|
+
format: "uuid",
|
|
8783
|
+
type: "string",
|
|
8784
|
+
"x-title": "Device ID"
|
|
8785
|
+
},
|
|
8786
|
+
event_id: {
|
|
8787
|
+
description: "The ID of the event.",
|
|
8788
|
+
format: "uuid",
|
|
8789
|
+
type: "string",
|
|
8790
|
+
"x-title": "Event ID"
|
|
8791
|
+
},
|
|
8792
|
+
event_type: {
|
|
8793
|
+
enum: ["access_code.modified_external_to_seam"],
|
|
8794
|
+
type: "string"
|
|
8795
|
+
},
|
|
8796
|
+
occurred_at: {
|
|
8797
|
+
description: "The time when the event occurred.",
|
|
8798
|
+
format: "date-time",
|
|
8799
|
+
type: "string",
|
|
8800
|
+
"x-title": "Occurred At"
|
|
8801
|
+
},
|
|
8802
|
+
workspace_id: {
|
|
8803
|
+
description: "The ID of the workspace.",
|
|
8804
|
+
format: "uuid",
|
|
8805
|
+
type: "string",
|
|
8806
|
+
"x-title": "Workspace ID"
|
|
8807
|
+
}
|
|
8808
|
+
},
|
|
8809
|
+
required: [
|
|
8810
|
+
"event_id",
|
|
8811
|
+
"workspace_id",
|
|
8812
|
+
"created_at",
|
|
8813
|
+
"occurred_at",
|
|
8814
|
+
"access_code_id",
|
|
8815
|
+
"device_id",
|
|
8816
|
+
"connected_account_id",
|
|
8817
|
+
"event_type"
|
|
8818
|
+
],
|
|
8819
|
+
type: "object"
|
|
8820
|
+
},
|
|
8821
|
+
{
|
|
8822
|
+
description: "An access code was deleted external to Seam.",
|
|
8823
|
+
properties: {
|
|
8824
|
+
access_code_id: {
|
|
8825
|
+
description: "The ID of the access code.",
|
|
8826
|
+
format: "uuid",
|
|
8827
|
+
type: "string",
|
|
8828
|
+
"x-title": "Access Code ID"
|
|
8829
|
+
},
|
|
8830
|
+
connected_account_id: {
|
|
8831
|
+
description: "The ID of the connected account.",
|
|
8832
|
+
format: "uuid",
|
|
8833
|
+
type: "string",
|
|
8834
|
+
"x-title": "Connected Account ID"
|
|
8835
|
+
},
|
|
8836
|
+
created_at: {
|
|
8837
|
+
description: "The time when the event was created.",
|
|
8838
|
+
format: "date-time",
|
|
8839
|
+
type: "string",
|
|
8840
|
+
"x-title": "Created At"
|
|
8841
|
+
},
|
|
8842
|
+
device_id: {
|
|
8843
|
+
description: "The ID of the device.",
|
|
8844
|
+
format: "uuid",
|
|
8845
|
+
type: "string",
|
|
8846
|
+
"x-title": "Device ID"
|
|
8847
|
+
},
|
|
8848
|
+
event_id: {
|
|
8849
|
+
description: "The ID of the event.",
|
|
8850
|
+
format: "uuid",
|
|
8851
|
+
type: "string",
|
|
8852
|
+
"x-title": "Event ID"
|
|
8853
|
+
},
|
|
8854
|
+
event_type: {
|
|
8855
|
+
enum: ["access_code.deleted_external_to_seam"],
|
|
8856
|
+
type: "string"
|
|
8857
|
+
},
|
|
8858
|
+
occurred_at: {
|
|
8859
|
+
description: "The time when the event occurred.",
|
|
8860
|
+
format: "date-time",
|
|
8861
|
+
type: "string",
|
|
8862
|
+
"x-title": "Occurred At"
|
|
8863
|
+
},
|
|
8864
|
+
workspace_id: {
|
|
8865
|
+
description: "The ID of the workspace.",
|
|
8866
|
+
format: "uuid",
|
|
8867
|
+
type: "string",
|
|
8868
|
+
"x-title": "Workspace ID"
|
|
8869
|
+
}
|
|
8870
|
+
},
|
|
8871
|
+
required: [
|
|
8872
|
+
"event_id",
|
|
8873
|
+
"workspace_id",
|
|
8874
|
+
"created_at",
|
|
8875
|
+
"occurred_at",
|
|
8876
|
+
"access_code_id",
|
|
8877
|
+
"device_id",
|
|
8878
|
+
"connected_account_id",
|
|
8879
|
+
"event_type"
|
|
8880
|
+
],
|
|
8881
|
+
type: "object"
|
|
8882
|
+
},
|
|
8883
|
+
{
|
|
8884
|
+
description: "A backup access code was pulled from the backup access code pool and set on a device.",
|
|
8885
|
+
properties: {
|
|
8886
|
+
access_code_id: {
|
|
8887
|
+
description: "The ID of the access code.",
|
|
8888
|
+
format: "uuid",
|
|
8889
|
+
type: "string",
|
|
8890
|
+
"x-title": "Access Code ID"
|
|
8891
|
+
},
|
|
8892
|
+
backup_access_code_id: { type: "string" },
|
|
8893
|
+
connected_account_id: {
|
|
8894
|
+
description: "The ID of the connected account.",
|
|
8895
|
+
format: "uuid",
|
|
8896
|
+
type: "string",
|
|
8897
|
+
"x-title": "Connected Account ID"
|
|
8898
|
+
},
|
|
8899
|
+
created_at: {
|
|
8900
|
+
description: "The time when the event was created.",
|
|
8901
|
+
format: "date-time",
|
|
8902
|
+
type: "string",
|
|
8903
|
+
"x-title": "Created At"
|
|
8904
|
+
},
|
|
8905
|
+
device_id: {
|
|
8906
|
+
description: "The ID of the device.",
|
|
8907
|
+
format: "uuid",
|
|
8908
|
+
type: "string",
|
|
8909
|
+
"x-title": "Device ID"
|
|
8910
|
+
},
|
|
8911
|
+
event_id: {
|
|
8912
|
+
description: "The ID of the event.",
|
|
8913
|
+
format: "uuid",
|
|
8914
|
+
type: "string",
|
|
8915
|
+
"x-title": "Event ID"
|
|
8916
|
+
},
|
|
8917
|
+
event_type: {
|
|
8918
|
+
enum: ["access_code.backup_access_code_pulled"],
|
|
8919
|
+
type: "string"
|
|
8920
|
+
},
|
|
8921
|
+
occurred_at: {
|
|
8922
|
+
description: "The time when the event occurred.",
|
|
8923
|
+
format: "date-time",
|
|
8924
|
+
type: "string",
|
|
8925
|
+
"x-title": "Occurred At"
|
|
8926
|
+
},
|
|
8927
|
+
workspace_id: {
|
|
8928
|
+
description: "The ID of the workspace.",
|
|
8929
|
+
format: "uuid",
|
|
8930
|
+
type: "string",
|
|
8931
|
+
"x-title": "Workspace ID"
|
|
8932
|
+
}
|
|
8933
|
+
},
|
|
8934
|
+
required: [
|
|
8935
|
+
"event_id",
|
|
8936
|
+
"workspace_id",
|
|
8937
|
+
"created_at",
|
|
8938
|
+
"occurred_at",
|
|
8939
|
+
"access_code_id",
|
|
8940
|
+
"device_id",
|
|
8941
|
+
"connected_account_id",
|
|
8942
|
+
"event_type",
|
|
8943
|
+
"backup_access_code_id"
|
|
8944
|
+
],
|
|
8945
|
+
type: "object"
|
|
8946
|
+
},
|
|
8947
|
+
{
|
|
8948
|
+
description: "An unmanaged access code was successfully converted to a managed access code.",
|
|
8949
|
+
properties: {
|
|
8950
|
+
access_code_id: {
|
|
8951
|
+
description: "The ID of the access code.",
|
|
8952
|
+
format: "uuid",
|
|
8953
|
+
type: "string",
|
|
8954
|
+
"x-title": "Access Code ID"
|
|
8955
|
+
},
|
|
8956
|
+
connected_account_id: {
|
|
8957
|
+
description: "The ID of the connected account.",
|
|
8958
|
+
format: "uuid",
|
|
8959
|
+
type: "string",
|
|
8960
|
+
"x-title": "Connected Account ID"
|
|
8961
|
+
},
|
|
8962
|
+
created_at: {
|
|
8963
|
+
description: "The time when the event was created.",
|
|
8964
|
+
format: "date-time",
|
|
8965
|
+
type: "string",
|
|
8966
|
+
"x-title": "Created At"
|
|
8967
|
+
},
|
|
8968
|
+
device_id: {
|
|
8969
|
+
description: "The ID of the device.",
|
|
8970
|
+
format: "uuid",
|
|
8971
|
+
type: "string",
|
|
8972
|
+
"x-title": "Device ID"
|
|
8973
|
+
},
|
|
8974
|
+
event_id: {
|
|
8975
|
+
description: "The ID of the event.",
|
|
8976
|
+
format: "uuid",
|
|
8977
|
+
type: "string",
|
|
8978
|
+
"x-title": "Event ID"
|
|
8979
|
+
},
|
|
8980
|
+
event_type: {
|
|
8981
|
+
enum: ["access_code.unmanaged.converted_to_managed"],
|
|
8982
|
+
type: "string"
|
|
8983
|
+
},
|
|
8984
|
+
occurred_at: {
|
|
8985
|
+
description: "The time when the event occurred.",
|
|
8986
|
+
format: "date-time",
|
|
8987
|
+
type: "string",
|
|
8988
|
+
"x-title": "Occurred At"
|
|
8989
|
+
},
|
|
8990
|
+
workspace_id: {
|
|
8991
|
+
description: "The ID of the workspace.",
|
|
8992
|
+
format: "uuid",
|
|
8993
|
+
type: "string",
|
|
8994
|
+
"x-title": "Workspace ID"
|
|
8995
|
+
}
|
|
8996
|
+
},
|
|
8997
|
+
required: [
|
|
8998
|
+
"event_id",
|
|
8999
|
+
"workspace_id",
|
|
9000
|
+
"created_at",
|
|
9001
|
+
"occurred_at",
|
|
9002
|
+
"access_code_id",
|
|
9003
|
+
"device_id",
|
|
9004
|
+
"connected_account_id",
|
|
9005
|
+
"event_type"
|
|
9006
|
+
],
|
|
9007
|
+
type: "object"
|
|
9008
|
+
},
|
|
9009
|
+
{
|
|
9010
|
+
description: "An unmanaged access code failed to be converted to a managed access code.",
|
|
9011
|
+
properties: {
|
|
9012
|
+
access_code_id: {
|
|
9013
|
+
description: "The ID of the access code.",
|
|
9014
|
+
format: "uuid",
|
|
9015
|
+
type: "string",
|
|
9016
|
+
"x-title": "Access Code ID"
|
|
9017
|
+
},
|
|
9018
|
+
connected_account_id: {
|
|
9019
|
+
description: "The ID of the connected account.",
|
|
9020
|
+
format: "uuid",
|
|
9021
|
+
type: "string",
|
|
9022
|
+
"x-title": "Connected Account ID"
|
|
9023
|
+
},
|
|
9024
|
+
created_at: {
|
|
9025
|
+
description: "The time when the event was created.",
|
|
9026
|
+
format: "date-time",
|
|
9027
|
+
type: "string",
|
|
9028
|
+
"x-title": "Created At"
|
|
9029
|
+
},
|
|
9030
|
+
device_id: {
|
|
9031
|
+
description: "The ID of the device.",
|
|
9032
|
+
format: "uuid",
|
|
9033
|
+
type: "string",
|
|
9034
|
+
"x-title": "Device ID"
|
|
9035
|
+
},
|
|
9036
|
+
event_id: {
|
|
9037
|
+
description: "The ID of the event.",
|
|
9038
|
+
format: "uuid",
|
|
9039
|
+
type: "string",
|
|
9040
|
+
"x-title": "Event ID"
|
|
9041
|
+
},
|
|
9042
|
+
event_type: {
|
|
9043
|
+
enum: ["access_code.unmanaged.failed_to_convert_to_managed"],
|
|
9044
|
+
type: "string"
|
|
9045
|
+
},
|
|
9046
|
+
occurred_at: {
|
|
9047
|
+
description: "The time when the event occurred.",
|
|
9048
|
+
format: "date-time",
|
|
9049
|
+
type: "string",
|
|
9050
|
+
"x-title": "Occurred At"
|
|
9051
|
+
},
|
|
9052
|
+
workspace_id: {
|
|
9053
|
+
description: "The ID of the workspace.",
|
|
9054
|
+
format: "uuid",
|
|
9055
|
+
type: "string",
|
|
9056
|
+
"x-title": "Workspace ID"
|
|
9057
|
+
}
|
|
9058
|
+
},
|
|
9059
|
+
required: [
|
|
9060
|
+
"event_id",
|
|
9061
|
+
"workspace_id",
|
|
9062
|
+
"created_at",
|
|
9063
|
+
"occurred_at",
|
|
9064
|
+
"access_code_id",
|
|
9065
|
+
"device_id",
|
|
9066
|
+
"connected_account_id",
|
|
9067
|
+
"event_type"
|
|
9068
|
+
],
|
|
9069
|
+
type: "object"
|
|
9070
|
+
},
|
|
9071
|
+
{
|
|
9072
|
+
description: "An unmanaged access code was created on a device.",
|
|
9073
|
+
properties: {
|
|
9074
|
+
access_code_id: {
|
|
9075
|
+
description: "The ID of the access code.",
|
|
9076
|
+
format: "uuid",
|
|
9077
|
+
type: "string",
|
|
9078
|
+
"x-title": "Access Code ID"
|
|
9079
|
+
},
|
|
9080
|
+
connected_account_id: {
|
|
9081
|
+
description: "The ID of the connected account.",
|
|
9082
|
+
format: "uuid",
|
|
9083
|
+
type: "string",
|
|
9084
|
+
"x-title": "Connected Account ID"
|
|
9085
|
+
},
|
|
9086
|
+
created_at: {
|
|
9087
|
+
description: "The time when the event was created.",
|
|
9088
|
+
format: "date-time",
|
|
9089
|
+
type: "string",
|
|
9090
|
+
"x-title": "Created At"
|
|
9091
|
+
},
|
|
9092
|
+
device_id: {
|
|
9093
|
+
description: "The ID of the device.",
|
|
9094
|
+
format: "uuid",
|
|
9095
|
+
type: "string",
|
|
9096
|
+
"x-title": "Device ID"
|
|
9097
|
+
},
|
|
9098
|
+
event_id: {
|
|
9099
|
+
description: "The ID of the event.",
|
|
9100
|
+
format: "uuid",
|
|
9101
|
+
type: "string",
|
|
9102
|
+
"x-title": "Event ID"
|
|
9103
|
+
},
|
|
9104
|
+
event_type: {
|
|
9105
|
+
enum: ["access_code.unmanaged.created"],
|
|
9106
|
+
type: "string"
|
|
9107
|
+
},
|
|
9108
|
+
occurred_at: {
|
|
9109
|
+
description: "The time when the event occurred.",
|
|
9110
|
+
format: "date-time",
|
|
9111
|
+
type: "string",
|
|
9112
|
+
"x-title": "Occurred At"
|
|
9113
|
+
},
|
|
9114
|
+
workspace_id: {
|
|
9115
|
+
description: "The ID of the workspace.",
|
|
9116
|
+
format: "uuid",
|
|
9117
|
+
type: "string",
|
|
9118
|
+
"x-title": "Workspace ID"
|
|
9119
|
+
}
|
|
9120
|
+
},
|
|
9121
|
+
required: [
|
|
9122
|
+
"event_id",
|
|
9123
|
+
"workspace_id",
|
|
9124
|
+
"created_at",
|
|
9125
|
+
"occurred_at",
|
|
9126
|
+
"access_code_id",
|
|
9127
|
+
"device_id",
|
|
9128
|
+
"connected_account_id",
|
|
9129
|
+
"event_type"
|
|
9130
|
+
],
|
|
9131
|
+
type: "object"
|
|
9132
|
+
},
|
|
9133
|
+
{
|
|
9134
|
+
description: "An unmanaged access code was removed from a device.",
|
|
9135
|
+
properties: {
|
|
9136
|
+
access_code_id: {
|
|
9137
|
+
description: "The ID of the access code.",
|
|
9138
|
+
format: "uuid",
|
|
9139
|
+
type: "string",
|
|
9140
|
+
"x-title": "Access Code ID"
|
|
9141
|
+
},
|
|
9142
|
+
connected_account_id: {
|
|
9143
|
+
description: "The ID of the connected account.",
|
|
9144
|
+
format: "uuid",
|
|
9145
|
+
type: "string",
|
|
9146
|
+
"x-title": "Connected Account ID"
|
|
9147
|
+
},
|
|
9148
|
+
created_at: {
|
|
9149
|
+
description: "The time when the event was created.",
|
|
9150
|
+
format: "date-time",
|
|
9151
|
+
type: "string",
|
|
9152
|
+
"x-title": "Created At"
|
|
9153
|
+
},
|
|
9154
|
+
device_id: {
|
|
9155
|
+
description: "The ID of the device.",
|
|
9156
|
+
format: "uuid",
|
|
9157
|
+
type: "string",
|
|
9158
|
+
"x-title": "Device ID"
|
|
9159
|
+
},
|
|
9160
|
+
event_id: {
|
|
9161
|
+
description: "The ID of the event.",
|
|
9162
|
+
format: "uuid",
|
|
9163
|
+
type: "string",
|
|
9164
|
+
"x-title": "Event ID"
|
|
9165
|
+
},
|
|
9166
|
+
event_type: {
|
|
9167
|
+
enum: ["access_code.unmanaged.removed"],
|
|
9168
|
+
type: "string"
|
|
9169
|
+
},
|
|
9170
|
+
occurred_at: {
|
|
9171
|
+
description: "The time when the event occurred.",
|
|
9172
|
+
format: "date-time",
|
|
9173
|
+
type: "string",
|
|
9174
|
+
"x-title": "Occurred At"
|
|
9175
|
+
},
|
|
9176
|
+
workspace_id: {
|
|
9177
|
+
description: "The ID of the workspace.",
|
|
9178
|
+
format: "uuid",
|
|
9179
|
+
type: "string",
|
|
9180
|
+
"x-title": "Workspace ID"
|
|
9181
|
+
}
|
|
9182
|
+
},
|
|
9183
|
+
required: [
|
|
9184
|
+
"event_id",
|
|
9185
|
+
"workspace_id",
|
|
9186
|
+
"created_at",
|
|
9187
|
+
"occurred_at",
|
|
9188
|
+
"access_code_id",
|
|
9189
|
+
"device_id",
|
|
9190
|
+
"connected_account_id",
|
|
9191
|
+
"event_type"
|
|
9192
|
+
],
|
|
9193
|
+
type: "object"
|
|
9194
|
+
},
|
|
9195
|
+
{
|
|
9196
|
+
description: "An ACS system was connected.",
|
|
9197
|
+
properties: {
|
|
9198
|
+
acs_system_id: {
|
|
9199
|
+
description: "ID of the ACS system.",
|
|
9200
|
+
format: "uuid",
|
|
9201
|
+
type: "string",
|
|
9202
|
+
"x-title": "ACS System ID"
|
|
9203
|
+
},
|
|
9204
|
+
connected_account_id: {
|
|
9205
|
+
deprecated: true,
|
|
9206
|
+
description: "ID of the connected account.",
|
|
9207
|
+
format: "uuid",
|
|
9208
|
+
type: "string",
|
|
9209
|
+
"x-deprecated": "Will be removed.",
|
|
9210
|
+
"x-title": "Connected Account ID"
|
|
9211
|
+
},
|
|
9212
|
+
created_at: {
|
|
9213
|
+
description: "The time when the event was created.",
|
|
9214
|
+
format: "date-time",
|
|
9215
|
+
type: "string",
|
|
9216
|
+
"x-title": "Created At"
|
|
9217
|
+
},
|
|
9218
|
+
event_id: {
|
|
9219
|
+
description: "The ID of the event.",
|
|
9220
|
+
format: "uuid",
|
|
9221
|
+
type: "string",
|
|
9222
|
+
"x-title": "Event ID"
|
|
9223
|
+
},
|
|
9224
|
+
event_type: { enum: ["acs_system.connected"], type: "string" },
|
|
9225
|
+
occurred_at: {
|
|
9226
|
+
description: "The time when the event occurred.",
|
|
9227
|
+
format: "date-time",
|
|
9228
|
+
type: "string",
|
|
9229
|
+
"x-title": "Occurred At"
|
|
9230
|
+
},
|
|
9231
|
+
workspace_id: {
|
|
9232
|
+
description: "The ID of the workspace.",
|
|
9233
|
+
format: "uuid",
|
|
9234
|
+
type: "string",
|
|
9235
|
+
"x-title": "Workspace ID"
|
|
9236
|
+
}
|
|
9237
|
+
},
|
|
9238
|
+
required: [
|
|
9239
|
+
"event_id",
|
|
9240
|
+
"workspace_id",
|
|
9241
|
+
"created_at",
|
|
9242
|
+
"occurred_at",
|
|
9243
|
+
"acs_system_id",
|
|
9244
|
+
"event_type"
|
|
9245
|
+
],
|
|
9246
|
+
type: "object"
|
|
9247
|
+
},
|
|
9248
|
+
{
|
|
9249
|
+
description: "An ACS system was added.",
|
|
9250
|
+
properties: {
|
|
9251
|
+
acs_system_id: {
|
|
9252
|
+
description: "ID of the ACS system.",
|
|
9253
|
+
format: "uuid",
|
|
9254
|
+
type: "string",
|
|
9255
|
+
"x-title": "ACS System ID"
|
|
9256
|
+
},
|
|
9257
|
+
connected_account_id: {
|
|
9258
|
+
deprecated: true,
|
|
9259
|
+
description: "ID of the connected account.",
|
|
9260
|
+
format: "uuid",
|
|
9261
|
+
type: "string",
|
|
9262
|
+
"x-deprecated": "Will be removed.",
|
|
9263
|
+
"x-title": "Connected Account ID"
|
|
9264
|
+
},
|
|
9265
|
+
created_at: {
|
|
9266
|
+
description: "The time when the event was created.",
|
|
9267
|
+
format: "date-time",
|
|
9268
|
+
type: "string",
|
|
9269
|
+
"x-title": "Created At"
|
|
9270
|
+
},
|
|
9271
|
+
event_id: {
|
|
9272
|
+
description: "The ID of the event.",
|
|
9273
|
+
format: "uuid",
|
|
9274
|
+
type: "string",
|
|
9275
|
+
"x-title": "Event ID"
|
|
9276
|
+
},
|
|
9277
|
+
event_type: { enum: ["acs_system.added"], type: "string" },
|
|
9278
|
+
occurred_at: {
|
|
9279
|
+
description: "The time when the event occurred.",
|
|
9280
|
+
format: "date-time",
|
|
9281
|
+
type: "string",
|
|
9282
|
+
"x-title": "Occurred At"
|
|
9283
|
+
},
|
|
9284
|
+
workspace_id: {
|
|
9285
|
+
description: "The ID of the workspace.",
|
|
9286
|
+
format: "uuid",
|
|
9287
|
+
type: "string",
|
|
9288
|
+
"x-title": "Workspace ID"
|
|
9289
|
+
}
|
|
9290
|
+
},
|
|
9291
|
+
required: [
|
|
9292
|
+
"event_id",
|
|
9293
|
+
"workspace_id",
|
|
9294
|
+
"created_at",
|
|
9295
|
+
"occurred_at",
|
|
9296
|
+
"acs_system_id",
|
|
9297
|
+
"event_type"
|
|
9298
|
+
],
|
|
9299
|
+
type: "object"
|
|
9300
|
+
},
|
|
9301
|
+
{
|
|
9302
|
+
description: "An ACS system was disconnected.",
|
|
9303
|
+
properties: {
|
|
9304
|
+
acs_system_id: {
|
|
9305
|
+
description: "ID of the ACS system.",
|
|
9306
|
+
format: "uuid",
|
|
9307
|
+
type: "string",
|
|
9308
|
+
"x-title": "ACS System ID"
|
|
9309
|
+
},
|
|
9310
|
+
connected_account_id: {
|
|
9311
|
+
deprecated: true,
|
|
9312
|
+
description: "ID of the connected account.",
|
|
9313
|
+
format: "uuid",
|
|
9314
|
+
type: "string",
|
|
9315
|
+
"x-deprecated": "Will be removed.",
|
|
9316
|
+
"x-title": "Connected Account ID"
|
|
9317
|
+
},
|
|
9318
|
+
created_at: {
|
|
9319
|
+
description: "The time when the event was created.",
|
|
9320
|
+
format: "date-time",
|
|
9321
|
+
type: "string",
|
|
9322
|
+
"x-title": "Created At"
|
|
9323
|
+
},
|
|
9324
|
+
event_id: {
|
|
9325
|
+
description: "The ID of the event.",
|
|
9326
|
+
format: "uuid",
|
|
9327
|
+
type: "string",
|
|
9328
|
+
"x-title": "Event ID"
|
|
9329
|
+
},
|
|
9330
|
+
event_type: { enum: ["acs_system.disconnected"], type: "string" },
|
|
9331
|
+
occurred_at: {
|
|
9332
|
+
description: "The time when the event occurred.",
|
|
9333
|
+
format: "date-time",
|
|
9334
|
+
type: "string",
|
|
9335
|
+
"x-title": "Occurred At"
|
|
9336
|
+
},
|
|
9337
|
+
workspace_id: {
|
|
9338
|
+
description: "The ID of the workspace.",
|
|
9339
|
+
format: "uuid",
|
|
9340
|
+
type: "string",
|
|
9341
|
+
"x-title": "Workspace ID"
|
|
9342
|
+
}
|
|
9343
|
+
},
|
|
9344
|
+
required: [
|
|
9345
|
+
"event_id",
|
|
9346
|
+
"workspace_id",
|
|
9347
|
+
"created_at",
|
|
9348
|
+
"occurred_at",
|
|
9349
|
+
"acs_system_id",
|
|
9350
|
+
"event_type"
|
|
9351
|
+
],
|
|
9352
|
+
type: "object"
|
|
9353
|
+
},
|
|
9354
|
+
{
|
|
9355
|
+
description: "An ACS credential was deleted.",
|
|
9356
|
+
properties: {
|
|
9357
|
+
acs_credential_id: { format: "uuid", type: "string" },
|
|
9358
|
+
acs_system_id: {
|
|
9359
|
+
description: "ID of the ACS system.",
|
|
9360
|
+
format: "uuid",
|
|
9361
|
+
type: "string",
|
|
9362
|
+
"x-title": "ACS System ID"
|
|
9363
|
+
},
|
|
9364
|
+
connected_account_id: {
|
|
9365
|
+
deprecated: true,
|
|
9366
|
+
description: "ID of the connected account.",
|
|
9367
|
+
format: "uuid",
|
|
9368
|
+
type: "string",
|
|
9369
|
+
"x-deprecated": "Will be removed.",
|
|
9370
|
+
"x-title": "Connected Account ID"
|
|
9371
|
+
},
|
|
9372
|
+
created_at: {
|
|
9373
|
+
description: "The time when the event was created.",
|
|
9374
|
+
format: "date-time",
|
|
9375
|
+
type: "string",
|
|
9376
|
+
"x-title": "Created At"
|
|
9377
|
+
},
|
|
9378
|
+
event_id: {
|
|
9379
|
+
description: "The ID of the event.",
|
|
9380
|
+
format: "uuid",
|
|
9381
|
+
type: "string",
|
|
9382
|
+
"x-title": "Event ID"
|
|
9383
|
+
},
|
|
9384
|
+
event_type: { enum: ["acs_credential.deleted"], type: "string" },
|
|
9385
|
+
occurred_at: {
|
|
9386
|
+
description: "The time when the event occurred.",
|
|
9387
|
+
format: "date-time",
|
|
9388
|
+
type: "string",
|
|
9389
|
+
"x-title": "Occurred At"
|
|
9390
|
+
},
|
|
9391
|
+
workspace_id: {
|
|
9392
|
+
description: "The ID of the workspace.",
|
|
9393
|
+
format: "uuid",
|
|
9394
|
+
type: "string",
|
|
9395
|
+
"x-title": "Workspace ID"
|
|
9396
|
+
}
|
|
9397
|
+
},
|
|
9398
|
+
required: [
|
|
9399
|
+
"event_id",
|
|
9400
|
+
"workspace_id",
|
|
9401
|
+
"created_at",
|
|
9402
|
+
"occurred_at",
|
|
9403
|
+
"acs_system_id",
|
|
9404
|
+
"acs_credential_id",
|
|
9405
|
+
"event_type"
|
|
9406
|
+
],
|
|
9407
|
+
type: "object"
|
|
9408
|
+
},
|
|
9409
|
+
{
|
|
9410
|
+
description: "An ACS credential was issued.",
|
|
9411
|
+
properties: {
|
|
9412
|
+
acs_credential_id: { format: "uuid", type: "string" },
|
|
9413
|
+
acs_system_id: {
|
|
9414
|
+
description: "ID of the ACS system.",
|
|
9415
|
+
format: "uuid",
|
|
9416
|
+
type: "string",
|
|
9417
|
+
"x-title": "ACS System ID"
|
|
9418
|
+
},
|
|
9419
|
+
connected_account_id: {
|
|
9420
|
+
deprecated: true,
|
|
9421
|
+
description: "ID of the connected account.",
|
|
9422
|
+
format: "uuid",
|
|
9423
|
+
type: "string",
|
|
9424
|
+
"x-deprecated": "Will be removed.",
|
|
9425
|
+
"x-title": "Connected Account ID"
|
|
9426
|
+
},
|
|
9427
|
+
created_at: {
|
|
9428
|
+
description: "The time when the event was created.",
|
|
9429
|
+
format: "date-time",
|
|
9430
|
+
type: "string",
|
|
9431
|
+
"x-title": "Created At"
|
|
9432
|
+
},
|
|
9433
|
+
event_id: {
|
|
9434
|
+
description: "The ID of the event.",
|
|
9435
|
+
format: "uuid",
|
|
9436
|
+
type: "string",
|
|
9437
|
+
"x-title": "Event ID"
|
|
9438
|
+
},
|
|
9439
|
+
event_type: { enum: ["acs_credential.issued"], type: "string" },
|
|
9440
|
+
occurred_at: {
|
|
9441
|
+
description: "The time when the event occurred.",
|
|
9442
|
+
format: "date-time",
|
|
9443
|
+
type: "string",
|
|
9444
|
+
"x-title": "Occurred At"
|
|
9445
|
+
},
|
|
9446
|
+
workspace_id: {
|
|
9447
|
+
description: "The ID of the workspace.",
|
|
9448
|
+
format: "uuid",
|
|
9449
|
+
type: "string",
|
|
9450
|
+
"x-title": "Workspace ID"
|
|
9451
|
+
}
|
|
9452
|
+
},
|
|
9453
|
+
required: [
|
|
9454
|
+
"event_id",
|
|
9455
|
+
"workspace_id",
|
|
9456
|
+
"created_at",
|
|
9457
|
+
"occurred_at",
|
|
9458
|
+
"acs_system_id",
|
|
9459
|
+
"acs_credential_id",
|
|
9460
|
+
"event_type"
|
|
9461
|
+
],
|
|
9462
|
+
type: "object"
|
|
9463
|
+
},
|
|
9464
|
+
{
|
|
9465
|
+
description: "An ACS user was deleted.",
|
|
9466
|
+
properties: {
|
|
9467
|
+
acs_system_id: {
|
|
9468
|
+
description: "ID of the ACS system.",
|
|
9469
|
+
format: "uuid",
|
|
9470
|
+
type: "string",
|
|
9471
|
+
"x-title": "ACS System ID"
|
|
9472
|
+
},
|
|
9473
|
+
acs_user_id: { format: "uuid", type: "string" },
|
|
9474
|
+
connected_account_id: {
|
|
9475
|
+
deprecated: true,
|
|
9476
|
+
description: "ID of the connected account.",
|
|
9477
|
+
format: "uuid",
|
|
9478
|
+
type: "string",
|
|
9479
|
+
"x-deprecated": "Will be removed.",
|
|
9480
|
+
"x-title": "Connected Account ID"
|
|
9481
|
+
},
|
|
9482
|
+
created_at: {
|
|
9483
|
+
description: "The time when the event was created.",
|
|
9484
|
+
format: "date-time",
|
|
9485
|
+
type: "string",
|
|
9486
|
+
"x-title": "Created At"
|
|
9487
|
+
},
|
|
9488
|
+
event_id: {
|
|
9489
|
+
description: "The ID of the event.",
|
|
9490
|
+
format: "uuid",
|
|
9491
|
+
type: "string",
|
|
9492
|
+
"x-title": "Event ID"
|
|
9493
|
+
},
|
|
9494
|
+
event_type: { enum: ["acs_user.deleted"], type: "string" },
|
|
9495
|
+
occurred_at: {
|
|
9496
|
+
description: "The time when the event occurred.",
|
|
9497
|
+
format: "date-time",
|
|
9498
|
+
type: "string",
|
|
9499
|
+
"x-title": "Occurred At"
|
|
9500
|
+
},
|
|
9501
|
+
workspace_id: {
|
|
9502
|
+
description: "The ID of the workspace.",
|
|
9503
|
+
format: "uuid",
|
|
9504
|
+
type: "string",
|
|
9505
|
+
"x-title": "Workspace ID"
|
|
9506
|
+
}
|
|
9507
|
+
},
|
|
9508
|
+
required: [
|
|
9509
|
+
"event_id",
|
|
9510
|
+
"workspace_id",
|
|
9511
|
+
"created_at",
|
|
9512
|
+
"occurred_at",
|
|
9513
|
+
"acs_system_id",
|
|
9514
|
+
"acs_user_id",
|
|
9515
|
+
"event_type"
|
|
9516
|
+
],
|
|
9517
|
+
type: "object"
|
|
9518
|
+
},
|
|
9519
|
+
{
|
|
9520
|
+
description: "An ACS encoder was added.",
|
|
9521
|
+
properties: {
|
|
9522
|
+
acs_encoder_id: {
|
|
9523
|
+
description: "ID of the ACS encoder.",
|
|
9524
|
+
format: "uuid",
|
|
9525
|
+
type: "string"
|
|
9526
|
+
},
|
|
9527
|
+
acs_system_id: {
|
|
9528
|
+
description: "ID of the ACS system.",
|
|
9529
|
+
format: "uuid",
|
|
9530
|
+
type: "string",
|
|
9531
|
+
"x-title": "ACS System ID"
|
|
9532
|
+
},
|
|
9533
|
+
connected_account_id: {
|
|
9534
|
+
deprecated: true,
|
|
9535
|
+
description: "ID of the connected account.",
|
|
9536
|
+
format: "uuid",
|
|
9537
|
+
type: "string",
|
|
9538
|
+
"x-deprecated": "Will be removed.",
|
|
9539
|
+
"x-title": "Connected Account ID"
|
|
9540
|
+
},
|
|
9541
|
+
created_at: {
|
|
9542
|
+
description: "The time when the event was created.",
|
|
9543
|
+
format: "date-time",
|
|
9544
|
+
type: "string",
|
|
9545
|
+
"x-title": "Created At"
|
|
9546
|
+
},
|
|
9547
|
+
event_id: {
|
|
9548
|
+
description: "The ID of the event.",
|
|
9549
|
+
format: "uuid",
|
|
9550
|
+
type: "string",
|
|
9551
|
+
"x-title": "Event ID"
|
|
9552
|
+
},
|
|
9553
|
+
event_type: { enum: ["acs_encoder.added"], type: "string" },
|
|
9554
|
+
occurred_at: {
|
|
9555
|
+
description: "The time when the event occurred.",
|
|
9556
|
+
format: "date-time",
|
|
9557
|
+
type: "string",
|
|
9558
|
+
"x-title": "Occurred At"
|
|
9559
|
+
},
|
|
9560
|
+
workspace_id: {
|
|
9561
|
+
description: "The ID of the workspace.",
|
|
9562
|
+
format: "uuid",
|
|
9563
|
+
type: "string",
|
|
9564
|
+
"x-title": "Workspace ID"
|
|
9565
|
+
}
|
|
9566
|
+
},
|
|
9567
|
+
required: [
|
|
9568
|
+
"event_id",
|
|
9569
|
+
"workspace_id",
|
|
9570
|
+
"created_at",
|
|
9571
|
+
"occurred_at",
|
|
9572
|
+
"acs_system_id",
|
|
9573
|
+
"acs_encoder_id",
|
|
9574
|
+
"event_type"
|
|
9575
|
+
],
|
|
9576
|
+
type: "object"
|
|
9577
|
+
},
|
|
9578
|
+
{
|
|
9579
|
+
description: "An ACS encoder was removed.",
|
|
9580
|
+
properties: {
|
|
9581
|
+
acs_encoder_id: {
|
|
9582
|
+
description: "ID of the ACS encoder.",
|
|
9583
|
+
format: "uuid",
|
|
9584
|
+
type: "string"
|
|
9585
|
+
},
|
|
9586
|
+
acs_system_id: {
|
|
9587
|
+
description: "ID of the ACS system.",
|
|
9588
|
+
format: "uuid",
|
|
9589
|
+
type: "string",
|
|
9590
|
+
"x-title": "ACS System ID"
|
|
9591
|
+
},
|
|
9592
|
+
connected_account_id: {
|
|
9593
|
+
deprecated: true,
|
|
9594
|
+
description: "ID of the connected account.",
|
|
9595
|
+
format: "uuid",
|
|
9596
|
+
type: "string",
|
|
9597
|
+
"x-deprecated": "Will be removed.",
|
|
9598
|
+
"x-title": "Connected Account ID"
|
|
9599
|
+
},
|
|
9600
|
+
created_at: {
|
|
9601
|
+
description: "The time when the event was created.",
|
|
9602
|
+
format: "date-time",
|
|
9603
|
+
type: "string",
|
|
9604
|
+
"x-title": "Created At"
|
|
9605
|
+
},
|
|
9606
|
+
event_id: {
|
|
9607
|
+
description: "The ID of the event.",
|
|
9608
|
+
format: "uuid",
|
|
9609
|
+
type: "string",
|
|
9610
|
+
"x-title": "Event ID"
|
|
9611
|
+
},
|
|
9612
|
+
event_type: { enum: ["acs_encoder.removed"], type: "string" },
|
|
9613
|
+
occurred_at: {
|
|
9614
|
+
description: "The time when the event occurred.",
|
|
9615
|
+
format: "date-time",
|
|
9616
|
+
type: "string",
|
|
9617
|
+
"x-title": "Occurred At"
|
|
9618
|
+
},
|
|
9619
|
+
workspace_id: {
|
|
9620
|
+
description: "The ID of the workspace.",
|
|
9621
|
+
format: "uuid",
|
|
9622
|
+
type: "string",
|
|
9623
|
+
"x-title": "Workspace ID"
|
|
9624
|
+
}
|
|
9625
|
+
},
|
|
9626
|
+
required: [
|
|
9627
|
+
"event_id",
|
|
9628
|
+
"workspace_id",
|
|
9629
|
+
"created_at",
|
|
9630
|
+
"occurred_at",
|
|
9631
|
+
"acs_system_id",
|
|
9632
|
+
"acs_encoder_id",
|
|
9633
|
+
"event_type"
|
|
9634
|
+
],
|
|
9635
|
+
type: "object"
|
|
9636
|
+
},
|
|
9637
|
+
{
|
|
9638
|
+
description: "A client session was deleted.",
|
|
9639
|
+
properties: {
|
|
9640
|
+
client_session_id: {
|
|
9641
|
+
description: "ID of the client session.",
|
|
9642
|
+
format: "uuid",
|
|
9643
|
+
type: "string",
|
|
9644
|
+
"x-title": "Client Session ID"
|
|
9645
|
+
},
|
|
9646
|
+
created_at: {
|
|
9647
|
+
description: "The time when the event was created.",
|
|
9648
|
+
format: "date-time",
|
|
9649
|
+
type: "string",
|
|
9650
|
+
"x-title": "Created At"
|
|
9651
|
+
},
|
|
9652
|
+
event_id: {
|
|
9653
|
+
description: "The ID of the event.",
|
|
9654
|
+
format: "uuid",
|
|
9655
|
+
type: "string",
|
|
9656
|
+
"x-title": "Event ID"
|
|
9657
|
+
},
|
|
9658
|
+
event_type: { enum: ["client_session.deleted"], type: "string" },
|
|
9659
|
+
occurred_at: {
|
|
9660
|
+
description: "The time when the event occurred.",
|
|
9661
|
+
format: "date-time",
|
|
9662
|
+
type: "string",
|
|
9663
|
+
"x-title": "Occurred At"
|
|
9664
|
+
},
|
|
9665
|
+
workspace_id: {
|
|
9666
|
+
description: "The ID of the workspace.",
|
|
9667
|
+
format: "uuid",
|
|
9668
|
+
type: "string",
|
|
9669
|
+
"x-title": "Workspace ID"
|
|
9670
|
+
}
|
|
9671
|
+
},
|
|
9672
|
+
required: [
|
|
9673
|
+
"event_id",
|
|
9674
|
+
"workspace_id",
|
|
9675
|
+
"created_at",
|
|
9676
|
+
"occurred_at",
|
|
9677
|
+
"client_session_id",
|
|
9678
|
+
"event_type"
|
|
9679
|
+
],
|
|
9680
|
+
type: "object"
|
|
9681
|
+
},
|
|
9682
|
+
{
|
|
9683
|
+
description: "A connected account was connected for the first time, was reconnected after being disconnected.",
|
|
9684
|
+
properties: {
|
|
9685
|
+
connect_webview_id: {
|
|
9686
|
+
description: "ID of the connect webview.",
|
|
9687
|
+
format: "uuid",
|
|
9688
|
+
type: "string",
|
|
9689
|
+
"x-title": "Connect Webview ID"
|
|
9690
|
+
},
|
|
9691
|
+
connected_account_id: {
|
|
9692
|
+
description: "ID of the connected account.",
|
|
9693
|
+
format: "uuid",
|
|
9694
|
+
type: "string",
|
|
9695
|
+
"x-title": "Connected Account ID"
|
|
9696
|
+
},
|
|
9697
|
+
created_at: {
|
|
9698
|
+
description: "The time when the event was created.",
|
|
9699
|
+
format: "date-time",
|
|
9700
|
+
type: "string",
|
|
9701
|
+
"x-title": "Created At"
|
|
9702
|
+
},
|
|
9703
|
+
event_id: {
|
|
9704
|
+
description: "The ID of the event.",
|
|
9705
|
+
format: "uuid",
|
|
9706
|
+
type: "string",
|
|
9707
|
+
"x-title": "Event ID"
|
|
9708
|
+
},
|
|
9709
|
+
event_type: {
|
|
9710
|
+
enum: ["connected_account.connected"],
|
|
9711
|
+
type: "string"
|
|
9712
|
+
},
|
|
9713
|
+
occurred_at: {
|
|
9714
|
+
description: "The time when the event occurred.",
|
|
9715
|
+
format: "date-time",
|
|
9716
|
+
type: "string",
|
|
9717
|
+
"x-title": "Occurred At"
|
|
9718
|
+
},
|
|
9719
|
+
workspace_id: {
|
|
9720
|
+
description: "The ID of the workspace.",
|
|
9721
|
+
format: "uuid",
|
|
9722
|
+
type: "string",
|
|
9723
|
+
"x-title": "Workspace ID"
|
|
9724
|
+
}
|
|
9725
|
+
},
|
|
9726
|
+
required: [
|
|
9727
|
+
"event_id",
|
|
9728
|
+
"workspace_id",
|
|
9729
|
+
"created_at",
|
|
9730
|
+
"occurred_at",
|
|
9731
|
+
"connected_account_id",
|
|
9732
|
+
"event_type",
|
|
9733
|
+
"connect_webview_id"
|
|
9734
|
+
],
|
|
9735
|
+
type: "object"
|
|
9736
|
+
},
|
|
9737
|
+
{
|
|
9738
|
+
description: "A connected account was created.",
|
|
9739
|
+
properties: {
|
|
9740
|
+
connect_webview_id: {
|
|
9741
|
+
description: "ID of the connect webview.",
|
|
9742
|
+
format: "uuid",
|
|
9743
|
+
type: "string",
|
|
9744
|
+
"x-title": "Connect Webview ID"
|
|
9745
|
+
},
|
|
9746
|
+
connected_account_id: {
|
|
9747
|
+
description: "ID of the connected account.",
|
|
9748
|
+
format: "uuid",
|
|
9749
|
+
type: "string",
|
|
9750
|
+
"x-title": "Connected Account ID"
|
|
9751
|
+
},
|
|
9752
|
+
created_at: {
|
|
9753
|
+
description: "The time when the event was created.",
|
|
9754
|
+
format: "date-time",
|
|
9755
|
+
type: "string",
|
|
9756
|
+
"x-title": "Created At"
|
|
9757
|
+
},
|
|
9758
|
+
event_id: {
|
|
9759
|
+
description: "The ID of the event.",
|
|
9760
|
+
format: "uuid",
|
|
9761
|
+
type: "string",
|
|
9762
|
+
"x-title": "Event ID"
|
|
9763
|
+
},
|
|
9764
|
+
event_type: {
|
|
9765
|
+
enum: ["connected_account.created"],
|
|
9766
|
+
type: "string"
|
|
9767
|
+
},
|
|
9768
|
+
occurred_at: {
|
|
9769
|
+
description: "The time when the event occurred.",
|
|
9770
|
+
format: "date-time",
|
|
9771
|
+
type: "string",
|
|
9772
|
+
"x-title": "Occurred At"
|
|
9773
|
+
},
|
|
9774
|
+
workspace_id: {
|
|
9775
|
+
description: "The ID of the workspace.",
|
|
9776
|
+
format: "uuid",
|
|
9777
|
+
type: "string",
|
|
9778
|
+
"x-title": "Workspace ID"
|
|
9779
|
+
}
|
|
9780
|
+
},
|
|
9781
|
+
required: [
|
|
9782
|
+
"event_id",
|
|
9783
|
+
"workspace_id",
|
|
9784
|
+
"created_at",
|
|
9785
|
+
"occurred_at",
|
|
9786
|
+
"connected_account_id",
|
|
9787
|
+
"event_type",
|
|
9788
|
+
"connect_webview_id"
|
|
9789
|
+
],
|
|
9790
|
+
type: "object"
|
|
9791
|
+
},
|
|
9792
|
+
{
|
|
9793
|
+
deprecated: true,
|
|
9794
|
+
description: "A connected account had a successful connect webview login.",
|
|
9795
|
+
properties: {
|
|
9796
|
+
connect_webview_id: {
|
|
9797
|
+
description: "ID of the connect webview.",
|
|
9798
|
+
format: "uuid",
|
|
9799
|
+
type: "string",
|
|
9800
|
+
"x-title": "Connect Webview ID"
|
|
9801
|
+
},
|
|
9802
|
+
connected_account_id: {
|
|
9803
|
+
description: "ID of the connected account.",
|
|
9804
|
+
format: "uuid",
|
|
9805
|
+
type: "string",
|
|
9806
|
+
"x-title": "Connected Account ID"
|
|
9807
|
+
},
|
|
9808
|
+
created_at: {
|
|
9809
|
+
description: "The time when the event was created.",
|
|
9810
|
+
format: "date-time",
|
|
9811
|
+
type: "string",
|
|
9812
|
+
"x-title": "Created At"
|
|
9813
|
+
},
|
|
9814
|
+
event_id: {
|
|
9815
|
+
description: "The ID of the event.",
|
|
9816
|
+
format: "uuid",
|
|
9817
|
+
type: "string",
|
|
9818
|
+
"x-title": "Event ID"
|
|
9819
|
+
},
|
|
9820
|
+
event_type: {
|
|
9821
|
+
enum: ["connected_account.successful_login"],
|
|
9822
|
+
type: "string"
|
|
9823
|
+
},
|
|
9824
|
+
occurred_at: {
|
|
9825
|
+
description: "The time when the event occurred.",
|
|
9826
|
+
format: "date-time",
|
|
9827
|
+
type: "string",
|
|
9828
|
+
"x-title": "Occurred At"
|
|
9829
|
+
},
|
|
9830
|
+
workspace_id: {
|
|
9831
|
+
description: "The ID of the workspace.",
|
|
9832
|
+
format: "uuid",
|
|
9833
|
+
type: "string",
|
|
9834
|
+
"x-title": "Workspace ID"
|
|
9835
|
+
}
|
|
9836
|
+
},
|
|
9837
|
+
required: [
|
|
9838
|
+
"event_id",
|
|
9839
|
+
"workspace_id",
|
|
9840
|
+
"created_at",
|
|
9841
|
+
"occurred_at",
|
|
9842
|
+
"connected_account_id",
|
|
9843
|
+
"event_type",
|
|
9844
|
+
"connect_webview_id"
|
|
9845
|
+
],
|
|
9846
|
+
type: "object",
|
|
9847
|
+
"x-deprecated": "Use `connect_webview.login_succeeded`."
|
|
9848
|
+
},
|
|
9849
|
+
{
|
|
9850
|
+
description: "A connected account was disconnected.",
|
|
9851
|
+
properties: {
|
|
9852
|
+
connected_account_id: {
|
|
9853
|
+
description: "ID of the connected account.",
|
|
9854
|
+
format: "uuid",
|
|
9855
|
+
type: "string",
|
|
9856
|
+
"x-title": "Connected Account ID"
|
|
9857
|
+
},
|
|
9858
|
+
created_at: {
|
|
9859
|
+
description: "The time when the event was created.",
|
|
9860
|
+
format: "date-time",
|
|
9861
|
+
type: "string",
|
|
9862
|
+
"x-title": "Created At"
|
|
9863
|
+
},
|
|
9864
|
+
event_id: {
|
|
9865
|
+
description: "The ID of the event.",
|
|
9866
|
+
format: "uuid",
|
|
9867
|
+
type: "string",
|
|
9868
|
+
"x-title": "Event ID"
|
|
9869
|
+
},
|
|
9870
|
+
event_type: {
|
|
9871
|
+
enum: ["connected_account.disconnected"],
|
|
9872
|
+
type: "string"
|
|
9873
|
+
},
|
|
9874
|
+
occurred_at: {
|
|
9875
|
+
description: "The time when the event occurred.",
|
|
9876
|
+
format: "date-time",
|
|
9877
|
+
type: "string",
|
|
9878
|
+
"x-title": "Occurred At"
|
|
9879
|
+
},
|
|
9880
|
+
workspace_id: {
|
|
9881
|
+
description: "The ID of the workspace.",
|
|
9882
|
+
format: "uuid",
|
|
9883
|
+
type: "string",
|
|
9884
|
+
"x-title": "Workspace ID"
|
|
9885
|
+
}
|
|
9886
|
+
},
|
|
9887
|
+
required: [
|
|
9888
|
+
"event_id",
|
|
9889
|
+
"workspace_id",
|
|
9890
|
+
"created_at",
|
|
9891
|
+
"occurred_at",
|
|
9892
|
+
"connected_account_id",
|
|
9893
|
+
"event_type"
|
|
9894
|
+
],
|
|
9895
|
+
type: "object"
|
|
9896
|
+
},
|
|
9897
|
+
{
|
|
9898
|
+
description: "A connected account completed the first sync with Seam and devices are now available.",
|
|
9899
|
+
properties: {
|
|
9900
|
+
connected_account_id: {
|
|
9901
|
+
description: "ID of the connected account.",
|
|
9902
|
+
format: "uuid",
|
|
9903
|
+
type: "string",
|
|
9904
|
+
"x-title": "Connected Account ID"
|
|
9905
|
+
},
|
|
9906
|
+
created_at: {
|
|
9907
|
+
description: "The time when the event was created.",
|
|
9908
|
+
format: "date-time",
|
|
9909
|
+
type: "string",
|
|
9910
|
+
"x-title": "Created At"
|
|
9911
|
+
},
|
|
9912
|
+
event_id: {
|
|
9913
|
+
description: "The ID of the event.",
|
|
9914
|
+
format: "uuid",
|
|
9915
|
+
type: "string",
|
|
9916
|
+
"x-title": "Event ID"
|
|
9917
|
+
},
|
|
9918
|
+
event_type: {
|
|
9919
|
+
enum: ["connected_account.completed_first_sync"],
|
|
9920
|
+
type: "string"
|
|
9921
|
+
},
|
|
9922
|
+
occurred_at: {
|
|
9923
|
+
description: "The time when the event occurred.",
|
|
9924
|
+
format: "date-time",
|
|
9925
|
+
type: "string",
|
|
9926
|
+
"x-title": "Occurred At"
|
|
9927
|
+
},
|
|
9928
|
+
workspace_id: {
|
|
9929
|
+
description: "The ID of the workspace.",
|
|
9930
|
+
format: "uuid",
|
|
9931
|
+
type: "string",
|
|
9932
|
+
"x-title": "Workspace ID"
|
|
9933
|
+
}
|
|
9934
|
+
},
|
|
9935
|
+
required: [
|
|
9936
|
+
"event_id",
|
|
9937
|
+
"workspace_id",
|
|
9938
|
+
"created_at",
|
|
9939
|
+
"occurred_at",
|
|
9940
|
+
"connected_account_id",
|
|
9941
|
+
"event_type"
|
|
9942
|
+
],
|
|
9943
|
+
type: "object"
|
|
9944
|
+
},
|
|
9945
|
+
{
|
|
9946
|
+
description: "A connected account was deleted.",
|
|
9947
|
+
properties: {
|
|
9948
|
+
connected_account_id: {
|
|
9949
|
+
description: "ID of the connected account.",
|
|
9950
|
+
format: "uuid",
|
|
9951
|
+
type: "string",
|
|
9952
|
+
"x-title": "Connected Account ID"
|
|
9953
|
+
},
|
|
9954
|
+
created_at: {
|
|
9955
|
+
description: "The time when the event was created.",
|
|
9956
|
+
format: "date-time",
|
|
9957
|
+
type: "string",
|
|
9958
|
+
"x-title": "Created At"
|
|
9959
|
+
},
|
|
9960
|
+
event_id: {
|
|
9961
|
+
description: "The ID of the event.",
|
|
9962
|
+
format: "uuid",
|
|
9963
|
+
type: "string",
|
|
9964
|
+
"x-title": "Event ID"
|
|
9965
|
+
},
|
|
9966
|
+
event_type: {
|
|
9967
|
+
enum: ["connected_account.deleted"],
|
|
9968
|
+
type: "string"
|
|
9969
|
+
},
|
|
9970
|
+
occurred_at: {
|
|
9971
|
+
description: "The time when the event occurred.",
|
|
9972
|
+
format: "date-time",
|
|
9973
|
+
type: "string",
|
|
9974
|
+
"x-title": "Occurred At"
|
|
9975
|
+
},
|
|
9976
|
+
workspace_id: {
|
|
9977
|
+
description: "The ID of the workspace.",
|
|
9978
|
+
format: "uuid",
|
|
9979
|
+
type: "string",
|
|
9980
|
+
"x-title": "Workspace ID"
|
|
9981
|
+
}
|
|
9982
|
+
},
|
|
9983
|
+
required: [
|
|
9984
|
+
"event_id",
|
|
9985
|
+
"workspace_id",
|
|
9986
|
+
"created_at",
|
|
9987
|
+
"occurred_at",
|
|
9988
|
+
"connected_account_id",
|
|
9989
|
+
"event_type"
|
|
9990
|
+
],
|
|
9991
|
+
type: "object"
|
|
9992
|
+
},
|
|
9993
|
+
{
|
|
9994
|
+
description: "A connected account completed the first sync after reconnection with Seam and devices are now available.",
|
|
9995
|
+
properties: {
|
|
9996
|
+
connected_account_id: {
|
|
9997
|
+
description: "ID of the connected account.",
|
|
9998
|
+
format: "uuid",
|
|
9999
|
+
type: "string",
|
|
10000
|
+
"x-title": "Connected Account ID"
|
|
10001
|
+
},
|
|
10002
|
+
created_at: {
|
|
10003
|
+
description: "The time when the event was created.",
|
|
10004
|
+
format: "date-time",
|
|
10005
|
+
type: "string",
|
|
10006
|
+
"x-title": "Created At"
|
|
10007
|
+
},
|
|
10008
|
+
event_id: {
|
|
10009
|
+
description: "The ID of the event.",
|
|
10010
|
+
format: "uuid",
|
|
10011
|
+
type: "string",
|
|
10012
|
+
"x-title": "Event ID"
|
|
10013
|
+
},
|
|
10014
|
+
event_type: {
|
|
10015
|
+
enum: [
|
|
10016
|
+
"connected_account.completed_first_sync_after_reconnection"
|
|
10017
|
+
],
|
|
10018
|
+
type: "string"
|
|
10019
|
+
},
|
|
10020
|
+
occurred_at: {
|
|
10021
|
+
description: "The time when the event occurred.",
|
|
10022
|
+
format: "date-time",
|
|
10023
|
+
type: "string",
|
|
10024
|
+
"x-title": "Occurred At"
|
|
10025
|
+
},
|
|
10026
|
+
workspace_id: {
|
|
10027
|
+
description: "The ID of the workspace.",
|
|
10028
|
+
format: "uuid",
|
|
10029
|
+
type: "string",
|
|
10030
|
+
"x-title": "Workspace ID"
|
|
10031
|
+
}
|
|
10032
|
+
},
|
|
10033
|
+
required: [
|
|
10034
|
+
"event_id",
|
|
10035
|
+
"workspace_id",
|
|
10036
|
+
"created_at",
|
|
10037
|
+
"occurred_at",
|
|
10038
|
+
"connected_account_id",
|
|
10039
|
+
"event_type"
|
|
10040
|
+
],
|
|
10041
|
+
type: "object"
|
|
10042
|
+
},
|
|
10043
|
+
{
|
|
10044
|
+
description: "A lock door action attempt succeeded.",
|
|
10045
|
+
properties: {
|
|
10046
|
+
action_attempt_id: {
|
|
10047
|
+
description: "The ID of the action attempt.",
|
|
10048
|
+
format: "uuid",
|
|
10049
|
+
type: "string",
|
|
10050
|
+
"x-title": "Action Attempt ID"
|
|
10051
|
+
},
|
|
10052
|
+
action_type: {
|
|
10053
|
+
description: "The type of action.",
|
|
10054
|
+
type: "string",
|
|
10055
|
+
"x-title": "Action Type"
|
|
10056
|
+
},
|
|
10057
|
+
created_at: {
|
|
10058
|
+
description: "The time when the event was created.",
|
|
10059
|
+
format: "date-time",
|
|
10060
|
+
type: "string",
|
|
10061
|
+
"x-title": "Created At"
|
|
10062
|
+
},
|
|
10063
|
+
event_id: {
|
|
10064
|
+
description: "The ID of the event.",
|
|
10065
|
+
format: "uuid",
|
|
10066
|
+
type: "string",
|
|
10067
|
+
"x-title": "Event ID"
|
|
10068
|
+
},
|
|
10069
|
+
event_type: {
|
|
10070
|
+
enum: ["action_attempt.lock_door.succeeded"],
|
|
10071
|
+
type: "string"
|
|
10072
|
+
},
|
|
10073
|
+
occurred_at: {
|
|
10074
|
+
description: "The time when the event occurred.",
|
|
10075
|
+
format: "date-time",
|
|
10076
|
+
type: "string",
|
|
10077
|
+
"x-title": "Occurred At"
|
|
10078
|
+
},
|
|
10079
|
+
status: {
|
|
10080
|
+
description: "The status of the action.",
|
|
10081
|
+
type: "string",
|
|
10082
|
+
"x-title": "Status"
|
|
10083
|
+
},
|
|
10084
|
+
workspace_id: {
|
|
10085
|
+
description: "The ID of the workspace.",
|
|
10086
|
+
format: "uuid",
|
|
10087
|
+
type: "string",
|
|
10088
|
+
"x-title": "Workspace ID"
|
|
10089
|
+
}
|
|
10090
|
+
},
|
|
10091
|
+
required: [
|
|
10092
|
+
"event_id",
|
|
10093
|
+
"workspace_id",
|
|
10094
|
+
"created_at",
|
|
10095
|
+
"occurred_at",
|
|
10096
|
+
"action_attempt_id",
|
|
10097
|
+
"action_type",
|
|
10098
|
+
"status",
|
|
10099
|
+
"event_type"
|
|
10100
|
+
],
|
|
10101
|
+
type: "object"
|
|
10102
|
+
},
|
|
10103
|
+
{
|
|
10104
|
+
description: "A lock door action attempt failed.",
|
|
10105
|
+
properties: {
|
|
10106
|
+
action_attempt_id: {
|
|
10107
|
+
description: "The ID of the action attempt.",
|
|
10108
|
+
format: "uuid",
|
|
10109
|
+
type: "string",
|
|
10110
|
+
"x-title": "Action Attempt ID"
|
|
10111
|
+
},
|
|
10112
|
+
action_type: {
|
|
10113
|
+
description: "The type of action.",
|
|
10114
|
+
type: "string",
|
|
10115
|
+
"x-title": "Action Type"
|
|
10116
|
+
},
|
|
10117
|
+
created_at: {
|
|
10118
|
+
description: "The time when the event was created.",
|
|
10119
|
+
format: "date-time",
|
|
10120
|
+
type: "string",
|
|
10121
|
+
"x-title": "Created At"
|
|
10122
|
+
},
|
|
10123
|
+
event_id: {
|
|
10124
|
+
description: "The ID of the event.",
|
|
10125
|
+
format: "uuid",
|
|
10126
|
+
type: "string",
|
|
10127
|
+
"x-title": "Event ID"
|
|
10128
|
+
},
|
|
10129
|
+
event_type: {
|
|
10130
|
+
enum: ["action_attempt.lock_door.failed"],
|
|
10131
|
+
type: "string"
|
|
10132
|
+
},
|
|
10133
|
+
occurred_at: {
|
|
10134
|
+
description: "The time when the event occurred.",
|
|
10135
|
+
format: "date-time",
|
|
10136
|
+
type: "string",
|
|
10137
|
+
"x-title": "Occurred At"
|
|
10138
|
+
},
|
|
10139
|
+
status: {
|
|
10140
|
+
description: "The status of the action.",
|
|
10141
|
+
type: "string",
|
|
10142
|
+
"x-title": "Status"
|
|
10143
|
+
},
|
|
10144
|
+
workspace_id: {
|
|
10145
|
+
description: "The ID of the workspace.",
|
|
10146
|
+
format: "uuid",
|
|
10147
|
+
type: "string",
|
|
10148
|
+
"x-title": "Workspace ID"
|
|
10149
|
+
}
|
|
10150
|
+
},
|
|
10151
|
+
required: [
|
|
10152
|
+
"event_id",
|
|
10153
|
+
"workspace_id",
|
|
10154
|
+
"created_at",
|
|
10155
|
+
"occurred_at",
|
|
10156
|
+
"action_attempt_id",
|
|
10157
|
+
"action_type",
|
|
10158
|
+
"status",
|
|
10159
|
+
"event_type"
|
|
10160
|
+
],
|
|
10161
|
+
type: "object"
|
|
10162
|
+
},
|
|
10163
|
+
{
|
|
10164
|
+
description: "An unlock door action attempt succeeded.",
|
|
10165
|
+
properties: {
|
|
10166
|
+
action_attempt_id: {
|
|
10167
|
+
description: "The ID of the action attempt.",
|
|
10168
|
+
format: "uuid",
|
|
10169
|
+
type: "string",
|
|
10170
|
+
"x-title": "Action Attempt ID"
|
|
10171
|
+
},
|
|
10172
|
+
action_type: {
|
|
10173
|
+
description: "The type of action.",
|
|
10174
|
+
type: "string",
|
|
10175
|
+
"x-title": "Action Type"
|
|
10176
|
+
},
|
|
10177
|
+
created_at: {
|
|
10178
|
+
description: "The time when the event was created.",
|
|
10179
|
+
format: "date-time",
|
|
10180
|
+
type: "string",
|
|
10181
|
+
"x-title": "Created At"
|
|
10182
|
+
},
|
|
10183
|
+
event_id: {
|
|
10184
|
+
description: "The ID of the event.",
|
|
10185
|
+
format: "uuid",
|
|
10186
|
+
type: "string",
|
|
10187
|
+
"x-title": "Event ID"
|
|
10188
|
+
},
|
|
10189
|
+
event_type: {
|
|
10190
|
+
enum: ["action_attempt.unlock_door.succeeded"],
|
|
10191
|
+
type: "string"
|
|
10192
|
+
},
|
|
10193
|
+
occurred_at: {
|
|
10194
|
+
description: "The time when the event occurred.",
|
|
10195
|
+
format: "date-time",
|
|
10196
|
+
type: "string",
|
|
10197
|
+
"x-title": "Occurred At"
|
|
10198
|
+
},
|
|
10199
|
+
status: {
|
|
10200
|
+
description: "The status of the action.",
|
|
10201
|
+
type: "string",
|
|
10202
|
+
"x-title": "Status"
|
|
10203
|
+
},
|
|
10204
|
+
workspace_id: {
|
|
10205
|
+
description: "The ID of the workspace.",
|
|
10206
|
+
format: "uuid",
|
|
10207
|
+
type: "string",
|
|
10208
|
+
"x-title": "Workspace ID"
|
|
10209
|
+
}
|
|
10210
|
+
},
|
|
10211
|
+
required: [
|
|
10212
|
+
"event_id",
|
|
10213
|
+
"workspace_id",
|
|
10214
|
+
"created_at",
|
|
10215
|
+
"occurred_at",
|
|
10216
|
+
"action_attempt_id",
|
|
10217
|
+
"action_type",
|
|
10218
|
+
"status",
|
|
10219
|
+
"event_type"
|
|
10220
|
+
],
|
|
10221
|
+
type: "object"
|
|
10222
|
+
},
|
|
10223
|
+
{
|
|
10224
|
+
description: "An unlock door action attempt failed.",
|
|
10225
|
+
properties: {
|
|
10226
|
+
action_attempt_id: {
|
|
10227
|
+
description: "The ID of the action attempt.",
|
|
10228
|
+
format: "uuid",
|
|
10229
|
+
type: "string",
|
|
10230
|
+
"x-title": "Action Attempt ID"
|
|
10231
|
+
},
|
|
10232
|
+
action_type: {
|
|
10233
|
+
description: "The type of action.",
|
|
10234
|
+
type: "string",
|
|
10235
|
+
"x-title": "Action Type"
|
|
10236
|
+
},
|
|
10237
|
+
created_at: {
|
|
10238
|
+
description: "The time when the event was created.",
|
|
10239
|
+
format: "date-time",
|
|
10240
|
+
type: "string",
|
|
10241
|
+
"x-title": "Created At"
|
|
10242
|
+
},
|
|
10243
|
+
event_id: {
|
|
10244
|
+
description: "The ID of the event.",
|
|
10245
|
+
format: "uuid",
|
|
10246
|
+
type: "string",
|
|
10247
|
+
"x-title": "Event ID"
|
|
10248
|
+
},
|
|
10249
|
+
event_type: {
|
|
10250
|
+
enum: ["action_attempt.unlock_door.failed"],
|
|
10251
|
+
type: "string"
|
|
10252
|
+
},
|
|
10253
|
+
occurred_at: {
|
|
10254
|
+
description: "The time when the event occurred.",
|
|
10255
|
+
format: "date-time",
|
|
10256
|
+
type: "string",
|
|
10257
|
+
"x-title": "Occurred At"
|
|
10258
|
+
},
|
|
10259
|
+
status: {
|
|
10260
|
+
description: "The status of the action.",
|
|
10261
|
+
type: "string",
|
|
10262
|
+
"x-title": "Status"
|
|
10263
|
+
},
|
|
10264
|
+
workspace_id: {
|
|
10265
|
+
description: "The ID of the workspace.",
|
|
10266
|
+
format: "uuid",
|
|
10267
|
+
type: "string",
|
|
10268
|
+
"x-title": "Workspace ID"
|
|
10269
|
+
}
|
|
10270
|
+
},
|
|
10271
|
+
required: [
|
|
10272
|
+
"event_id",
|
|
10273
|
+
"workspace_id",
|
|
10274
|
+
"created_at",
|
|
10275
|
+
"occurred_at",
|
|
10276
|
+
"action_attempt_id",
|
|
10277
|
+
"action_type",
|
|
10278
|
+
"status",
|
|
10279
|
+
"event_type"
|
|
10280
|
+
],
|
|
10281
|
+
type: "object"
|
|
10282
|
+
},
|
|
10283
|
+
{
|
|
10284
|
+
description: "A connect webview had a successful login.",
|
|
10285
|
+
properties: {
|
|
10286
|
+
connect_webview_id: {
|
|
10287
|
+
description: "ID of the connect webview.",
|
|
10288
|
+
format: "uuid",
|
|
10289
|
+
type: "string",
|
|
10290
|
+
"x-title": "Connect Webview ID"
|
|
10291
|
+
},
|
|
10292
|
+
connected_account_id: {
|
|
10293
|
+
description: "ID of the connected account.",
|
|
10294
|
+
format: "uuid",
|
|
10295
|
+
type: "string",
|
|
10296
|
+
"x-title": "Connected Account ID"
|
|
10297
|
+
},
|
|
10298
|
+
created_at: {
|
|
10299
|
+
description: "The time when the event was created.",
|
|
10300
|
+
format: "date-time",
|
|
10301
|
+
type: "string",
|
|
10302
|
+
"x-title": "Created At"
|
|
10303
|
+
},
|
|
10304
|
+
event_id: {
|
|
10305
|
+
description: "The ID of the event.",
|
|
10306
|
+
format: "uuid",
|
|
10307
|
+
type: "string",
|
|
10308
|
+
"x-title": "Event ID"
|
|
10309
|
+
},
|
|
10310
|
+
event_type: {
|
|
10311
|
+
enum: ["connect_webview.login_succeeded"],
|
|
10312
|
+
type: "string"
|
|
10313
|
+
},
|
|
10314
|
+
occurred_at: {
|
|
10315
|
+
description: "The time when the event occurred.",
|
|
10316
|
+
format: "date-time",
|
|
10317
|
+
type: "string",
|
|
10318
|
+
"x-title": "Occurred At"
|
|
10319
|
+
},
|
|
10320
|
+
workspace_id: {
|
|
10321
|
+
description: "The ID of the workspace.",
|
|
10322
|
+
format: "uuid",
|
|
10323
|
+
type: "string",
|
|
10324
|
+
"x-title": "Workspace ID"
|
|
10325
|
+
}
|
|
10326
|
+
},
|
|
10327
|
+
required: [
|
|
10328
|
+
"event_id",
|
|
10329
|
+
"workspace_id",
|
|
10330
|
+
"created_at",
|
|
10331
|
+
"occurred_at",
|
|
10332
|
+
"connect_webview_id",
|
|
10333
|
+
"event_type",
|
|
10334
|
+
"connected_account_id"
|
|
10335
|
+
],
|
|
10336
|
+
type: "object"
|
|
10337
|
+
},
|
|
10338
|
+
{
|
|
10339
|
+
description: "A connect webview had a failed login.",
|
|
10340
|
+
properties: {
|
|
10341
|
+
connect_webview_id: {
|
|
10342
|
+
description: "ID of the connect webview.",
|
|
10343
|
+
format: "uuid",
|
|
10344
|
+
type: "string",
|
|
10345
|
+
"x-title": "Connect Webview ID"
|
|
10346
|
+
},
|
|
10347
|
+
created_at: {
|
|
10348
|
+
description: "The time when the event was created.",
|
|
10349
|
+
format: "date-time",
|
|
10350
|
+
type: "string",
|
|
10351
|
+
"x-title": "Created At"
|
|
10352
|
+
},
|
|
10353
|
+
event_id: {
|
|
10354
|
+
description: "The ID of the event.",
|
|
10355
|
+
format: "uuid",
|
|
10356
|
+
type: "string",
|
|
10357
|
+
"x-title": "Event ID"
|
|
10358
|
+
},
|
|
10359
|
+
event_type: {
|
|
10360
|
+
enum: ["connect_webview.login_failed"],
|
|
10361
|
+
type: "string"
|
|
10362
|
+
},
|
|
10363
|
+
occurred_at: {
|
|
10364
|
+
description: "The time when the event occurred.",
|
|
10365
|
+
format: "date-time",
|
|
10366
|
+
type: "string",
|
|
10367
|
+
"x-title": "Occurred At"
|
|
10368
|
+
},
|
|
10369
|
+
workspace_id: {
|
|
10370
|
+
description: "The ID of the workspace.",
|
|
10371
|
+
format: "uuid",
|
|
10372
|
+
type: "string",
|
|
10373
|
+
"x-title": "Workspace ID"
|
|
10374
|
+
}
|
|
10375
|
+
},
|
|
10376
|
+
required: [
|
|
10377
|
+
"event_id",
|
|
10378
|
+
"workspace_id",
|
|
10379
|
+
"created_at",
|
|
10380
|
+
"occurred_at",
|
|
10381
|
+
"connect_webview_id",
|
|
10382
|
+
"event_type"
|
|
10383
|
+
],
|
|
10384
|
+
type: "object"
|
|
10385
|
+
},
|
|
10386
|
+
{
|
|
10387
|
+
description: "A new device was connected to Seam.",
|
|
10388
|
+
properties: {
|
|
10389
|
+
connected_account_id: {
|
|
10390
|
+
description: "ID of the connected account.",
|
|
10391
|
+
format: "uuid",
|
|
10392
|
+
type: "string",
|
|
10393
|
+
"x-title": "Connected Account ID"
|
|
10394
|
+
},
|
|
10395
|
+
created_at: {
|
|
10396
|
+
description: "The time when the event was created.",
|
|
10397
|
+
format: "date-time",
|
|
10398
|
+
type: "string",
|
|
10399
|
+
"x-title": "Created At"
|
|
10400
|
+
},
|
|
10401
|
+
device_id: {
|
|
10402
|
+
description: "ID of the device.",
|
|
10403
|
+
format: "uuid",
|
|
10404
|
+
type: "string",
|
|
10405
|
+
"x-title": "Device ID"
|
|
10406
|
+
},
|
|
10407
|
+
event_id: {
|
|
10408
|
+
description: "The ID of the event.",
|
|
10409
|
+
format: "uuid",
|
|
10410
|
+
type: "string",
|
|
10411
|
+
"x-title": "Event ID"
|
|
10412
|
+
},
|
|
10413
|
+
event_type: { enum: ["device.connected"], type: "string" },
|
|
10414
|
+
occurred_at: {
|
|
10415
|
+
description: "The time when the event occurred.",
|
|
10416
|
+
format: "date-time",
|
|
10417
|
+
type: "string",
|
|
10418
|
+
"x-title": "Occurred At"
|
|
10419
|
+
},
|
|
10420
|
+
workspace_id: {
|
|
10421
|
+
description: "The ID of the workspace.",
|
|
10422
|
+
format: "uuid",
|
|
10423
|
+
type: "string",
|
|
10424
|
+
"x-title": "Workspace ID"
|
|
10425
|
+
}
|
|
10426
|
+
},
|
|
10427
|
+
required: [
|
|
10428
|
+
"event_id",
|
|
10429
|
+
"workspace_id",
|
|
10430
|
+
"created_at",
|
|
10431
|
+
"occurred_at",
|
|
10432
|
+
"device_id",
|
|
10433
|
+
"connected_account_id",
|
|
10434
|
+
"event_type"
|
|
10435
|
+
],
|
|
10436
|
+
type: "object"
|
|
10437
|
+
},
|
|
10438
|
+
{
|
|
10439
|
+
description: "A device has been added or reconnected to Seam.",
|
|
10440
|
+
properties: {
|
|
10441
|
+
connected_account_id: {
|
|
10442
|
+
description: "ID of the connected account.",
|
|
10443
|
+
format: "uuid",
|
|
10444
|
+
type: "string",
|
|
10445
|
+
"x-title": "Connected Account ID"
|
|
10446
|
+
},
|
|
10447
|
+
created_at: {
|
|
10448
|
+
description: "The time when the event was created.",
|
|
10449
|
+
format: "date-time",
|
|
10450
|
+
type: "string",
|
|
10451
|
+
"x-title": "Created At"
|
|
10452
|
+
},
|
|
10453
|
+
device_id: {
|
|
10454
|
+
description: "ID of the device.",
|
|
10455
|
+
format: "uuid",
|
|
10456
|
+
type: "string",
|
|
10457
|
+
"x-title": "Device ID"
|
|
10458
|
+
},
|
|
10459
|
+
event_id: {
|
|
10460
|
+
description: "The ID of the event.",
|
|
10461
|
+
format: "uuid",
|
|
10462
|
+
type: "string",
|
|
10463
|
+
"x-title": "Event ID"
|
|
10464
|
+
},
|
|
10465
|
+
event_type: { enum: ["device.added"], type: "string" },
|
|
10466
|
+
occurred_at: {
|
|
10467
|
+
description: "The time when the event occurred.",
|
|
10468
|
+
format: "date-time",
|
|
10469
|
+
type: "string",
|
|
10470
|
+
"x-title": "Occurred At"
|
|
10471
|
+
},
|
|
10472
|
+
workspace_id: {
|
|
10473
|
+
description: "The ID of the workspace.",
|
|
10474
|
+
format: "uuid",
|
|
10475
|
+
type: "string",
|
|
10476
|
+
"x-title": "Workspace ID"
|
|
10477
|
+
}
|
|
10478
|
+
},
|
|
10479
|
+
required: [
|
|
10480
|
+
"event_id",
|
|
10481
|
+
"workspace_id",
|
|
10482
|
+
"created_at",
|
|
10483
|
+
"occurred_at",
|
|
10484
|
+
"device_id",
|
|
10485
|
+
"connected_account_id",
|
|
10486
|
+
"event_type"
|
|
10487
|
+
],
|
|
10488
|
+
type: "object"
|
|
10489
|
+
},
|
|
10490
|
+
{
|
|
10491
|
+
description: "An unmanaged device was successfully converted to a managed device.",
|
|
10492
|
+
properties: {
|
|
10493
|
+
connected_account_id: {
|
|
10494
|
+
description: "ID of the connected account.",
|
|
10495
|
+
format: "uuid",
|
|
10496
|
+
type: "string",
|
|
10497
|
+
"x-title": "Connected Account ID"
|
|
10498
|
+
},
|
|
10499
|
+
created_at: {
|
|
10500
|
+
description: "The time when the event was created.",
|
|
10501
|
+
format: "date-time",
|
|
10502
|
+
type: "string",
|
|
10503
|
+
"x-title": "Created At"
|
|
10504
|
+
},
|
|
10505
|
+
device_id: {
|
|
10506
|
+
description: "ID of the device.",
|
|
10507
|
+
format: "uuid",
|
|
10508
|
+
type: "string",
|
|
10509
|
+
"x-title": "Device ID"
|
|
10510
|
+
},
|
|
10511
|
+
event_id: {
|
|
10512
|
+
description: "The ID of the event.",
|
|
10513
|
+
format: "uuid",
|
|
10514
|
+
type: "string",
|
|
10515
|
+
"x-title": "Event ID"
|
|
10516
|
+
},
|
|
10517
|
+
event_type: {
|
|
10518
|
+
enum: ["device.converted_to_unmanaged"],
|
|
10519
|
+
type: "string"
|
|
10520
|
+
},
|
|
10521
|
+
occurred_at: {
|
|
10522
|
+
description: "The time when the event occurred.",
|
|
10523
|
+
format: "date-time",
|
|
10524
|
+
type: "string",
|
|
10525
|
+
"x-title": "Occurred At"
|
|
10526
|
+
},
|
|
10527
|
+
workspace_id: {
|
|
10528
|
+
description: "The ID of the workspace.",
|
|
10529
|
+
format: "uuid",
|
|
10530
|
+
type: "string",
|
|
10531
|
+
"x-title": "Workspace ID"
|
|
10532
|
+
}
|
|
10533
|
+
},
|
|
10534
|
+
required: [
|
|
10535
|
+
"event_id",
|
|
10536
|
+
"workspace_id",
|
|
10537
|
+
"created_at",
|
|
10538
|
+
"occurred_at",
|
|
10539
|
+
"device_id",
|
|
10540
|
+
"connected_account_id",
|
|
10541
|
+
"event_type"
|
|
10542
|
+
],
|
|
10543
|
+
type: "object"
|
|
10544
|
+
},
|
|
10545
|
+
{
|
|
10546
|
+
description: "A managed device was successfully converted to an unmanaged device.",
|
|
10547
|
+
properties: {
|
|
10548
|
+
connected_account_id: {
|
|
10549
|
+
description: "ID of the connected account.",
|
|
10550
|
+
format: "uuid",
|
|
10551
|
+
type: "string",
|
|
10552
|
+
"x-title": "Connected Account ID"
|
|
10553
|
+
},
|
|
10554
|
+
created_at: {
|
|
10555
|
+
description: "The time when the event was created.",
|
|
10556
|
+
format: "date-time",
|
|
10557
|
+
type: "string",
|
|
10558
|
+
"x-title": "Created At"
|
|
10559
|
+
},
|
|
10560
|
+
device_id: {
|
|
10561
|
+
description: "ID of the device.",
|
|
10562
|
+
format: "uuid",
|
|
10563
|
+
type: "string",
|
|
10564
|
+
"x-title": "Device ID"
|
|
10565
|
+
},
|
|
10566
|
+
event_id: {
|
|
10567
|
+
description: "The ID of the event.",
|
|
10568
|
+
format: "uuid",
|
|
10569
|
+
type: "string",
|
|
10570
|
+
"x-title": "Event ID"
|
|
10571
|
+
},
|
|
10572
|
+
event_type: {
|
|
10573
|
+
enum: ["device.unmanaged.converted_to_managed"],
|
|
10574
|
+
type: "string"
|
|
10575
|
+
},
|
|
10576
|
+
occurred_at: {
|
|
10577
|
+
description: "The time when the event occurred.",
|
|
10578
|
+
format: "date-time",
|
|
10579
|
+
type: "string",
|
|
10580
|
+
"x-title": "Occurred At"
|
|
10581
|
+
},
|
|
10582
|
+
workspace_id: {
|
|
10583
|
+
description: "The ID of the workspace.",
|
|
10584
|
+
format: "uuid",
|
|
10585
|
+
type: "string",
|
|
10586
|
+
"x-title": "Workspace ID"
|
|
10587
|
+
}
|
|
10588
|
+
},
|
|
10589
|
+
required: [
|
|
10590
|
+
"event_id",
|
|
10591
|
+
"workspace_id",
|
|
10592
|
+
"created_at",
|
|
10593
|
+
"occurred_at",
|
|
10594
|
+
"device_id",
|
|
10595
|
+
"connected_account_id",
|
|
10596
|
+
"event_type"
|
|
10597
|
+
],
|
|
10598
|
+
type: "object"
|
|
10599
|
+
},
|
|
10600
|
+
{
|
|
10601
|
+
description: "An unmanaged device was connected to Seam",
|
|
10602
|
+
properties: {
|
|
10603
|
+
connected_account_id: {
|
|
10604
|
+
description: "ID of the connected account.",
|
|
10605
|
+
format: "uuid",
|
|
10606
|
+
type: "string",
|
|
10607
|
+
"x-title": "Connected Account ID"
|
|
10608
|
+
},
|
|
10609
|
+
created_at: {
|
|
10610
|
+
description: "The time when the event was created.",
|
|
10611
|
+
format: "date-time",
|
|
10612
|
+
type: "string",
|
|
10613
|
+
"x-title": "Created At"
|
|
10614
|
+
},
|
|
10615
|
+
device_id: {
|
|
10616
|
+
description: "ID of the device.",
|
|
10617
|
+
format: "uuid",
|
|
10618
|
+
type: "string",
|
|
10619
|
+
"x-title": "Device ID"
|
|
10620
|
+
},
|
|
10621
|
+
event_id: {
|
|
10622
|
+
description: "The ID of the event.",
|
|
10623
|
+
format: "uuid",
|
|
10624
|
+
type: "string",
|
|
10625
|
+
"x-title": "Event ID"
|
|
10626
|
+
},
|
|
10627
|
+
event_type: {
|
|
10628
|
+
enum: ["device.unmanaged.connected"],
|
|
10629
|
+
type: "string"
|
|
10630
|
+
},
|
|
10631
|
+
occurred_at: {
|
|
10632
|
+
description: "The time when the event occurred.",
|
|
10633
|
+
format: "date-time",
|
|
10634
|
+
type: "string",
|
|
10635
|
+
"x-title": "Occurred At"
|
|
10636
|
+
},
|
|
10637
|
+
workspace_id: {
|
|
10638
|
+
description: "The ID of the workspace.",
|
|
10639
|
+
format: "uuid",
|
|
10640
|
+
type: "string",
|
|
10641
|
+
"x-title": "Workspace ID"
|
|
10642
|
+
}
|
|
10643
|
+
},
|
|
10644
|
+
required: [
|
|
10645
|
+
"event_id",
|
|
10646
|
+
"workspace_id",
|
|
10647
|
+
"created_at",
|
|
10648
|
+
"occurred_at",
|
|
10649
|
+
"device_id",
|
|
10650
|
+
"connected_account_id",
|
|
10651
|
+
"event_type"
|
|
10652
|
+
],
|
|
10653
|
+
type: "object"
|
|
10654
|
+
},
|
|
10655
|
+
{
|
|
10656
|
+
description: "A device was disconnected",
|
|
10657
|
+
properties: {
|
|
10658
|
+
connected_account_id: {
|
|
10659
|
+
description: "ID of the connected account.",
|
|
10660
|
+
format: "uuid",
|
|
10661
|
+
type: "string",
|
|
10662
|
+
"x-title": "Connected Account ID"
|
|
10663
|
+
},
|
|
10664
|
+
created_at: {
|
|
10665
|
+
description: "The time when the event was created.",
|
|
10666
|
+
format: "date-time",
|
|
10667
|
+
type: "string",
|
|
10668
|
+
"x-title": "Created At"
|
|
10669
|
+
},
|
|
10670
|
+
device_id: {
|
|
10671
|
+
description: "ID of the device.",
|
|
10672
|
+
format: "uuid",
|
|
10673
|
+
type: "string",
|
|
10674
|
+
"x-title": "Device ID"
|
|
10675
|
+
},
|
|
10676
|
+
error_code: {
|
|
10677
|
+
description: "The error code associated with the event, if any.",
|
|
10678
|
+
enum: [
|
|
10679
|
+
"account_disconnected",
|
|
10680
|
+
"hub_disconnected",
|
|
10681
|
+
"device_disconnected"
|
|
10682
|
+
],
|
|
10683
|
+
type: "string",
|
|
10684
|
+
"x-title": "Event Error Code"
|
|
10685
|
+
},
|
|
10686
|
+
event_id: {
|
|
10687
|
+
description: "The ID of the event.",
|
|
10688
|
+
format: "uuid",
|
|
10689
|
+
type: "string",
|
|
10690
|
+
"x-title": "Event ID"
|
|
10691
|
+
},
|
|
10692
|
+
event_type: { enum: ["device.disconnected"], type: "string" },
|
|
10693
|
+
occurred_at: {
|
|
10694
|
+
description: "The time when the event occurred.",
|
|
10695
|
+
format: "date-time",
|
|
10696
|
+
type: "string",
|
|
10697
|
+
"x-title": "Occurred At"
|
|
10698
|
+
},
|
|
10699
|
+
workspace_id: {
|
|
10700
|
+
description: "The ID of the workspace.",
|
|
10701
|
+
format: "uuid",
|
|
10702
|
+
type: "string",
|
|
10703
|
+
"x-title": "Workspace ID"
|
|
10704
|
+
}
|
|
10705
|
+
},
|
|
10706
|
+
required: [
|
|
10707
|
+
"event_id",
|
|
10708
|
+
"workspace_id",
|
|
10709
|
+
"created_at",
|
|
10710
|
+
"occurred_at",
|
|
10711
|
+
"device_id",
|
|
10712
|
+
"connected_account_id",
|
|
10713
|
+
"event_type",
|
|
10714
|
+
"error_code"
|
|
10715
|
+
],
|
|
10716
|
+
type: "object"
|
|
10717
|
+
},
|
|
10718
|
+
{
|
|
10719
|
+
description: "An unmanaged device was disconnected",
|
|
10720
|
+
properties: {
|
|
10721
|
+
connected_account_id: {
|
|
10722
|
+
description: "ID of the connected account.",
|
|
10723
|
+
format: "uuid",
|
|
10724
|
+
type: "string",
|
|
10725
|
+
"x-title": "Connected Account ID"
|
|
10726
|
+
},
|
|
10727
|
+
created_at: {
|
|
10728
|
+
description: "The time when the event was created.",
|
|
10729
|
+
format: "date-time",
|
|
10730
|
+
type: "string",
|
|
10731
|
+
"x-title": "Created At"
|
|
10732
|
+
},
|
|
10733
|
+
device_id: {
|
|
10734
|
+
description: "ID of the device.",
|
|
10735
|
+
format: "uuid",
|
|
10736
|
+
type: "string",
|
|
10737
|
+
"x-title": "Device ID"
|
|
10738
|
+
},
|
|
10739
|
+
error_code: {
|
|
10740
|
+
description: "The error code associated with the event, if any.",
|
|
10741
|
+
enum: [
|
|
10742
|
+
"account_disconnected",
|
|
10743
|
+
"hub_disconnected",
|
|
10744
|
+
"device_disconnected"
|
|
10745
|
+
],
|
|
10746
|
+
type: "string",
|
|
10747
|
+
"x-title": "Event Error Code"
|
|
10748
|
+
},
|
|
10749
|
+
event_id: {
|
|
10750
|
+
description: "The ID of the event.",
|
|
10751
|
+
format: "uuid",
|
|
10752
|
+
type: "string",
|
|
10753
|
+
"x-title": "Event ID"
|
|
10754
|
+
},
|
|
10755
|
+
event_type: {
|
|
10756
|
+
enum: ["device.unmanaged.disconnected"],
|
|
10757
|
+
type: "string"
|
|
10758
|
+
},
|
|
10759
|
+
occurred_at: {
|
|
10760
|
+
description: "The time when the event occurred.",
|
|
10761
|
+
format: "date-time",
|
|
10762
|
+
type: "string",
|
|
10763
|
+
"x-title": "Occurred At"
|
|
10764
|
+
},
|
|
10765
|
+
workspace_id: {
|
|
10766
|
+
description: "The ID of the workspace.",
|
|
10767
|
+
format: "uuid",
|
|
10768
|
+
type: "string",
|
|
10769
|
+
"x-title": "Workspace ID"
|
|
10770
|
+
}
|
|
10771
|
+
},
|
|
10772
|
+
required: [
|
|
10773
|
+
"event_id",
|
|
10774
|
+
"workspace_id",
|
|
10775
|
+
"created_at",
|
|
10776
|
+
"occurred_at",
|
|
10777
|
+
"device_id",
|
|
10778
|
+
"connected_account_id",
|
|
10779
|
+
"event_type",
|
|
10780
|
+
"error_code"
|
|
10781
|
+
],
|
|
10782
|
+
type: "object"
|
|
10783
|
+
},
|
|
10784
|
+
{
|
|
10785
|
+
description: "A device detected that it was tampered with, e.g., opened or moved.",
|
|
10786
|
+
properties: {
|
|
10787
|
+
connected_account_id: {
|
|
10788
|
+
description: "ID of the connected account.",
|
|
10789
|
+
format: "uuid",
|
|
10790
|
+
type: "string",
|
|
10791
|
+
"x-title": "Connected Account ID"
|
|
10792
|
+
},
|
|
10793
|
+
created_at: {
|
|
10794
|
+
description: "The time when the event was created.",
|
|
10795
|
+
format: "date-time",
|
|
10796
|
+
type: "string",
|
|
10797
|
+
"x-title": "Created At"
|
|
10798
|
+
},
|
|
10799
|
+
device_id: {
|
|
10800
|
+
description: "ID of the device.",
|
|
10801
|
+
format: "uuid",
|
|
10802
|
+
type: "string",
|
|
10803
|
+
"x-title": "Device ID"
|
|
10804
|
+
},
|
|
10805
|
+
event_id: {
|
|
10806
|
+
description: "The ID of the event.",
|
|
10807
|
+
format: "uuid",
|
|
10808
|
+
type: "string",
|
|
10809
|
+
"x-title": "Event ID"
|
|
10810
|
+
},
|
|
10811
|
+
event_type: { enum: ["device.tampered"], type: "string" },
|
|
10812
|
+
occurred_at: {
|
|
10813
|
+
description: "The time when the event occurred.",
|
|
10814
|
+
format: "date-time",
|
|
10815
|
+
type: "string",
|
|
10816
|
+
"x-title": "Occurred At"
|
|
10817
|
+
},
|
|
10818
|
+
workspace_id: {
|
|
10819
|
+
description: "The ID of the workspace.",
|
|
10820
|
+
format: "uuid",
|
|
10821
|
+
type: "string",
|
|
10822
|
+
"x-title": "Workspace ID"
|
|
10823
|
+
}
|
|
10824
|
+
},
|
|
10825
|
+
required: [
|
|
10826
|
+
"event_id",
|
|
10827
|
+
"workspace_id",
|
|
10828
|
+
"created_at",
|
|
10829
|
+
"occurred_at",
|
|
10830
|
+
"device_id",
|
|
10831
|
+
"connected_account_id",
|
|
10832
|
+
"event_type"
|
|
10833
|
+
],
|
|
10834
|
+
type: "object"
|
|
10835
|
+
},
|
|
10836
|
+
{
|
|
10837
|
+
description: "A device battery level dropped below the low threshold.",
|
|
10838
|
+
properties: {
|
|
10839
|
+
battery_level: {
|
|
10840
|
+
description: "Fractional number 0 to 1.0 indicating amount of battery in device, as reported by device.",
|
|
10841
|
+
format: "float",
|
|
10842
|
+
maximum: 1,
|
|
10843
|
+
minimum: 0,
|
|
10844
|
+
type: "number",
|
|
10845
|
+
"x-title": "Battery Level"
|
|
10846
|
+
},
|
|
10847
|
+
connected_account_id: {
|
|
10848
|
+
description: "ID of the connected account.",
|
|
10849
|
+
format: "uuid",
|
|
10850
|
+
type: "string",
|
|
10851
|
+
"x-title": "Connected Account ID"
|
|
10852
|
+
},
|
|
10853
|
+
created_at: {
|
|
10854
|
+
description: "The time when the event was created.",
|
|
10855
|
+
format: "date-time",
|
|
10856
|
+
type: "string",
|
|
10857
|
+
"x-title": "Created At"
|
|
10858
|
+
},
|
|
10859
|
+
device_id: {
|
|
10860
|
+
description: "ID of the device.",
|
|
10861
|
+
format: "uuid",
|
|
10862
|
+
type: "string",
|
|
10863
|
+
"x-title": "Device ID"
|
|
10864
|
+
},
|
|
10865
|
+
event_id: {
|
|
10866
|
+
description: "The ID of the event.",
|
|
10867
|
+
format: "uuid",
|
|
10868
|
+
type: "string",
|
|
10869
|
+
"x-title": "Event ID"
|
|
10870
|
+
},
|
|
10871
|
+
event_type: { enum: ["device.low_battery"], type: "string" },
|
|
10872
|
+
occurred_at: {
|
|
10873
|
+
description: "The time when the event occurred.",
|
|
10874
|
+
format: "date-time",
|
|
10875
|
+
type: "string",
|
|
10876
|
+
"x-title": "Occurred At"
|
|
10877
|
+
},
|
|
10878
|
+
workspace_id: {
|
|
10879
|
+
description: "The ID of the workspace.",
|
|
10880
|
+
format: "uuid",
|
|
10881
|
+
type: "string",
|
|
10882
|
+
"x-title": "Workspace ID"
|
|
10883
|
+
}
|
|
10884
|
+
},
|
|
10885
|
+
required: [
|
|
10886
|
+
"event_id",
|
|
10887
|
+
"workspace_id",
|
|
10888
|
+
"created_at",
|
|
10889
|
+
"occurred_at",
|
|
10890
|
+
"device_id",
|
|
10891
|
+
"connected_account_id",
|
|
10892
|
+
"event_type",
|
|
10893
|
+
"battery_level"
|
|
10894
|
+
],
|
|
10895
|
+
type: "object"
|
|
10896
|
+
},
|
|
10897
|
+
{
|
|
10898
|
+
description: "A device battery status changed since the last battery status changed event.",
|
|
10899
|
+
properties: {
|
|
10900
|
+
battery_level: {
|
|
10901
|
+
description: "Fractional number 0 to 1.0 indicating amount of battery in device, as reported by device.",
|
|
10902
|
+
format: "float",
|
|
10903
|
+
maximum: 1,
|
|
10904
|
+
minimum: 0,
|
|
10905
|
+
type: "number",
|
|
10906
|
+
"x-title": "Battery Level"
|
|
10907
|
+
},
|
|
10908
|
+
battery_status: {
|
|
10909
|
+
description: "Enum representing the battery status calculated from numeric battery_level value, one of 'critical' | 'low' | 'good' | 'full'",
|
|
10910
|
+
enum: ["critical", "low", "good", "full"],
|
|
10911
|
+
type: "string",
|
|
10912
|
+
"x-title": "Battery Status"
|
|
10913
|
+
},
|
|
10914
|
+
connected_account_id: {
|
|
10915
|
+
description: "ID of the connected account.",
|
|
10916
|
+
format: "uuid",
|
|
10917
|
+
type: "string",
|
|
10918
|
+
"x-title": "Connected Account ID"
|
|
10919
|
+
},
|
|
10920
|
+
created_at: {
|
|
10921
|
+
description: "The time when the event was created.",
|
|
10922
|
+
format: "date-time",
|
|
10923
|
+
type: "string",
|
|
10924
|
+
"x-title": "Created At"
|
|
10925
|
+
},
|
|
10926
|
+
device_id: {
|
|
10927
|
+
description: "ID of the device.",
|
|
10928
|
+
format: "uuid",
|
|
10929
|
+
type: "string",
|
|
10930
|
+
"x-title": "Device ID"
|
|
10931
|
+
},
|
|
10932
|
+
event_id: {
|
|
10933
|
+
description: "The ID of the event.",
|
|
10934
|
+
format: "uuid",
|
|
10935
|
+
type: "string",
|
|
10936
|
+
"x-title": "Event ID"
|
|
10937
|
+
},
|
|
10938
|
+
event_type: {
|
|
10939
|
+
enum: ["device.battery_status_changed"],
|
|
10940
|
+
type: "string"
|
|
10941
|
+
},
|
|
10942
|
+
occurred_at: {
|
|
10943
|
+
description: "The time when the event occurred.",
|
|
10944
|
+
format: "date-time",
|
|
10945
|
+
type: "string",
|
|
10946
|
+
"x-title": "Occurred At"
|
|
10947
|
+
},
|
|
10948
|
+
workspace_id: {
|
|
10949
|
+
description: "The ID of the workspace.",
|
|
10950
|
+
format: "uuid",
|
|
10951
|
+
type: "string",
|
|
10952
|
+
"x-title": "Workspace ID"
|
|
10953
|
+
}
|
|
10954
|
+
},
|
|
10955
|
+
required: [
|
|
10956
|
+
"event_id",
|
|
10957
|
+
"workspace_id",
|
|
10958
|
+
"created_at",
|
|
10959
|
+
"occurred_at",
|
|
10960
|
+
"device_id",
|
|
10961
|
+
"connected_account_id",
|
|
10962
|
+
"event_type",
|
|
10963
|
+
"battery_status",
|
|
10964
|
+
"battery_level"
|
|
10965
|
+
],
|
|
10966
|
+
type: "object"
|
|
10967
|
+
},
|
|
10968
|
+
{
|
|
10969
|
+
description: "A device was removed externally from the connected account.",
|
|
10970
|
+
properties: {
|
|
10971
|
+
connected_account_id: {
|
|
10972
|
+
description: "ID of the connected account.",
|
|
10973
|
+
format: "uuid",
|
|
10974
|
+
type: "string",
|
|
10975
|
+
"x-title": "Connected Account ID"
|
|
10976
|
+
},
|
|
10977
|
+
created_at: {
|
|
10978
|
+
description: "The time when the event was created.",
|
|
10979
|
+
format: "date-time",
|
|
10980
|
+
type: "string",
|
|
10981
|
+
"x-title": "Created At"
|
|
10982
|
+
},
|
|
10983
|
+
device_id: {
|
|
10984
|
+
description: "ID of the device.",
|
|
10985
|
+
format: "uuid",
|
|
10986
|
+
type: "string",
|
|
10987
|
+
"x-title": "Device ID"
|
|
10988
|
+
},
|
|
10989
|
+
event_id: {
|
|
10990
|
+
description: "The ID of the event.",
|
|
10991
|
+
format: "uuid",
|
|
10992
|
+
type: "string",
|
|
10993
|
+
"x-title": "Event ID"
|
|
10994
|
+
},
|
|
10995
|
+
event_type: { enum: ["device.removed"], type: "string" },
|
|
10996
|
+
occurred_at: {
|
|
10997
|
+
description: "The time when the event occurred.",
|
|
10998
|
+
format: "date-time",
|
|
10999
|
+
type: "string",
|
|
11000
|
+
"x-title": "Occurred At"
|
|
11001
|
+
},
|
|
11002
|
+
workspace_id: {
|
|
11003
|
+
description: "The ID of the workspace.",
|
|
11004
|
+
format: "uuid",
|
|
11005
|
+
type: "string",
|
|
11006
|
+
"x-title": "Workspace ID"
|
|
11007
|
+
}
|
|
11008
|
+
},
|
|
11009
|
+
required: [
|
|
11010
|
+
"event_id",
|
|
11011
|
+
"workspace_id",
|
|
11012
|
+
"created_at",
|
|
11013
|
+
"occurred_at",
|
|
11014
|
+
"device_id",
|
|
11015
|
+
"connected_account_id",
|
|
11016
|
+
"event_type"
|
|
11017
|
+
],
|
|
11018
|
+
type: "object"
|
|
11019
|
+
},
|
|
11020
|
+
{
|
|
11021
|
+
description: "A device was deleted.",
|
|
11022
|
+
properties: {
|
|
11023
|
+
connected_account_id: {
|
|
11024
|
+
description: "ID of the connected account.",
|
|
11025
|
+
format: "uuid",
|
|
11026
|
+
type: "string",
|
|
11027
|
+
"x-title": "Connected Account ID"
|
|
11028
|
+
},
|
|
11029
|
+
created_at: {
|
|
11030
|
+
description: "The time when the event was created.",
|
|
11031
|
+
format: "date-time",
|
|
11032
|
+
type: "string",
|
|
11033
|
+
"x-title": "Created At"
|
|
11034
|
+
},
|
|
11035
|
+
device_id: {
|
|
11036
|
+
description: "ID of the device.",
|
|
11037
|
+
format: "uuid",
|
|
11038
|
+
type: "string",
|
|
11039
|
+
"x-title": "Device ID"
|
|
11040
|
+
},
|
|
11041
|
+
event_id: {
|
|
11042
|
+
description: "The ID of the event.",
|
|
11043
|
+
format: "uuid",
|
|
11044
|
+
type: "string",
|
|
11045
|
+
"x-title": "Event ID"
|
|
11046
|
+
},
|
|
11047
|
+
event_type: { enum: ["device.deleted"], type: "string" },
|
|
11048
|
+
occurred_at: {
|
|
11049
|
+
description: "The time when the event occurred.",
|
|
11050
|
+
format: "date-time",
|
|
11051
|
+
type: "string",
|
|
11052
|
+
"x-title": "Occurred At"
|
|
11053
|
+
},
|
|
11054
|
+
workspace_id: {
|
|
11055
|
+
description: "The ID of the workspace.",
|
|
11056
|
+
format: "uuid",
|
|
11057
|
+
type: "string",
|
|
11058
|
+
"x-title": "Workspace ID"
|
|
11059
|
+
}
|
|
11060
|
+
},
|
|
11061
|
+
required: [
|
|
11062
|
+
"event_id",
|
|
11063
|
+
"workspace_id",
|
|
11064
|
+
"created_at",
|
|
11065
|
+
"occurred_at",
|
|
11066
|
+
"device_id",
|
|
11067
|
+
"connected_account_id",
|
|
11068
|
+
"event_type"
|
|
11069
|
+
],
|
|
11070
|
+
type: "object"
|
|
11071
|
+
},
|
|
11072
|
+
{
|
|
11073
|
+
description: "Seam detected a device is using a third party integration that will interfere with Seam device management.",
|
|
11074
|
+
properties: {
|
|
11075
|
+
connected_account_id: {
|
|
11076
|
+
description: "ID of the connected account.",
|
|
11077
|
+
format: "uuid",
|
|
11078
|
+
type: "string",
|
|
11079
|
+
"x-title": "Connected Account ID"
|
|
11080
|
+
},
|
|
11081
|
+
created_at: {
|
|
11082
|
+
description: "The time when the event was created.",
|
|
11083
|
+
format: "date-time",
|
|
11084
|
+
type: "string",
|
|
11085
|
+
"x-title": "Created At"
|
|
11086
|
+
},
|
|
11087
|
+
device_id: {
|
|
11088
|
+
description: "ID of the device.",
|
|
11089
|
+
format: "uuid",
|
|
11090
|
+
type: "string",
|
|
11091
|
+
"x-title": "Device ID"
|
|
11092
|
+
},
|
|
11093
|
+
event_id: {
|
|
11094
|
+
description: "The ID of the event.",
|
|
11095
|
+
format: "uuid",
|
|
11096
|
+
type: "string",
|
|
11097
|
+
"x-title": "Event ID"
|
|
11098
|
+
},
|
|
11099
|
+
event_type: {
|
|
11100
|
+
enum: ["device.third_party_integration_detected"],
|
|
11101
|
+
type: "string"
|
|
11102
|
+
},
|
|
11103
|
+
occurred_at: {
|
|
11104
|
+
description: "The time when the event occurred.",
|
|
11105
|
+
format: "date-time",
|
|
11106
|
+
type: "string",
|
|
11107
|
+
"x-title": "Occurred At"
|
|
11108
|
+
},
|
|
11109
|
+
workspace_id: {
|
|
11110
|
+
description: "The ID of the workspace.",
|
|
11111
|
+
format: "uuid",
|
|
11112
|
+
type: "string",
|
|
11113
|
+
"x-title": "Workspace ID"
|
|
11114
|
+
}
|
|
11115
|
+
},
|
|
11116
|
+
required: [
|
|
11117
|
+
"event_id",
|
|
11118
|
+
"workspace_id",
|
|
11119
|
+
"created_at",
|
|
11120
|
+
"occurred_at",
|
|
11121
|
+
"device_id",
|
|
11122
|
+
"connected_account_id",
|
|
11123
|
+
"event_type"
|
|
11124
|
+
],
|
|
11125
|
+
type: "object"
|
|
11126
|
+
},
|
|
11127
|
+
{
|
|
11128
|
+
description: "Seam detected a device is no longer using a third party integration that was interfering with Seam device management.",
|
|
11129
|
+
properties: {
|
|
11130
|
+
connected_account_id: {
|
|
11131
|
+
description: "ID of the connected account.",
|
|
11132
|
+
format: "uuid",
|
|
11133
|
+
type: "string",
|
|
11134
|
+
"x-title": "Connected Account ID"
|
|
11135
|
+
},
|
|
11136
|
+
created_at: {
|
|
11137
|
+
description: "The time when the event was created.",
|
|
11138
|
+
format: "date-time",
|
|
11139
|
+
type: "string",
|
|
11140
|
+
"x-title": "Created At"
|
|
11141
|
+
},
|
|
11142
|
+
device_id: {
|
|
11143
|
+
description: "ID of the device.",
|
|
11144
|
+
format: "uuid",
|
|
11145
|
+
type: "string",
|
|
11146
|
+
"x-title": "Device ID"
|
|
11147
|
+
},
|
|
11148
|
+
event_id: {
|
|
11149
|
+
description: "The ID of the event.",
|
|
11150
|
+
format: "uuid",
|
|
11151
|
+
type: "string",
|
|
11152
|
+
"x-title": "Event ID"
|
|
11153
|
+
},
|
|
11154
|
+
event_type: {
|
|
11155
|
+
enum: ["device.third_party_integration_no_longer_detected"],
|
|
11156
|
+
type: "string"
|
|
11157
|
+
},
|
|
11158
|
+
occurred_at: {
|
|
11159
|
+
description: "The time when the event occurred.",
|
|
11160
|
+
format: "date-time",
|
|
11161
|
+
type: "string",
|
|
11162
|
+
"x-title": "Occurred At"
|
|
11163
|
+
},
|
|
11164
|
+
workspace_id: {
|
|
11165
|
+
description: "The ID of the workspace.",
|
|
11166
|
+
format: "uuid",
|
|
11167
|
+
type: "string",
|
|
11168
|
+
"x-title": "Workspace ID"
|
|
11169
|
+
}
|
|
11170
|
+
},
|
|
11171
|
+
required: [
|
|
11172
|
+
"event_id",
|
|
11173
|
+
"workspace_id",
|
|
11174
|
+
"created_at",
|
|
11175
|
+
"occurred_at",
|
|
11176
|
+
"device_id",
|
|
11177
|
+
"connected_account_id",
|
|
11178
|
+
"event_type"
|
|
11179
|
+
],
|
|
11180
|
+
type: "object"
|
|
11181
|
+
},
|
|
11182
|
+
{
|
|
11183
|
+
description: "A Salto device activated privacy mode.",
|
|
11184
|
+
properties: {
|
|
11185
|
+
connected_account_id: {
|
|
11186
|
+
description: "ID of the connected account.",
|
|
11187
|
+
format: "uuid",
|
|
11188
|
+
type: "string",
|
|
11189
|
+
"x-title": "Connected Account ID"
|
|
11190
|
+
},
|
|
11191
|
+
created_at: {
|
|
11192
|
+
description: "The time when the event was created.",
|
|
11193
|
+
format: "date-time",
|
|
11194
|
+
type: "string",
|
|
11195
|
+
"x-title": "Created At"
|
|
11196
|
+
},
|
|
11197
|
+
device_id: {
|
|
11198
|
+
description: "ID of the device.",
|
|
11199
|
+
format: "uuid",
|
|
11200
|
+
type: "string",
|
|
11201
|
+
"x-title": "Device ID"
|
|
11202
|
+
},
|
|
11203
|
+
event_id: {
|
|
11204
|
+
description: "The ID of the event.",
|
|
11205
|
+
format: "uuid",
|
|
11206
|
+
type: "string",
|
|
11207
|
+
"x-title": "Event ID"
|
|
11208
|
+
},
|
|
11209
|
+
event_type: {
|
|
11210
|
+
enum: ["device.salto.privacy_mode_activated"],
|
|
11211
|
+
type: "string"
|
|
11212
|
+
},
|
|
11213
|
+
occurred_at: {
|
|
11214
|
+
description: "The time when the event occurred.",
|
|
11215
|
+
format: "date-time",
|
|
11216
|
+
type: "string",
|
|
11217
|
+
"x-title": "Occurred At"
|
|
11218
|
+
},
|
|
11219
|
+
workspace_id: {
|
|
11220
|
+
description: "The ID of the workspace.",
|
|
11221
|
+
format: "uuid",
|
|
11222
|
+
type: "string",
|
|
11223
|
+
"x-title": "Workspace ID"
|
|
11224
|
+
}
|
|
11225
|
+
},
|
|
11226
|
+
required: [
|
|
11227
|
+
"event_id",
|
|
11228
|
+
"workspace_id",
|
|
11229
|
+
"created_at",
|
|
11230
|
+
"occurred_at",
|
|
11231
|
+
"device_id",
|
|
11232
|
+
"connected_account_id",
|
|
11233
|
+
"event_type"
|
|
11234
|
+
],
|
|
11235
|
+
type: "object"
|
|
11236
|
+
},
|
|
11237
|
+
{
|
|
11238
|
+
description: "A Salto device deactivated privacy mode.",
|
|
11239
|
+
properties: {
|
|
11240
|
+
connected_account_id: {
|
|
11241
|
+
description: "ID of the connected account.",
|
|
11242
|
+
format: "uuid",
|
|
11243
|
+
type: "string",
|
|
11244
|
+
"x-title": "Connected Account ID"
|
|
11245
|
+
},
|
|
11246
|
+
created_at: {
|
|
11247
|
+
description: "The time when the event was created.",
|
|
11248
|
+
format: "date-time",
|
|
11249
|
+
type: "string",
|
|
11250
|
+
"x-title": "Created At"
|
|
11251
|
+
},
|
|
11252
|
+
device_id: {
|
|
11253
|
+
description: "ID of the device.",
|
|
11254
|
+
format: "uuid",
|
|
11255
|
+
type: "string",
|
|
11256
|
+
"x-title": "Device ID"
|
|
11257
|
+
},
|
|
11258
|
+
event_id: {
|
|
11259
|
+
description: "The ID of the event.",
|
|
11260
|
+
format: "uuid",
|
|
11261
|
+
type: "string",
|
|
11262
|
+
"x-title": "Event ID"
|
|
11263
|
+
},
|
|
11264
|
+
event_type: {
|
|
11265
|
+
enum: ["device.salto.privacy_mode_deactivated"],
|
|
11266
|
+
type: "string"
|
|
11267
|
+
},
|
|
11268
|
+
occurred_at: {
|
|
11269
|
+
description: "The time when the event occurred.",
|
|
11270
|
+
format: "date-time",
|
|
11271
|
+
type: "string",
|
|
11272
|
+
"x-title": "Occurred At"
|
|
11273
|
+
},
|
|
11274
|
+
workspace_id: {
|
|
11275
|
+
description: "The ID of the workspace.",
|
|
11276
|
+
format: "uuid",
|
|
11277
|
+
type: "string",
|
|
11278
|
+
"x-title": "Workspace ID"
|
|
11279
|
+
}
|
|
11280
|
+
},
|
|
11281
|
+
required: [
|
|
11282
|
+
"event_id",
|
|
11283
|
+
"workspace_id",
|
|
11284
|
+
"created_at",
|
|
11285
|
+
"occurred_at",
|
|
11286
|
+
"device_id",
|
|
11287
|
+
"connected_account_id",
|
|
11288
|
+
"event_type"
|
|
11289
|
+
],
|
|
11290
|
+
type: "object"
|
|
11291
|
+
},
|
|
11292
|
+
{
|
|
11293
|
+
description: "Seam detected a flaky device connection.",
|
|
11294
|
+
properties: {
|
|
11295
|
+
connected_account_id: {
|
|
11296
|
+
description: "ID of the connected account.",
|
|
11297
|
+
format: "uuid",
|
|
11298
|
+
type: "string",
|
|
11299
|
+
"x-title": "Connected Account ID"
|
|
11300
|
+
},
|
|
11301
|
+
created_at: {
|
|
11302
|
+
description: "The time when the event was created.",
|
|
11303
|
+
format: "date-time",
|
|
11304
|
+
type: "string",
|
|
11305
|
+
"x-title": "Created At"
|
|
11306
|
+
},
|
|
11307
|
+
device_id: {
|
|
11308
|
+
description: "ID of the device.",
|
|
11309
|
+
format: "uuid",
|
|
11310
|
+
type: "string",
|
|
11311
|
+
"x-title": "Device ID"
|
|
11312
|
+
},
|
|
11313
|
+
event_id: {
|
|
11314
|
+
description: "The ID of the event.",
|
|
11315
|
+
format: "uuid",
|
|
11316
|
+
type: "string",
|
|
11317
|
+
"x-title": "Event ID"
|
|
11318
|
+
},
|
|
11319
|
+
event_type: {
|
|
11320
|
+
enum: ["device.connection_became_flaky"],
|
|
11321
|
+
type: "string"
|
|
11322
|
+
},
|
|
11323
|
+
occurred_at: {
|
|
11324
|
+
description: "The time when the event occurred.",
|
|
11325
|
+
format: "date-time",
|
|
11326
|
+
type: "string",
|
|
11327
|
+
"x-title": "Occurred At"
|
|
11328
|
+
},
|
|
11329
|
+
workspace_id: {
|
|
11330
|
+
description: "The ID of the workspace.",
|
|
11331
|
+
format: "uuid",
|
|
11332
|
+
type: "string",
|
|
11333
|
+
"x-title": "Workspace ID"
|
|
11334
|
+
}
|
|
11335
|
+
},
|
|
11336
|
+
required: [
|
|
11337
|
+
"event_id",
|
|
11338
|
+
"workspace_id",
|
|
11339
|
+
"created_at",
|
|
11340
|
+
"occurred_at",
|
|
11341
|
+
"device_id",
|
|
11342
|
+
"connected_account_id",
|
|
11343
|
+
"event_type"
|
|
11344
|
+
],
|
|
11345
|
+
type: "object"
|
|
11346
|
+
},
|
|
11347
|
+
{
|
|
11348
|
+
description: "Seam detected a previously flaky device connection stabilized.",
|
|
11349
|
+
properties: {
|
|
11350
|
+
connected_account_id: {
|
|
11351
|
+
description: "ID of the connected account.",
|
|
11352
|
+
format: "uuid",
|
|
11353
|
+
type: "string",
|
|
11354
|
+
"x-title": "Connected Account ID"
|
|
11355
|
+
},
|
|
11356
|
+
created_at: {
|
|
11357
|
+
description: "The time when the event was created.",
|
|
11358
|
+
format: "date-time",
|
|
11359
|
+
type: "string",
|
|
11360
|
+
"x-title": "Created At"
|
|
11361
|
+
},
|
|
11362
|
+
device_id: {
|
|
11363
|
+
description: "ID of the device.",
|
|
11364
|
+
format: "uuid",
|
|
11365
|
+
type: "string",
|
|
11366
|
+
"x-title": "Device ID"
|
|
11367
|
+
},
|
|
11368
|
+
event_id: {
|
|
11369
|
+
description: "The ID of the event.",
|
|
11370
|
+
format: "uuid",
|
|
11371
|
+
type: "string",
|
|
11372
|
+
"x-title": "Event ID"
|
|
11373
|
+
},
|
|
11374
|
+
event_type: {
|
|
11375
|
+
enum: ["device.connection_stabilized"],
|
|
11376
|
+
type: "string"
|
|
11377
|
+
},
|
|
11378
|
+
occurred_at: {
|
|
11379
|
+
description: "The time when the event occurred.",
|
|
11380
|
+
format: "date-time",
|
|
11381
|
+
type: "string",
|
|
11382
|
+
"x-title": "Occurred At"
|
|
11383
|
+
},
|
|
11384
|
+
workspace_id: {
|
|
11385
|
+
description: "The ID of the workspace.",
|
|
11386
|
+
format: "uuid",
|
|
11387
|
+
type: "string",
|
|
11388
|
+
"x-title": "Workspace ID"
|
|
11389
|
+
}
|
|
11390
|
+
},
|
|
11391
|
+
required: [
|
|
11392
|
+
"event_id",
|
|
11393
|
+
"workspace_id",
|
|
11394
|
+
"created_at",
|
|
11395
|
+
"occurred_at",
|
|
11396
|
+
"device_id",
|
|
11397
|
+
"connected_account_id",
|
|
11398
|
+
"event_type"
|
|
11399
|
+
],
|
|
11400
|
+
type: "object"
|
|
11401
|
+
},
|
|
11402
|
+
{
|
|
11403
|
+
description: "A third party subscription is required to use all device features.",
|
|
11404
|
+
properties: {
|
|
11405
|
+
connected_account_id: {
|
|
11406
|
+
description: "ID of the connected account.",
|
|
11407
|
+
format: "uuid",
|
|
11408
|
+
type: "string",
|
|
11409
|
+
"x-title": "Connected Account ID"
|
|
11410
|
+
},
|
|
11411
|
+
created_at: {
|
|
11412
|
+
description: "The time when the event was created.",
|
|
11413
|
+
format: "date-time",
|
|
11414
|
+
type: "string",
|
|
11415
|
+
"x-title": "Created At"
|
|
11416
|
+
},
|
|
11417
|
+
device_id: {
|
|
11418
|
+
description: "ID of the device.",
|
|
11419
|
+
format: "uuid",
|
|
11420
|
+
type: "string",
|
|
11421
|
+
"x-title": "Device ID"
|
|
11422
|
+
},
|
|
11423
|
+
event_id: {
|
|
11424
|
+
description: "The ID of the event.",
|
|
11425
|
+
format: "uuid",
|
|
11426
|
+
type: "string",
|
|
11427
|
+
"x-title": "Event ID"
|
|
11428
|
+
},
|
|
11429
|
+
event_type: {
|
|
11430
|
+
enum: ["device.error.subscription_required"],
|
|
11431
|
+
type: "string"
|
|
11432
|
+
},
|
|
11433
|
+
occurred_at: {
|
|
11434
|
+
description: "The time when the event occurred.",
|
|
11435
|
+
format: "date-time",
|
|
11436
|
+
type: "string",
|
|
11437
|
+
"x-title": "Occurred At"
|
|
11438
|
+
},
|
|
11439
|
+
workspace_id: {
|
|
11440
|
+
description: "The ID of the workspace.",
|
|
11441
|
+
format: "uuid",
|
|
11442
|
+
type: "string",
|
|
11443
|
+
"x-title": "Workspace ID"
|
|
11444
|
+
}
|
|
11445
|
+
},
|
|
11446
|
+
required: [
|
|
11447
|
+
"event_id",
|
|
11448
|
+
"workspace_id",
|
|
11449
|
+
"created_at",
|
|
11450
|
+
"occurred_at",
|
|
11451
|
+
"device_id",
|
|
11452
|
+
"connected_account_id",
|
|
11453
|
+
"event_type"
|
|
11454
|
+
],
|
|
11455
|
+
type: "object"
|
|
11456
|
+
},
|
|
11457
|
+
{
|
|
11458
|
+
description: "A third party subscription is active or no longer-required to use all device features.",
|
|
11459
|
+
properties: {
|
|
11460
|
+
connected_account_id: {
|
|
11461
|
+
description: "ID of the connected account.",
|
|
11462
|
+
format: "uuid",
|
|
11463
|
+
type: "string",
|
|
11464
|
+
"x-title": "Connected Account ID"
|
|
11465
|
+
},
|
|
11466
|
+
created_at: {
|
|
11467
|
+
description: "The time when the event was created.",
|
|
11468
|
+
format: "date-time",
|
|
11469
|
+
type: "string",
|
|
11470
|
+
"x-title": "Created At"
|
|
11471
|
+
},
|
|
11472
|
+
device_id: {
|
|
11473
|
+
description: "ID of the device.",
|
|
11474
|
+
format: "uuid",
|
|
11475
|
+
type: "string",
|
|
11476
|
+
"x-title": "Device ID"
|
|
11477
|
+
},
|
|
11478
|
+
event_id: {
|
|
11479
|
+
description: "The ID of the event.",
|
|
11480
|
+
format: "uuid",
|
|
11481
|
+
type: "string",
|
|
11482
|
+
"x-title": "Event ID"
|
|
11483
|
+
},
|
|
11484
|
+
event_type: {
|
|
11485
|
+
enum: ["device.error.subscription_required.resolved"],
|
|
11486
|
+
type: "string"
|
|
11487
|
+
},
|
|
11488
|
+
occurred_at: {
|
|
11489
|
+
description: "The time when the event occurred.",
|
|
11490
|
+
format: "date-time",
|
|
11491
|
+
type: "string",
|
|
11492
|
+
"x-title": "Occurred At"
|
|
11493
|
+
},
|
|
11494
|
+
workspace_id: {
|
|
11495
|
+
description: "The ID of the workspace.",
|
|
11496
|
+
format: "uuid",
|
|
11497
|
+
type: "string",
|
|
11498
|
+
"x-title": "Workspace ID"
|
|
11499
|
+
}
|
|
11500
|
+
},
|
|
11501
|
+
required: [
|
|
11502
|
+
"event_id",
|
|
11503
|
+
"workspace_id",
|
|
11504
|
+
"created_at",
|
|
11505
|
+
"occurred_at",
|
|
11506
|
+
"device_id",
|
|
11507
|
+
"connected_account_id",
|
|
11508
|
+
"event_type"
|
|
11509
|
+
],
|
|
11510
|
+
type: "object"
|
|
11511
|
+
},
|
|
11512
|
+
{
|
|
11513
|
+
description: "A accessory keypad was connected to a device.",
|
|
11514
|
+
properties: {
|
|
11515
|
+
connected_account_id: {
|
|
11516
|
+
description: "ID of the connected account.",
|
|
11517
|
+
format: "uuid",
|
|
11518
|
+
type: "string",
|
|
11519
|
+
"x-title": "Connected Account ID"
|
|
11520
|
+
},
|
|
11521
|
+
created_at: {
|
|
11522
|
+
description: "The time when the event was created.",
|
|
11523
|
+
format: "date-time",
|
|
11524
|
+
type: "string",
|
|
11525
|
+
"x-title": "Created At"
|
|
11526
|
+
},
|
|
11527
|
+
device_id: {
|
|
11528
|
+
description: "ID of the device.",
|
|
11529
|
+
format: "uuid",
|
|
11530
|
+
type: "string",
|
|
11531
|
+
"x-title": "Device ID"
|
|
11532
|
+
},
|
|
11533
|
+
event_id: {
|
|
11534
|
+
description: "The ID of the event.",
|
|
11535
|
+
format: "uuid",
|
|
11536
|
+
type: "string",
|
|
11537
|
+
"x-title": "Event ID"
|
|
11538
|
+
},
|
|
11539
|
+
event_type: {
|
|
11540
|
+
enum: ["device.accessory_keypad_connected"],
|
|
11541
|
+
type: "string"
|
|
11542
|
+
},
|
|
11543
|
+
occurred_at: {
|
|
11544
|
+
description: "The time when the event occurred.",
|
|
11545
|
+
format: "date-time",
|
|
11546
|
+
type: "string",
|
|
11547
|
+
"x-title": "Occurred At"
|
|
11548
|
+
},
|
|
11549
|
+
workspace_id: {
|
|
11550
|
+
description: "The ID of the workspace.",
|
|
11551
|
+
format: "uuid",
|
|
11552
|
+
type: "string",
|
|
11553
|
+
"x-title": "Workspace ID"
|
|
11554
|
+
}
|
|
11555
|
+
},
|
|
11556
|
+
required: [
|
|
11557
|
+
"event_id",
|
|
11558
|
+
"workspace_id",
|
|
11559
|
+
"created_at",
|
|
11560
|
+
"occurred_at",
|
|
11561
|
+
"device_id",
|
|
11562
|
+
"connected_account_id",
|
|
11563
|
+
"event_type"
|
|
11564
|
+
],
|
|
11565
|
+
type: "object"
|
|
11566
|
+
},
|
|
11567
|
+
{
|
|
11568
|
+
description: "A accessory keypad was disconnected to a device.",
|
|
11569
|
+
properties: {
|
|
11570
|
+
connected_account_id: {
|
|
11571
|
+
description: "ID of the connected account.",
|
|
11572
|
+
format: "uuid",
|
|
11573
|
+
type: "string",
|
|
11574
|
+
"x-title": "Connected Account ID"
|
|
11575
|
+
},
|
|
11576
|
+
created_at: {
|
|
11577
|
+
description: "The time when the event was created.",
|
|
11578
|
+
format: "date-time",
|
|
11579
|
+
type: "string",
|
|
11580
|
+
"x-title": "Created At"
|
|
11581
|
+
},
|
|
11582
|
+
device_id: {
|
|
11583
|
+
description: "ID of the device.",
|
|
11584
|
+
format: "uuid",
|
|
11585
|
+
type: "string",
|
|
11586
|
+
"x-title": "Device ID"
|
|
11587
|
+
},
|
|
11588
|
+
event_id: {
|
|
11589
|
+
description: "The ID of the event.",
|
|
11590
|
+
format: "uuid",
|
|
11591
|
+
type: "string",
|
|
11592
|
+
"x-title": "Event ID"
|
|
11593
|
+
},
|
|
11594
|
+
event_type: {
|
|
11595
|
+
enum: ["device.accessory_keypad_disconnected"],
|
|
11596
|
+
type: "string"
|
|
11597
|
+
},
|
|
11598
|
+
occurred_at: {
|
|
11599
|
+
description: "The time when the event occurred.",
|
|
11600
|
+
format: "date-time",
|
|
11601
|
+
type: "string",
|
|
11602
|
+
"x-title": "Occurred At"
|
|
11603
|
+
},
|
|
11604
|
+
workspace_id: {
|
|
11605
|
+
description: "The ID of the workspace.",
|
|
11606
|
+
format: "uuid",
|
|
11607
|
+
type: "string",
|
|
11608
|
+
"x-title": "Workspace ID"
|
|
11609
|
+
}
|
|
11610
|
+
},
|
|
11611
|
+
required: [
|
|
11612
|
+
"event_id",
|
|
11613
|
+
"workspace_id",
|
|
11614
|
+
"created_at",
|
|
11615
|
+
"occurred_at",
|
|
11616
|
+
"device_id",
|
|
11617
|
+
"connected_account_id",
|
|
11618
|
+
"event_type"
|
|
11619
|
+
],
|
|
11620
|
+
type: "object"
|
|
11621
|
+
},
|
|
11622
|
+
{
|
|
11623
|
+
description: "Extended periods of noise or noise exceeding a threshold was detected.",
|
|
11624
|
+
properties: {
|
|
11625
|
+
connected_account_id: {
|
|
11626
|
+
description: "ID of the connected account.",
|
|
11627
|
+
format: "uuid",
|
|
11628
|
+
type: "string",
|
|
11629
|
+
"x-title": "Connected Account ID"
|
|
11630
|
+
},
|
|
11631
|
+
created_at: {
|
|
11632
|
+
description: "The time when the event was created.",
|
|
11633
|
+
format: "date-time",
|
|
11634
|
+
type: "string",
|
|
11635
|
+
"x-title": "Created At"
|
|
11636
|
+
},
|
|
11637
|
+
device_id: {
|
|
11638
|
+
description: "ID of the device.",
|
|
11639
|
+
format: "uuid",
|
|
11640
|
+
type: "string",
|
|
11641
|
+
"x-title": "Device ID"
|
|
11642
|
+
},
|
|
11643
|
+
event_id: {
|
|
11644
|
+
description: "The ID of the event.",
|
|
11645
|
+
format: "uuid",
|
|
11646
|
+
type: "string",
|
|
11647
|
+
"x-title": "Event ID"
|
|
11648
|
+
},
|
|
11649
|
+
event_type: {
|
|
11650
|
+
enum: ["noise_sensor.noise_threshold_triggered"],
|
|
11651
|
+
type: "string"
|
|
11652
|
+
},
|
|
11653
|
+
minut_metadata: {
|
|
11654
|
+
additionalProperties: {},
|
|
11655
|
+
description: "Metadata from the Minut API.",
|
|
11656
|
+
type: "object",
|
|
11657
|
+
"x-title": "Minut Metadata"
|
|
11658
|
+
},
|
|
11659
|
+
noise_level_decibels: { format: "float", type: "number" },
|
|
11660
|
+
noise_level_nrs: { format: "float", type: "number" },
|
|
11661
|
+
noise_threshold_id: { format: "uuid", type: "string" },
|
|
11662
|
+
noise_threshold_name: { type: "string" },
|
|
11663
|
+
noiseaware_metadata: {
|
|
11664
|
+
additionalProperties: {},
|
|
11665
|
+
description: "Metadata from the Noiseaware API.",
|
|
11666
|
+
type: "object",
|
|
11667
|
+
"x-title": "Noiseaware Metadata"
|
|
11668
|
+
},
|
|
11669
|
+
occurred_at: {
|
|
11670
|
+
description: "The time when the event occurred.",
|
|
11671
|
+
format: "date-time",
|
|
11672
|
+
type: "string",
|
|
11673
|
+
"x-title": "Occurred At"
|
|
11674
|
+
},
|
|
11675
|
+
workspace_id: {
|
|
11676
|
+
description: "The ID of the workspace.",
|
|
11677
|
+
format: "uuid",
|
|
11678
|
+
type: "string",
|
|
11679
|
+
"x-title": "Workspace ID"
|
|
11680
|
+
}
|
|
11681
|
+
},
|
|
11682
|
+
required: [
|
|
11683
|
+
"event_id",
|
|
11684
|
+
"workspace_id",
|
|
11685
|
+
"created_at",
|
|
11686
|
+
"occurred_at",
|
|
11687
|
+
"device_id",
|
|
11688
|
+
"connected_account_id",
|
|
11689
|
+
"event_type"
|
|
11690
|
+
],
|
|
11691
|
+
type: "object"
|
|
11692
|
+
},
|
|
11693
|
+
{
|
|
11694
|
+
description: "A lock was locked.",
|
|
11695
|
+
properties: {
|
|
11696
|
+
access_code_id: { format: "uuid", type: "string" },
|
|
11697
|
+
action_attempt_id: { format: "uuid", type: "string" },
|
|
11698
|
+
connected_account_id: {
|
|
11699
|
+
description: "ID of the connected account.",
|
|
11700
|
+
format: "uuid",
|
|
11701
|
+
type: "string",
|
|
11702
|
+
"x-title": "Connected Account ID"
|
|
11703
|
+
},
|
|
11704
|
+
created_at: {
|
|
11705
|
+
description: "The time when the event was created.",
|
|
11706
|
+
format: "date-time",
|
|
11707
|
+
type: "string",
|
|
11708
|
+
"x-title": "Created At"
|
|
11709
|
+
},
|
|
11710
|
+
device_id: {
|
|
11711
|
+
description: "ID of the device.",
|
|
11712
|
+
format: "uuid",
|
|
11713
|
+
type: "string",
|
|
11714
|
+
"x-title": "Device ID"
|
|
11715
|
+
},
|
|
11716
|
+
event_id: {
|
|
11717
|
+
description: "The ID of the event.",
|
|
11718
|
+
format: "uuid",
|
|
11719
|
+
type: "string",
|
|
11720
|
+
"x-title": "Event ID"
|
|
11721
|
+
},
|
|
11722
|
+
event_type: { enum: ["lock.locked"], type: "string" },
|
|
11723
|
+
method: {
|
|
11724
|
+
description: "Method by which a lock device was locked or unlocked. When the method is `keycode`, the `access_code_id` will reference the Seam access code which was used, if reported by the device.",
|
|
11725
|
+
enum: ["keycode", "manual", "automatic", "unknown", "seamapi"],
|
|
11726
|
+
type: "string",
|
|
11727
|
+
"x-title": "Lock Lock/Unlock Method"
|
|
11728
|
+
},
|
|
11729
|
+
occurred_at: {
|
|
11730
|
+
description: "The time when the event occurred.",
|
|
11731
|
+
format: "date-time",
|
|
11732
|
+
type: "string",
|
|
11733
|
+
"x-title": "Occurred At"
|
|
11734
|
+
},
|
|
11735
|
+
workspace_id: {
|
|
11736
|
+
description: "The ID of the workspace.",
|
|
11737
|
+
format: "uuid",
|
|
11738
|
+
type: "string",
|
|
11739
|
+
"x-title": "Workspace ID"
|
|
11740
|
+
}
|
|
11741
|
+
},
|
|
11742
|
+
required: [
|
|
11743
|
+
"event_id",
|
|
11744
|
+
"workspace_id",
|
|
11745
|
+
"created_at",
|
|
11746
|
+
"occurred_at",
|
|
11747
|
+
"device_id",
|
|
11748
|
+
"connected_account_id",
|
|
11749
|
+
"event_type",
|
|
11750
|
+
"method"
|
|
11751
|
+
],
|
|
11752
|
+
type: "object"
|
|
11753
|
+
},
|
|
11754
|
+
{
|
|
11755
|
+
description: "A lock was unlocked.",
|
|
11756
|
+
properties: {
|
|
11757
|
+
access_code_id: { format: "uuid", type: "string" },
|
|
11758
|
+
action_attempt_id: { format: "uuid", type: "string" },
|
|
11759
|
+
connected_account_id: {
|
|
11760
|
+
description: "ID of the connected account.",
|
|
11761
|
+
format: "uuid",
|
|
11762
|
+
type: "string",
|
|
11763
|
+
"x-title": "Connected Account ID"
|
|
11764
|
+
},
|
|
11765
|
+
created_at: {
|
|
11766
|
+
description: "The time when the event was created.",
|
|
11767
|
+
format: "date-time",
|
|
11768
|
+
type: "string",
|
|
11769
|
+
"x-title": "Created At"
|
|
11770
|
+
},
|
|
11771
|
+
device_id: {
|
|
11772
|
+
description: "ID of the device.",
|
|
11773
|
+
format: "uuid",
|
|
11774
|
+
type: "string",
|
|
11775
|
+
"x-title": "Device ID"
|
|
11776
|
+
},
|
|
11777
|
+
event_id: {
|
|
11778
|
+
description: "The ID of the event.",
|
|
11779
|
+
format: "uuid",
|
|
11780
|
+
type: "string",
|
|
11781
|
+
"x-title": "Event ID"
|
|
11782
|
+
},
|
|
11783
|
+
event_type: { enum: ["lock.unlocked"], type: "string" },
|
|
11784
|
+
method: {
|
|
11785
|
+
description: "Method by which a lock device was locked or unlocked. When the method is `keycode`, the `access_code_id` will reference the Seam access code which was used, if reported by the device.",
|
|
11786
|
+
enum: ["keycode", "manual", "automatic", "unknown", "seamapi"],
|
|
11787
|
+
type: "string",
|
|
11788
|
+
"x-title": "Lock Lock/Unlock Method"
|
|
11789
|
+
},
|
|
11790
|
+
occurred_at: {
|
|
11791
|
+
description: "The time when the event occurred.",
|
|
11792
|
+
format: "date-time",
|
|
11793
|
+
type: "string",
|
|
11794
|
+
"x-title": "Occurred At"
|
|
11795
|
+
},
|
|
11796
|
+
workspace_id: {
|
|
11797
|
+
description: "The ID of the workspace.",
|
|
11798
|
+
format: "uuid",
|
|
11799
|
+
type: "string",
|
|
11800
|
+
"x-title": "Workspace ID"
|
|
11801
|
+
}
|
|
11802
|
+
},
|
|
11803
|
+
required: [
|
|
11804
|
+
"event_id",
|
|
11805
|
+
"workspace_id",
|
|
11806
|
+
"created_at",
|
|
11807
|
+
"occurred_at",
|
|
11808
|
+
"device_id",
|
|
11809
|
+
"connected_account_id",
|
|
11810
|
+
"event_type",
|
|
11811
|
+
"method"
|
|
11812
|
+
],
|
|
11813
|
+
type: "object"
|
|
8153
11814
|
},
|
|
8154
|
-
|
|
8155
|
-
|
|
8156
|
-
|
|
8157
|
-
|
|
8158
|
-
|
|
8159
|
-
|
|
8160
|
-
|
|
8161
|
-
|
|
8162
|
-
|
|
8163
|
-
|
|
8164
|
-
|
|
11815
|
+
{
|
|
11816
|
+
description: "The lock denied access to a user after one or more consecutive invalid attempts to unlock the device.",
|
|
11817
|
+
properties: {
|
|
11818
|
+
access_code_id: { format: "uuid", type: "string" },
|
|
11819
|
+
connected_account_id: {
|
|
11820
|
+
description: "ID of the connected account.",
|
|
11821
|
+
format: "uuid",
|
|
11822
|
+
type: "string",
|
|
11823
|
+
"x-title": "Connected Account ID"
|
|
11824
|
+
},
|
|
11825
|
+
created_at: {
|
|
11826
|
+
description: "The time when the event was created.",
|
|
11827
|
+
format: "date-time",
|
|
11828
|
+
type: "string",
|
|
11829
|
+
"x-title": "Created At"
|
|
11830
|
+
},
|
|
11831
|
+
device_id: {
|
|
11832
|
+
description: "ID of the device.",
|
|
11833
|
+
format: "uuid",
|
|
11834
|
+
type: "string",
|
|
11835
|
+
"x-title": "Device ID"
|
|
11836
|
+
},
|
|
11837
|
+
event_id: {
|
|
11838
|
+
description: "The ID of the event.",
|
|
11839
|
+
format: "uuid",
|
|
11840
|
+
type: "string",
|
|
11841
|
+
"x-title": "Event ID"
|
|
11842
|
+
},
|
|
11843
|
+
event_type: { enum: ["lock.access_denied"], type: "string" },
|
|
11844
|
+
occurred_at: {
|
|
11845
|
+
description: "The time when the event occurred.",
|
|
11846
|
+
format: "date-time",
|
|
11847
|
+
type: "string",
|
|
11848
|
+
"x-title": "Occurred At"
|
|
11849
|
+
},
|
|
11850
|
+
workspace_id: {
|
|
11851
|
+
description: "The ID of the workspace.",
|
|
11852
|
+
format: "uuid",
|
|
11853
|
+
type: "string",
|
|
11854
|
+
"x-title": "Workspace ID"
|
|
11855
|
+
}
|
|
11856
|
+
},
|
|
11857
|
+
required: [
|
|
11858
|
+
"event_id",
|
|
11859
|
+
"workspace_id",
|
|
11860
|
+
"created_at",
|
|
11861
|
+
"occurred_at",
|
|
11862
|
+
"device_id",
|
|
11863
|
+
"connected_account_id",
|
|
11864
|
+
"event_type"
|
|
11865
|
+
],
|
|
11866
|
+
type: "object"
|
|
11867
|
+
},
|
|
11868
|
+
{
|
|
11869
|
+
description: "A thermostat climate preset was activated.",
|
|
11870
|
+
properties: {
|
|
11871
|
+
climate_preset_key: { type: "string" },
|
|
11872
|
+
connected_account_id: {
|
|
11873
|
+
description: "ID of the connected account.",
|
|
11874
|
+
format: "uuid",
|
|
11875
|
+
type: "string",
|
|
11876
|
+
"x-title": "Connected Account ID"
|
|
11877
|
+
},
|
|
11878
|
+
created_at: {
|
|
11879
|
+
description: "The time when the event was created.",
|
|
11880
|
+
format: "date-time",
|
|
11881
|
+
type: "string",
|
|
11882
|
+
"x-title": "Created At"
|
|
11883
|
+
},
|
|
11884
|
+
device_id: {
|
|
11885
|
+
description: "ID of the device.",
|
|
11886
|
+
format: "uuid",
|
|
11887
|
+
type: "string",
|
|
11888
|
+
"x-title": "Device ID"
|
|
11889
|
+
},
|
|
11890
|
+
event_id: {
|
|
11891
|
+
description: "The ID of the event.",
|
|
11892
|
+
format: "uuid",
|
|
11893
|
+
type: "string",
|
|
11894
|
+
"x-title": "Event ID"
|
|
11895
|
+
},
|
|
11896
|
+
event_type: {
|
|
11897
|
+
enum: ["thermostat.climate_preset_activated"],
|
|
11898
|
+
type: "string"
|
|
11899
|
+
},
|
|
11900
|
+
is_fallback_climate_preset: { type: "boolean" },
|
|
11901
|
+
occurred_at: {
|
|
11902
|
+
description: "The time when the event occurred.",
|
|
11903
|
+
format: "date-time",
|
|
11904
|
+
type: "string",
|
|
11905
|
+
"x-title": "Occurred At"
|
|
11906
|
+
},
|
|
11907
|
+
thermostat_schedule_id: {
|
|
11908
|
+
format: "uuid",
|
|
11909
|
+
nullable: true,
|
|
11910
|
+
type: "string"
|
|
11911
|
+
},
|
|
11912
|
+
workspace_id: {
|
|
11913
|
+
description: "The ID of the workspace.",
|
|
11914
|
+
format: "uuid",
|
|
11915
|
+
type: "string",
|
|
11916
|
+
"x-title": "Workspace ID"
|
|
11917
|
+
}
|
|
11918
|
+
},
|
|
11919
|
+
required: [
|
|
11920
|
+
"event_id",
|
|
11921
|
+
"workspace_id",
|
|
11922
|
+
"created_at",
|
|
11923
|
+
"occurred_at",
|
|
11924
|
+
"device_id",
|
|
11925
|
+
"connected_account_id",
|
|
11926
|
+
"event_type",
|
|
11927
|
+
"thermostat_schedule_id",
|
|
11928
|
+
"climate_preset_key",
|
|
11929
|
+
"is_fallback_climate_preset"
|
|
11930
|
+
],
|
|
11931
|
+
type: "object"
|
|
11932
|
+
},
|
|
11933
|
+
{
|
|
11934
|
+
description: "A thermostat was manually adjusted.",
|
|
11935
|
+
properties: {
|
|
11936
|
+
connected_account_id: {
|
|
11937
|
+
description: "ID of the connected account.",
|
|
11938
|
+
format: "uuid",
|
|
11939
|
+
type: "string",
|
|
11940
|
+
"x-title": "Connected Account ID"
|
|
11941
|
+
},
|
|
11942
|
+
cooling_set_point_celsius: {
|
|
11943
|
+
description: "Temperature to which the thermostat should cool (in \xB0C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).",
|
|
11944
|
+
format: "float",
|
|
11945
|
+
type: "number"
|
|
11946
|
+
},
|
|
11947
|
+
cooling_set_point_fahrenheit: {
|
|
11948
|
+
description: "Temperature to which the thermostat should cool (in \xB0F).",
|
|
11949
|
+
format: "float",
|
|
11950
|
+
type: "number"
|
|
11951
|
+
},
|
|
11952
|
+
created_at: {
|
|
11953
|
+
description: "The time when the event was created.",
|
|
11954
|
+
format: "date-time",
|
|
11955
|
+
type: "string",
|
|
11956
|
+
"x-title": "Created At"
|
|
11957
|
+
},
|
|
11958
|
+
device_id: {
|
|
11959
|
+
description: "ID of the device.",
|
|
11960
|
+
format: "uuid",
|
|
11961
|
+
type: "string",
|
|
11962
|
+
"x-title": "Device ID"
|
|
11963
|
+
},
|
|
11964
|
+
event_id: {
|
|
11965
|
+
description: "The ID of the event.",
|
|
11966
|
+
format: "uuid",
|
|
11967
|
+
type: "string",
|
|
11968
|
+
"x-title": "Event ID"
|
|
11969
|
+
},
|
|
11970
|
+
event_type: {
|
|
11971
|
+
enum: ["thermostat.manually_adjusted"],
|
|
11972
|
+
type: "string"
|
|
11973
|
+
},
|
|
11974
|
+
fan_mode_setting: {
|
|
11975
|
+
description: "Desired fan mode setting, such as `on`, `auto`, or `circulate`.",
|
|
11976
|
+
enum: ["auto", "on", "circulate"],
|
|
11977
|
+
type: "string"
|
|
11978
|
+
},
|
|
11979
|
+
heating_set_point_celsius: {
|
|
11980
|
+
description: "Temperature to which the thermostat should heat (in \xB0C).",
|
|
11981
|
+
format: "float",
|
|
11982
|
+
type: "number"
|
|
11983
|
+
},
|
|
11984
|
+
heating_set_point_fahrenheit: {
|
|
11985
|
+
description: "Temperature to which the thermostat should heat (in \xB0F).",
|
|
11986
|
+
format: "float",
|
|
11987
|
+
type: "number"
|
|
11988
|
+
},
|
|
11989
|
+
hvac_mode_setting: {
|
|
11990
|
+
description: "Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`.",
|
|
11991
|
+
enum: ["off", "heat", "cool", "heat_cool"],
|
|
11992
|
+
type: "string"
|
|
11993
|
+
},
|
|
11994
|
+
method: { enum: ["seam", "external"], type: "string" },
|
|
11995
|
+
occurred_at: {
|
|
11996
|
+
description: "The time when the event occurred.",
|
|
11997
|
+
format: "date-time",
|
|
11998
|
+
type: "string",
|
|
11999
|
+
"x-title": "Occurred At"
|
|
12000
|
+
},
|
|
12001
|
+
workspace_id: {
|
|
12002
|
+
description: "The ID of the workspace.",
|
|
12003
|
+
format: "uuid",
|
|
12004
|
+
type: "string",
|
|
12005
|
+
"x-title": "Workspace ID"
|
|
12006
|
+
}
|
|
12007
|
+
},
|
|
12008
|
+
required: [
|
|
12009
|
+
"event_id",
|
|
12010
|
+
"workspace_id",
|
|
12011
|
+
"created_at",
|
|
12012
|
+
"occurred_at",
|
|
12013
|
+
"device_id",
|
|
12014
|
+
"connected_account_id",
|
|
12015
|
+
"event_type",
|
|
12016
|
+
"method"
|
|
12017
|
+
],
|
|
12018
|
+
type: "object"
|
|
12019
|
+
},
|
|
12020
|
+
{
|
|
12021
|
+
description: "A thermostat's temperature reading exceeded the set threshold.",
|
|
12022
|
+
properties: {
|
|
12023
|
+
connected_account_id: {
|
|
12024
|
+
description: "ID of the connected account.",
|
|
12025
|
+
format: "uuid",
|
|
12026
|
+
type: "string",
|
|
12027
|
+
"x-title": "Connected Account ID"
|
|
12028
|
+
},
|
|
12029
|
+
created_at: {
|
|
12030
|
+
description: "The time when the event was created.",
|
|
12031
|
+
format: "date-time",
|
|
12032
|
+
type: "string",
|
|
12033
|
+
"x-title": "Created At"
|
|
12034
|
+
},
|
|
12035
|
+
device_id: {
|
|
12036
|
+
description: "ID of the device.",
|
|
12037
|
+
format: "uuid",
|
|
12038
|
+
type: "string",
|
|
12039
|
+
"x-title": "Device ID"
|
|
12040
|
+
},
|
|
12041
|
+
event_id: {
|
|
12042
|
+
description: "The ID of the event.",
|
|
12043
|
+
format: "uuid",
|
|
12044
|
+
type: "string",
|
|
12045
|
+
"x-title": "Event ID"
|
|
12046
|
+
},
|
|
12047
|
+
event_type: {
|
|
12048
|
+
enum: ["thermostat.temperature_threshold_exceeded"],
|
|
12049
|
+
type: "string"
|
|
12050
|
+
},
|
|
12051
|
+
lower_limit_celsius: {
|
|
12052
|
+
format: "float",
|
|
12053
|
+
nullable: true,
|
|
12054
|
+
type: "number"
|
|
12055
|
+
},
|
|
12056
|
+
lower_limit_fahrenheit: {
|
|
12057
|
+
format: "float",
|
|
12058
|
+
nullable: true,
|
|
12059
|
+
type: "number"
|
|
12060
|
+
},
|
|
12061
|
+
occurred_at: {
|
|
12062
|
+
description: "The time when the event occurred.",
|
|
12063
|
+
format: "date-time",
|
|
12064
|
+
type: "string",
|
|
12065
|
+
"x-title": "Occurred At"
|
|
12066
|
+
},
|
|
12067
|
+
temperature_celsius: { format: "float", type: "number" },
|
|
12068
|
+
temperature_fahrenheit: { format: "float", type: "number" },
|
|
12069
|
+
upper_limit_celsius: {
|
|
12070
|
+
format: "float",
|
|
12071
|
+
nullable: true,
|
|
12072
|
+
type: "number"
|
|
12073
|
+
},
|
|
12074
|
+
upper_limit_fahrenheit: {
|
|
12075
|
+
format: "float",
|
|
12076
|
+
nullable: true,
|
|
12077
|
+
type: "number"
|
|
12078
|
+
},
|
|
12079
|
+
workspace_id: {
|
|
12080
|
+
description: "The ID of the workspace.",
|
|
12081
|
+
format: "uuid",
|
|
12082
|
+
type: "string",
|
|
12083
|
+
"x-title": "Workspace ID"
|
|
12084
|
+
}
|
|
12085
|
+
},
|
|
12086
|
+
required: [
|
|
12087
|
+
"event_id",
|
|
12088
|
+
"workspace_id",
|
|
12089
|
+
"created_at",
|
|
12090
|
+
"occurred_at",
|
|
12091
|
+
"device_id",
|
|
12092
|
+
"connected_account_id",
|
|
12093
|
+
"event_type",
|
|
12094
|
+
"temperature_celsius",
|
|
12095
|
+
"temperature_fahrenheit",
|
|
12096
|
+
"upper_limit_celsius",
|
|
12097
|
+
"upper_limit_fahrenheit",
|
|
12098
|
+
"lower_limit_celsius",
|
|
12099
|
+
"lower_limit_fahrenheit"
|
|
12100
|
+
],
|
|
12101
|
+
type: "object"
|
|
12102
|
+
},
|
|
12103
|
+
{
|
|
12104
|
+
description: "A thermostat's temperature reading is no longer exceeding the set threshold.",
|
|
12105
|
+
properties: {
|
|
12106
|
+
connected_account_id: {
|
|
12107
|
+
description: "ID of the connected account.",
|
|
12108
|
+
format: "uuid",
|
|
12109
|
+
type: "string",
|
|
12110
|
+
"x-title": "Connected Account ID"
|
|
12111
|
+
},
|
|
12112
|
+
created_at: {
|
|
12113
|
+
description: "The time when the event was created.",
|
|
12114
|
+
format: "date-time",
|
|
12115
|
+
type: "string",
|
|
12116
|
+
"x-title": "Created At"
|
|
12117
|
+
},
|
|
12118
|
+
device_id: {
|
|
12119
|
+
description: "ID of the device.",
|
|
12120
|
+
format: "uuid",
|
|
12121
|
+
type: "string",
|
|
12122
|
+
"x-title": "Device ID"
|
|
12123
|
+
},
|
|
12124
|
+
event_id: {
|
|
12125
|
+
description: "The ID of the event.",
|
|
12126
|
+
format: "uuid",
|
|
12127
|
+
type: "string",
|
|
12128
|
+
"x-title": "Event ID"
|
|
12129
|
+
},
|
|
12130
|
+
event_type: {
|
|
12131
|
+
enum: ["thermostat.temperature_threshold_no_longer_exceeded"],
|
|
12132
|
+
type: "string"
|
|
12133
|
+
},
|
|
12134
|
+
lower_limit_celsius: {
|
|
12135
|
+
format: "float",
|
|
12136
|
+
nullable: true,
|
|
12137
|
+
type: "number"
|
|
12138
|
+
},
|
|
12139
|
+
lower_limit_fahrenheit: {
|
|
12140
|
+
format: "float",
|
|
12141
|
+
nullable: true,
|
|
12142
|
+
type: "number"
|
|
12143
|
+
},
|
|
12144
|
+
occurred_at: {
|
|
12145
|
+
description: "The time when the event occurred.",
|
|
12146
|
+
format: "date-time",
|
|
12147
|
+
type: "string",
|
|
12148
|
+
"x-title": "Occurred At"
|
|
12149
|
+
},
|
|
12150
|
+
temperature_celsius: { format: "float", type: "number" },
|
|
12151
|
+
temperature_fahrenheit: { format: "float", type: "number" },
|
|
12152
|
+
upper_limit_celsius: {
|
|
12153
|
+
format: "float",
|
|
12154
|
+
nullable: true,
|
|
12155
|
+
type: "number"
|
|
12156
|
+
},
|
|
12157
|
+
upper_limit_fahrenheit: {
|
|
12158
|
+
format: "float",
|
|
12159
|
+
nullable: true,
|
|
12160
|
+
type: "number"
|
|
12161
|
+
},
|
|
12162
|
+
workspace_id: {
|
|
12163
|
+
description: "The ID of the workspace.",
|
|
12164
|
+
format: "uuid",
|
|
12165
|
+
type: "string",
|
|
12166
|
+
"x-title": "Workspace ID"
|
|
12167
|
+
}
|
|
12168
|
+
},
|
|
12169
|
+
required: [
|
|
12170
|
+
"event_id",
|
|
12171
|
+
"workspace_id",
|
|
12172
|
+
"created_at",
|
|
12173
|
+
"occurred_at",
|
|
12174
|
+
"device_id",
|
|
12175
|
+
"connected_account_id",
|
|
12176
|
+
"event_type",
|
|
12177
|
+
"temperature_celsius",
|
|
12178
|
+
"temperature_fahrenheit",
|
|
12179
|
+
"upper_limit_celsius",
|
|
12180
|
+
"upper_limit_fahrenheit",
|
|
12181
|
+
"lower_limit_celsius",
|
|
12182
|
+
"lower_limit_fahrenheit"
|
|
12183
|
+
],
|
|
12184
|
+
type: "object"
|
|
12185
|
+
},
|
|
12186
|
+
{
|
|
12187
|
+
description: "An enrollment automation was deleted.",
|
|
12188
|
+
properties: {
|
|
12189
|
+
created_at: {
|
|
12190
|
+
description: "The time when the event was created.",
|
|
12191
|
+
format: "date-time",
|
|
12192
|
+
type: "string",
|
|
12193
|
+
"x-title": "Created At"
|
|
12194
|
+
},
|
|
12195
|
+
enrollment_automation_id: {
|
|
12196
|
+
description: "ID of the enrollment automation.",
|
|
12197
|
+
format: "uuid",
|
|
12198
|
+
type: "string",
|
|
12199
|
+
"x-title": "Enrollment Automation ID"
|
|
12200
|
+
},
|
|
12201
|
+
event_id: {
|
|
12202
|
+
description: "The ID of the event.",
|
|
12203
|
+
format: "uuid",
|
|
12204
|
+
type: "string",
|
|
12205
|
+
"x-title": "Event ID"
|
|
12206
|
+
},
|
|
12207
|
+
event_type: {
|
|
12208
|
+
enum: ["enrollment_automation.deleted"],
|
|
12209
|
+
type: "string"
|
|
12210
|
+
},
|
|
12211
|
+
occurred_at: {
|
|
12212
|
+
description: "The time when the event occurred.",
|
|
12213
|
+
format: "date-time",
|
|
12214
|
+
type: "string",
|
|
12215
|
+
"x-title": "Occurred At"
|
|
12216
|
+
},
|
|
12217
|
+
workspace_id: {
|
|
12218
|
+
description: "The ID of the workspace.",
|
|
12219
|
+
format: "uuid",
|
|
12220
|
+
type: "string",
|
|
12221
|
+
"x-title": "Workspace ID"
|
|
12222
|
+
}
|
|
12223
|
+
},
|
|
12224
|
+
required: [
|
|
12225
|
+
"event_id",
|
|
12226
|
+
"workspace_id",
|
|
12227
|
+
"created_at",
|
|
12228
|
+
"occurred_at",
|
|
12229
|
+
"enrollment_automation_id",
|
|
12230
|
+
"event_type"
|
|
12231
|
+
],
|
|
12232
|
+
type: "object"
|
|
12233
|
+
},
|
|
12234
|
+
{
|
|
12235
|
+
description: "A phone device was deactivated.",
|
|
12236
|
+
properties: {
|
|
12237
|
+
created_at: {
|
|
12238
|
+
description: "The time when the event was created.",
|
|
12239
|
+
format: "date-time",
|
|
12240
|
+
type: "string",
|
|
12241
|
+
"x-title": "Created At"
|
|
12242
|
+
},
|
|
12243
|
+
device_id: {
|
|
12244
|
+
description: "ID of the device.",
|
|
12245
|
+
format: "uuid",
|
|
12246
|
+
type: "string",
|
|
12247
|
+
"x-title": "Device ID"
|
|
12248
|
+
},
|
|
12249
|
+
event_id: {
|
|
12250
|
+
description: "The ID of the event.",
|
|
12251
|
+
format: "uuid",
|
|
12252
|
+
type: "string",
|
|
12253
|
+
"x-title": "Event ID"
|
|
12254
|
+
},
|
|
12255
|
+
event_type: { enum: ["phone.deactivated"], type: "string" },
|
|
12256
|
+
occurred_at: {
|
|
12257
|
+
description: "The time when the event occurred.",
|
|
12258
|
+
format: "date-time",
|
|
12259
|
+
type: "string",
|
|
12260
|
+
"x-title": "Occurred At"
|
|
12261
|
+
},
|
|
12262
|
+
workspace_id: {
|
|
12263
|
+
description: "The ID of the workspace.",
|
|
12264
|
+
format: "uuid",
|
|
12265
|
+
type: "string",
|
|
12266
|
+
"x-title": "Workspace ID"
|
|
12267
|
+
}
|
|
12268
|
+
},
|
|
12269
|
+
required: [
|
|
12270
|
+
"event_id",
|
|
12271
|
+
"workspace_id",
|
|
12272
|
+
"created_at",
|
|
12273
|
+
"occurred_at",
|
|
12274
|
+
"device_id",
|
|
12275
|
+
"event_type"
|
|
12276
|
+
],
|
|
12277
|
+
type: "object"
|
|
12278
|
+
}
|
|
12279
|
+
]
|
|
8165
12280
|
},
|
|
8166
12281
|
network: {
|
|
8167
12282
|
properties: {
|
|
@@ -18823,7 +22938,13 @@ var openapi_default = {
|
|
|
18823
22938
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
18824
22939
|
type: "string"
|
|
18825
22940
|
},
|
|
18826
|
-
manual_override_allowed: {
|
|
22941
|
+
manual_override_allowed: {
|
|
22942
|
+
default: true,
|
|
22943
|
+
deprecated: true,
|
|
22944
|
+
description: "Indicates whether a person at the thermostat or using the API can change the thermostat's settings.",
|
|
22945
|
+
type: "boolean",
|
|
22946
|
+
"x-deprecated": "Use 'thermostat_schedule.is_override_allowed'"
|
|
22947
|
+
},
|
|
18827
22948
|
name: {
|
|
18828
22949
|
default: null,
|
|
18829
22950
|
description: "User-friendly name to identify the climate preset.",
|
|
@@ -19505,10 +23626,14 @@ var openapi_default = {
|
|
|
19505
23626
|
description: "Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
19506
23627
|
type: "string"
|
|
19507
23628
|
},
|
|
19508
|
-
is_override_allowed: {
|
|
23629
|
+
is_override_allowed: {
|
|
23630
|
+
default: false,
|
|
23631
|
+
description: "Indicates whether a person at the thermostat or using the API can change the thermostat's settings while the schedule is active. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).",
|
|
23632
|
+
type: "boolean"
|
|
23633
|
+
},
|
|
19509
23634
|
max_override_period_minutes: {
|
|
19510
23635
|
default: 0,
|
|
19511
|
-
description: "Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled climate preset. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).",
|
|
23636
|
+
description: "Number of minutes for which a person at the thermostat or using the API can change the thermostat's settings after the activation of the scheduled climate preset. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).",
|
|
19512
23637
|
minimum: 0,
|
|
19513
23638
|
type: "integer"
|
|
19514
23639
|
},
|
|
@@ -19757,9 +23882,12 @@ var openapi_default = {
|
|
|
19757
23882
|
description: "Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
19758
23883
|
type: "string"
|
|
19759
23884
|
},
|
|
19760
|
-
is_override_allowed: {
|
|
23885
|
+
is_override_allowed: {
|
|
23886
|
+
description: "Indicates whether a person at the thermostat or using the API can change the thermostat's settings while the schedule is active. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).",
|
|
23887
|
+
type: "boolean"
|
|
23888
|
+
},
|
|
19761
23889
|
max_override_period_minutes: {
|
|
19762
|
-
description: "Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled climate preset. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).",
|
|
23890
|
+
description: "Number of minutes for which a person at the thermostat or using the API can change the thermostat's settings after the activation of the scheduled climate preset. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).",
|
|
19763
23891
|
minimum: 0,
|
|
19764
23892
|
type: "integer"
|
|
19765
23893
|
},
|
|
@@ -19827,9 +23955,12 @@ var openapi_default = {
|
|
|
19827
23955
|
description: "Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
19828
23956
|
type: "string"
|
|
19829
23957
|
},
|
|
19830
|
-
is_override_allowed: {
|
|
23958
|
+
is_override_allowed: {
|
|
23959
|
+
description: "Indicates whether a person at the thermostat or using the API can change the thermostat's settings while the schedule is active. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).",
|
|
23960
|
+
type: "boolean"
|
|
23961
|
+
},
|
|
19831
23962
|
max_override_period_minutes: {
|
|
19832
|
-
description: "Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled climate preset. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).",
|
|
23963
|
+
description: "Number of minutes for which a person at the thermostat or using the API can change the thermostat's settings after the activation of the scheduled climate preset. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).",
|
|
19833
23964
|
minimum: 0,
|
|
19834
23965
|
type: "integer"
|
|
19835
23966
|
},
|