@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
|
@@ -5302,44 +5302,4159 @@ export default {
|
|
|
5302
5302
|
type: 'object',
|
|
5303
5303
|
},
|
|
5304
5304
|
event: {
|
|
5305
|
-
|
|
5306
|
-
|
|
5307
|
-
|
|
5308
|
-
|
|
5309
|
-
|
|
5310
|
-
|
|
5311
|
-
|
|
5312
|
-
|
|
5313
|
-
|
|
5314
|
-
|
|
5315
|
-
|
|
5316
|
-
|
|
5317
|
-
|
|
5318
|
-
|
|
5319
|
-
|
|
5320
|
-
|
|
5321
|
-
|
|
5322
|
-
|
|
5323
|
-
|
|
5324
|
-
|
|
5325
|
-
|
|
5326
|
-
|
|
5327
|
-
|
|
5328
|
-
|
|
5329
|
-
|
|
5330
|
-
|
|
5305
|
+
discriminator: { propertyName: 'event_type' },
|
|
5306
|
+
oneOf: [
|
|
5307
|
+
{
|
|
5308
|
+
description: 'An access code was created.',
|
|
5309
|
+
properties: {
|
|
5310
|
+
access_code_id: {
|
|
5311
|
+
description: 'The ID of the access code.',
|
|
5312
|
+
format: 'uuid',
|
|
5313
|
+
type: 'string',
|
|
5314
|
+
'x-title': 'Access Code ID',
|
|
5315
|
+
},
|
|
5316
|
+
connected_account_id: {
|
|
5317
|
+
description: 'The ID of the connected account.',
|
|
5318
|
+
format: 'uuid',
|
|
5319
|
+
type: 'string',
|
|
5320
|
+
'x-title': 'Connected Account ID',
|
|
5321
|
+
},
|
|
5322
|
+
created_at: {
|
|
5323
|
+
description: 'The time when the event was created.',
|
|
5324
|
+
format: 'date-time',
|
|
5325
|
+
type: 'string',
|
|
5326
|
+
'x-title': 'Created At',
|
|
5327
|
+
},
|
|
5328
|
+
device_id: {
|
|
5329
|
+
description: 'The ID of the device.',
|
|
5330
|
+
format: 'uuid',
|
|
5331
|
+
type: 'string',
|
|
5332
|
+
'x-title': 'Device ID',
|
|
5333
|
+
},
|
|
5334
|
+
event_id: {
|
|
5335
|
+
description: 'The ID of the event.',
|
|
5336
|
+
format: 'uuid',
|
|
5337
|
+
type: 'string',
|
|
5338
|
+
'x-title': 'Event ID',
|
|
5339
|
+
},
|
|
5340
|
+
event_type: { enum: ['access_code.created'], type: 'string' },
|
|
5341
|
+
occurred_at: {
|
|
5342
|
+
description: 'The time when the event occurred.',
|
|
5343
|
+
format: 'date-time',
|
|
5344
|
+
type: 'string',
|
|
5345
|
+
'x-title': 'Occurred At',
|
|
5346
|
+
},
|
|
5347
|
+
workspace_id: {
|
|
5348
|
+
description: 'The ID of the workspace.',
|
|
5349
|
+
format: 'uuid',
|
|
5350
|
+
type: 'string',
|
|
5351
|
+
'x-title': 'Workspace ID',
|
|
5352
|
+
},
|
|
5353
|
+
},
|
|
5354
|
+
required: [
|
|
5355
|
+
'event_id',
|
|
5356
|
+
'workspace_id',
|
|
5357
|
+
'created_at',
|
|
5358
|
+
'occurred_at',
|
|
5359
|
+
'access_code_id',
|
|
5360
|
+
'device_id',
|
|
5361
|
+
'connected_account_id',
|
|
5362
|
+
'event_type',
|
|
5363
|
+
],
|
|
5364
|
+
type: 'object',
|
|
5365
|
+
},
|
|
5366
|
+
{
|
|
5367
|
+
description: 'An access code was changed.',
|
|
5368
|
+
properties: {
|
|
5369
|
+
access_code_id: {
|
|
5370
|
+
description: 'The ID of the access code.',
|
|
5371
|
+
format: 'uuid',
|
|
5372
|
+
type: 'string',
|
|
5373
|
+
'x-title': 'Access Code ID',
|
|
5374
|
+
},
|
|
5375
|
+
connected_account_id: {
|
|
5376
|
+
description: 'The ID of the connected account.',
|
|
5377
|
+
format: 'uuid',
|
|
5378
|
+
type: 'string',
|
|
5379
|
+
'x-title': 'Connected Account ID',
|
|
5380
|
+
},
|
|
5381
|
+
created_at: {
|
|
5382
|
+
description: 'The time when the event was created.',
|
|
5383
|
+
format: 'date-time',
|
|
5384
|
+
type: 'string',
|
|
5385
|
+
'x-title': 'Created At',
|
|
5386
|
+
},
|
|
5387
|
+
device_id: {
|
|
5388
|
+
description: 'The ID of the device.',
|
|
5389
|
+
format: 'uuid',
|
|
5390
|
+
type: 'string',
|
|
5391
|
+
'x-title': 'Device ID',
|
|
5392
|
+
},
|
|
5393
|
+
event_id: {
|
|
5394
|
+
description: 'The ID of the event.',
|
|
5395
|
+
format: 'uuid',
|
|
5396
|
+
type: 'string',
|
|
5397
|
+
'x-title': 'Event ID',
|
|
5398
|
+
},
|
|
5399
|
+
event_type: { enum: ['access_code.changed'], type: 'string' },
|
|
5400
|
+
occurred_at: {
|
|
5401
|
+
description: 'The time when the event occurred.',
|
|
5402
|
+
format: 'date-time',
|
|
5403
|
+
type: 'string',
|
|
5404
|
+
'x-title': 'Occurred At',
|
|
5405
|
+
},
|
|
5406
|
+
workspace_id: {
|
|
5407
|
+
description: 'The ID of the workspace.',
|
|
5408
|
+
format: 'uuid',
|
|
5409
|
+
type: 'string',
|
|
5410
|
+
'x-title': 'Workspace ID',
|
|
5411
|
+
},
|
|
5412
|
+
},
|
|
5413
|
+
required: [
|
|
5414
|
+
'event_id',
|
|
5415
|
+
'workspace_id',
|
|
5416
|
+
'created_at',
|
|
5417
|
+
'occurred_at',
|
|
5418
|
+
'access_code_id',
|
|
5419
|
+
'device_id',
|
|
5420
|
+
'connected_account_id',
|
|
5421
|
+
'event_type',
|
|
5422
|
+
],
|
|
5423
|
+
type: 'object',
|
|
5424
|
+
},
|
|
5425
|
+
{
|
|
5426
|
+
description: 'An access code was natively scheduled on a device.',
|
|
5427
|
+
properties: {
|
|
5428
|
+
access_code_id: {
|
|
5429
|
+
description: 'The ID of the access code.',
|
|
5430
|
+
format: 'uuid',
|
|
5431
|
+
type: 'string',
|
|
5432
|
+
'x-title': 'Access Code ID',
|
|
5433
|
+
},
|
|
5434
|
+
code: {
|
|
5435
|
+
description: 'The code of the access code.',
|
|
5436
|
+
type: 'string',
|
|
5437
|
+
'x-title': 'Access Code',
|
|
5438
|
+
},
|
|
5439
|
+
connected_account_id: {
|
|
5440
|
+
description: 'The ID of the connected account.',
|
|
5441
|
+
format: 'uuid',
|
|
5442
|
+
type: 'string',
|
|
5443
|
+
'x-title': 'Connected Account ID',
|
|
5444
|
+
},
|
|
5445
|
+
created_at: {
|
|
5446
|
+
description: 'The time when the event was created.',
|
|
5447
|
+
format: 'date-time',
|
|
5448
|
+
type: 'string',
|
|
5449
|
+
'x-title': 'Created At',
|
|
5450
|
+
},
|
|
5451
|
+
device_id: {
|
|
5452
|
+
description: 'The ID of the device.',
|
|
5453
|
+
format: 'uuid',
|
|
5454
|
+
type: 'string',
|
|
5455
|
+
'x-title': 'Device ID',
|
|
5456
|
+
},
|
|
5457
|
+
event_id: {
|
|
5458
|
+
description: 'The ID of the event.',
|
|
5459
|
+
format: 'uuid',
|
|
5460
|
+
type: 'string',
|
|
5461
|
+
'x-title': 'Event ID',
|
|
5462
|
+
},
|
|
5463
|
+
event_type: {
|
|
5464
|
+
enum: ['access_code.scheduled_on_device'],
|
|
5465
|
+
type: 'string',
|
|
5466
|
+
},
|
|
5467
|
+
occurred_at: {
|
|
5468
|
+
description: 'The time when the event occurred.',
|
|
5469
|
+
format: 'date-time',
|
|
5470
|
+
type: 'string',
|
|
5471
|
+
'x-title': 'Occurred At',
|
|
5472
|
+
},
|
|
5473
|
+
workspace_id: {
|
|
5474
|
+
description: 'The ID of the workspace.',
|
|
5475
|
+
format: 'uuid',
|
|
5476
|
+
type: 'string',
|
|
5477
|
+
'x-title': 'Workspace ID',
|
|
5478
|
+
},
|
|
5479
|
+
},
|
|
5480
|
+
required: [
|
|
5481
|
+
'event_id',
|
|
5482
|
+
'workspace_id',
|
|
5483
|
+
'created_at',
|
|
5484
|
+
'occurred_at',
|
|
5485
|
+
'access_code_id',
|
|
5486
|
+
'device_id',
|
|
5487
|
+
'connected_account_id',
|
|
5488
|
+
'event_type',
|
|
5489
|
+
'code',
|
|
5490
|
+
],
|
|
5491
|
+
type: 'object',
|
|
5492
|
+
},
|
|
5493
|
+
{
|
|
5494
|
+
description: 'An access code was set on a device.',
|
|
5495
|
+
properties: {
|
|
5496
|
+
access_code_id: {
|
|
5497
|
+
description: 'The ID of the access code.',
|
|
5498
|
+
format: 'uuid',
|
|
5499
|
+
type: 'string',
|
|
5500
|
+
'x-title': 'Access Code ID',
|
|
5501
|
+
},
|
|
5502
|
+
code: {
|
|
5503
|
+
description: 'The code of the access code.',
|
|
5504
|
+
type: 'string',
|
|
5505
|
+
'x-title': 'Access Code',
|
|
5506
|
+
},
|
|
5507
|
+
connected_account_id: {
|
|
5508
|
+
description: 'The ID of the connected account.',
|
|
5509
|
+
format: 'uuid',
|
|
5510
|
+
type: 'string',
|
|
5511
|
+
'x-title': 'Connected Account ID',
|
|
5512
|
+
},
|
|
5513
|
+
created_at: {
|
|
5514
|
+
description: 'The time when the event was created.',
|
|
5515
|
+
format: 'date-time',
|
|
5516
|
+
type: 'string',
|
|
5517
|
+
'x-title': 'Created At',
|
|
5518
|
+
},
|
|
5519
|
+
device_id: {
|
|
5520
|
+
description: 'The ID of the device.',
|
|
5521
|
+
format: 'uuid',
|
|
5522
|
+
type: 'string',
|
|
5523
|
+
'x-title': 'Device ID',
|
|
5524
|
+
},
|
|
5525
|
+
event_id: {
|
|
5526
|
+
description: 'The ID of the event.',
|
|
5527
|
+
format: 'uuid',
|
|
5528
|
+
type: 'string',
|
|
5529
|
+
'x-title': 'Event ID',
|
|
5530
|
+
},
|
|
5531
|
+
event_type: {
|
|
5532
|
+
enum: ['access_code.set_on_device'],
|
|
5533
|
+
type: 'string',
|
|
5534
|
+
},
|
|
5535
|
+
occurred_at: {
|
|
5536
|
+
description: 'The time when the event occurred.',
|
|
5537
|
+
format: 'date-time',
|
|
5538
|
+
type: 'string',
|
|
5539
|
+
'x-title': 'Occurred At',
|
|
5540
|
+
},
|
|
5541
|
+
workspace_id: {
|
|
5542
|
+
description: 'The ID of the workspace.',
|
|
5543
|
+
format: 'uuid',
|
|
5544
|
+
type: 'string',
|
|
5545
|
+
'x-title': 'Workspace ID',
|
|
5546
|
+
},
|
|
5547
|
+
},
|
|
5548
|
+
required: [
|
|
5549
|
+
'event_id',
|
|
5550
|
+
'workspace_id',
|
|
5551
|
+
'created_at',
|
|
5552
|
+
'occurred_at',
|
|
5553
|
+
'access_code_id',
|
|
5554
|
+
'device_id',
|
|
5555
|
+
'connected_account_id',
|
|
5556
|
+
'event_type',
|
|
5557
|
+
'code',
|
|
5558
|
+
],
|
|
5559
|
+
type: 'object',
|
|
5560
|
+
},
|
|
5561
|
+
{
|
|
5562
|
+
description: 'An access code was removed from a device.',
|
|
5563
|
+
properties: {
|
|
5564
|
+
access_code_id: {
|
|
5565
|
+
description: 'The ID of the access code.',
|
|
5566
|
+
format: 'uuid',
|
|
5567
|
+
type: 'string',
|
|
5568
|
+
'x-title': 'Access Code ID',
|
|
5569
|
+
},
|
|
5570
|
+
connected_account_id: {
|
|
5571
|
+
description: 'The ID of the connected account.',
|
|
5572
|
+
format: 'uuid',
|
|
5573
|
+
type: 'string',
|
|
5574
|
+
'x-title': 'Connected Account ID',
|
|
5575
|
+
},
|
|
5576
|
+
created_at: {
|
|
5577
|
+
description: 'The time when the event was created.',
|
|
5578
|
+
format: 'date-time',
|
|
5579
|
+
type: 'string',
|
|
5580
|
+
'x-title': 'Created At',
|
|
5581
|
+
},
|
|
5582
|
+
device_id: {
|
|
5583
|
+
description: 'The ID of the device.',
|
|
5584
|
+
format: 'uuid',
|
|
5585
|
+
type: 'string',
|
|
5586
|
+
'x-title': 'Device ID',
|
|
5587
|
+
},
|
|
5588
|
+
event_id: {
|
|
5589
|
+
description: 'The ID of the event.',
|
|
5590
|
+
format: 'uuid',
|
|
5591
|
+
type: 'string',
|
|
5592
|
+
'x-title': 'Event ID',
|
|
5593
|
+
},
|
|
5594
|
+
event_type: {
|
|
5595
|
+
enum: ['access_code.removed_from_device'],
|
|
5596
|
+
type: 'string',
|
|
5597
|
+
},
|
|
5598
|
+
occurred_at: {
|
|
5599
|
+
description: 'The time when the event occurred.',
|
|
5600
|
+
format: 'date-time',
|
|
5601
|
+
type: 'string',
|
|
5602
|
+
'x-title': 'Occurred At',
|
|
5603
|
+
},
|
|
5604
|
+
workspace_id: {
|
|
5605
|
+
description: 'The ID of the workspace.',
|
|
5606
|
+
format: 'uuid',
|
|
5607
|
+
type: 'string',
|
|
5608
|
+
'x-title': 'Workspace ID',
|
|
5609
|
+
},
|
|
5610
|
+
},
|
|
5611
|
+
required: [
|
|
5612
|
+
'event_id',
|
|
5613
|
+
'workspace_id',
|
|
5614
|
+
'created_at',
|
|
5615
|
+
'occurred_at',
|
|
5616
|
+
'access_code_id',
|
|
5617
|
+
'device_id',
|
|
5618
|
+
'connected_account_id',
|
|
5619
|
+
'event_type',
|
|
5620
|
+
],
|
|
5621
|
+
type: 'object',
|
|
5622
|
+
},
|
|
5623
|
+
{
|
|
5624
|
+
description: 'There was an unusually long delay in setting an access code on a device.',
|
|
5625
|
+
properties: {
|
|
5626
|
+
access_code_id: {
|
|
5627
|
+
description: 'The ID of the access code.',
|
|
5628
|
+
format: 'uuid',
|
|
5629
|
+
type: 'string',
|
|
5630
|
+
'x-title': 'Access Code ID',
|
|
5631
|
+
},
|
|
5632
|
+
connected_account_id: {
|
|
5633
|
+
description: 'The ID of the connected account.',
|
|
5634
|
+
format: 'uuid',
|
|
5635
|
+
type: 'string',
|
|
5636
|
+
'x-title': 'Connected Account ID',
|
|
5637
|
+
},
|
|
5638
|
+
created_at: {
|
|
5639
|
+
description: 'The time when the event was created.',
|
|
5640
|
+
format: 'date-time',
|
|
5641
|
+
type: 'string',
|
|
5642
|
+
'x-title': 'Created At',
|
|
5643
|
+
},
|
|
5644
|
+
device_id: {
|
|
5645
|
+
description: 'The ID of the device.',
|
|
5646
|
+
format: 'uuid',
|
|
5647
|
+
type: 'string',
|
|
5648
|
+
'x-title': 'Device ID',
|
|
5649
|
+
},
|
|
5650
|
+
event_id: {
|
|
5651
|
+
description: 'The ID of the event.',
|
|
5652
|
+
format: 'uuid',
|
|
5653
|
+
type: 'string',
|
|
5654
|
+
'x-title': 'Event ID',
|
|
5655
|
+
},
|
|
5656
|
+
event_type: {
|
|
5657
|
+
enum: ['access_code.delay_in_setting_on_device'],
|
|
5658
|
+
type: 'string',
|
|
5659
|
+
},
|
|
5660
|
+
occurred_at: {
|
|
5661
|
+
description: 'The time when the event occurred.',
|
|
5662
|
+
format: 'date-time',
|
|
5663
|
+
type: 'string',
|
|
5664
|
+
'x-title': 'Occurred At',
|
|
5665
|
+
},
|
|
5666
|
+
workspace_id: {
|
|
5667
|
+
description: 'The ID of the workspace.',
|
|
5668
|
+
format: 'uuid',
|
|
5669
|
+
type: 'string',
|
|
5670
|
+
'x-title': 'Workspace ID',
|
|
5671
|
+
},
|
|
5672
|
+
},
|
|
5673
|
+
required: [
|
|
5674
|
+
'event_id',
|
|
5675
|
+
'workspace_id',
|
|
5676
|
+
'created_at',
|
|
5677
|
+
'occurred_at',
|
|
5678
|
+
'access_code_id',
|
|
5679
|
+
'device_id',
|
|
5680
|
+
'connected_account_id',
|
|
5681
|
+
'event_type',
|
|
5682
|
+
],
|
|
5683
|
+
type: 'object',
|
|
5684
|
+
},
|
|
5685
|
+
{
|
|
5686
|
+
description: 'An access code failed to be set on a device.',
|
|
5687
|
+
properties: {
|
|
5688
|
+
access_code_id: {
|
|
5689
|
+
description: 'The ID of the access code.',
|
|
5690
|
+
format: 'uuid',
|
|
5691
|
+
type: 'string',
|
|
5692
|
+
'x-title': 'Access Code ID',
|
|
5693
|
+
},
|
|
5694
|
+
connected_account_id: {
|
|
5695
|
+
description: 'The ID of the connected account.',
|
|
5696
|
+
format: 'uuid',
|
|
5697
|
+
type: 'string',
|
|
5698
|
+
'x-title': 'Connected Account ID',
|
|
5699
|
+
},
|
|
5700
|
+
created_at: {
|
|
5701
|
+
description: 'The time when the event was created.',
|
|
5702
|
+
format: 'date-time',
|
|
5703
|
+
type: 'string',
|
|
5704
|
+
'x-title': 'Created At',
|
|
5705
|
+
},
|
|
5706
|
+
device_id: {
|
|
5707
|
+
description: 'The ID of the device.',
|
|
5708
|
+
format: 'uuid',
|
|
5709
|
+
type: 'string',
|
|
5710
|
+
'x-title': 'Device ID',
|
|
5711
|
+
},
|
|
5712
|
+
event_id: {
|
|
5713
|
+
description: 'The ID of the event.',
|
|
5714
|
+
format: 'uuid',
|
|
5715
|
+
type: 'string',
|
|
5716
|
+
'x-title': 'Event ID',
|
|
5717
|
+
},
|
|
5718
|
+
event_type: {
|
|
5719
|
+
enum: ['access_code.failed_to_set_on_device'],
|
|
5720
|
+
type: 'string',
|
|
5721
|
+
},
|
|
5722
|
+
occurred_at: {
|
|
5723
|
+
description: 'The time when the event occurred.',
|
|
5724
|
+
format: 'date-time',
|
|
5725
|
+
type: 'string',
|
|
5726
|
+
'x-title': 'Occurred At',
|
|
5727
|
+
},
|
|
5728
|
+
workspace_id: {
|
|
5729
|
+
description: 'The ID of the workspace.',
|
|
5730
|
+
format: 'uuid',
|
|
5731
|
+
type: 'string',
|
|
5732
|
+
'x-title': 'Workspace ID',
|
|
5733
|
+
},
|
|
5734
|
+
},
|
|
5735
|
+
required: [
|
|
5736
|
+
'event_id',
|
|
5737
|
+
'workspace_id',
|
|
5738
|
+
'created_at',
|
|
5739
|
+
'occurred_at',
|
|
5740
|
+
'access_code_id',
|
|
5741
|
+
'device_id',
|
|
5742
|
+
'connected_account_id',
|
|
5743
|
+
'event_type',
|
|
5744
|
+
],
|
|
5745
|
+
type: 'object',
|
|
5746
|
+
},
|
|
5747
|
+
{
|
|
5748
|
+
description: 'An access code was deleted.',
|
|
5749
|
+
properties: {
|
|
5750
|
+
access_code_id: {
|
|
5751
|
+
description: 'The ID of the access code.',
|
|
5752
|
+
format: 'uuid',
|
|
5753
|
+
type: 'string',
|
|
5754
|
+
'x-title': 'Access Code ID',
|
|
5755
|
+
},
|
|
5756
|
+
code: {
|
|
5757
|
+
description: 'The code of the access code.',
|
|
5758
|
+
nullable: true,
|
|
5759
|
+
type: 'string',
|
|
5760
|
+
'x-title': 'Access Code',
|
|
5761
|
+
},
|
|
5762
|
+
connected_account_id: {
|
|
5763
|
+
description: 'The ID of the connected account.',
|
|
5764
|
+
format: 'uuid',
|
|
5765
|
+
type: 'string',
|
|
5766
|
+
'x-title': 'Connected Account ID',
|
|
5767
|
+
},
|
|
5768
|
+
created_at: {
|
|
5769
|
+
description: 'The time when the event was created.',
|
|
5770
|
+
format: 'date-time',
|
|
5771
|
+
type: 'string',
|
|
5772
|
+
'x-title': 'Created At',
|
|
5773
|
+
},
|
|
5774
|
+
device_id: {
|
|
5775
|
+
description: 'The ID of the device.',
|
|
5776
|
+
format: 'uuid',
|
|
5777
|
+
type: 'string',
|
|
5778
|
+
'x-title': 'Device ID',
|
|
5779
|
+
},
|
|
5780
|
+
event_id: {
|
|
5781
|
+
description: 'The ID of the event.',
|
|
5782
|
+
format: 'uuid',
|
|
5783
|
+
type: 'string',
|
|
5784
|
+
'x-title': 'Event ID',
|
|
5785
|
+
},
|
|
5786
|
+
event_type: { enum: ['access_code.deleted'], type: 'string' },
|
|
5787
|
+
occurred_at: {
|
|
5788
|
+
description: 'The time when the event occurred.',
|
|
5789
|
+
format: 'date-time',
|
|
5790
|
+
type: 'string',
|
|
5791
|
+
'x-title': 'Occurred At',
|
|
5792
|
+
},
|
|
5793
|
+
workspace_id: {
|
|
5794
|
+
description: 'The ID of the workspace.',
|
|
5795
|
+
format: 'uuid',
|
|
5796
|
+
type: 'string',
|
|
5797
|
+
'x-title': 'Workspace ID',
|
|
5798
|
+
},
|
|
5799
|
+
},
|
|
5800
|
+
required: [
|
|
5801
|
+
'event_id',
|
|
5802
|
+
'workspace_id',
|
|
5803
|
+
'created_at',
|
|
5804
|
+
'occurred_at',
|
|
5805
|
+
'access_code_id',
|
|
5806
|
+
'device_id',
|
|
5807
|
+
'connected_account_id',
|
|
5808
|
+
'event_type',
|
|
5809
|
+
'code',
|
|
5810
|
+
],
|
|
5811
|
+
type: 'object',
|
|
5812
|
+
},
|
|
5813
|
+
{
|
|
5814
|
+
description: 'There was an unusually long delay in removing an access code from a device.',
|
|
5815
|
+
properties: {
|
|
5816
|
+
access_code_id: {
|
|
5817
|
+
description: 'The ID of the access code.',
|
|
5818
|
+
format: 'uuid',
|
|
5819
|
+
type: 'string',
|
|
5820
|
+
'x-title': 'Access Code ID',
|
|
5821
|
+
},
|
|
5822
|
+
connected_account_id: {
|
|
5823
|
+
description: 'The ID of the connected account.',
|
|
5824
|
+
format: 'uuid',
|
|
5825
|
+
type: 'string',
|
|
5826
|
+
'x-title': 'Connected Account ID',
|
|
5827
|
+
},
|
|
5828
|
+
created_at: {
|
|
5829
|
+
description: 'The time when the event was created.',
|
|
5830
|
+
format: 'date-time',
|
|
5831
|
+
type: 'string',
|
|
5832
|
+
'x-title': 'Created At',
|
|
5833
|
+
},
|
|
5834
|
+
device_id: {
|
|
5835
|
+
description: 'The ID of the device.',
|
|
5836
|
+
format: 'uuid',
|
|
5837
|
+
type: 'string',
|
|
5838
|
+
'x-title': 'Device ID',
|
|
5839
|
+
},
|
|
5840
|
+
event_id: {
|
|
5841
|
+
description: 'The ID of the event.',
|
|
5842
|
+
format: 'uuid',
|
|
5843
|
+
type: 'string',
|
|
5844
|
+
'x-title': 'Event ID',
|
|
5845
|
+
},
|
|
5846
|
+
event_type: {
|
|
5847
|
+
enum: ['access_code.delay_in_removing_from_device'],
|
|
5848
|
+
type: 'string',
|
|
5849
|
+
},
|
|
5850
|
+
occurred_at: {
|
|
5851
|
+
description: 'The time when the event occurred.',
|
|
5852
|
+
format: 'date-time',
|
|
5853
|
+
type: 'string',
|
|
5854
|
+
'x-title': 'Occurred At',
|
|
5855
|
+
},
|
|
5856
|
+
workspace_id: {
|
|
5857
|
+
description: 'The ID of the workspace.',
|
|
5858
|
+
format: 'uuid',
|
|
5859
|
+
type: 'string',
|
|
5860
|
+
'x-title': 'Workspace ID',
|
|
5861
|
+
},
|
|
5862
|
+
},
|
|
5863
|
+
required: [
|
|
5864
|
+
'event_id',
|
|
5865
|
+
'workspace_id',
|
|
5866
|
+
'created_at',
|
|
5867
|
+
'occurred_at',
|
|
5868
|
+
'access_code_id',
|
|
5869
|
+
'device_id',
|
|
5870
|
+
'connected_account_id',
|
|
5871
|
+
'event_type',
|
|
5872
|
+
],
|
|
5873
|
+
type: 'object',
|
|
5874
|
+
},
|
|
5875
|
+
{
|
|
5876
|
+
description: 'An access code failed to be removed from a device.',
|
|
5877
|
+
properties: {
|
|
5878
|
+
access_code_id: {
|
|
5879
|
+
description: 'The ID of the access code.',
|
|
5880
|
+
format: 'uuid',
|
|
5881
|
+
type: 'string',
|
|
5882
|
+
'x-title': 'Access Code ID',
|
|
5883
|
+
},
|
|
5884
|
+
connected_account_id: {
|
|
5885
|
+
description: 'The ID of the connected account.',
|
|
5886
|
+
format: 'uuid',
|
|
5887
|
+
type: 'string',
|
|
5888
|
+
'x-title': 'Connected Account ID',
|
|
5889
|
+
},
|
|
5890
|
+
created_at: {
|
|
5891
|
+
description: 'The time when the event was created.',
|
|
5892
|
+
format: 'date-time',
|
|
5893
|
+
type: 'string',
|
|
5894
|
+
'x-title': 'Created At',
|
|
5895
|
+
},
|
|
5896
|
+
device_id: {
|
|
5897
|
+
description: 'The ID of the device.',
|
|
5898
|
+
format: 'uuid',
|
|
5899
|
+
type: 'string',
|
|
5900
|
+
'x-title': 'Device ID',
|
|
5901
|
+
},
|
|
5902
|
+
event_id: {
|
|
5903
|
+
description: 'The ID of the event.',
|
|
5904
|
+
format: 'uuid',
|
|
5905
|
+
type: 'string',
|
|
5906
|
+
'x-title': 'Event ID',
|
|
5907
|
+
},
|
|
5908
|
+
event_type: {
|
|
5909
|
+
enum: ['access_code.failed_to_remove_from_device'],
|
|
5910
|
+
type: 'string',
|
|
5911
|
+
},
|
|
5912
|
+
occurred_at: {
|
|
5913
|
+
description: 'The time when the event occurred.',
|
|
5914
|
+
format: 'date-time',
|
|
5915
|
+
type: 'string',
|
|
5916
|
+
'x-title': 'Occurred At',
|
|
5917
|
+
},
|
|
5918
|
+
workspace_id: {
|
|
5919
|
+
description: 'The ID of the workspace.',
|
|
5920
|
+
format: 'uuid',
|
|
5921
|
+
type: 'string',
|
|
5922
|
+
'x-title': 'Workspace ID',
|
|
5923
|
+
},
|
|
5924
|
+
},
|
|
5925
|
+
required: [
|
|
5926
|
+
'event_id',
|
|
5927
|
+
'workspace_id',
|
|
5928
|
+
'created_at',
|
|
5929
|
+
'occurred_at',
|
|
5930
|
+
'access_code_id',
|
|
5931
|
+
'device_id',
|
|
5932
|
+
'connected_account_id',
|
|
5933
|
+
'event_type',
|
|
5934
|
+
],
|
|
5935
|
+
type: 'object',
|
|
5936
|
+
},
|
|
5937
|
+
{
|
|
5938
|
+
description: 'An access code was modified external to Seam.',
|
|
5939
|
+
properties: {
|
|
5940
|
+
access_code_id: {
|
|
5941
|
+
description: 'The ID of the access code.',
|
|
5942
|
+
format: 'uuid',
|
|
5943
|
+
type: 'string',
|
|
5944
|
+
'x-title': 'Access Code ID',
|
|
5945
|
+
},
|
|
5946
|
+
connected_account_id: {
|
|
5947
|
+
description: 'The ID of the connected account.',
|
|
5948
|
+
format: 'uuid',
|
|
5949
|
+
type: 'string',
|
|
5950
|
+
'x-title': 'Connected Account ID',
|
|
5951
|
+
},
|
|
5952
|
+
created_at: {
|
|
5953
|
+
description: 'The time when the event was created.',
|
|
5954
|
+
format: 'date-time',
|
|
5955
|
+
type: 'string',
|
|
5956
|
+
'x-title': 'Created At',
|
|
5957
|
+
},
|
|
5958
|
+
device_id: {
|
|
5959
|
+
description: 'The ID of the device.',
|
|
5960
|
+
format: 'uuid',
|
|
5961
|
+
type: 'string',
|
|
5962
|
+
'x-title': 'Device ID',
|
|
5963
|
+
},
|
|
5964
|
+
event_id: {
|
|
5965
|
+
description: 'The ID of the event.',
|
|
5966
|
+
format: 'uuid',
|
|
5967
|
+
type: 'string',
|
|
5968
|
+
'x-title': 'Event ID',
|
|
5969
|
+
},
|
|
5970
|
+
event_type: {
|
|
5971
|
+
enum: ['access_code.modified_external_to_seam'],
|
|
5972
|
+
type: 'string',
|
|
5973
|
+
},
|
|
5974
|
+
occurred_at: {
|
|
5975
|
+
description: 'The time when the event occurred.',
|
|
5976
|
+
format: 'date-time',
|
|
5977
|
+
type: 'string',
|
|
5978
|
+
'x-title': 'Occurred At',
|
|
5979
|
+
},
|
|
5980
|
+
workspace_id: {
|
|
5981
|
+
description: 'The ID of the workspace.',
|
|
5982
|
+
format: 'uuid',
|
|
5983
|
+
type: 'string',
|
|
5984
|
+
'x-title': 'Workspace ID',
|
|
5985
|
+
},
|
|
5986
|
+
},
|
|
5987
|
+
required: [
|
|
5988
|
+
'event_id',
|
|
5989
|
+
'workspace_id',
|
|
5990
|
+
'created_at',
|
|
5991
|
+
'occurred_at',
|
|
5992
|
+
'access_code_id',
|
|
5993
|
+
'device_id',
|
|
5994
|
+
'connected_account_id',
|
|
5995
|
+
'event_type',
|
|
5996
|
+
],
|
|
5997
|
+
type: 'object',
|
|
5998
|
+
},
|
|
5999
|
+
{
|
|
6000
|
+
description: 'An access code was deleted external to Seam.',
|
|
6001
|
+
properties: {
|
|
6002
|
+
access_code_id: {
|
|
6003
|
+
description: 'The ID of the access code.',
|
|
6004
|
+
format: 'uuid',
|
|
6005
|
+
type: 'string',
|
|
6006
|
+
'x-title': 'Access Code ID',
|
|
6007
|
+
},
|
|
6008
|
+
connected_account_id: {
|
|
6009
|
+
description: 'The ID of the connected account.',
|
|
6010
|
+
format: 'uuid',
|
|
6011
|
+
type: 'string',
|
|
6012
|
+
'x-title': 'Connected Account ID',
|
|
6013
|
+
},
|
|
6014
|
+
created_at: {
|
|
6015
|
+
description: 'The time when the event was created.',
|
|
6016
|
+
format: 'date-time',
|
|
6017
|
+
type: 'string',
|
|
6018
|
+
'x-title': 'Created At',
|
|
6019
|
+
},
|
|
6020
|
+
device_id: {
|
|
6021
|
+
description: 'The ID of the device.',
|
|
6022
|
+
format: 'uuid',
|
|
6023
|
+
type: 'string',
|
|
6024
|
+
'x-title': 'Device ID',
|
|
6025
|
+
},
|
|
6026
|
+
event_id: {
|
|
6027
|
+
description: 'The ID of the event.',
|
|
6028
|
+
format: 'uuid',
|
|
6029
|
+
type: 'string',
|
|
6030
|
+
'x-title': 'Event ID',
|
|
6031
|
+
},
|
|
6032
|
+
event_type: {
|
|
6033
|
+
enum: ['access_code.deleted_external_to_seam'],
|
|
6034
|
+
type: 'string',
|
|
6035
|
+
},
|
|
6036
|
+
occurred_at: {
|
|
6037
|
+
description: 'The time when the event occurred.',
|
|
6038
|
+
format: 'date-time',
|
|
6039
|
+
type: 'string',
|
|
6040
|
+
'x-title': 'Occurred At',
|
|
6041
|
+
},
|
|
6042
|
+
workspace_id: {
|
|
6043
|
+
description: 'The ID of the workspace.',
|
|
6044
|
+
format: 'uuid',
|
|
6045
|
+
type: 'string',
|
|
6046
|
+
'x-title': 'Workspace ID',
|
|
6047
|
+
},
|
|
6048
|
+
},
|
|
6049
|
+
required: [
|
|
6050
|
+
'event_id',
|
|
6051
|
+
'workspace_id',
|
|
6052
|
+
'created_at',
|
|
6053
|
+
'occurred_at',
|
|
6054
|
+
'access_code_id',
|
|
6055
|
+
'device_id',
|
|
6056
|
+
'connected_account_id',
|
|
6057
|
+
'event_type',
|
|
6058
|
+
],
|
|
6059
|
+
type: 'object',
|
|
6060
|
+
},
|
|
6061
|
+
{
|
|
6062
|
+
description: 'A backup access code was pulled from the backup access code pool and set on a device.',
|
|
6063
|
+
properties: {
|
|
6064
|
+
access_code_id: {
|
|
6065
|
+
description: 'The ID of the access code.',
|
|
6066
|
+
format: 'uuid',
|
|
6067
|
+
type: 'string',
|
|
6068
|
+
'x-title': 'Access Code ID',
|
|
6069
|
+
},
|
|
6070
|
+
backup_access_code_id: { type: 'string' },
|
|
6071
|
+
connected_account_id: {
|
|
6072
|
+
description: 'The ID of the connected account.',
|
|
6073
|
+
format: 'uuid',
|
|
6074
|
+
type: 'string',
|
|
6075
|
+
'x-title': 'Connected Account ID',
|
|
6076
|
+
},
|
|
6077
|
+
created_at: {
|
|
6078
|
+
description: 'The time when the event was created.',
|
|
6079
|
+
format: 'date-time',
|
|
6080
|
+
type: 'string',
|
|
6081
|
+
'x-title': 'Created At',
|
|
6082
|
+
},
|
|
6083
|
+
device_id: {
|
|
6084
|
+
description: 'The ID of the device.',
|
|
6085
|
+
format: 'uuid',
|
|
6086
|
+
type: 'string',
|
|
6087
|
+
'x-title': 'Device ID',
|
|
6088
|
+
},
|
|
6089
|
+
event_id: {
|
|
6090
|
+
description: 'The ID of the event.',
|
|
6091
|
+
format: 'uuid',
|
|
6092
|
+
type: 'string',
|
|
6093
|
+
'x-title': 'Event ID',
|
|
6094
|
+
},
|
|
6095
|
+
event_type: {
|
|
6096
|
+
enum: ['access_code.backup_access_code_pulled'],
|
|
6097
|
+
type: 'string',
|
|
6098
|
+
},
|
|
6099
|
+
occurred_at: {
|
|
6100
|
+
description: 'The time when the event occurred.',
|
|
6101
|
+
format: 'date-time',
|
|
6102
|
+
type: 'string',
|
|
6103
|
+
'x-title': 'Occurred At',
|
|
6104
|
+
},
|
|
6105
|
+
workspace_id: {
|
|
6106
|
+
description: 'The ID of the workspace.',
|
|
6107
|
+
format: 'uuid',
|
|
6108
|
+
type: 'string',
|
|
6109
|
+
'x-title': 'Workspace ID',
|
|
6110
|
+
},
|
|
6111
|
+
},
|
|
6112
|
+
required: [
|
|
6113
|
+
'event_id',
|
|
6114
|
+
'workspace_id',
|
|
6115
|
+
'created_at',
|
|
6116
|
+
'occurred_at',
|
|
6117
|
+
'access_code_id',
|
|
6118
|
+
'device_id',
|
|
6119
|
+
'connected_account_id',
|
|
6120
|
+
'event_type',
|
|
6121
|
+
'backup_access_code_id',
|
|
6122
|
+
],
|
|
6123
|
+
type: 'object',
|
|
6124
|
+
},
|
|
6125
|
+
{
|
|
6126
|
+
description: 'An unmanaged access code was successfully converted to a managed access code.',
|
|
6127
|
+
properties: {
|
|
6128
|
+
access_code_id: {
|
|
6129
|
+
description: 'The ID of the access code.',
|
|
6130
|
+
format: 'uuid',
|
|
6131
|
+
type: 'string',
|
|
6132
|
+
'x-title': 'Access Code ID',
|
|
6133
|
+
},
|
|
6134
|
+
connected_account_id: {
|
|
6135
|
+
description: 'The ID of the connected account.',
|
|
6136
|
+
format: 'uuid',
|
|
6137
|
+
type: 'string',
|
|
6138
|
+
'x-title': 'Connected Account ID',
|
|
6139
|
+
},
|
|
6140
|
+
created_at: {
|
|
6141
|
+
description: 'The time when the event was created.',
|
|
6142
|
+
format: 'date-time',
|
|
6143
|
+
type: 'string',
|
|
6144
|
+
'x-title': 'Created At',
|
|
6145
|
+
},
|
|
6146
|
+
device_id: {
|
|
6147
|
+
description: 'The ID of the device.',
|
|
6148
|
+
format: 'uuid',
|
|
6149
|
+
type: 'string',
|
|
6150
|
+
'x-title': 'Device ID',
|
|
6151
|
+
},
|
|
6152
|
+
event_id: {
|
|
6153
|
+
description: 'The ID of the event.',
|
|
6154
|
+
format: 'uuid',
|
|
6155
|
+
type: 'string',
|
|
6156
|
+
'x-title': 'Event ID',
|
|
6157
|
+
},
|
|
6158
|
+
event_type: {
|
|
6159
|
+
enum: ['access_code.unmanaged.converted_to_managed'],
|
|
6160
|
+
type: 'string',
|
|
6161
|
+
},
|
|
6162
|
+
occurred_at: {
|
|
6163
|
+
description: 'The time when the event occurred.',
|
|
6164
|
+
format: 'date-time',
|
|
6165
|
+
type: 'string',
|
|
6166
|
+
'x-title': 'Occurred At',
|
|
6167
|
+
},
|
|
6168
|
+
workspace_id: {
|
|
6169
|
+
description: 'The ID of the workspace.',
|
|
6170
|
+
format: 'uuid',
|
|
6171
|
+
type: 'string',
|
|
6172
|
+
'x-title': 'Workspace ID',
|
|
6173
|
+
},
|
|
6174
|
+
},
|
|
6175
|
+
required: [
|
|
6176
|
+
'event_id',
|
|
6177
|
+
'workspace_id',
|
|
6178
|
+
'created_at',
|
|
6179
|
+
'occurred_at',
|
|
6180
|
+
'access_code_id',
|
|
6181
|
+
'device_id',
|
|
6182
|
+
'connected_account_id',
|
|
6183
|
+
'event_type',
|
|
6184
|
+
],
|
|
6185
|
+
type: 'object',
|
|
6186
|
+
},
|
|
6187
|
+
{
|
|
6188
|
+
description: 'An unmanaged access code failed to be converted to a managed access code.',
|
|
6189
|
+
properties: {
|
|
6190
|
+
access_code_id: {
|
|
6191
|
+
description: 'The ID of the access code.',
|
|
6192
|
+
format: 'uuid',
|
|
6193
|
+
type: 'string',
|
|
6194
|
+
'x-title': 'Access Code ID',
|
|
6195
|
+
},
|
|
6196
|
+
connected_account_id: {
|
|
6197
|
+
description: 'The ID of the connected account.',
|
|
6198
|
+
format: 'uuid',
|
|
6199
|
+
type: 'string',
|
|
6200
|
+
'x-title': 'Connected Account ID',
|
|
6201
|
+
},
|
|
6202
|
+
created_at: {
|
|
6203
|
+
description: 'The time when the event was created.',
|
|
6204
|
+
format: 'date-time',
|
|
6205
|
+
type: 'string',
|
|
6206
|
+
'x-title': 'Created At',
|
|
6207
|
+
},
|
|
6208
|
+
device_id: {
|
|
6209
|
+
description: 'The ID of the device.',
|
|
6210
|
+
format: 'uuid',
|
|
6211
|
+
type: 'string',
|
|
6212
|
+
'x-title': 'Device ID',
|
|
6213
|
+
},
|
|
6214
|
+
event_id: {
|
|
6215
|
+
description: 'The ID of the event.',
|
|
6216
|
+
format: 'uuid',
|
|
6217
|
+
type: 'string',
|
|
6218
|
+
'x-title': 'Event ID',
|
|
6219
|
+
},
|
|
6220
|
+
event_type: {
|
|
6221
|
+
enum: ['access_code.unmanaged.failed_to_convert_to_managed'],
|
|
6222
|
+
type: 'string',
|
|
6223
|
+
},
|
|
6224
|
+
occurred_at: {
|
|
6225
|
+
description: 'The time when the event occurred.',
|
|
6226
|
+
format: 'date-time',
|
|
6227
|
+
type: 'string',
|
|
6228
|
+
'x-title': 'Occurred At',
|
|
6229
|
+
},
|
|
6230
|
+
workspace_id: {
|
|
6231
|
+
description: 'The ID of the workspace.',
|
|
6232
|
+
format: 'uuid',
|
|
6233
|
+
type: 'string',
|
|
6234
|
+
'x-title': 'Workspace ID',
|
|
6235
|
+
},
|
|
6236
|
+
},
|
|
6237
|
+
required: [
|
|
6238
|
+
'event_id',
|
|
6239
|
+
'workspace_id',
|
|
6240
|
+
'created_at',
|
|
6241
|
+
'occurred_at',
|
|
6242
|
+
'access_code_id',
|
|
6243
|
+
'device_id',
|
|
6244
|
+
'connected_account_id',
|
|
6245
|
+
'event_type',
|
|
6246
|
+
],
|
|
6247
|
+
type: 'object',
|
|
6248
|
+
},
|
|
6249
|
+
{
|
|
6250
|
+
description: 'An unmanaged access code was created on a device.',
|
|
6251
|
+
properties: {
|
|
6252
|
+
access_code_id: {
|
|
6253
|
+
description: 'The ID of the access code.',
|
|
6254
|
+
format: 'uuid',
|
|
6255
|
+
type: 'string',
|
|
6256
|
+
'x-title': 'Access Code ID',
|
|
6257
|
+
},
|
|
6258
|
+
connected_account_id: {
|
|
6259
|
+
description: 'The ID of the connected account.',
|
|
6260
|
+
format: 'uuid',
|
|
6261
|
+
type: 'string',
|
|
6262
|
+
'x-title': 'Connected Account ID',
|
|
6263
|
+
},
|
|
6264
|
+
created_at: {
|
|
6265
|
+
description: 'The time when the event was created.',
|
|
6266
|
+
format: 'date-time',
|
|
6267
|
+
type: 'string',
|
|
6268
|
+
'x-title': 'Created At',
|
|
6269
|
+
},
|
|
6270
|
+
device_id: {
|
|
6271
|
+
description: 'The ID of the device.',
|
|
6272
|
+
format: 'uuid',
|
|
6273
|
+
type: 'string',
|
|
6274
|
+
'x-title': 'Device ID',
|
|
6275
|
+
},
|
|
6276
|
+
event_id: {
|
|
6277
|
+
description: 'The ID of the event.',
|
|
6278
|
+
format: 'uuid',
|
|
6279
|
+
type: 'string',
|
|
6280
|
+
'x-title': 'Event ID',
|
|
6281
|
+
},
|
|
6282
|
+
event_type: {
|
|
6283
|
+
enum: ['access_code.unmanaged.created'],
|
|
6284
|
+
type: 'string',
|
|
6285
|
+
},
|
|
6286
|
+
occurred_at: {
|
|
6287
|
+
description: 'The time when the event occurred.',
|
|
6288
|
+
format: 'date-time',
|
|
6289
|
+
type: 'string',
|
|
6290
|
+
'x-title': 'Occurred At',
|
|
6291
|
+
},
|
|
6292
|
+
workspace_id: {
|
|
6293
|
+
description: 'The ID of the workspace.',
|
|
6294
|
+
format: 'uuid',
|
|
6295
|
+
type: 'string',
|
|
6296
|
+
'x-title': 'Workspace ID',
|
|
6297
|
+
},
|
|
6298
|
+
},
|
|
6299
|
+
required: [
|
|
6300
|
+
'event_id',
|
|
6301
|
+
'workspace_id',
|
|
6302
|
+
'created_at',
|
|
6303
|
+
'occurred_at',
|
|
6304
|
+
'access_code_id',
|
|
6305
|
+
'device_id',
|
|
6306
|
+
'connected_account_id',
|
|
6307
|
+
'event_type',
|
|
6308
|
+
],
|
|
6309
|
+
type: 'object',
|
|
6310
|
+
},
|
|
6311
|
+
{
|
|
6312
|
+
description: 'An unmanaged access code was removed from a device.',
|
|
6313
|
+
properties: {
|
|
6314
|
+
access_code_id: {
|
|
6315
|
+
description: 'The ID of the access code.',
|
|
6316
|
+
format: 'uuid',
|
|
6317
|
+
type: 'string',
|
|
6318
|
+
'x-title': 'Access Code ID',
|
|
6319
|
+
},
|
|
6320
|
+
connected_account_id: {
|
|
6321
|
+
description: 'The ID of the connected account.',
|
|
6322
|
+
format: 'uuid',
|
|
6323
|
+
type: 'string',
|
|
6324
|
+
'x-title': 'Connected Account ID',
|
|
6325
|
+
},
|
|
6326
|
+
created_at: {
|
|
6327
|
+
description: 'The time when the event was created.',
|
|
6328
|
+
format: 'date-time',
|
|
6329
|
+
type: 'string',
|
|
6330
|
+
'x-title': 'Created At',
|
|
6331
|
+
},
|
|
6332
|
+
device_id: {
|
|
6333
|
+
description: 'The ID of the device.',
|
|
6334
|
+
format: 'uuid',
|
|
6335
|
+
type: 'string',
|
|
6336
|
+
'x-title': 'Device ID',
|
|
6337
|
+
},
|
|
6338
|
+
event_id: {
|
|
6339
|
+
description: 'The ID of the event.',
|
|
6340
|
+
format: 'uuid',
|
|
6341
|
+
type: 'string',
|
|
6342
|
+
'x-title': 'Event ID',
|
|
6343
|
+
},
|
|
6344
|
+
event_type: {
|
|
6345
|
+
enum: ['access_code.unmanaged.removed'],
|
|
6346
|
+
type: 'string',
|
|
6347
|
+
},
|
|
6348
|
+
occurred_at: {
|
|
6349
|
+
description: 'The time when the event occurred.',
|
|
6350
|
+
format: 'date-time',
|
|
6351
|
+
type: 'string',
|
|
6352
|
+
'x-title': 'Occurred At',
|
|
6353
|
+
},
|
|
6354
|
+
workspace_id: {
|
|
6355
|
+
description: 'The ID of the workspace.',
|
|
6356
|
+
format: 'uuid',
|
|
6357
|
+
type: 'string',
|
|
6358
|
+
'x-title': 'Workspace ID',
|
|
6359
|
+
},
|
|
6360
|
+
},
|
|
6361
|
+
required: [
|
|
6362
|
+
'event_id',
|
|
6363
|
+
'workspace_id',
|
|
6364
|
+
'created_at',
|
|
6365
|
+
'occurred_at',
|
|
6366
|
+
'access_code_id',
|
|
6367
|
+
'device_id',
|
|
6368
|
+
'connected_account_id',
|
|
6369
|
+
'event_type',
|
|
6370
|
+
],
|
|
6371
|
+
type: 'object',
|
|
6372
|
+
},
|
|
6373
|
+
{
|
|
6374
|
+
description: 'An ACS system was connected.',
|
|
6375
|
+
properties: {
|
|
6376
|
+
acs_system_id: {
|
|
6377
|
+
description: 'ID of the ACS system.',
|
|
6378
|
+
format: 'uuid',
|
|
6379
|
+
type: 'string',
|
|
6380
|
+
'x-title': 'ACS System ID',
|
|
6381
|
+
},
|
|
6382
|
+
connected_account_id: {
|
|
6383
|
+
deprecated: true,
|
|
6384
|
+
description: 'ID of the connected account.',
|
|
6385
|
+
format: 'uuid',
|
|
6386
|
+
type: 'string',
|
|
6387
|
+
'x-deprecated': 'Will be removed.',
|
|
6388
|
+
'x-title': 'Connected Account ID',
|
|
6389
|
+
},
|
|
6390
|
+
created_at: {
|
|
6391
|
+
description: 'The time when the event was created.',
|
|
6392
|
+
format: 'date-time',
|
|
6393
|
+
type: 'string',
|
|
6394
|
+
'x-title': 'Created At',
|
|
6395
|
+
},
|
|
6396
|
+
event_id: {
|
|
6397
|
+
description: 'The ID of the event.',
|
|
6398
|
+
format: 'uuid',
|
|
6399
|
+
type: 'string',
|
|
6400
|
+
'x-title': 'Event ID',
|
|
6401
|
+
},
|
|
6402
|
+
event_type: { enum: ['acs_system.connected'], type: 'string' },
|
|
6403
|
+
occurred_at: {
|
|
6404
|
+
description: 'The time when the event occurred.',
|
|
6405
|
+
format: 'date-time',
|
|
6406
|
+
type: 'string',
|
|
6407
|
+
'x-title': 'Occurred At',
|
|
6408
|
+
},
|
|
6409
|
+
workspace_id: {
|
|
6410
|
+
description: 'The ID of the workspace.',
|
|
6411
|
+
format: 'uuid',
|
|
6412
|
+
type: 'string',
|
|
6413
|
+
'x-title': 'Workspace ID',
|
|
6414
|
+
},
|
|
6415
|
+
},
|
|
6416
|
+
required: [
|
|
6417
|
+
'event_id',
|
|
6418
|
+
'workspace_id',
|
|
6419
|
+
'created_at',
|
|
6420
|
+
'occurred_at',
|
|
6421
|
+
'acs_system_id',
|
|
6422
|
+
'event_type',
|
|
6423
|
+
],
|
|
6424
|
+
type: 'object',
|
|
6425
|
+
},
|
|
6426
|
+
{
|
|
6427
|
+
description: 'An ACS system was added.',
|
|
6428
|
+
properties: {
|
|
6429
|
+
acs_system_id: {
|
|
6430
|
+
description: 'ID of the ACS system.',
|
|
6431
|
+
format: 'uuid',
|
|
6432
|
+
type: 'string',
|
|
6433
|
+
'x-title': 'ACS System ID',
|
|
6434
|
+
},
|
|
6435
|
+
connected_account_id: {
|
|
6436
|
+
deprecated: true,
|
|
6437
|
+
description: 'ID of the connected account.',
|
|
6438
|
+
format: 'uuid',
|
|
6439
|
+
type: 'string',
|
|
6440
|
+
'x-deprecated': 'Will be removed.',
|
|
6441
|
+
'x-title': 'Connected Account ID',
|
|
6442
|
+
},
|
|
6443
|
+
created_at: {
|
|
6444
|
+
description: 'The time when the event was created.',
|
|
6445
|
+
format: 'date-time',
|
|
6446
|
+
type: 'string',
|
|
6447
|
+
'x-title': 'Created At',
|
|
6448
|
+
},
|
|
6449
|
+
event_id: {
|
|
6450
|
+
description: 'The ID of the event.',
|
|
6451
|
+
format: 'uuid',
|
|
6452
|
+
type: 'string',
|
|
6453
|
+
'x-title': 'Event ID',
|
|
6454
|
+
},
|
|
6455
|
+
event_type: { enum: ['acs_system.added'], type: 'string' },
|
|
6456
|
+
occurred_at: {
|
|
6457
|
+
description: 'The time when the event occurred.',
|
|
6458
|
+
format: 'date-time',
|
|
6459
|
+
type: 'string',
|
|
6460
|
+
'x-title': 'Occurred At',
|
|
6461
|
+
},
|
|
6462
|
+
workspace_id: {
|
|
6463
|
+
description: 'The ID of the workspace.',
|
|
6464
|
+
format: 'uuid',
|
|
6465
|
+
type: 'string',
|
|
6466
|
+
'x-title': 'Workspace ID',
|
|
6467
|
+
},
|
|
6468
|
+
},
|
|
6469
|
+
required: [
|
|
6470
|
+
'event_id',
|
|
6471
|
+
'workspace_id',
|
|
6472
|
+
'created_at',
|
|
6473
|
+
'occurred_at',
|
|
6474
|
+
'acs_system_id',
|
|
6475
|
+
'event_type',
|
|
6476
|
+
],
|
|
6477
|
+
type: 'object',
|
|
6478
|
+
},
|
|
6479
|
+
{
|
|
6480
|
+
description: 'An ACS system was disconnected.',
|
|
6481
|
+
properties: {
|
|
6482
|
+
acs_system_id: {
|
|
6483
|
+
description: 'ID of the ACS system.',
|
|
6484
|
+
format: 'uuid',
|
|
6485
|
+
type: 'string',
|
|
6486
|
+
'x-title': 'ACS System ID',
|
|
6487
|
+
},
|
|
6488
|
+
connected_account_id: {
|
|
6489
|
+
deprecated: true,
|
|
6490
|
+
description: 'ID of the connected account.',
|
|
6491
|
+
format: 'uuid',
|
|
6492
|
+
type: 'string',
|
|
6493
|
+
'x-deprecated': 'Will be removed.',
|
|
6494
|
+
'x-title': 'Connected Account ID',
|
|
6495
|
+
},
|
|
6496
|
+
created_at: {
|
|
6497
|
+
description: 'The time when the event was created.',
|
|
6498
|
+
format: 'date-time',
|
|
6499
|
+
type: 'string',
|
|
6500
|
+
'x-title': 'Created At',
|
|
6501
|
+
},
|
|
6502
|
+
event_id: {
|
|
6503
|
+
description: 'The ID of the event.',
|
|
6504
|
+
format: 'uuid',
|
|
6505
|
+
type: 'string',
|
|
6506
|
+
'x-title': 'Event ID',
|
|
6507
|
+
},
|
|
6508
|
+
event_type: { enum: ['acs_system.disconnected'], type: 'string' },
|
|
6509
|
+
occurred_at: {
|
|
6510
|
+
description: 'The time when the event occurred.',
|
|
6511
|
+
format: 'date-time',
|
|
6512
|
+
type: 'string',
|
|
6513
|
+
'x-title': 'Occurred At',
|
|
6514
|
+
},
|
|
6515
|
+
workspace_id: {
|
|
6516
|
+
description: 'The ID of the workspace.',
|
|
6517
|
+
format: 'uuid',
|
|
6518
|
+
type: 'string',
|
|
6519
|
+
'x-title': 'Workspace ID',
|
|
6520
|
+
},
|
|
6521
|
+
},
|
|
6522
|
+
required: [
|
|
6523
|
+
'event_id',
|
|
6524
|
+
'workspace_id',
|
|
6525
|
+
'created_at',
|
|
6526
|
+
'occurred_at',
|
|
6527
|
+
'acs_system_id',
|
|
6528
|
+
'event_type',
|
|
6529
|
+
],
|
|
6530
|
+
type: 'object',
|
|
6531
|
+
},
|
|
6532
|
+
{
|
|
6533
|
+
description: 'An ACS credential was deleted.',
|
|
6534
|
+
properties: {
|
|
6535
|
+
acs_credential_id: { format: 'uuid', type: 'string' },
|
|
6536
|
+
acs_system_id: {
|
|
6537
|
+
description: 'ID of the ACS system.',
|
|
6538
|
+
format: 'uuid',
|
|
6539
|
+
type: 'string',
|
|
6540
|
+
'x-title': 'ACS System ID',
|
|
6541
|
+
},
|
|
6542
|
+
connected_account_id: {
|
|
6543
|
+
deprecated: true,
|
|
6544
|
+
description: 'ID of the connected account.',
|
|
6545
|
+
format: 'uuid',
|
|
6546
|
+
type: 'string',
|
|
6547
|
+
'x-deprecated': 'Will be removed.',
|
|
6548
|
+
'x-title': 'Connected Account ID',
|
|
6549
|
+
},
|
|
6550
|
+
created_at: {
|
|
6551
|
+
description: 'The time when the event was created.',
|
|
6552
|
+
format: 'date-time',
|
|
6553
|
+
type: 'string',
|
|
6554
|
+
'x-title': 'Created At',
|
|
6555
|
+
},
|
|
6556
|
+
event_id: {
|
|
6557
|
+
description: 'The ID of the event.',
|
|
6558
|
+
format: 'uuid',
|
|
6559
|
+
type: 'string',
|
|
6560
|
+
'x-title': 'Event ID',
|
|
6561
|
+
},
|
|
6562
|
+
event_type: { enum: ['acs_credential.deleted'], type: 'string' },
|
|
6563
|
+
occurred_at: {
|
|
6564
|
+
description: 'The time when the event occurred.',
|
|
6565
|
+
format: 'date-time',
|
|
6566
|
+
type: 'string',
|
|
6567
|
+
'x-title': 'Occurred At',
|
|
6568
|
+
},
|
|
6569
|
+
workspace_id: {
|
|
6570
|
+
description: 'The ID of the workspace.',
|
|
6571
|
+
format: 'uuid',
|
|
6572
|
+
type: 'string',
|
|
6573
|
+
'x-title': 'Workspace ID',
|
|
6574
|
+
},
|
|
6575
|
+
},
|
|
6576
|
+
required: [
|
|
6577
|
+
'event_id',
|
|
6578
|
+
'workspace_id',
|
|
6579
|
+
'created_at',
|
|
6580
|
+
'occurred_at',
|
|
6581
|
+
'acs_system_id',
|
|
6582
|
+
'acs_credential_id',
|
|
6583
|
+
'event_type',
|
|
6584
|
+
],
|
|
6585
|
+
type: 'object',
|
|
6586
|
+
},
|
|
6587
|
+
{
|
|
6588
|
+
description: 'An ACS credential was issued.',
|
|
6589
|
+
properties: {
|
|
6590
|
+
acs_credential_id: { format: 'uuid', type: 'string' },
|
|
6591
|
+
acs_system_id: {
|
|
6592
|
+
description: 'ID of the ACS system.',
|
|
6593
|
+
format: 'uuid',
|
|
6594
|
+
type: 'string',
|
|
6595
|
+
'x-title': 'ACS System ID',
|
|
6596
|
+
},
|
|
6597
|
+
connected_account_id: {
|
|
6598
|
+
deprecated: true,
|
|
6599
|
+
description: 'ID of the connected account.',
|
|
6600
|
+
format: 'uuid',
|
|
6601
|
+
type: 'string',
|
|
6602
|
+
'x-deprecated': 'Will be removed.',
|
|
6603
|
+
'x-title': 'Connected Account ID',
|
|
6604
|
+
},
|
|
6605
|
+
created_at: {
|
|
6606
|
+
description: 'The time when the event was created.',
|
|
6607
|
+
format: 'date-time',
|
|
6608
|
+
type: 'string',
|
|
6609
|
+
'x-title': 'Created At',
|
|
6610
|
+
},
|
|
6611
|
+
event_id: {
|
|
6612
|
+
description: 'The ID of the event.',
|
|
6613
|
+
format: 'uuid',
|
|
6614
|
+
type: 'string',
|
|
6615
|
+
'x-title': 'Event ID',
|
|
6616
|
+
},
|
|
6617
|
+
event_type: { enum: ['acs_credential.issued'], type: 'string' },
|
|
6618
|
+
occurred_at: {
|
|
6619
|
+
description: 'The time when the event occurred.',
|
|
6620
|
+
format: 'date-time',
|
|
6621
|
+
type: 'string',
|
|
6622
|
+
'x-title': 'Occurred At',
|
|
6623
|
+
},
|
|
6624
|
+
workspace_id: {
|
|
6625
|
+
description: 'The ID of the workspace.',
|
|
6626
|
+
format: 'uuid',
|
|
6627
|
+
type: 'string',
|
|
6628
|
+
'x-title': 'Workspace ID',
|
|
6629
|
+
},
|
|
6630
|
+
},
|
|
6631
|
+
required: [
|
|
6632
|
+
'event_id',
|
|
6633
|
+
'workspace_id',
|
|
6634
|
+
'created_at',
|
|
6635
|
+
'occurred_at',
|
|
6636
|
+
'acs_system_id',
|
|
6637
|
+
'acs_credential_id',
|
|
6638
|
+
'event_type',
|
|
6639
|
+
],
|
|
6640
|
+
type: 'object',
|
|
6641
|
+
},
|
|
6642
|
+
{
|
|
6643
|
+
description: 'An ACS user was deleted.',
|
|
6644
|
+
properties: {
|
|
6645
|
+
acs_system_id: {
|
|
6646
|
+
description: 'ID of the ACS system.',
|
|
6647
|
+
format: 'uuid',
|
|
6648
|
+
type: 'string',
|
|
6649
|
+
'x-title': 'ACS System ID',
|
|
6650
|
+
},
|
|
6651
|
+
acs_user_id: { format: 'uuid', type: 'string' },
|
|
6652
|
+
connected_account_id: {
|
|
6653
|
+
deprecated: true,
|
|
6654
|
+
description: 'ID of the connected account.',
|
|
6655
|
+
format: 'uuid',
|
|
6656
|
+
type: 'string',
|
|
6657
|
+
'x-deprecated': 'Will be removed.',
|
|
6658
|
+
'x-title': 'Connected Account ID',
|
|
6659
|
+
},
|
|
6660
|
+
created_at: {
|
|
6661
|
+
description: 'The time when the event was created.',
|
|
6662
|
+
format: 'date-time',
|
|
6663
|
+
type: 'string',
|
|
6664
|
+
'x-title': 'Created At',
|
|
6665
|
+
},
|
|
6666
|
+
event_id: {
|
|
6667
|
+
description: 'The ID of the event.',
|
|
6668
|
+
format: 'uuid',
|
|
6669
|
+
type: 'string',
|
|
6670
|
+
'x-title': 'Event ID',
|
|
6671
|
+
},
|
|
6672
|
+
event_type: { enum: ['acs_user.deleted'], type: 'string' },
|
|
6673
|
+
occurred_at: {
|
|
6674
|
+
description: 'The time when the event occurred.',
|
|
6675
|
+
format: 'date-time',
|
|
6676
|
+
type: 'string',
|
|
6677
|
+
'x-title': 'Occurred At',
|
|
6678
|
+
},
|
|
6679
|
+
workspace_id: {
|
|
6680
|
+
description: 'The ID of the workspace.',
|
|
6681
|
+
format: 'uuid',
|
|
6682
|
+
type: 'string',
|
|
6683
|
+
'x-title': 'Workspace ID',
|
|
6684
|
+
},
|
|
6685
|
+
},
|
|
6686
|
+
required: [
|
|
6687
|
+
'event_id',
|
|
6688
|
+
'workspace_id',
|
|
6689
|
+
'created_at',
|
|
6690
|
+
'occurred_at',
|
|
6691
|
+
'acs_system_id',
|
|
6692
|
+
'acs_user_id',
|
|
6693
|
+
'event_type',
|
|
6694
|
+
],
|
|
6695
|
+
type: 'object',
|
|
6696
|
+
},
|
|
6697
|
+
{
|
|
6698
|
+
description: 'An ACS encoder was added.',
|
|
6699
|
+
properties: {
|
|
6700
|
+
acs_encoder_id: {
|
|
6701
|
+
description: 'ID of the ACS encoder.',
|
|
6702
|
+
format: 'uuid',
|
|
6703
|
+
type: 'string',
|
|
6704
|
+
},
|
|
6705
|
+
acs_system_id: {
|
|
6706
|
+
description: 'ID of the ACS system.',
|
|
6707
|
+
format: 'uuid',
|
|
6708
|
+
type: 'string',
|
|
6709
|
+
'x-title': 'ACS System ID',
|
|
6710
|
+
},
|
|
6711
|
+
connected_account_id: {
|
|
6712
|
+
deprecated: true,
|
|
6713
|
+
description: 'ID of the connected account.',
|
|
6714
|
+
format: 'uuid',
|
|
6715
|
+
type: 'string',
|
|
6716
|
+
'x-deprecated': 'Will be removed.',
|
|
6717
|
+
'x-title': 'Connected Account ID',
|
|
6718
|
+
},
|
|
6719
|
+
created_at: {
|
|
6720
|
+
description: 'The time when the event was created.',
|
|
6721
|
+
format: 'date-time',
|
|
6722
|
+
type: 'string',
|
|
6723
|
+
'x-title': 'Created At',
|
|
6724
|
+
},
|
|
6725
|
+
event_id: {
|
|
6726
|
+
description: 'The ID of the event.',
|
|
6727
|
+
format: 'uuid',
|
|
6728
|
+
type: 'string',
|
|
6729
|
+
'x-title': 'Event ID',
|
|
6730
|
+
},
|
|
6731
|
+
event_type: { enum: ['acs_encoder.added'], type: 'string' },
|
|
6732
|
+
occurred_at: {
|
|
6733
|
+
description: 'The time when the event occurred.',
|
|
6734
|
+
format: 'date-time',
|
|
6735
|
+
type: 'string',
|
|
6736
|
+
'x-title': 'Occurred At',
|
|
6737
|
+
},
|
|
6738
|
+
workspace_id: {
|
|
6739
|
+
description: 'The ID of the workspace.',
|
|
6740
|
+
format: 'uuid',
|
|
6741
|
+
type: 'string',
|
|
6742
|
+
'x-title': 'Workspace ID',
|
|
6743
|
+
},
|
|
6744
|
+
},
|
|
6745
|
+
required: [
|
|
6746
|
+
'event_id',
|
|
6747
|
+
'workspace_id',
|
|
6748
|
+
'created_at',
|
|
6749
|
+
'occurred_at',
|
|
6750
|
+
'acs_system_id',
|
|
6751
|
+
'acs_encoder_id',
|
|
6752
|
+
'event_type',
|
|
6753
|
+
],
|
|
6754
|
+
type: 'object',
|
|
6755
|
+
},
|
|
6756
|
+
{
|
|
6757
|
+
description: 'An ACS encoder was removed.',
|
|
6758
|
+
properties: {
|
|
6759
|
+
acs_encoder_id: {
|
|
6760
|
+
description: 'ID of the ACS encoder.',
|
|
6761
|
+
format: 'uuid',
|
|
6762
|
+
type: 'string',
|
|
6763
|
+
},
|
|
6764
|
+
acs_system_id: {
|
|
6765
|
+
description: 'ID of the ACS system.',
|
|
6766
|
+
format: 'uuid',
|
|
6767
|
+
type: 'string',
|
|
6768
|
+
'x-title': 'ACS System ID',
|
|
6769
|
+
},
|
|
6770
|
+
connected_account_id: {
|
|
6771
|
+
deprecated: true,
|
|
6772
|
+
description: 'ID of the connected account.',
|
|
6773
|
+
format: 'uuid',
|
|
6774
|
+
type: 'string',
|
|
6775
|
+
'x-deprecated': 'Will be removed.',
|
|
6776
|
+
'x-title': 'Connected Account ID',
|
|
6777
|
+
},
|
|
6778
|
+
created_at: {
|
|
6779
|
+
description: 'The time when the event was created.',
|
|
6780
|
+
format: 'date-time',
|
|
6781
|
+
type: 'string',
|
|
6782
|
+
'x-title': 'Created At',
|
|
6783
|
+
},
|
|
6784
|
+
event_id: {
|
|
6785
|
+
description: 'The ID of the event.',
|
|
6786
|
+
format: 'uuid',
|
|
6787
|
+
type: 'string',
|
|
6788
|
+
'x-title': 'Event ID',
|
|
6789
|
+
},
|
|
6790
|
+
event_type: { enum: ['acs_encoder.removed'], type: 'string' },
|
|
6791
|
+
occurred_at: {
|
|
6792
|
+
description: 'The time when the event occurred.',
|
|
6793
|
+
format: 'date-time',
|
|
6794
|
+
type: 'string',
|
|
6795
|
+
'x-title': 'Occurred At',
|
|
6796
|
+
},
|
|
6797
|
+
workspace_id: {
|
|
6798
|
+
description: 'The ID of the workspace.',
|
|
6799
|
+
format: 'uuid',
|
|
6800
|
+
type: 'string',
|
|
6801
|
+
'x-title': 'Workspace ID',
|
|
6802
|
+
},
|
|
6803
|
+
},
|
|
6804
|
+
required: [
|
|
6805
|
+
'event_id',
|
|
6806
|
+
'workspace_id',
|
|
6807
|
+
'created_at',
|
|
6808
|
+
'occurred_at',
|
|
6809
|
+
'acs_system_id',
|
|
6810
|
+
'acs_encoder_id',
|
|
6811
|
+
'event_type',
|
|
6812
|
+
],
|
|
6813
|
+
type: 'object',
|
|
6814
|
+
},
|
|
6815
|
+
{
|
|
6816
|
+
description: 'A client session was deleted.',
|
|
6817
|
+
properties: {
|
|
6818
|
+
client_session_id: {
|
|
6819
|
+
description: 'ID of the client session.',
|
|
6820
|
+
format: 'uuid',
|
|
6821
|
+
type: 'string',
|
|
6822
|
+
'x-title': 'Client Session ID',
|
|
6823
|
+
},
|
|
6824
|
+
created_at: {
|
|
6825
|
+
description: 'The time when the event was created.',
|
|
6826
|
+
format: 'date-time',
|
|
6827
|
+
type: 'string',
|
|
6828
|
+
'x-title': 'Created At',
|
|
6829
|
+
},
|
|
6830
|
+
event_id: {
|
|
6831
|
+
description: 'The ID of the event.',
|
|
6832
|
+
format: 'uuid',
|
|
6833
|
+
type: 'string',
|
|
6834
|
+
'x-title': 'Event ID',
|
|
6835
|
+
},
|
|
6836
|
+
event_type: { enum: ['client_session.deleted'], type: 'string' },
|
|
6837
|
+
occurred_at: {
|
|
6838
|
+
description: 'The time when the event occurred.',
|
|
6839
|
+
format: 'date-time',
|
|
6840
|
+
type: 'string',
|
|
6841
|
+
'x-title': 'Occurred At',
|
|
6842
|
+
},
|
|
6843
|
+
workspace_id: {
|
|
6844
|
+
description: 'The ID of the workspace.',
|
|
6845
|
+
format: 'uuid',
|
|
6846
|
+
type: 'string',
|
|
6847
|
+
'x-title': 'Workspace ID',
|
|
6848
|
+
},
|
|
6849
|
+
},
|
|
6850
|
+
required: [
|
|
6851
|
+
'event_id',
|
|
6852
|
+
'workspace_id',
|
|
6853
|
+
'created_at',
|
|
6854
|
+
'occurred_at',
|
|
6855
|
+
'client_session_id',
|
|
6856
|
+
'event_type',
|
|
6857
|
+
],
|
|
6858
|
+
type: 'object',
|
|
6859
|
+
},
|
|
6860
|
+
{
|
|
6861
|
+
description: 'A connected account was connected for the first time, was reconnected after being disconnected.',
|
|
6862
|
+
properties: {
|
|
6863
|
+
connect_webview_id: {
|
|
6864
|
+
description: 'ID of the connect webview.',
|
|
6865
|
+
format: 'uuid',
|
|
6866
|
+
type: 'string',
|
|
6867
|
+
'x-title': 'Connect Webview ID',
|
|
6868
|
+
},
|
|
6869
|
+
connected_account_id: {
|
|
6870
|
+
description: 'ID of the connected account.',
|
|
6871
|
+
format: 'uuid',
|
|
6872
|
+
type: 'string',
|
|
6873
|
+
'x-title': 'Connected Account ID',
|
|
6874
|
+
},
|
|
6875
|
+
created_at: {
|
|
6876
|
+
description: 'The time when the event was created.',
|
|
6877
|
+
format: 'date-time',
|
|
6878
|
+
type: 'string',
|
|
6879
|
+
'x-title': 'Created At',
|
|
6880
|
+
},
|
|
6881
|
+
event_id: {
|
|
6882
|
+
description: 'The ID of the event.',
|
|
6883
|
+
format: 'uuid',
|
|
6884
|
+
type: 'string',
|
|
6885
|
+
'x-title': 'Event ID',
|
|
6886
|
+
},
|
|
6887
|
+
event_type: {
|
|
6888
|
+
enum: ['connected_account.connected'],
|
|
6889
|
+
type: 'string',
|
|
6890
|
+
},
|
|
6891
|
+
occurred_at: {
|
|
6892
|
+
description: 'The time when the event occurred.',
|
|
6893
|
+
format: 'date-time',
|
|
6894
|
+
type: 'string',
|
|
6895
|
+
'x-title': 'Occurred At',
|
|
6896
|
+
},
|
|
6897
|
+
workspace_id: {
|
|
6898
|
+
description: 'The ID of the workspace.',
|
|
6899
|
+
format: 'uuid',
|
|
6900
|
+
type: 'string',
|
|
6901
|
+
'x-title': 'Workspace ID',
|
|
6902
|
+
},
|
|
6903
|
+
},
|
|
6904
|
+
required: [
|
|
6905
|
+
'event_id',
|
|
6906
|
+
'workspace_id',
|
|
6907
|
+
'created_at',
|
|
6908
|
+
'occurred_at',
|
|
6909
|
+
'connected_account_id',
|
|
6910
|
+
'event_type',
|
|
6911
|
+
'connect_webview_id',
|
|
6912
|
+
],
|
|
6913
|
+
type: 'object',
|
|
6914
|
+
},
|
|
6915
|
+
{
|
|
6916
|
+
description: 'A connected account was created.',
|
|
6917
|
+
properties: {
|
|
6918
|
+
connect_webview_id: {
|
|
6919
|
+
description: 'ID of the connect webview.',
|
|
6920
|
+
format: 'uuid',
|
|
6921
|
+
type: 'string',
|
|
6922
|
+
'x-title': 'Connect Webview ID',
|
|
6923
|
+
},
|
|
6924
|
+
connected_account_id: {
|
|
6925
|
+
description: 'ID of the connected account.',
|
|
6926
|
+
format: 'uuid',
|
|
6927
|
+
type: 'string',
|
|
6928
|
+
'x-title': 'Connected Account ID',
|
|
6929
|
+
},
|
|
6930
|
+
created_at: {
|
|
6931
|
+
description: 'The time when the event was created.',
|
|
6932
|
+
format: 'date-time',
|
|
6933
|
+
type: 'string',
|
|
6934
|
+
'x-title': 'Created At',
|
|
6935
|
+
},
|
|
6936
|
+
event_id: {
|
|
6937
|
+
description: 'The ID of the event.',
|
|
6938
|
+
format: 'uuid',
|
|
6939
|
+
type: 'string',
|
|
6940
|
+
'x-title': 'Event ID',
|
|
6941
|
+
},
|
|
6942
|
+
event_type: {
|
|
6943
|
+
enum: ['connected_account.created'],
|
|
6944
|
+
type: 'string',
|
|
6945
|
+
},
|
|
6946
|
+
occurred_at: {
|
|
6947
|
+
description: 'The time when the event occurred.',
|
|
6948
|
+
format: 'date-time',
|
|
6949
|
+
type: 'string',
|
|
6950
|
+
'x-title': 'Occurred At',
|
|
6951
|
+
},
|
|
6952
|
+
workspace_id: {
|
|
6953
|
+
description: 'The ID of the workspace.',
|
|
6954
|
+
format: 'uuid',
|
|
6955
|
+
type: 'string',
|
|
6956
|
+
'x-title': 'Workspace ID',
|
|
6957
|
+
},
|
|
6958
|
+
},
|
|
6959
|
+
required: [
|
|
6960
|
+
'event_id',
|
|
6961
|
+
'workspace_id',
|
|
6962
|
+
'created_at',
|
|
6963
|
+
'occurred_at',
|
|
6964
|
+
'connected_account_id',
|
|
6965
|
+
'event_type',
|
|
6966
|
+
'connect_webview_id',
|
|
6967
|
+
],
|
|
6968
|
+
type: 'object',
|
|
6969
|
+
},
|
|
6970
|
+
{
|
|
6971
|
+
deprecated: true,
|
|
6972
|
+
description: 'A connected account had a successful connect webview login.',
|
|
6973
|
+
properties: {
|
|
6974
|
+
connect_webview_id: {
|
|
6975
|
+
description: 'ID of the connect webview.',
|
|
6976
|
+
format: 'uuid',
|
|
6977
|
+
type: 'string',
|
|
6978
|
+
'x-title': 'Connect Webview ID',
|
|
6979
|
+
},
|
|
6980
|
+
connected_account_id: {
|
|
6981
|
+
description: 'ID of the connected account.',
|
|
6982
|
+
format: 'uuid',
|
|
6983
|
+
type: 'string',
|
|
6984
|
+
'x-title': 'Connected Account ID',
|
|
6985
|
+
},
|
|
6986
|
+
created_at: {
|
|
6987
|
+
description: 'The time when the event was created.',
|
|
6988
|
+
format: 'date-time',
|
|
6989
|
+
type: 'string',
|
|
6990
|
+
'x-title': 'Created At',
|
|
6991
|
+
},
|
|
6992
|
+
event_id: {
|
|
6993
|
+
description: 'The ID of the event.',
|
|
6994
|
+
format: 'uuid',
|
|
6995
|
+
type: 'string',
|
|
6996
|
+
'x-title': 'Event ID',
|
|
6997
|
+
},
|
|
6998
|
+
event_type: {
|
|
6999
|
+
enum: ['connected_account.successful_login'],
|
|
7000
|
+
type: 'string',
|
|
7001
|
+
},
|
|
7002
|
+
occurred_at: {
|
|
7003
|
+
description: 'The time when the event occurred.',
|
|
7004
|
+
format: 'date-time',
|
|
7005
|
+
type: 'string',
|
|
7006
|
+
'x-title': 'Occurred At',
|
|
7007
|
+
},
|
|
7008
|
+
workspace_id: {
|
|
7009
|
+
description: 'The ID of the workspace.',
|
|
7010
|
+
format: 'uuid',
|
|
7011
|
+
type: 'string',
|
|
7012
|
+
'x-title': 'Workspace ID',
|
|
7013
|
+
},
|
|
7014
|
+
},
|
|
7015
|
+
required: [
|
|
7016
|
+
'event_id',
|
|
7017
|
+
'workspace_id',
|
|
7018
|
+
'created_at',
|
|
7019
|
+
'occurred_at',
|
|
7020
|
+
'connected_account_id',
|
|
7021
|
+
'event_type',
|
|
7022
|
+
'connect_webview_id',
|
|
7023
|
+
],
|
|
7024
|
+
type: 'object',
|
|
7025
|
+
'x-deprecated': 'Use `connect_webview.login_succeeded`.',
|
|
7026
|
+
},
|
|
7027
|
+
{
|
|
7028
|
+
description: 'A connected account was disconnected.',
|
|
7029
|
+
properties: {
|
|
7030
|
+
connected_account_id: {
|
|
7031
|
+
description: 'ID of the connected account.',
|
|
7032
|
+
format: 'uuid',
|
|
7033
|
+
type: 'string',
|
|
7034
|
+
'x-title': 'Connected Account ID',
|
|
7035
|
+
},
|
|
7036
|
+
created_at: {
|
|
7037
|
+
description: 'The time when the event was created.',
|
|
7038
|
+
format: 'date-time',
|
|
7039
|
+
type: 'string',
|
|
7040
|
+
'x-title': 'Created At',
|
|
7041
|
+
},
|
|
7042
|
+
event_id: {
|
|
7043
|
+
description: 'The ID of the event.',
|
|
7044
|
+
format: 'uuid',
|
|
7045
|
+
type: 'string',
|
|
7046
|
+
'x-title': 'Event ID',
|
|
7047
|
+
},
|
|
7048
|
+
event_type: {
|
|
7049
|
+
enum: ['connected_account.disconnected'],
|
|
7050
|
+
type: 'string',
|
|
7051
|
+
},
|
|
7052
|
+
occurred_at: {
|
|
7053
|
+
description: 'The time when the event occurred.',
|
|
7054
|
+
format: 'date-time',
|
|
7055
|
+
type: 'string',
|
|
7056
|
+
'x-title': 'Occurred At',
|
|
7057
|
+
},
|
|
7058
|
+
workspace_id: {
|
|
7059
|
+
description: 'The ID of the workspace.',
|
|
7060
|
+
format: 'uuid',
|
|
7061
|
+
type: 'string',
|
|
7062
|
+
'x-title': 'Workspace ID',
|
|
7063
|
+
},
|
|
7064
|
+
},
|
|
7065
|
+
required: [
|
|
7066
|
+
'event_id',
|
|
7067
|
+
'workspace_id',
|
|
7068
|
+
'created_at',
|
|
7069
|
+
'occurred_at',
|
|
7070
|
+
'connected_account_id',
|
|
7071
|
+
'event_type',
|
|
7072
|
+
],
|
|
7073
|
+
type: 'object',
|
|
7074
|
+
},
|
|
7075
|
+
{
|
|
7076
|
+
description: 'A connected account completed the first sync with Seam and devices are now available.',
|
|
7077
|
+
properties: {
|
|
7078
|
+
connected_account_id: {
|
|
7079
|
+
description: 'ID of the connected account.',
|
|
7080
|
+
format: 'uuid',
|
|
7081
|
+
type: 'string',
|
|
7082
|
+
'x-title': 'Connected Account ID',
|
|
7083
|
+
},
|
|
7084
|
+
created_at: {
|
|
7085
|
+
description: 'The time when the event was created.',
|
|
7086
|
+
format: 'date-time',
|
|
7087
|
+
type: 'string',
|
|
7088
|
+
'x-title': 'Created At',
|
|
7089
|
+
},
|
|
7090
|
+
event_id: {
|
|
7091
|
+
description: 'The ID of the event.',
|
|
7092
|
+
format: 'uuid',
|
|
7093
|
+
type: 'string',
|
|
7094
|
+
'x-title': 'Event ID',
|
|
7095
|
+
},
|
|
7096
|
+
event_type: {
|
|
7097
|
+
enum: ['connected_account.completed_first_sync'],
|
|
7098
|
+
type: 'string',
|
|
7099
|
+
},
|
|
7100
|
+
occurred_at: {
|
|
7101
|
+
description: 'The time when the event occurred.',
|
|
7102
|
+
format: 'date-time',
|
|
7103
|
+
type: 'string',
|
|
7104
|
+
'x-title': 'Occurred At',
|
|
7105
|
+
},
|
|
7106
|
+
workspace_id: {
|
|
7107
|
+
description: 'The ID of the workspace.',
|
|
7108
|
+
format: 'uuid',
|
|
7109
|
+
type: 'string',
|
|
7110
|
+
'x-title': 'Workspace ID',
|
|
7111
|
+
},
|
|
7112
|
+
},
|
|
7113
|
+
required: [
|
|
7114
|
+
'event_id',
|
|
7115
|
+
'workspace_id',
|
|
7116
|
+
'created_at',
|
|
7117
|
+
'occurred_at',
|
|
7118
|
+
'connected_account_id',
|
|
7119
|
+
'event_type',
|
|
7120
|
+
],
|
|
7121
|
+
type: 'object',
|
|
7122
|
+
},
|
|
7123
|
+
{
|
|
7124
|
+
description: 'A connected account was deleted.',
|
|
7125
|
+
properties: {
|
|
7126
|
+
connected_account_id: {
|
|
7127
|
+
description: 'ID of the connected account.',
|
|
7128
|
+
format: 'uuid',
|
|
7129
|
+
type: 'string',
|
|
7130
|
+
'x-title': 'Connected Account ID',
|
|
7131
|
+
},
|
|
7132
|
+
created_at: {
|
|
7133
|
+
description: 'The time when the event was created.',
|
|
7134
|
+
format: 'date-time',
|
|
7135
|
+
type: 'string',
|
|
7136
|
+
'x-title': 'Created At',
|
|
7137
|
+
},
|
|
7138
|
+
event_id: {
|
|
7139
|
+
description: 'The ID of the event.',
|
|
7140
|
+
format: 'uuid',
|
|
7141
|
+
type: 'string',
|
|
7142
|
+
'x-title': 'Event ID',
|
|
7143
|
+
},
|
|
7144
|
+
event_type: {
|
|
7145
|
+
enum: ['connected_account.deleted'],
|
|
7146
|
+
type: 'string',
|
|
7147
|
+
},
|
|
7148
|
+
occurred_at: {
|
|
7149
|
+
description: 'The time when the event occurred.',
|
|
7150
|
+
format: 'date-time',
|
|
7151
|
+
type: 'string',
|
|
7152
|
+
'x-title': 'Occurred At',
|
|
7153
|
+
},
|
|
7154
|
+
workspace_id: {
|
|
7155
|
+
description: 'The ID of the workspace.',
|
|
7156
|
+
format: 'uuid',
|
|
7157
|
+
type: 'string',
|
|
7158
|
+
'x-title': 'Workspace ID',
|
|
7159
|
+
},
|
|
7160
|
+
},
|
|
7161
|
+
required: [
|
|
7162
|
+
'event_id',
|
|
7163
|
+
'workspace_id',
|
|
7164
|
+
'created_at',
|
|
7165
|
+
'occurred_at',
|
|
7166
|
+
'connected_account_id',
|
|
7167
|
+
'event_type',
|
|
7168
|
+
],
|
|
7169
|
+
type: 'object',
|
|
7170
|
+
},
|
|
7171
|
+
{
|
|
7172
|
+
description: 'A connected account completed the first sync after reconnection with Seam and devices are now available.',
|
|
7173
|
+
properties: {
|
|
7174
|
+
connected_account_id: {
|
|
7175
|
+
description: 'ID of the connected account.',
|
|
7176
|
+
format: 'uuid',
|
|
7177
|
+
type: 'string',
|
|
7178
|
+
'x-title': 'Connected Account ID',
|
|
7179
|
+
},
|
|
7180
|
+
created_at: {
|
|
7181
|
+
description: 'The time when the event was created.',
|
|
7182
|
+
format: 'date-time',
|
|
7183
|
+
type: 'string',
|
|
7184
|
+
'x-title': 'Created At',
|
|
7185
|
+
},
|
|
7186
|
+
event_id: {
|
|
7187
|
+
description: 'The ID of the event.',
|
|
7188
|
+
format: 'uuid',
|
|
7189
|
+
type: 'string',
|
|
7190
|
+
'x-title': 'Event ID',
|
|
7191
|
+
},
|
|
7192
|
+
event_type: {
|
|
7193
|
+
enum: [
|
|
7194
|
+
'connected_account.completed_first_sync_after_reconnection',
|
|
7195
|
+
],
|
|
7196
|
+
type: 'string',
|
|
7197
|
+
},
|
|
7198
|
+
occurred_at: {
|
|
7199
|
+
description: 'The time when the event occurred.',
|
|
7200
|
+
format: 'date-time',
|
|
7201
|
+
type: 'string',
|
|
7202
|
+
'x-title': 'Occurred At',
|
|
7203
|
+
},
|
|
7204
|
+
workspace_id: {
|
|
7205
|
+
description: 'The ID of the workspace.',
|
|
7206
|
+
format: 'uuid',
|
|
7207
|
+
type: 'string',
|
|
7208
|
+
'x-title': 'Workspace ID',
|
|
7209
|
+
},
|
|
7210
|
+
},
|
|
7211
|
+
required: [
|
|
7212
|
+
'event_id',
|
|
7213
|
+
'workspace_id',
|
|
7214
|
+
'created_at',
|
|
7215
|
+
'occurred_at',
|
|
7216
|
+
'connected_account_id',
|
|
7217
|
+
'event_type',
|
|
7218
|
+
],
|
|
7219
|
+
type: 'object',
|
|
7220
|
+
},
|
|
7221
|
+
{
|
|
7222
|
+
description: 'A lock door action attempt succeeded.',
|
|
7223
|
+
properties: {
|
|
7224
|
+
action_attempt_id: {
|
|
7225
|
+
description: 'The ID of the action attempt.',
|
|
7226
|
+
format: 'uuid',
|
|
7227
|
+
type: 'string',
|
|
7228
|
+
'x-title': 'Action Attempt ID',
|
|
7229
|
+
},
|
|
7230
|
+
action_type: {
|
|
7231
|
+
description: 'The type of action.',
|
|
7232
|
+
type: 'string',
|
|
7233
|
+
'x-title': 'Action Type',
|
|
7234
|
+
},
|
|
7235
|
+
created_at: {
|
|
7236
|
+
description: 'The time when the event was created.',
|
|
7237
|
+
format: 'date-time',
|
|
7238
|
+
type: 'string',
|
|
7239
|
+
'x-title': 'Created At',
|
|
7240
|
+
},
|
|
7241
|
+
event_id: {
|
|
7242
|
+
description: 'The ID of the event.',
|
|
7243
|
+
format: 'uuid',
|
|
7244
|
+
type: 'string',
|
|
7245
|
+
'x-title': 'Event ID',
|
|
7246
|
+
},
|
|
7247
|
+
event_type: {
|
|
7248
|
+
enum: ['action_attempt.lock_door.succeeded'],
|
|
7249
|
+
type: 'string',
|
|
7250
|
+
},
|
|
7251
|
+
occurred_at: {
|
|
7252
|
+
description: 'The time when the event occurred.',
|
|
7253
|
+
format: 'date-time',
|
|
7254
|
+
type: 'string',
|
|
7255
|
+
'x-title': 'Occurred At',
|
|
7256
|
+
},
|
|
7257
|
+
status: {
|
|
7258
|
+
description: 'The status of the action.',
|
|
7259
|
+
type: 'string',
|
|
7260
|
+
'x-title': 'Status',
|
|
7261
|
+
},
|
|
7262
|
+
workspace_id: {
|
|
7263
|
+
description: 'The ID of the workspace.',
|
|
7264
|
+
format: 'uuid',
|
|
7265
|
+
type: 'string',
|
|
7266
|
+
'x-title': 'Workspace ID',
|
|
7267
|
+
},
|
|
7268
|
+
},
|
|
7269
|
+
required: [
|
|
7270
|
+
'event_id',
|
|
7271
|
+
'workspace_id',
|
|
7272
|
+
'created_at',
|
|
7273
|
+
'occurred_at',
|
|
7274
|
+
'action_attempt_id',
|
|
7275
|
+
'action_type',
|
|
7276
|
+
'status',
|
|
7277
|
+
'event_type',
|
|
7278
|
+
],
|
|
7279
|
+
type: 'object',
|
|
7280
|
+
},
|
|
7281
|
+
{
|
|
7282
|
+
description: 'A lock door action attempt failed.',
|
|
7283
|
+
properties: {
|
|
7284
|
+
action_attempt_id: {
|
|
7285
|
+
description: 'The ID of the action attempt.',
|
|
7286
|
+
format: 'uuid',
|
|
7287
|
+
type: 'string',
|
|
7288
|
+
'x-title': 'Action Attempt ID',
|
|
7289
|
+
},
|
|
7290
|
+
action_type: {
|
|
7291
|
+
description: 'The type of action.',
|
|
7292
|
+
type: 'string',
|
|
7293
|
+
'x-title': 'Action Type',
|
|
7294
|
+
},
|
|
7295
|
+
created_at: {
|
|
7296
|
+
description: 'The time when the event was created.',
|
|
7297
|
+
format: 'date-time',
|
|
7298
|
+
type: 'string',
|
|
7299
|
+
'x-title': 'Created At',
|
|
7300
|
+
},
|
|
7301
|
+
event_id: {
|
|
7302
|
+
description: 'The ID of the event.',
|
|
7303
|
+
format: 'uuid',
|
|
7304
|
+
type: 'string',
|
|
7305
|
+
'x-title': 'Event ID',
|
|
7306
|
+
},
|
|
7307
|
+
event_type: {
|
|
7308
|
+
enum: ['action_attempt.lock_door.failed'],
|
|
7309
|
+
type: 'string',
|
|
7310
|
+
},
|
|
7311
|
+
occurred_at: {
|
|
7312
|
+
description: 'The time when the event occurred.',
|
|
7313
|
+
format: 'date-time',
|
|
7314
|
+
type: 'string',
|
|
7315
|
+
'x-title': 'Occurred At',
|
|
7316
|
+
},
|
|
7317
|
+
status: {
|
|
7318
|
+
description: 'The status of the action.',
|
|
7319
|
+
type: 'string',
|
|
7320
|
+
'x-title': 'Status',
|
|
7321
|
+
},
|
|
7322
|
+
workspace_id: {
|
|
7323
|
+
description: 'The ID of the workspace.',
|
|
7324
|
+
format: 'uuid',
|
|
7325
|
+
type: 'string',
|
|
7326
|
+
'x-title': 'Workspace ID',
|
|
7327
|
+
},
|
|
7328
|
+
},
|
|
7329
|
+
required: [
|
|
7330
|
+
'event_id',
|
|
7331
|
+
'workspace_id',
|
|
7332
|
+
'created_at',
|
|
7333
|
+
'occurred_at',
|
|
7334
|
+
'action_attempt_id',
|
|
7335
|
+
'action_type',
|
|
7336
|
+
'status',
|
|
7337
|
+
'event_type',
|
|
7338
|
+
],
|
|
7339
|
+
type: 'object',
|
|
7340
|
+
},
|
|
7341
|
+
{
|
|
7342
|
+
description: 'An unlock door action attempt succeeded.',
|
|
7343
|
+
properties: {
|
|
7344
|
+
action_attempt_id: {
|
|
7345
|
+
description: 'The ID of the action attempt.',
|
|
7346
|
+
format: 'uuid',
|
|
7347
|
+
type: 'string',
|
|
7348
|
+
'x-title': 'Action Attempt ID',
|
|
7349
|
+
},
|
|
7350
|
+
action_type: {
|
|
7351
|
+
description: 'The type of action.',
|
|
7352
|
+
type: 'string',
|
|
7353
|
+
'x-title': 'Action Type',
|
|
7354
|
+
},
|
|
7355
|
+
created_at: {
|
|
7356
|
+
description: 'The time when the event was created.',
|
|
7357
|
+
format: 'date-time',
|
|
7358
|
+
type: 'string',
|
|
7359
|
+
'x-title': 'Created At',
|
|
7360
|
+
},
|
|
7361
|
+
event_id: {
|
|
7362
|
+
description: 'The ID of the event.',
|
|
7363
|
+
format: 'uuid',
|
|
7364
|
+
type: 'string',
|
|
7365
|
+
'x-title': 'Event ID',
|
|
7366
|
+
},
|
|
7367
|
+
event_type: {
|
|
7368
|
+
enum: ['action_attempt.unlock_door.succeeded'],
|
|
7369
|
+
type: 'string',
|
|
7370
|
+
},
|
|
7371
|
+
occurred_at: {
|
|
7372
|
+
description: 'The time when the event occurred.',
|
|
7373
|
+
format: 'date-time',
|
|
7374
|
+
type: 'string',
|
|
7375
|
+
'x-title': 'Occurred At',
|
|
7376
|
+
},
|
|
7377
|
+
status: {
|
|
7378
|
+
description: 'The status of the action.',
|
|
7379
|
+
type: 'string',
|
|
7380
|
+
'x-title': 'Status',
|
|
7381
|
+
},
|
|
7382
|
+
workspace_id: {
|
|
7383
|
+
description: 'The ID of the workspace.',
|
|
7384
|
+
format: 'uuid',
|
|
7385
|
+
type: 'string',
|
|
7386
|
+
'x-title': 'Workspace ID',
|
|
7387
|
+
},
|
|
7388
|
+
},
|
|
7389
|
+
required: [
|
|
7390
|
+
'event_id',
|
|
7391
|
+
'workspace_id',
|
|
7392
|
+
'created_at',
|
|
7393
|
+
'occurred_at',
|
|
7394
|
+
'action_attempt_id',
|
|
7395
|
+
'action_type',
|
|
7396
|
+
'status',
|
|
7397
|
+
'event_type',
|
|
7398
|
+
],
|
|
7399
|
+
type: 'object',
|
|
7400
|
+
},
|
|
7401
|
+
{
|
|
7402
|
+
description: 'An unlock door action attempt failed.',
|
|
7403
|
+
properties: {
|
|
7404
|
+
action_attempt_id: {
|
|
7405
|
+
description: 'The ID of the action attempt.',
|
|
7406
|
+
format: 'uuid',
|
|
7407
|
+
type: 'string',
|
|
7408
|
+
'x-title': 'Action Attempt ID',
|
|
7409
|
+
},
|
|
7410
|
+
action_type: {
|
|
7411
|
+
description: 'The type of action.',
|
|
7412
|
+
type: 'string',
|
|
7413
|
+
'x-title': 'Action Type',
|
|
7414
|
+
},
|
|
7415
|
+
created_at: {
|
|
7416
|
+
description: 'The time when the event was created.',
|
|
7417
|
+
format: 'date-time',
|
|
7418
|
+
type: 'string',
|
|
7419
|
+
'x-title': 'Created At',
|
|
7420
|
+
},
|
|
7421
|
+
event_id: {
|
|
7422
|
+
description: 'The ID of the event.',
|
|
7423
|
+
format: 'uuid',
|
|
7424
|
+
type: 'string',
|
|
7425
|
+
'x-title': 'Event ID',
|
|
7426
|
+
},
|
|
7427
|
+
event_type: {
|
|
7428
|
+
enum: ['action_attempt.unlock_door.failed'],
|
|
7429
|
+
type: 'string',
|
|
7430
|
+
},
|
|
7431
|
+
occurred_at: {
|
|
7432
|
+
description: 'The time when the event occurred.',
|
|
7433
|
+
format: 'date-time',
|
|
7434
|
+
type: 'string',
|
|
7435
|
+
'x-title': 'Occurred At',
|
|
7436
|
+
},
|
|
7437
|
+
status: {
|
|
7438
|
+
description: 'The status of the action.',
|
|
7439
|
+
type: 'string',
|
|
7440
|
+
'x-title': 'Status',
|
|
7441
|
+
},
|
|
7442
|
+
workspace_id: {
|
|
7443
|
+
description: 'The ID of the workspace.',
|
|
7444
|
+
format: 'uuid',
|
|
7445
|
+
type: 'string',
|
|
7446
|
+
'x-title': 'Workspace ID',
|
|
7447
|
+
},
|
|
7448
|
+
},
|
|
7449
|
+
required: [
|
|
7450
|
+
'event_id',
|
|
7451
|
+
'workspace_id',
|
|
7452
|
+
'created_at',
|
|
7453
|
+
'occurred_at',
|
|
7454
|
+
'action_attempt_id',
|
|
7455
|
+
'action_type',
|
|
7456
|
+
'status',
|
|
7457
|
+
'event_type',
|
|
7458
|
+
],
|
|
7459
|
+
type: 'object',
|
|
7460
|
+
},
|
|
7461
|
+
{
|
|
7462
|
+
description: 'A connect webview had a successful login.',
|
|
7463
|
+
properties: {
|
|
7464
|
+
connect_webview_id: {
|
|
7465
|
+
description: 'ID of the connect webview.',
|
|
7466
|
+
format: 'uuid',
|
|
7467
|
+
type: 'string',
|
|
7468
|
+
'x-title': 'Connect Webview ID',
|
|
7469
|
+
},
|
|
7470
|
+
connected_account_id: {
|
|
7471
|
+
description: 'ID of the connected account.',
|
|
7472
|
+
format: 'uuid',
|
|
7473
|
+
type: 'string',
|
|
7474
|
+
'x-title': 'Connected Account ID',
|
|
7475
|
+
},
|
|
7476
|
+
created_at: {
|
|
7477
|
+
description: 'The time when the event was created.',
|
|
7478
|
+
format: 'date-time',
|
|
7479
|
+
type: 'string',
|
|
7480
|
+
'x-title': 'Created At',
|
|
7481
|
+
},
|
|
7482
|
+
event_id: {
|
|
7483
|
+
description: 'The ID of the event.',
|
|
7484
|
+
format: 'uuid',
|
|
7485
|
+
type: 'string',
|
|
7486
|
+
'x-title': 'Event ID',
|
|
7487
|
+
},
|
|
7488
|
+
event_type: {
|
|
7489
|
+
enum: ['connect_webview.login_succeeded'],
|
|
7490
|
+
type: 'string',
|
|
7491
|
+
},
|
|
7492
|
+
occurred_at: {
|
|
7493
|
+
description: 'The time when the event occurred.',
|
|
7494
|
+
format: 'date-time',
|
|
7495
|
+
type: 'string',
|
|
7496
|
+
'x-title': 'Occurred At',
|
|
7497
|
+
},
|
|
7498
|
+
workspace_id: {
|
|
7499
|
+
description: 'The ID of the workspace.',
|
|
7500
|
+
format: 'uuid',
|
|
7501
|
+
type: 'string',
|
|
7502
|
+
'x-title': 'Workspace ID',
|
|
7503
|
+
},
|
|
7504
|
+
},
|
|
7505
|
+
required: [
|
|
7506
|
+
'event_id',
|
|
7507
|
+
'workspace_id',
|
|
7508
|
+
'created_at',
|
|
7509
|
+
'occurred_at',
|
|
7510
|
+
'connect_webview_id',
|
|
7511
|
+
'event_type',
|
|
7512
|
+
'connected_account_id',
|
|
7513
|
+
],
|
|
7514
|
+
type: 'object',
|
|
7515
|
+
},
|
|
7516
|
+
{
|
|
7517
|
+
description: 'A connect webview had a failed login.',
|
|
7518
|
+
properties: {
|
|
7519
|
+
connect_webview_id: {
|
|
7520
|
+
description: 'ID of the connect webview.',
|
|
7521
|
+
format: 'uuid',
|
|
7522
|
+
type: 'string',
|
|
7523
|
+
'x-title': 'Connect Webview ID',
|
|
7524
|
+
},
|
|
7525
|
+
created_at: {
|
|
7526
|
+
description: 'The time when the event was created.',
|
|
7527
|
+
format: 'date-time',
|
|
7528
|
+
type: 'string',
|
|
7529
|
+
'x-title': 'Created At',
|
|
7530
|
+
},
|
|
7531
|
+
event_id: {
|
|
7532
|
+
description: 'The ID of the event.',
|
|
7533
|
+
format: 'uuid',
|
|
7534
|
+
type: 'string',
|
|
7535
|
+
'x-title': 'Event ID',
|
|
7536
|
+
},
|
|
7537
|
+
event_type: {
|
|
7538
|
+
enum: ['connect_webview.login_failed'],
|
|
7539
|
+
type: 'string',
|
|
7540
|
+
},
|
|
7541
|
+
occurred_at: {
|
|
7542
|
+
description: 'The time when the event occurred.',
|
|
7543
|
+
format: 'date-time',
|
|
7544
|
+
type: 'string',
|
|
7545
|
+
'x-title': 'Occurred At',
|
|
7546
|
+
},
|
|
7547
|
+
workspace_id: {
|
|
7548
|
+
description: 'The ID of the workspace.',
|
|
7549
|
+
format: 'uuid',
|
|
7550
|
+
type: 'string',
|
|
7551
|
+
'x-title': 'Workspace ID',
|
|
7552
|
+
},
|
|
7553
|
+
},
|
|
7554
|
+
required: [
|
|
7555
|
+
'event_id',
|
|
7556
|
+
'workspace_id',
|
|
7557
|
+
'created_at',
|
|
7558
|
+
'occurred_at',
|
|
7559
|
+
'connect_webview_id',
|
|
7560
|
+
'event_type',
|
|
7561
|
+
],
|
|
7562
|
+
type: 'object',
|
|
7563
|
+
},
|
|
7564
|
+
{
|
|
7565
|
+
description: 'A new device was connected to Seam.',
|
|
7566
|
+
properties: {
|
|
7567
|
+
connected_account_id: {
|
|
7568
|
+
description: 'ID of the connected account.',
|
|
7569
|
+
format: 'uuid',
|
|
7570
|
+
type: 'string',
|
|
7571
|
+
'x-title': 'Connected Account ID',
|
|
7572
|
+
},
|
|
7573
|
+
created_at: {
|
|
7574
|
+
description: 'The time when the event was created.',
|
|
7575
|
+
format: 'date-time',
|
|
7576
|
+
type: 'string',
|
|
7577
|
+
'x-title': 'Created At',
|
|
7578
|
+
},
|
|
7579
|
+
device_id: {
|
|
7580
|
+
description: 'ID of the device.',
|
|
7581
|
+
format: 'uuid',
|
|
7582
|
+
type: 'string',
|
|
7583
|
+
'x-title': 'Device ID',
|
|
7584
|
+
},
|
|
7585
|
+
event_id: {
|
|
7586
|
+
description: 'The ID of the event.',
|
|
7587
|
+
format: 'uuid',
|
|
7588
|
+
type: 'string',
|
|
7589
|
+
'x-title': 'Event ID',
|
|
7590
|
+
},
|
|
7591
|
+
event_type: { enum: ['device.connected'], type: 'string' },
|
|
7592
|
+
occurred_at: {
|
|
7593
|
+
description: 'The time when the event occurred.',
|
|
7594
|
+
format: 'date-time',
|
|
7595
|
+
type: 'string',
|
|
7596
|
+
'x-title': 'Occurred At',
|
|
7597
|
+
},
|
|
7598
|
+
workspace_id: {
|
|
7599
|
+
description: 'The ID of the workspace.',
|
|
7600
|
+
format: 'uuid',
|
|
7601
|
+
type: 'string',
|
|
7602
|
+
'x-title': 'Workspace ID',
|
|
7603
|
+
},
|
|
7604
|
+
},
|
|
7605
|
+
required: [
|
|
7606
|
+
'event_id',
|
|
7607
|
+
'workspace_id',
|
|
7608
|
+
'created_at',
|
|
7609
|
+
'occurred_at',
|
|
7610
|
+
'device_id',
|
|
7611
|
+
'connected_account_id',
|
|
7612
|
+
'event_type',
|
|
7613
|
+
],
|
|
7614
|
+
type: 'object',
|
|
7615
|
+
},
|
|
7616
|
+
{
|
|
7617
|
+
description: 'A device has been added or reconnected to Seam.',
|
|
7618
|
+
properties: {
|
|
7619
|
+
connected_account_id: {
|
|
7620
|
+
description: 'ID of the connected account.',
|
|
7621
|
+
format: 'uuid',
|
|
7622
|
+
type: 'string',
|
|
7623
|
+
'x-title': 'Connected Account ID',
|
|
7624
|
+
},
|
|
7625
|
+
created_at: {
|
|
7626
|
+
description: 'The time when the event was created.',
|
|
7627
|
+
format: 'date-time',
|
|
7628
|
+
type: 'string',
|
|
7629
|
+
'x-title': 'Created At',
|
|
7630
|
+
},
|
|
7631
|
+
device_id: {
|
|
7632
|
+
description: 'ID of the device.',
|
|
7633
|
+
format: 'uuid',
|
|
7634
|
+
type: 'string',
|
|
7635
|
+
'x-title': 'Device ID',
|
|
7636
|
+
},
|
|
7637
|
+
event_id: {
|
|
7638
|
+
description: 'The ID of the event.',
|
|
7639
|
+
format: 'uuid',
|
|
7640
|
+
type: 'string',
|
|
7641
|
+
'x-title': 'Event ID',
|
|
7642
|
+
},
|
|
7643
|
+
event_type: { enum: ['device.added'], type: 'string' },
|
|
7644
|
+
occurred_at: {
|
|
7645
|
+
description: 'The time when the event occurred.',
|
|
7646
|
+
format: 'date-time',
|
|
7647
|
+
type: 'string',
|
|
7648
|
+
'x-title': 'Occurred At',
|
|
7649
|
+
},
|
|
7650
|
+
workspace_id: {
|
|
7651
|
+
description: 'The ID of the workspace.',
|
|
7652
|
+
format: 'uuid',
|
|
7653
|
+
type: 'string',
|
|
7654
|
+
'x-title': 'Workspace ID',
|
|
7655
|
+
},
|
|
7656
|
+
},
|
|
7657
|
+
required: [
|
|
7658
|
+
'event_id',
|
|
7659
|
+
'workspace_id',
|
|
7660
|
+
'created_at',
|
|
7661
|
+
'occurred_at',
|
|
7662
|
+
'device_id',
|
|
7663
|
+
'connected_account_id',
|
|
7664
|
+
'event_type',
|
|
7665
|
+
],
|
|
7666
|
+
type: 'object',
|
|
7667
|
+
},
|
|
7668
|
+
{
|
|
7669
|
+
description: 'An unmanaged device was successfully converted to a managed device.',
|
|
7670
|
+
properties: {
|
|
7671
|
+
connected_account_id: {
|
|
7672
|
+
description: 'ID of the connected account.',
|
|
7673
|
+
format: 'uuid',
|
|
7674
|
+
type: 'string',
|
|
7675
|
+
'x-title': 'Connected Account ID',
|
|
7676
|
+
},
|
|
7677
|
+
created_at: {
|
|
7678
|
+
description: 'The time when the event was created.',
|
|
7679
|
+
format: 'date-time',
|
|
7680
|
+
type: 'string',
|
|
7681
|
+
'x-title': 'Created At',
|
|
7682
|
+
},
|
|
7683
|
+
device_id: {
|
|
7684
|
+
description: 'ID of the device.',
|
|
7685
|
+
format: 'uuid',
|
|
7686
|
+
type: 'string',
|
|
7687
|
+
'x-title': 'Device ID',
|
|
7688
|
+
},
|
|
7689
|
+
event_id: {
|
|
7690
|
+
description: 'The ID of the event.',
|
|
7691
|
+
format: 'uuid',
|
|
7692
|
+
type: 'string',
|
|
7693
|
+
'x-title': 'Event ID',
|
|
7694
|
+
},
|
|
7695
|
+
event_type: {
|
|
7696
|
+
enum: ['device.converted_to_unmanaged'],
|
|
7697
|
+
type: 'string',
|
|
7698
|
+
},
|
|
7699
|
+
occurred_at: {
|
|
7700
|
+
description: 'The time when the event occurred.',
|
|
7701
|
+
format: 'date-time',
|
|
7702
|
+
type: 'string',
|
|
7703
|
+
'x-title': 'Occurred At',
|
|
7704
|
+
},
|
|
7705
|
+
workspace_id: {
|
|
7706
|
+
description: 'The ID of the workspace.',
|
|
7707
|
+
format: 'uuid',
|
|
7708
|
+
type: 'string',
|
|
7709
|
+
'x-title': 'Workspace ID',
|
|
7710
|
+
},
|
|
7711
|
+
},
|
|
7712
|
+
required: [
|
|
7713
|
+
'event_id',
|
|
7714
|
+
'workspace_id',
|
|
7715
|
+
'created_at',
|
|
7716
|
+
'occurred_at',
|
|
7717
|
+
'device_id',
|
|
7718
|
+
'connected_account_id',
|
|
7719
|
+
'event_type',
|
|
7720
|
+
],
|
|
7721
|
+
type: 'object',
|
|
7722
|
+
},
|
|
7723
|
+
{
|
|
7724
|
+
description: 'A managed device was successfully converted to an unmanaged device.',
|
|
7725
|
+
properties: {
|
|
7726
|
+
connected_account_id: {
|
|
7727
|
+
description: 'ID of the connected account.',
|
|
7728
|
+
format: 'uuid',
|
|
7729
|
+
type: 'string',
|
|
7730
|
+
'x-title': 'Connected Account ID',
|
|
7731
|
+
},
|
|
7732
|
+
created_at: {
|
|
7733
|
+
description: 'The time when the event was created.',
|
|
7734
|
+
format: 'date-time',
|
|
7735
|
+
type: 'string',
|
|
7736
|
+
'x-title': 'Created At',
|
|
7737
|
+
},
|
|
7738
|
+
device_id: {
|
|
7739
|
+
description: 'ID of the device.',
|
|
7740
|
+
format: 'uuid',
|
|
7741
|
+
type: 'string',
|
|
7742
|
+
'x-title': 'Device ID',
|
|
7743
|
+
},
|
|
7744
|
+
event_id: {
|
|
7745
|
+
description: 'The ID of the event.',
|
|
7746
|
+
format: 'uuid',
|
|
7747
|
+
type: 'string',
|
|
7748
|
+
'x-title': 'Event ID',
|
|
7749
|
+
},
|
|
7750
|
+
event_type: {
|
|
7751
|
+
enum: ['device.unmanaged.converted_to_managed'],
|
|
7752
|
+
type: 'string',
|
|
7753
|
+
},
|
|
7754
|
+
occurred_at: {
|
|
7755
|
+
description: 'The time when the event occurred.',
|
|
7756
|
+
format: 'date-time',
|
|
7757
|
+
type: 'string',
|
|
7758
|
+
'x-title': 'Occurred At',
|
|
7759
|
+
},
|
|
7760
|
+
workspace_id: {
|
|
7761
|
+
description: 'The ID of the workspace.',
|
|
7762
|
+
format: 'uuid',
|
|
7763
|
+
type: 'string',
|
|
7764
|
+
'x-title': 'Workspace ID',
|
|
7765
|
+
},
|
|
7766
|
+
},
|
|
7767
|
+
required: [
|
|
7768
|
+
'event_id',
|
|
7769
|
+
'workspace_id',
|
|
7770
|
+
'created_at',
|
|
7771
|
+
'occurred_at',
|
|
7772
|
+
'device_id',
|
|
7773
|
+
'connected_account_id',
|
|
7774
|
+
'event_type',
|
|
7775
|
+
],
|
|
7776
|
+
type: 'object',
|
|
7777
|
+
},
|
|
7778
|
+
{
|
|
7779
|
+
description: 'An unmanaged device was connected to Seam',
|
|
7780
|
+
properties: {
|
|
7781
|
+
connected_account_id: {
|
|
7782
|
+
description: 'ID of the connected account.',
|
|
7783
|
+
format: 'uuid',
|
|
7784
|
+
type: 'string',
|
|
7785
|
+
'x-title': 'Connected Account ID',
|
|
7786
|
+
},
|
|
7787
|
+
created_at: {
|
|
7788
|
+
description: 'The time when the event was created.',
|
|
7789
|
+
format: 'date-time',
|
|
7790
|
+
type: 'string',
|
|
7791
|
+
'x-title': 'Created At',
|
|
7792
|
+
},
|
|
7793
|
+
device_id: {
|
|
7794
|
+
description: 'ID of the device.',
|
|
7795
|
+
format: 'uuid',
|
|
7796
|
+
type: 'string',
|
|
7797
|
+
'x-title': 'Device ID',
|
|
7798
|
+
},
|
|
7799
|
+
event_id: {
|
|
7800
|
+
description: 'The ID of the event.',
|
|
7801
|
+
format: 'uuid',
|
|
7802
|
+
type: 'string',
|
|
7803
|
+
'x-title': 'Event ID',
|
|
7804
|
+
},
|
|
7805
|
+
event_type: {
|
|
7806
|
+
enum: ['device.unmanaged.connected'],
|
|
7807
|
+
type: 'string',
|
|
7808
|
+
},
|
|
7809
|
+
occurred_at: {
|
|
7810
|
+
description: 'The time when the event occurred.',
|
|
7811
|
+
format: 'date-time',
|
|
7812
|
+
type: 'string',
|
|
7813
|
+
'x-title': 'Occurred At',
|
|
7814
|
+
},
|
|
7815
|
+
workspace_id: {
|
|
7816
|
+
description: 'The ID of the workspace.',
|
|
7817
|
+
format: 'uuid',
|
|
7818
|
+
type: 'string',
|
|
7819
|
+
'x-title': 'Workspace ID',
|
|
7820
|
+
},
|
|
7821
|
+
},
|
|
7822
|
+
required: [
|
|
7823
|
+
'event_id',
|
|
7824
|
+
'workspace_id',
|
|
7825
|
+
'created_at',
|
|
7826
|
+
'occurred_at',
|
|
7827
|
+
'device_id',
|
|
7828
|
+
'connected_account_id',
|
|
7829
|
+
'event_type',
|
|
7830
|
+
],
|
|
7831
|
+
type: 'object',
|
|
7832
|
+
},
|
|
7833
|
+
{
|
|
7834
|
+
description: 'A device was disconnected',
|
|
7835
|
+
properties: {
|
|
7836
|
+
connected_account_id: {
|
|
7837
|
+
description: 'ID of the connected account.',
|
|
7838
|
+
format: 'uuid',
|
|
7839
|
+
type: 'string',
|
|
7840
|
+
'x-title': 'Connected Account ID',
|
|
7841
|
+
},
|
|
7842
|
+
created_at: {
|
|
7843
|
+
description: 'The time when the event was created.',
|
|
7844
|
+
format: 'date-time',
|
|
7845
|
+
type: 'string',
|
|
7846
|
+
'x-title': 'Created At',
|
|
7847
|
+
},
|
|
7848
|
+
device_id: {
|
|
7849
|
+
description: 'ID of the device.',
|
|
7850
|
+
format: 'uuid',
|
|
7851
|
+
type: 'string',
|
|
7852
|
+
'x-title': 'Device ID',
|
|
7853
|
+
},
|
|
7854
|
+
error_code: {
|
|
7855
|
+
description: 'The error code associated with the event, if any.',
|
|
7856
|
+
enum: [
|
|
7857
|
+
'account_disconnected',
|
|
7858
|
+
'hub_disconnected',
|
|
7859
|
+
'device_disconnected',
|
|
7860
|
+
],
|
|
7861
|
+
type: 'string',
|
|
7862
|
+
'x-title': 'Event Error Code',
|
|
7863
|
+
},
|
|
7864
|
+
event_id: {
|
|
7865
|
+
description: 'The ID of the event.',
|
|
7866
|
+
format: 'uuid',
|
|
7867
|
+
type: 'string',
|
|
7868
|
+
'x-title': 'Event ID',
|
|
7869
|
+
},
|
|
7870
|
+
event_type: { enum: ['device.disconnected'], type: 'string' },
|
|
7871
|
+
occurred_at: {
|
|
7872
|
+
description: 'The time when the event occurred.',
|
|
7873
|
+
format: 'date-time',
|
|
7874
|
+
type: 'string',
|
|
7875
|
+
'x-title': 'Occurred At',
|
|
7876
|
+
},
|
|
7877
|
+
workspace_id: {
|
|
7878
|
+
description: 'The ID of the workspace.',
|
|
7879
|
+
format: 'uuid',
|
|
7880
|
+
type: 'string',
|
|
7881
|
+
'x-title': 'Workspace ID',
|
|
7882
|
+
},
|
|
7883
|
+
},
|
|
7884
|
+
required: [
|
|
7885
|
+
'event_id',
|
|
7886
|
+
'workspace_id',
|
|
7887
|
+
'created_at',
|
|
7888
|
+
'occurred_at',
|
|
7889
|
+
'device_id',
|
|
7890
|
+
'connected_account_id',
|
|
7891
|
+
'event_type',
|
|
7892
|
+
'error_code',
|
|
7893
|
+
],
|
|
7894
|
+
type: 'object',
|
|
7895
|
+
},
|
|
7896
|
+
{
|
|
7897
|
+
description: 'An unmanaged device was disconnected',
|
|
7898
|
+
properties: {
|
|
7899
|
+
connected_account_id: {
|
|
7900
|
+
description: 'ID of the connected account.',
|
|
7901
|
+
format: 'uuid',
|
|
7902
|
+
type: 'string',
|
|
7903
|
+
'x-title': 'Connected Account ID',
|
|
7904
|
+
},
|
|
7905
|
+
created_at: {
|
|
7906
|
+
description: 'The time when the event was created.',
|
|
7907
|
+
format: 'date-time',
|
|
7908
|
+
type: 'string',
|
|
7909
|
+
'x-title': 'Created At',
|
|
7910
|
+
},
|
|
7911
|
+
device_id: {
|
|
7912
|
+
description: 'ID of the device.',
|
|
7913
|
+
format: 'uuid',
|
|
7914
|
+
type: 'string',
|
|
7915
|
+
'x-title': 'Device ID',
|
|
7916
|
+
},
|
|
7917
|
+
error_code: {
|
|
7918
|
+
description: 'The error code associated with the event, if any.',
|
|
7919
|
+
enum: [
|
|
7920
|
+
'account_disconnected',
|
|
7921
|
+
'hub_disconnected',
|
|
7922
|
+
'device_disconnected',
|
|
7923
|
+
],
|
|
7924
|
+
type: 'string',
|
|
7925
|
+
'x-title': 'Event Error Code',
|
|
7926
|
+
},
|
|
7927
|
+
event_id: {
|
|
7928
|
+
description: 'The ID of the event.',
|
|
7929
|
+
format: 'uuid',
|
|
7930
|
+
type: 'string',
|
|
7931
|
+
'x-title': 'Event ID',
|
|
7932
|
+
},
|
|
7933
|
+
event_type: {
|
|
7934
|
+
enum: ['device.unmanaged.disconnected'],
|
|
7935
|
+
type: 'string',
|
|
7936
|
+
},
|
|
7937
|
+
occurred_at: {
|
|
7938
|
+
description: 'The time when the event occurred.',
|
|
7939
|
+
format: 'date-time',
|
|
7940
|
+
type: 'string',
|
|
7941
|
+
'x-title': 'Occurred At',
|
|
7942
|
+
},
|
|
7943
|
+
workspace_id: {
|
|
7944
|
+
description: 'The ID of the workspace.',
|
|
7945
|
+
format: 'uuid',
|
|
7946
|
+
type: 'string',
|
|
7947
|
+
'x-title': 'Workspace ID',
|
|
7948
|
+
},
|
|
7949
|
+
},
|
|
7950
|
+
required: [
|
|
7951
|
+
'event_id',
|
|
7952
|
+
'workspace_id',
|
|
7953
|
+
'created_at',
|
|
7954
|
+
'occurred_at',
|
|
7955
|
+
'device_id',
|
|
7956
|
+
'connected_account_id',
|
|
7957
|
+
'event_type',
|
|
7958
|
+
'error_code',
|
|
7959
|
+
],
|
|
7960
|
+
type: 'object',
|
|
7961
|
+
},
|
|
7962
|
+
{
|
|
7963
|
+
description: 'A device detected that it was tampered with, e.g., opened or moved.',
|
|
7964
|
+
properties: {
|
|
7965
|
+
connected_account_id: {
|
|
7966
|
+
description: 'ID of the connected account.',
|
|
7967
|
+
format: 'uuid',
|
|
7968
|
+
type: 'string',
|
|
7969
|
+
'x-title': 'Connected Account ID',
|
|
7970
|
+
},
|
|
7971
|
+
created_at: {
|
|
7972
|
+
description: 'The time when the event was created.',
|
|
7973
|
+
format: 'date-time',
|
|
7974
|
+
type: 'string',
|
|
7975
|
+
'x-title': 'Created At',
|
|
7976
|
+
},
|
|
7977
|
+
device_id: {
|
|
7978
|
+
description: 'ID of the device.',
|
|
7979
|
+
format: 'uuid',
|
|
7980
|
+
type: 'string',
|
|
7981
|
+
'x-title': 'Device ID',
|
|
7982
|
+
},
|
|
7983
|
+
event_id: {
|
|
7984
|
+
description: 'The ID of the event.',
|
|
7985
|
+
format: 'uuid',
|
|
7986
|
+
type: 'string',
|
|
7987
|
+
'x-title': 'Event ID',
|
|
7988
|
+
},
|
|
7989
|
+
event_type: { enum: ['device.tampered'], type: 'string' },
|
|
7990
|
+
occurred_at: {
|
|
7991
|
+
description: 'The time when the event occurred.',
|
|
7992
|
+
format: 'date-time',
|
|
7993
|
+
type: 'string',
|
|
7994
|
+
'x-title': 'Occurred At',
|
|
7995
|
+
},
|
|
7996
|
+
workspace_id: {
|
|
7997
|
+
description: 'The ID of the workspace.',
|
|
7998
|
+
format: 'uuid',
|
|
7999
|
+
type: 'string',
|
|
8000
|
+
'x-title': 'Workspace ID',
|
|
8001
|
+
},
|
|
8002
|
+
},
|
|
8003
|
+
required: [
|
|
8004
|
+
'event_id',
|
|
8005
|
+
'workspace_id',
|
|
8006
|
+
'created_at',
|
|
8007
|
+
'occurred_at',
|
|
8008
|
+
'device_id',
|
|
8009
|
+
'connected_account_id',
|
|
8010
|
+
'event_type',
|
|
8011
|
+
],
|
|
8012
|
+
type: 'object',
|
|
8013
|
+
},
|
|
8014
|
+
{
|
|
8015
|
+
description: 'A device battery level dropped below the low threshold.',
|
|
8016
|
+
properties: {
|
|
8017
|
+
battery_level: {
|
|
8018
|
+
description: 'Fractional number 0 to 1.0 indicating amount of battery in device, as reported by device.',
|
|
8019
|
+
format: 'float',
|
|
8020
|
+
maximum: 1,
|
|
8021
|
+
minimum: 0,
|
|
8022
|
+
type: 'number',
|
|
8023
|
+
'x-title': 'Battery Level',
|
|
8024
|
+
},
|
|
8025
|
+
connected_account_id: {
|
|
8026
|
+
description: 'ID of the connected account.',
|
|
8027
|
+
format: 'uuid',
|
|
8028
|
+
type: 'string',
|
|
8029
|
+
'x-title': 'Connected Account ID',
|
|
8030
|
+
},
|
|
8031
|
+
created_at: {
|
|
8032
|
+
description: 'The time when the event was created.',
|
|
8033
|
+
format: 'date-time',
|
|
8034
|
+
type: 'string',
|
|
8035
|
+
'x-title': 'Created At',
|
|
8036
|
+
},
|
|
8037
|
+
device_id: {
|
|
8038
|
+
description: 'ID of the device.',
|
|
8039
|
+
format: 'uuid',
|
|
8040
|
+
type: 'string',
|
|
8041
|
+
'x-title': 'Device ID',
|
|
8042
|
+
},
|
|
8043
|
+
event_id: {
|
|
8044
|
+
description: 'The ID of the event.',
|
|
8045
|
+
format: 'uuid',
|
|
8046
|
+
type: 'string',
|
|
8047
|
+
'x-title': 'Event ID',
|
|
8048
|
+
},
|
|
8049
|
+
event_type: { enum: ['device.low_battery'], type: 'string' },
|
|
8050
|
+
occurred_at: {
|
|
8051
|
+
description: 'The time when the event occurred.',
|
|
8052
|
+
format: 'date-time',
|
|
8053
|
+
type: 'string',
|
|
8054
|
+
'x-title': 'Occurred At',
|
|
8055
|
+
},
|
|
8056
|
+
workspace_id: {
|
|
8057
|
+
description: 'The ID of the workspace.',
|
|
8058
|
+
format: 'uuid',
|
|
8059
|
+
type: 'string',
|
|
8060
|
+
'x-title': 'Workspace ID',
|
|
8061
|
+
},
|
|
8062
|
+
},
|
|
8063
|
+
required: [
|
|
8064
|
+
'event_id',
|
|
8065
|
+
'workspace_id',
|
|
8066
|
+
'created_at',
|
|
8067
|
+
'occurred_at',
|
|
8068
|
+
'device_id',
|
|
8069
|
+
'connected_account_id',
|
|
8070
|
+
'event_type',
|
|
8071
|
+
'battery_level',
|
|
8072
|
+
],
|
|
8073
|
+
type: 'object',
|
|
8074
|
+
},
|
|
8075
|
+
{
|
|
8076
|
+
description: 'A device battery status changed since the last battery status changed event.',
|
|
8077
|
+
properties: {
|
|
8078
|
+
battery_level: {
|
|
8079
|
+
description: 'Fractional number 0 to 1.0 indicating amount of battery in device, as reported by device.',
|
|
8080
|
+
format: 'float',
|
|
8081
|
+
maximum: 1,
|
|
8082
|
+
minimum: 0,
|
|
8083
|
+
type: 'number',
|
|
8084
|
+
'x-title': 'Battery Level',
|
|
8085
|
+
},
|
|
8086
|
+
battery_status: {
|
|
8087
|
+
description: "Enum representing the battery status calculated from numeric battery_level value, one of 'critical' | 'low' | 'good' | 'full'",
|
|
8088
|
+
enum: ['critical', 'low', 'good', 'full'],
|
|
8089
|
+
type: 'string',
|
|
8090
|
+
'x-title': 'Battery Status',
|
|
8091
|
+
},
|
|
8092
|
+
connected_account_id: {
|
|
8093
|
+
description: 'ID of the connected account.',
|
|
8094
|
+
format: 'uuid',
|
|
8095
|
+
type: 'string',
|
|
8096
|
+
'x-title': 'Connected Account ID',
|
|
8097
|
+
},
|
|
8098
|
+
created_at: {
|
|
8099
|
+
description: 'The time when the event was created.',
|
|
8100
|
+
format: 'date-time',
|
|
8101
|
+
type: 'string',
|
|
8102
|
+
'x-title': 'Created At',
|
|
8103
|
+
},
|
|
8104
|
+
device_id: {
|
|
8105
|
+
description: 'ID of the device.',
|
|
8106
|
+
format: 'uuid',
|
|
8107
|
+
type: 'string',
|
|
8108
|
+
'x-title': 'Device ID',
|
|
8109
|
+
},
|
|
8110
|
+
event_id: {
|
|
8111
|
+
description: 'The ID of the event.',
|
|
8112
|
+
format: 'uuid',
|
|
8113
|
+
type: 'string',
|
|
8114
|
+
'x-title': 'Event ID',
|
|
8115
|
+
},
|
|
8116
|
+
event_type: {
|
|
8117
|
+
enum: ['device.battery_status_changed'],
|
|
8118
|
+
type: 'string',
|
|
8119
|
+
},
|
|
8120
|
+
occurred_at: {
|
|
8121
|
+
description: 'The time when the event occurred.',
|
|
8122
|
+
format: 'date-time',
|
|
8123
|
+
type: 'string',
|
|
8124
|
+
'x-title': 'Occurred At',
|
|
8125
|
+
},
|
|
8126
|
+
workspace_id: {
|
|
8127
|
+
description: 'The ID of the workspace.',
|
|
8128
|
+
format: 'uuid',
|
|
8129
|
+
type: 'string',
|
|
8130
|
+
'x-title': 'Workspace ID',
|
|
8131
|
+
},
|
|
8132
|
+
},
|
|
8133
|
+
required: [
|
|
8134
|
+
'event_id',
|
|
8135
|
+
'workspace_id',
|
|
8136
|
+
'created_at',
|
|
8137
|
+
'occurred_at',
|
|
8138
|
+
'device_id',
|
|
8139
|
+
'connected_account_id',
|
|
8140
|
+
'event_type',
|
|
8141
|
+
'battery_status',
|
|
8142
|
+
'battery_level',
|
|
8143
|
+
],
|
|
8144
|
+
type: 'object',
|
|
8145
|
+
},
|
|
8146
|
+
{
|
|
8147
|
+
description: 'A device was removed externally from the connected account.',
|
|
8148
|
+
properties: {
|
|
8149
|
+
connected_account_id: {
|
|
8150
|
+
description: 'ID of the connected account.',
|
|
8151
|
+
format: 'uuid',
|
|
8152
|
+
type: 'string',
|
|
8153
|
+
'x-title': 'Connected Account ID',
|
|
8154
|
+
},
|
|
8155
|
+
created_at: {
|
|
8156
|
+
description: 'The time when the event was created.',
|
|
8157
|
+
format: 'date-time',
|
|
8158
|
+
type: 'string',
|
|
8159
|
+
'x-title': 'Created At',
|
|
8160
|
+
},
|
|
8161
|
+
device_id: {
|
|
8162
|
+
description: 'ID of the device.',
|
|
8163
|
+
format: 'uuid',
|
|
8164
|
+
type: 'string',
|
|
8165
|
+
'x-title': 'Device ID',
|
|
8166
|
+
},
|
|
8167
|
+
event_id: {
|
|
8168
|
+
description: 'The ID of the event.',
|
|
8169
|
+
format: 'uuid',
|
|
8170
|
+
type: 'string',
|
|
8171
|
+
'x-title': 'Event ID',
|
|
8172
|
+
},
|
|
8173
|
+
event_type: { enum: ['device.removed'], type: 'string' },
|
|
8174
|
+
occurred_at: {
|
|
8175
|
+
description: 'The time when the event occurred.',
|
|
8176
|
+
format: 'date-time',
|
|
8177
|
+
type: 'string',
|
|
8178
|
+
'x-title': 'Occurred At',
|
|
8179
|
+
},
|
|
8180
|
+
workspace_id: {
|
|
8181
|
+
description: 'The ID of the workspace.',
|
|
8182
|
+
format: 'uuid',
|
|
8183
|
+
type: 'string',
|
|
8184
|
+
'x-title': 'Workspace ID',
|
|
8185
|
+
},
|
|
8186
|
+
},
|
|
8187
|
+
required: [
|
|
8188
|
+
'event_id',
|
|
8189
|
+
'workspace_id',
|
|
8190
|
+
'created_at',
|
|
8191
|
+
'occurred_at',
|
|
8192
|
+
'device_id',
|
|
8193
|
+
'connected_account_id',
|
|
8194
|
+
'event_type',
|
|
8195
|
+
],
|
|
8196
|
+
type: 'object',
|
|
8197
|
+
},
|
|
8198
|
+
{
|
|
8199
|
+
description: 'A device was deleted.',
|
|
8200
|
+
properties: {
|
|
8201
|
+
connected_account_id: {
|
|
8202
|
+
description: 'ID of the connected account.',
|
|
8203
|
+
format: 'uuid',
|
|
8204
|
+
type: 'string',
|
|
8205
|
+
'x-title': 'Connected Account ID',
|
|
8206
|
+
},
|
|
8207
|
+
created_at: {
|
|
8208
|
+
description: 'The time when the event was created.',
|
|
8209
|
+
format: 'date-time',
|
|
8210
|
+
type: 'string',
|
|
8211
|
+
'x-title': 'Created At',
|
|
8212
|
+
},
|
|
8213
|
+
device_id: {
|
|
8214
|
+
description: 'ID of the device.',
|
|
8215
|
+
format: 'uuid',
|
|
8216
|
+
type: 'string',
|
|
8217
|
+
'x-title': 'Device ID',
|
|
8218
|
+
},
|
|
8219
|
+
event_id: {
|
|
8220
|
+
description: 'The ID of the event.',
|
|
8221
|
+
format: 'uuid',
|
|
8222
|
+
type: 'string',
|
|
8223
|
+
'x-title': 'Event ID',
|
|
8224
|
+
},
|
|
8225
|
+
event_type: { enum: ['device.deleted'], type: 'string' },
|
|
8226
|
+
occurred_at: {
|
|
8227
|
+
description: 'The time when the event occurred.',
|
|
8228
|
+
format: 'date-time',
|
|
8229
|
+
type: 'string',
|
|
8230
|
+
'x-title': 'Occurred At',
|
|
8231
|
+
},
|
|
8232
|
+
workspace_id: {
|
|
8233
|
+
description: 'The ID of the workspace.',
|
|
8234
|
+
format: 'uuid',
|
|
8235
|
+
type: 'string',
|
|
8236
|
+
'x-title': 'Workspace ID',
|
|
8237
|
+
},
|
|
8238
|
+
},
|
|
8239
|
+
required: [
|
|
8240
|
+
'event_id',
|
|
8241
|
+
'workspace_id',
|
|
8242
|
+
'created_at',
|
|
8243
|
+
'occurred_at',
|
|
8244
|
+
'device_id',
|
|
8245
|
+
'connected_account_id',
|
|
8246
|
+
'event_type',
|
|
8247
|
+
],
|
|
8248
|
+
type: 'object',
|
|
8249
|
+
},
|
|
8250
|
+
{
|
|
8251
|
+
description: 'Seam detected a device is using a third party integration that will interfere with Seam device management.',
|
|
8252
|
+
properties: {
|
|
8253
|
+
connected_account_id: {
|
|
8254
|
+
description: 'ID of the connected account.',
|
|
8255
|
+
format: 'uuid',
|
|
8256
|
+
type: 'string',
|
|
8257
|
+
'x-title': 'Connected Account ID',
|
|
8258
|
+
},
|
|
8259
|
+
created_at: {
|
|
8260
|
+
description: 'The time when the event was created.',
|
|
8261
|
+
format: 'date-time',
|
|
8262
|
+
type: 'string',
|
|
8263
|
+
'x-title': 'Created At',
|
|
8264
|
+
},
|
|
8265
|
+
device_id: {
|
|
8266
|
+
description: 'ID of the device.',
|
|
8267
|
+
format: 'uuid',
|
|
8268
|
+
type: 'string',
|
|
8269
|
+
'x-title': 'Device ID',
|
|
8270
|
+
},
|
|
8271
|
+
event_id: {
|
|
8272
|
+
description: 'The ID of the event.',
|
|
8273
|
+
format: 'uuid',
|
|
8274
|
+
type: 'string',
|
|
8275
|
+
'x-title': 'Event ID',
|
|
8276
|
+
},
|
|
8277
|
+
event_type: {
|
|
8278
|
+
enum: ['device.third_party_integration_detected'],
|
|
8279
|
+
type: 'string',
|
|
8280
|
+
},
|
|
8281
|
+
occurred_at: {
|
|
8282
|
+
description: 'The time when the event occurred.',
|
|
8283
|
+
format: 'date-time',
|
|
8284
|
+
type: 'string',
|
|
8285
|
+
'x-title': 'Occurred At',
|
|
8286
|
+
},
|
|
8287
|
+
workspace_id: {
|
|
8288
|
+
description: 'The ID of the workspace.',
|
|
8289
|
+
format: 'uuid',
|
|
8290
|
+
type: 'string',
|
|
8291
|
+
'x-title': 'Workspace ID',
|
|
8292
|
+
},
|
|
8293
|
+
},
|
|
8294
|
+
required: [
|
|
8295
|
+
'event_id',
|
|
8296
|
+
'workspace_id',
|
|
8297
|
+
'created_at',
|
|
8298
|
+
'occurred_at',
|
|
8299
|
+
'device_id',
|
|
8300
|
+
'connected_account_id',
|
|
8301
|
+
'event_type',
|
|
8302
|
+
],
|
|
8303
|
+
type: 'object',
|
|
8304
|
+
},
|
|
8305
|
+
{
|
|
8306
|
+
description: 'Seam detected a device is no longer using a third party integration that was interfering with Seam device management.',
|
|
8307
|
+
properties: {
|
|
8308
|
+
connected_account_id: {
|
|
8309
|
+
description: 'ID of the connected account.',
|
|
8310
|
+
format: 'uuid',
|
|
8311
|
+
type: 'string',
|
|
8312
|
+
'x-title': 'Connected Account ID',
|
|
8313
|
+
},
|
|
8314
|
+
created_at: {
|
|
8315
|
+
description: 'The time when the event was created.',
|
|
8316
|
+
format: 'date-time',
|
|
8317
|
+
type: 'string',
|
|
8318
|
+
'x-title': 'Created At',
|
|
8319
|
+
},
|
|
8320
|
+
device_id: {
|
|
8321
|
+
description: 'ID of the device.',
|
|
8322
|
+
format: 'uuid',
|
|
8323
|
+
type: 'string',
|
|
8324
|
+
'x-title': 'Device ID',
|
|
8325
|
+
},
|
|
8326
|
+
event_id: {
|
|
8327
|
+
description: 'The ID of the event.',
|
|
8328
|
+
format: 'uuid',
|
|
8329
|
+
type: 'string',
|
|
8330
|
+
'x-title': 'Event ID',
|
|
8331
|
+
},
|
|
8332
|
+
event_type: {
|
|
8333
|
+
enum: ['device.third_party_integration_no_longer_detected'],
|
|
8334
|
+
type: 'string',
|
|
8335
|
+
},
|
|
8336
|
+
occurred_at: {
|
|
8337
|
+
description: 'The time when the event occurred.',
|
|
8338
|
+
format: 'date-time',
|
|
8339
|
+
type: 'string',
|
|
8340
|
+
'x-title': 'Occurred At',
|
|
8341
|
+
},
|
|
8342
|
+
workspace_id: {
|
|
8343
|
+
description: 'The ID of the workspace.',
|
|
8344
|
+
format: 'uuid',
|
|
8345
|
+
type: 'string',
|
|
8346
|
+
'x-title': 'Workspace ID',
|
|
8347
|
+
},
|
|
8348
|
+
},
|
|
8349
|
+
required: [
|
|
8350
|
+
'event_id',
|
|
8351
|
+
'workspace_id',
|
|
8352
|
+
'created_at',
|
|
8353
|
+
'occurred_at',
|
|
8354
|
+
'device_id',
|
|
8355
|
+
'connected_account_id',
|
|
8356
|
+
'event_type',
|
|
8357
|
+
],
|
|
8358
|
+
type: 'object',
|
|
8359
|
+
},
|
|
8360
|
+
{
|
|
8361
|
+
description: 'A Salto device activated privacy mode.',
|
|
8362
|
+
properties: {
|
|
8363
|
+
connected_account_id: {
|
|
8364
|
+
description: 'ID of the connected account.',
|
|
8365
|
+
format: 'uuid',
|
|
8366
|
+
type: 'string',
|
|
8367
|
+
'x-title': 'Connected Account ID',
|
|
8368
|
+
},
|
|
8369
|
+
created_at: {
|
|
8370
|
+
description: 'The time when the event was created.',
|
|
8371
|
+
format: 'date-time',
|
|
8372
|
+
type: 'string',
|
|
8373
|
+
'x-title': 'Created At',
|
|
8374
|
+
},
|
|
8375
|
+
device_id: {
|
|
8376
|
+
description: 'ID of the device.',
|
|
8377
|
+
format: 'uuid',
|
|
8378
|
+
type: 'string',
|
|
8379
|
+
'x-title': 'Device ID',
|
|
8380
|
+
},
|
|
8381
|
+
event_id: {
|
|
8382
|
+
description: 'The ID of the event.',
|
|
8383
|
+
format: 'uuid',
|
|
8384
|
+
type: 'string',
|
|
8385
|
+
'x-title': 'Event ID',
|
|
8386
|
+
},
|
|
8387
|
+
event_type: {
|
|
8388
|
+
enum: ['device.salto.privacy_mode_activated'],
|
|
8389
|
+
type: 'string',
|
|
8390
|
+
},
|
|
8391
|
+
occurred_at: {
|
|
8392
|
+
description: 'The time when the event occurred.',
|
|
8393
|
+
format: 'date-time',
|
|
8394
|
+
type: 'string',
|
|
8395
|
+
'x-title': 'Occurred At',
|
|
8396
|
+
},
|
|
8397
|
+
workspace_id: {
|
|
8398
|
+
description: 'The ID of the workspace.',
|
|
8399
|
+
format: 'uuid',
|
|
8400
|
+
type: 'string',
|
|
8401
|
+
'x-title': 'Workspace ID',
|
|
8402
|
+
},
|
|
8403
|
+
},
|
|
8404
|
+
required: [
|
|
8405
|
+
'event_id',
|
|
8406
|
+
'workspace_id',
|
|
8407
|
+
'created_at',
|
|
8408
|
+
'occurred_at',
|
|
8409
|
+
'device_id',
|
|
8410
|
+
'connected_account_id',
|
|
8411
|
+
'event_type',
|
|
8412
|
+
],
|
|
8413
|
+
type: 'object',
|
|
8414
|
+
},
|
|
8415
|
+
{
|
|
8416
|
+
description: 'A Salto device deactivated privacy mode.',
|
|
8417
|
+
properties: {
|
|
8418
|
+
connected_account_id: {
|
|
8419
|
+
description: 'ID of the connected account.',
|
|
8420
|
+
format: 'uuid',
|
|
8421
|
+
type: 'string',
|
|
8422
|
+
'x-title': 'Connected Account ID',
|
|
8423
|
+
},
|
|
8424
|
+
created_at: {
|
|
8425
|
+
description: 'The time when the event was created.',
|
|
8426
|
+
format: 'date-time',
|
|
8427
|
+
type: 'string',
|
|
8428
|
+
'x-title': 'Created At',
|
|
8429
|
+
},
|
|
8430
|
+
device_id: {
|
|
8431
|
+
description: 'ID of the device.',
|
|
8432
|
+
format: 'uuid',
|
|
8433
|
+
type: 'string',
|
|
8434
|
+
'x-title': 'Device ID',
|
|
8435
|
+
},
|
|
8436
|
+
event_id: {
|
|
8437
|
+
description: 'The ID of the event.',
|
|
8438
|
+
format: 'uuid',
|
|
8439
|
+
type: 'string',
|
|
8440
|
+
'x-title': 'Event ID',
|
|
8441
|
+
},
|
|
8442
|
+
event_type: {
|
|
8443
|
+
enum: ['device.salto.privacy_mode_deactivated'],
|
|
8444
|
+
type: 'string',
|
|
8445
|
+
},
|
|
8446
|
+
occurred_at: {
|
|
8447
|
+
description: 'The time when the event occurred.',
|
|
8448
|
+
format: 'date-time',
|
|
8449
|
+
type: 'string',
|
|
8450
|
+
'x-title': 'Occurred At',
|
|
8451
|
+
},
|
|
8452
|
+
workspace_id: {
|
|
8453
|
+
description: 'The ID of the workspace.',
|
|
8454
|
+
format: 'uuid',
|
|
8455
|
+
type: 'string',
|
|
8456
|
+
'x-title': 'Workspace ID',
|
|
8457
|
+
},
|
|
8458
|
+
},
|
|
8459
|
+
required: [
|
|
8460
|
+
'event_id',
|
|
8461
|
+
'workspace_id',
|
|
8462
|
+
'created_at',
|
|
8463
|
+
'occurred_at',
|
|
8464
|
+
'device_id',
|
|
8465
|
+
'connected_account_id',
|
|
8466
|
+
'event_type',
|
|
8467
|
+
],
|
|
8468
|
+
type: 'object',
|
|
8469
|
+
},
|
|
8470
|
+
{
|
|
8471
|
+
description: 'Seam detected a flaky device connection.',
|
|
8472
|
+
properties: {
|
|
8473
|
+
connected_account_id: {
|
|
8474
|
+
description: 'ID of the connected account.',
|
|
8475
|
+
format: 'uuid',
|
|
8476
|
+
type: 'string',
|
|
8477
|
+
'x-title': 'Connected Account ID',
|
|
8478
|
+
},
|
|
8479
|
+
created_at: {
|
|
8480
|
+
description: 'The time when the event was created.',
|
|
8481
|
+
format: 'date-time',
|
|
8482
|
+
type: 'string',
|
|
8483
|
+
'x-title': 'Created At',
|
|
8484
|
+
},
|
|
8485
|
+
device_id: {
|
|
8486
|
+
description: 'ID of the device.',
|
|
8487
|
+
format: 'uuid',
|
|
8488
|
+
type: 'string',
|
|
8489
|
+
'x-title': 'Device ID',
|
|
8490
|
+
},
|
|
8491
|
+
event_id: {
|
|
8492
|
+
description: 'The ID of the event.',
|
|
8493
|
+
format: 'uuid',
|
|
8494
|
+
type: 'string',
|
|
8495
|
+
'x-title': 'Event ID',
|
|
8496
|
+
},
|
|
8497
|
+
event_type: {
|
|
8498
|
+
enum: ['device.connection_became_flaky'],
|
|
8499
|
+
type: 'string',
|
|
8500
|
+
},
|
|
8501
|
+
occurred_at: {
|
|
8502
|
+
description: 'The time when the event occurred.',
|
|
8503
|
+
format: 'date-time',
|
|
8504
|
+
type: 'string',
|
|
8505
|
+
'x-title': 'Occurred At',
|
|
8506
|
+
},
|
|
8507
|
+
workspace_id: {
|
|
8508
|
+
description: 'The ID of the workspace.',
|
|
8509
|
+
format: 'uuid',
|
|
8510
|
+
type: 'string',
|
|
8511
|
+
'x-title': 'Workspace ID',
|
|
8512
|
+
},
|
|
8513
|
+
},
|
|
8514
|
+
required: [
|
|
8515
|
+
'event_id',
|
|
8516
|
+
'workspace_id',
|
|
8517
|
+
'created_at',
|
|
8518
|
+
'occurred_at',
|
|
8519
|
+
'device_id',
|
|
8520
|
+
'connected_account_id',
|
|
8521
|
+
'event_type',
|
|
8522
|
+
],
|
|
8523
|
+
type: 'object',
|
|
8524
|
+
},
|
|
8525
|
+
{
|
|
8526
|
+
description: 'Seam detected a previously flaky device connection stabilized.',
|
|
8527
|
+
properties: {
|
|
8528
|
+
connected_account_id: {
|
|
8529
|
+
description: 'ID of the connected account.',
|
|
8530
|
+
format: 'uuid',
|
|
8531
|
+
type: 'string',
|
|
8532
|
+
'x-title': 'Connected Account ID',
|
|
8533
|
+
},
|
|
8534
|
+
created_at: {
|
|
8535
|
+
description: 'The time when the event was created.',
|
|
8536
|
+
format: 'date-time',
|
|
8537
|
+
type: 'string',
|
|
8538
|
+
'x-title': 'Created At',
|
|
8539
|
+
},
|
|
8540
|
+
device_id: {
|
|
8541
|
+
description: 'ID of the device.',
|
|
8542
|
+
format: 'uuid',
|
|
8543
|
+
type: 'string',
|
|
8544
|
+
'x-title': 'Device ID',
|
|
8545
|
+
},
|
|
8546
|
+
event_id: {
|
|
8547
|
+
description: 'The ID of the event.',
|
|
8548
|
+
format: 'uuid',
|
|
8549
|
+
type: 'string',
|
|
8550
|
+
'x-title': 'Event ID',
|
|
8551
|
+
},
|
|
8552
|
+
event_type: {
|
|
8553
|
+
enum: ['device.connection_stabilized'],
|
|
8554
|
+
type: 'string',
|
|
8555
|
+
},
|
|
8556
|
+
occurred_at: {
|
|
8557
|
+
description: 'The time when the event occurred.',
|
|
8558
|
+
format: 'date-time',
|
|
8559
|
+
type: 'string',
|
|
8560
|
+
'x-title': 'Occurred At',
|
|
8561
|
+
},
|
|
8562
|
+
workspace_id: {
|
|
8563
|
+
description: 'The ID of the workspace.',
|
|
8564
|
+
format: 'uuid',
|
|
8565
|
+
type: 'string',
|
|
8566
|
+
'x-title': 'Workspace ID',
|
|
8567
|
+
},
|
|
8568
|
+
},
|
|
8569
|
+
required: [
|
|
8570
|
+
'event_id',
|
|
8571
|
+
'workspace_id',
|
|
8572
|
+
'created_at',
|
|
8573
|
+
'occurred_at',
|
|
8574
|
+
'device_id',
|
|
8575
|
+
'connected_account_id',
|
|
8576
|
+
'event_type',
|
|
8577
|
+
],
|
|
8578
|
+
type: 'object',
|
|
8579
|
+
},
|
|
8580
|
+
{
|
|
8581
|
+
description: 'A third party subscription is required to use all device features.',
|
|
8582
|
+
properties: {
|
|
8583
|
+
connected_account_id: {
|
|
8584
|
+
description: 'ID of the connected account.',
|
|
8585
|
+
format: 'uuid',
|
|
8586
|
+
type: 'string',
|
|
8587
|
+
'x-title': 'Connected Account ID',
|
|
8588
|
+
},
|
|
8589
|
+
created_at: {
|
|
8590
|
+
description: 'The time when the event was created.',
|
|
8591
|
+
format: 'date-time',
|
|
8592
|
+
type: 'string',
|
|
8593
|
+
'x-title': 'Created At',
|
|
8594
|
+
},
|
|
8595
|
+
device_id: {
|
|
8596
|
+
description: 'ID of the device.',
|
|
8597
|
+
format: 'uuid',
|
|
8598
|
+
type: 'string',
|
|
8599
|
+
'x-title': 'Device ID',
|
|
8600
|
+
},
|
|
8601
|
+
event_id: {
|
|
8602
|
+
description: 'The ID of the event.',
|
|
8603
|
+
format: 'uuid',
|
|
8604
|
+
type: 'string',
|
|
8605
|
+
'x-title': 'Event ID',
|
|
8606
|
+
},
|
|
8607
|
+
event_type: {
|
|
8608
|
+
enum: ['device.error.subscription_required'],
|
|
8609
|
+
type: 'string',
|
|
8610
|
+
},
|
|
8611
|
+
occurred_at: {
|
|
8612
|
+
description: 'The time when the event occurred.',
|
|
8613
|
+
format: 'date-time',
|
|
8614
|
+
type: 'string',
|
|
8615
|
+
'x-title': 'Occurred At',
|
|
8616
|
+
},
|
|
8617
|
+
workspace_id: {
|
|
8618
|
+
description: 'The ID of the workspace.',
|
|
8619
|
+
format: 'uuid',
|
|
8620
|
+
type: 'string',
|
|
8621
|
+
'x-title': 'Workspace ID',
|
|
8622
|
+
},
|
|
8623
|
+
},
|
|
8624
|
+
required: [
|
|
8625
|
+
'event_id',
|
|
8626
|
+
'workspace_id',
|
|
8627
|
+
'created_at',
|
|
8628
|
+
'occurred_at',
|
|
8629
|
+
'device_id',
|
|
8630
|
+
'connected_account_id',
|
|
8631
|
+
'event_type',
|
|
8632
|
+
],
|
|
8633
|
+
type: 'object',
|
|
8634
|
+
},
|
|
8635
|
+
{
|
|
8636
|
+
description: 'A third party subscription is active or no longer-required to use all device features.',
|
|
8637
|
+
properties: {
|
|
8638
|
+
connected_account_id: {
|
|
8639
|
+
description: 'ID of the connected account.',
|
|
8640
|
+
format: 'uuid',
|
|
8641
|
+
type: 'string',
|
|
8642
|
+
'x-title': 'Connected Account ID',
|
|
8643
|
+
},
|
|
8644
|
+
created_at: {
|
|
8645
|
+
description: 'The time when the event was created.',
|
|
8646
|
+
format: 'date-time',
|
|
8647
|
+
type: 'string',
|
|
8648
|
+
'x-title': 'Created At',
|
|
8649
|
+
},
|
|
8650
|
+
device_id: {
|
|
8651
|
+
description: 'ID of the device.',
|
|
8652
|
+
format: 'uuid',
|
|
8653
|
+
type: 'string',
|
|
8654
|
+
'x-title': 'Device ID',
|
|
8655
|
+
},
|
|
8656
|
+
event_id: {
|
|
8657
|
+
description: 'The ID of the event.',
|
|
8658
|
+
format: 'uuid',
|
|
8659
|
+
type: 'string',
|
|
8660
|
+
'x-title': 'Event ID',
|
|
8661
|
+
},
|
|
8662
|
+
event_type: {
|
|
8663
|
+
enum: ['device.error.subscription_required.resolved'],
|
|
8664
|
+
type: 'string',
|
|
8665
|
+
},
|
|
8666
|
+
occurred_at: {
|
|
8667
|
+
description: 'The time when the event occurred.',
|
|
8668
|
+
format: 'date-time',
|
|
8669
|
+
type: 'string',
|
|
8670
|
+
'x-title': 'Occurred At',
|
|
8671
|
+
},
|
|
8672
|
+
workspace_id: {
|
|
8673
|
+
description: 'The ID of the workspace.',
|
|
8674
|
+
format: 'uuid',
|
|
8675
|
+
type: 'string',
|
|
8676
|
+
'x-title': 'Workspace ID',
|
|
8677
|
+
},
|
|
8678
|
+
},
|
|
8679
|
+
required: [
|
|
8680
|
+
'event_id',
|
|
8681
|
+
'workspace_id',
|
|
8682
|
+
'created_at',
|
|
8683
|
+
'occurred_at',
|
|
8684
|
+
'device_id',
|
|
8685
|
+
'connected_account_id',
|
|
8686
|
+
'event_type',
|
|
8687
|
+
],
|
|
8688
|
+
type: 'object',
|
|
8689
|
+
},
|
|
8690
|
+
{
|
|
8691
|
+
description: 'A accessory keypad was connected to a device.',
|
|
8692
|
+
properties: {
|
|
8693
|
+
connected_account_id: {
|
|
8694
|
+
description: 'ID of the connected account.',
|
|
8695
|
+
format: 'uuid',
|
|
8696
|
+
type: 'string',
|
|
8697
|
+
'x-title': 'Connected Account ID',
|
|
8698
|
+
},
|
|
8699
|
+
created_at: {
|
|
8700
|
+
description: 'The time when the event was created.',
|
|
8701
|
+
format: 'date-time',
|
|
8702
|
+
type: 'string',
|
|
8703
|
+
'x-title': 'Created At',
|
|
8704
|
+
},
|
|
8705
|
+
device_id: {
|
|
8706
|
+
description: 'ID of the device.',
|
|
8707
|
+
format: 'uuid',
|
|
8708
|
+
type: 'string',
|
|
8709
|
+
'x-title': 'Device ID',
|
|
8710
|
+
},
|
|
8711
|
+
event_id: {
|
|
8712
|
+
description: 'The ID of the event.',
|
|
8713
|
+
format: 'uuid',
|
|
8714
|
+
type: 'string',
|
|
8715
|
+
'x-title': 'Event ID',
|
|
8716
|
+
},
|
|
8717
|
+
event_type: {
|
|
8718
|
+
enum: ['device.accessory_keypad_connected'],
|
|
8719
|
+
type: 'string',
|
|
8720
|
+
},
|
|
8721
|
+
occurred_at: {
|
|
8722
|
+
description: 'The time when the event occurred.',
|
|
8723
|
+
format: 'date-time',
|
|
8724
|
+
type: 'string',
|
|
8725
|
+
'x-title': 'Occurred At',
|
|
8726
|
+
},
|
|
8727
|
+
workspace_id: {
|
|
8728
|
+
description: 'The ID of the workspace.',
|
|
8729
|
+
format: 'uuid',
|
|
8730
|
+
type: 'string',
|
|
8731
|
+
'x-title': 'Workspace ID',
|
|
8732
|
+
},
|
|
8733
|
+
},
|
|
8734
|
+
required: [
|
|
8735
|
+
'event_id',
|
|
8736
|
+
'workspace_id',
|
|
8737
|
+
'created_at',
|
|
8738
|
+
'occurred_at',
|
|
8739
|
+
'device_id',
|
|
8740
|
+
'connected_account_id',
|
|
8741
|
+
'event_type',
|
|
8742
|
+
],
|
|
8743
|
+
type: 'object',
|
|
8744
|
+
},
|
|
8745
|
+
{
|
|
8746
|
+
description: 'A accessory keypad was disconnected to a device.',
|
|
8747
|
+
properties: {
|
|
8748
|
+
connected_account_id: {
|
|
8749
|
+
description: 'ID of the connected account.',
|
|
8750
|
+
format: 'uuid',
|
|
8751
|
+
type: 'string',
|
|
8752
|
+
'x-title': 'Connected Account ID',
|
|
8753
|
+
},
|
|
8754
|
+
created_at: {
|
|
8755
|
+
description: 'The time when the event was created.',
|
|
8756
|
+
format: 'date-time',
|
|
8757
|
+
type: 'string',
|
|
8758
|
+
'x-title': 'Created At',
|
|
8759
|
+
},
|
|
8760
|
+
device_id: {
|
|
8761
|
+
description: 'ID of the device.',
|
|
8762
|
+
format: 'uuid',
|
|
8763
|
+
type: 'string',
|
|
8764
|
+
'x-title': 'Device ID',
|
|
8765
|
+
},
|
|
8766
|
+
event_id: {
|
|
8767
|
+
description: 'The ID of the event.',
|
|
8768
|
+
format: 'uuid',
|
|
8769
|
+
type: 'string',
|
|
8770
|
+
'x-title': 'Event ID',
|
|
8771
|
+
},
|
|
8772
|
+
event_type: {
|
|
8773
|
+
enum: ['device.accessory_keypad_disconnected'],
|
|
8774
|
+
type: 'string',
|
|
8775
|
+
},
|
|
8776
|
+
occurred_at: {
|
|
8777
|
+
description: 'The time when the event occurred.',
|
|
8778
|
+
format: 'date-time',
|
|
8779
|
+
type: 'string',
|
|
8780
|
+
'x-title': 'Occurred At',
|
|
8781
|
+
},
|
|
8782
|
+
workspace_id: {
|
|
8783
|
+
description: 'The ID of the workspace.',
|
|
8784
|
+
format: 'uuid',
|
|
8785
|
+
type: 'string',
|
|
8786
|
+
'x-title': 'Workspace ID',
|
|
8787
|
+
},
|
|
8788
|
+
},
|
|
8789
|
+
required: [
|
|
8790
|
+
'event_id',
|
|
8791
|
+
'workspace_id',
|
|
8792
|
+
'created_at',
|
|
8793
|
+
'occurred_at',
|
|
8794
|
+
'device_id',
|
|
8795
|
+
'connected_account_id',
|
|
8796
|
+
'event_type',
|
|
8797
|
+
],
|
|
8798
|
+
type: 'object',
|
|
8799
|
+
},
|
|
8800
|
+
{
|
|
8801
|
+
description: 'Extended periods of noise or noise exceeding a threshold was detected.',
|
|
8802
|
+
properties: {
|
|
8803
|
+
connected_account_id: {
|
|
8804
|
+
description: 'ID of the connected account.',
|
|
8805
|
+
format: 'uuid',
|
|
8806
|
+
type: 'string',
|
|
8807
|
+
'x-title': 'Connected Account ID',
|
|
8808
|
+
},
|
|
8809
|
+
created_at: {
|
|
8810
|
+
description: 'The time when the event was created.',
|
|
8811
|
+
format: 'date-time',
|
|
8812
|
+
type: 'string',
|
|
8813
|
+
'x-title': 'Created At',
|
|
8814
|
+
},
|
|
8815
|
+
device_id: {
|
|
8816
|
+
description: 'ID of the device.',
|
|
8817
|
+
format: 'uuid',
|
|
8818
|
+
type: 'string',
|
|
8819
|
+
'x-title': 'Device ID',
|
|
8820
|
+
},
|
|
8821
|
+
event_id: {
|
|
8822
|
+
description: 'The ID of the event.',
|
|
8823
|
+
format: 'uuid',
|
|
8824
|
+
type: 'string',
|
|
8825
|
+
'x-title': 'Event ID',
|
|
8826
|
+
},
|
|
8827
|
+
event_type: {
|
|
8828
|
+
enum: ['noise_sensor.noise_threshold_triggered'],
|
|
8829
|
+
type: 'string',
|
|
8830
|
+
},
|
|
8831
|
+
minut_metadata: {
|
|
8832
|
+
additionalProperties: {},
|
|
8833
|
+
description: 'Metadata from the Minut API.',
|
|
8834
|
+
type: 'object',
|
|
8835
|
+
'x-title': 'Minut Metadata',
|
|
8836
|
+
},
|
|
8837
|
+
noise_level_decibels: { format: 'float', type: 'number' },
|
|
8838
|
+
noise_level_nrs: { format: 'float', type: 'number' },
|
|
8839
|
+
noise_threshold_id: { format: 'uuid', type: 'string' },
|
|
8840
|
+
noise_threshold_name: { type: 'string' },
|
|
8841
|
+
noiseaware_metadata: {
|
|
8842
|
+
additionalProperties: {},
|
|
8843
|
+
description: 'Metadata from the Noiseaware API.',
|
|
8844
|
+
type: 'object',
|
|
8845
|
+
'x-title': 'Noiseaware Metadata',
|
|
8846
|
+
},
|
|
8847
|
+
occurred_at: {
|
|
8848
|
+
description: 'The time when the event occurred.',
|
|
8849
|
+
format: 'date-time',
|
|
8850
|
+
type: 'string',
|
|
8851
|
+
'x-title': 'Occurred At',
|
|
8852
|
+
},
|
|
8853
|
+
workspace_id: {
|
|
8854
|
+
description: 'The ID of the workspace.',
|
|
8855
|
+
format: 'uuid',
|
|
8856
|
+
type: 'string',
|
|
8857
|
+
'x-title': 'Workspace ID',
|
|
8858
|
+
},
|
|
8859
|
+
},
|
|
8860
|
+
required: [
|
|
8861
|
+
'event_id',
|
|
8862
|
+
'workspace_id',
|
|
8863
|
+
'created_at',
|
|
8864
|
+
'occurred_at',
|
|
8865
|
+
'device_id',
|
|
8866
|
+
'connected_account_id',
|
|
8867
|
+
'event_type',
|
|
8868
|
+
],
|
|
8869
|
+
type: 'object',
|
|
8870
|
+
},
|
|
8871
|
+
{
|
|
8872
|
+
description: 'A lock was locked.',
|
|
8873
|
+
properties: {
|
|
8874
|
+
access_code_id: { format: 'uuid', type: 'string' },
|
|
8875
|
+
action_attempt_id: { format: 'uuid', type: 'string' },
|
|
8876
|
+
connected_account_id: {
|
|
8877
|
+
description: 'ID of the connected account.',
|
|
8878
|
+
format: 'uuid',
|
|
8879
|
+
type: 'string',
|
|
8880
|
+
'x-title': 'Connected Account ID',
|
|
8881
|
+
},
|
|
8882
|
+
created_at: {
|
|
8883
|
+
description: 'The time when the event was created.',
|
|
8884
|
+
format: 'date-time',
|
|
8885
|
+
type: 'string',
|
|
8886
|
+
'x-title': 'Created At',
|
|
8887
|
+
},
|
|
8888
|
+
device_id: {
|
|
8889
|
+
description: 'ID of the device.',
|
|
8890
|
+
format: 'uuid',
|
|
8891
|
+
type: 'string',
|
|
8892
|
+
'x-title': 'Device ID',
|
|
8893
|
+
},
|
|
8894
|
+
event_id: {
|
|
8895
|
+
description: 'The ID of the event.',
|
|
8896
|
+
format: 'uuid',
|
|
8897
|
+
type: 'string',
|
|
8898
|
+
'x-title': 'Event ID',
|
|
8899
|
+
},
|
|
8900
|
+
event_type: { enum: ['lock.locked'], type: 'string' },
|
|
8901
|
+
method: {
|
|
8902
|
+
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.',
|
|
8903
|
+
enum: ['keycode', 'manual', 'automatic', 'unknown', 'seamapi'],
|
|
8904
|
+
type: 'string',
|
|
8905
|
+
'x-title': 'Lock Lock/Unlock Method',
|
|
8906
|
+
},
|
|
8907
|
+
occurred_at: {
|
|
8908
|
+
description: 'The time when the event occurred.',
|
|
8909
|
+
format: 'date-time',
|
|
8910
|
+
type: 'string',
|
|
8911
|
+
'x-title': 'Occurred At',
|
|
8912
|
+
},
|
|
8913
|
+
workspace_id: {
|
|
8914
|
+
description: 'The ID of the workspace.',
|
|
8915
|
+
format: 'uuid',
|
|
8916
|
+
type: 'string',
|
|
8917
|
+
'x-title': 'Workspace ID',
|
|
8918
|
+
},
|
|
8919
|
+
},
|
|
8920
|
+
required: [
|
|
8921
|
+
'event_id',
|
|
8922
|
+
'workspace_id',
|
|
8923
|
+
'created_at',
|
|
8924
|
+
'occurred_at',
|
|
8925
|
+
'device_id',
|
|
8926
|
+
'connected_account_id',
|
|
8927
|
+
'event_type',
|
|
8928
|
+
'method',
|
|
8929
|
+
],
|
|
8930
|
+
type: 'object',
|
|
8931
|
+
},
|
|
8932
|
+
{
|
|
8933
|
+
description: 'A lock was unlocked.',
|
|
8934
|
+
properties: {
|
|
8935
|
+
access_code_id: { format: 'uuid', type: 'string' },
|
|
8936
|
+
action_attempt_id: { format: 'uuid', type: 'string' },
|
|
8937
|
+
connected_account_id: {
|
|
8938
|
+
description: 'ID of the connected account.',
|
|
8939
|
+
format: 'uuid',
|
|
8940
|
+
type: 'string',
|
|
8941
|
+
'x-title': 'Connected Account ID',
|
|
8942
|
+
},
|
|
8943
|
+
created_at: {
|
|
8944
|
+
description: 'The time when the event was created.',
|
|
8945
|
+
format: 'date-time',
|
|
8946
|
+
type: 'string',
|
|
8947
|
+
'x-title': 'Created At',
|
|
8948
|
+
},
|
|
8949
|
+
device_id: {
|
|
8950
|
+
description: 'ID of the device.',
|
|
8951
|
+
format: 'uuid',
|
|
8952
|
+
type: 'string',
|
|
8953
|
+
'x-title': 'Device ID',
|
|
8954
|
+
},
|
|
8955
|
+
event_id: {
|
|
8956
|
+
description: 'The ID of the event.',
|
|
8957
|
+
format: 'uuid',
|
|
8958
|
+
type: 'string',
|
|
8959
|
+
'x-title': 'Event ID',
|
|
8960
|
+
},
|
|
8961
|
+
event_type: { enum: ['lock.unlocked'], type: 'string' },
|
|
8962
|
+
method: {
|
|
8963
|
+
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.',
|
|
8964
|
+
enum: ['keycode', 'manual', 'automatic', 'unknown', 'seamapi'],
|
|
8965
|
+
type: 'string',
|
|
8966
|
+
'x-title': 'Lock Lock/Unlock Method',
|
|
8967
|
+
},
|
|
8968
|
+
occurred_at: {
|
|
8969
|
+
description: 'The time when the event occurred.',
|
|
8970
|
+
format: 'date-time',
|
|
8971
|
+
type: 'string',
|
|
8972
|
+
'x-title': 'Occurred At',
|
|
8973
|
+
},
|
|
8974
|
+
workspace_id: {
|
|
8975
|
+
description: 'The ID of the workspace.',
|
|
8976
|
+
format: 'uuid',
|
|
8977
|
+
type: 'string',
|
|
8978
|
+
'x-title': 'Workspace ID',
|
|
8979
|
+
},
|
|
8980
|
+
},
|
|
8981
|
+
required: [
|
|
8982
|
+
'event_id',
|
|
8983
|
+
'workspace_id',
|
|
8984
|
+
'created_at',
|
|
8985
|
+
'occurred_at',
|
|
8986
|
+
'device_id',
|
|
8987
|
+
'connected_account_id',
|
|
8988
|
+
'event_type',
|
|
8989
|
+
'method',
|
|
8990
|
+
],
|
|
8991
|
+
type: 'object',
|
|
8992
|
+
},
|
|
8993
|
+
{
|
|
8994
|
+
description: 'The lock denied access to a user after one or more consecutive invalid attempts to unlock the device.',
|
|
8995
|
+
properties: {
|
|
8996
|
+
access_code_id: { format: 'uuid', type: 'string' },
|
|
8997
|
+
connected_account_id: {
|
|
8998
|
+
description: 'ID of the connected account.',
|
|
8999
|
+
format: 'uuid',
|
|
9000
|
+
type: 'string',
|
|
9001
|
+
'x-title': 'Connected Account ID',
|
|
9002
|
+
},
|
|
9003
|
+
created_at: {
|
|
9004
|
+
description: 'The time when the event was created.',
|
|
9005
|
+
format: 'date-time',
|
|
9006
|
+
type: 'string',
|
|
9007
|
+
'x-title': 'Created At',
|
|
9008
|
+
},
|
|
9009
|
+
device_id: {
|
|
9010
|
+
description: 'ID of the device.',
|
|
9011
|
+
format: 'uuid',
|
|
9012
|
+
type: 'string',
|
|
9013
|
+
'x-title': 'Device ID',
|
|
9014
|
+
},
|
|
9015
|
+
event_id: {
|
|
9016
|
+
description: 'The ID of the event.',
|
|
9017
|
+
format: 'uuid',
|
|
9018
|
+
type: 'string',
|
|
9019
|
+
'x-title': 'Event ID',
|
|
9020
|
+
},
|
|
9021
|
+
event_type: { enum: ['lock.access_denied'], type: 'string' },
|
|
9022
|
+
occurred_at: {
|
|
9023
|
+
description: 'The time when the event occurred.',
|
|
9024
|
+
format: 'date-time',
|
|
9025
|
+
type: 'string',
|
|
9026
|
+
'x-title': 'Occurred At',
|
|
9027
|
+
},
|
|
9028
|
+
workspace_id: {
|
|
9029
|
+
description: 'The ID of the workspace.',
|
|
9030
|
+
format: 'uuid',
|
|
9031
|
+
type: 'string',
|
|
9032
|
+
'x-title': 'Workspace ID',
|
|
9033
|
+
},
|
|
9034
|
+
},
|
|
9035
|
+
required: [
|
|
9036
|
+
'event_id',
|
|
9037
|
+
'workspace_id',
|
|
9038
|
+
'created_at',
|
|
9039
|
+
'occurred_at',
|
|
9040
|
+
'device_id',
|
|
9041
|
+
'connected_account_id',
|
|
9042
|
+
'event_type',
|
|
9043
|
+
],
|
|
9044
|
+
type: 'object',
|
|
9045
|
+
},
|
|
9046
|
+
{
|
|
9047
|
+
description: 'A thermostat climate preset was activated.',
|
|
9048
|
+
properties: {
|
|
9049
|
+
climate_preset_key: { type: 'string' },
|
|
9050
|
+
connected_account_id: {
|
|
9051
|
+
description: 'ID of the connected account.',
|
|
9052
|
+
format: 'uuid',
|
|
9053
|
+
type: 'string',
|
|
9054
|
+
'x-title': 'Connected Account ID',
|
|
9055
|
+
},
|
|
9056
|
+
created_at: {
|
|
9057
|
+
description: 'The time when the event was created.',
|
|
9058
|
+
format: 'date-time',
|
|
9059
|
+
type: 'string',
|
|
9060
|
+
'x-title': 'Created At',
|
|
9061
|
+
},
|
|
9062
|
+
device_id: {
|
|
9063
|
+
description: 'ID of the device.',
|
|
9064
|
+
format: 'uuid',
|
|
9065
|
+
type: 'string',
|
|
9066
|
+
'x-title': 'Device ID',
|
|
9067
|
+
},
|
|
9068
|
+
event_id: {
|
|
9069
|
+
description: 'The ID of the event.',
|
|
9070
|
+
format: 'uuid',
|
|
9071
|
+
type: 'string',
|
|
9072
|
+
'x-title': 'Event ID',
|
|
9073
|
+
},
|
|
9074
|
+
event_type: {
|
|
9075
|
+
enum: ['thermostat.climate_preset_activated'],
|
|
9076
|
+
type: 'string',
|
|
9077
|
+
},
|
|
9078
|
+
is_fallback_climate_preset: { type: 'boolean' },
|
|
9079
|
+
occurred_at: {
|
|
9080
|
+
description: 'The time when the event occurred.',
|
|
9081
|
+
format: 'date-time',
|
|
9082
|
+
type: 'string',
|
|
9083
|
+
'x-title': 'Occurred At',
|
|
9084
|
+
},
|
|
9085
|
+
thermostat_schedule_id: {
|
|
9086
|
+
format: 'uuid',
|
|
9087
|
+
nullable: true,
|
|
9088
|
+
type: 'string',
|
|
9089
|
+
},
|
|
9090
|
+
workspace_id: {
|
|
9091
|
+
description: 'The ID of the workspace.',
|
|
9092
|
+
format: 'uuid',
|
|
9093
|
+
type: 'string',
|
|
9094
|
+
'x-title': 'Workspace ID',
|
|
9095
|
+
},
|
|
9096
|
+
},
|
|
9097
|
+
required: [
|
|
9098
|
+
'event_id',
|
|
9099
|
+
'workspace_id',
|
|
9100
|
+
'created_at',
|
|
9101
|
+
'occurred_at',
|
|
9102
|
+
'device_id',
|
|
9103
|
+
'connected_account_id',
|
|
9104
|
+
'event_type',
|
|
9105
|
+
'thermostat_schedule_id',
|
|
9106
|
+
'climate_preset_key',
|
|
9107
|
+
'is_fallback_climate_preset',
|
|
9108
|
+
],
|
|
9109
|
+
type: 'object',
|
|
9110
|
+
},
|
|
9111
|
+
{
|
|
9112
|
+
description: 'A thermostat was manually adjusted.',
|
|
9113
|
+
properties: {
|
|
9114
|
+
connected_account_id: {
|
|
9115
|
+
description: 'ID of the connected account.',
|
|
9116
|
+
format: 'uuid',
|
|
9117
|
+
type: 'string',
|
|
9118
|
+
'x-title': 'Connected Account ID',
|
|
9119
|
+
},
|
|
9120
|
+
cooling_set_point_celsius: {
|
|
9121
|
+
description: 'Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).',
|
|
9122
|
+
format: 'float',
|
|
9123
|
+
type: 'number',
|
|
9124
|
+
},
|
|
9125
|
+
cooling_set_point_fahrenheit: {
|
|
9126
|
+
description: 'Temperature to which the thermostat should cool (in °F).',
|
|
9127
|
+
format: 'float',
|
|
9128
|
+
type: 'number',
|
|
9129
|
+
},
|
|
9130
|
+
created_at: {
|
|
9131
|
+
description: 'The time when the event was created.',
|
|
9132
|
+
format: 'date-time',
|
|
9133
|
+
type: 'string',
|
|
9134
|
+
'x-title': 'Created At',
|
|
9135
|
+
},
|
|
9136
|
+
device_id: {
|
|
9137
|
+
description: 'ID of the device.',
|
|
9138
|
+
format: 'uuid',
|
|
9139
|
+
type: 'string',
|
|
9140
|
+
'x-title': 'Device ID',
|
|
9141
|
+
},
|
|
9142
|
+
event_id: {
|
|
9143
|
+
description: 'The ID of the event.',
|
|
9144
|
+
format: 'uuid',
|
|
9145
|
+
type: 'string',
|
|
9146
|
+
'x-title': 'Event ID',
|
|
9147
|
+
},
|
|
9148
|
+
event_type: {
|
|
9149
|
+
enum: ['thermostat.manually_adjusted'],
|
|
9150
|
+
type: 'string',
|
|
9151
|
+
},
|
|
9152
|
+
fan_mode_setting: {
|
|
9153
|
+
description: 'Desired fan mode setting, such as `on`, `auto`, or `circulate`.',
|
|
9154
|
+
enum: ['auto', 'on', 'circulate'],
|
|
9155
|
+
type: 'string',
|
|
9156
|
+
},
|
|
9157
|
+
heating_set_point_celsius: {
|
|
9158
|
+
description: 'Temperature to which the thermostat should heat (in °C).',
|
|
9159
|
+
format: 'float',
|
|
9160
|
+
type: 'number',
|
|
9161
|
+
},
|
|
9162
|
+
heating_set_point_fahrenheit: {
|
|
9163
|
+
description: 'Temperature to which the thermostat should heat (in °F).',
|
|
9164
|
+
format: 'float',
|
|
9165
|
+
type: 'number',
|
|
9166
|
+
},
|
|
9167
|
+
hvac_mode_setting: {
|
|
9168
|
+
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`.',
|
|
9169
|
+
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
9170
|
+
type: 'string',
|
|
9171
|
+
},
|
|
9172
|
+
method: { enum: ['seam', 'external'], type: 'string' },
|
|
9173
|
+
occurred_at: {
|
|
9174
|
+
description: 'The time when the event occurred.',
|
|
9175
|
+
format: 'date-time',
|
|
9176
|
+
type: 'string',
|
|
9177
|
+
'x-title': 'Occurred At',
|
|
9178
|
+
},
|
|
9179
|
+
workspace_id: {
|
|
9180
|
+
description: 'The ID of the workspace.',
|
|
9181
|
+
format: 'uuid',
|
|
9182
|
+
type: 'string',
|
|
9183
|
+
'x-title': 'Workspace ID',
|
|
9184
|
+
},
|
|
9185
|
+
},
|
|
9186
|
+
required: [
|
|
9187
|
+
'event_id',
|
|
9188
|
+
'workspace_id',
|
|
9189
|
+
'created_at',
|
|
9190
|
+
'occurred_at',
|
|
9191
|
+
'device_id',
|
|
9192
|
+
'connected_account_id',
|
|
9193
|
+
'event_type',
|
|
9194
|
+
'method',
|
|
9195
|
+
],
|
|
9196
|
+
type: 'object',
|
|
9197
|
+
},
|
|
9198
|
+
{
|
|
9199
|
+
description: "A thermostat's temperature reading exceeded the set threshold.",
|
|
9200
|
+
properties: {
|
|
9201
|
+
connected_account_id: {
|
|
9202
|
+
description: 'ID of the connected account.',
|
|
9203
|
+
format: 'uuid',
|
|
9204
|
+
type: 'string',
|
|
9205
|
+
'x-title': 'Connected Account ID',
|
|
9206
|
+
},
|
|
9207
|
+
created_at: {
|
|
9208
|
+
description: 'The time when the event was created.',
|
|
9209
|
+
format: 'date-time',
|
|
9210
|
+
type: 'string',
|
|
9211
|
+
'x-title': 'Created At',
|
|
9212
|
+
},
|
|
9213
|
+
device_id: {
|
|
9214
|
+
description: 'ID of the device.',
|
|
9215
|
+
format: 'uuid',
|
|
9216
|
+
type: 'string',
|
|
9217
|
+
'x-title': 'Device ID',
|
|
9218
|
+
},
|
|
9219
|
+
event_id: {
|
|
9220
|
+
description: 'The ID of the event.',
|
|
9221
|
+
format: 'uuid',
|
|
9222
|
+
type: 'string',
|
|
9223
|
+
'x-title': 'Event ID',
|
|
9224
|
+
},
|
|
9225
|
+
event_type: {
|
|
9226
|
+
enum: ['thermostat.temperature_threshold_exceeded'],
|
|
9227
|
+
type: 'string',
|
|
9228
|
+
},
|
|
9229
|
+
lower_limit_celsius: {
|
|
9230
|
+
format: 'float',
|
|
9231
|
+
nullable: true,
|
|
9232
|
+
type: 'number',
|
|
9233
|
+
},
|
|
9234
|
+
lower_limit_fahrenheit: {
|
|
9235
|
+
format: 'float',
|
|
9236
|
+
nullable: true,
|
|
9237
|
+
type: 'number',
|
|
9238
|
+
},
|
|
9239
|
+
occurred_at: {
|
|
9240
|
+
description: 'The time when the event occurred.',
|
|
9241
|
+
format: 'date-time',
|
|
9242
|
+
type: 'string',
|
|
9243
|
+
'x-title': 'Occurred At',
|
|
9244
|
+
},
|
|
9245
|
+
temperature_celsius: { format: 'float', type: 'number' },
|
|
9246
|
+
temperature_fahrenheit: { format: 'float', type: 'number' },
|
|
9247
|
+
upper_limit_celsius: {
|
|
9248
|
+
format: 'float',
|
|
9249
|
+
nullable: true,
|
|
9250
|
+
type: 'number',
|
|
9251
|
+
},
|
|
9252
|
+
upper_limit_fahrenheit: {
|
|
9253
|
+
format: 'float',
|
|
9254
|
+
nullable: true,
|
|
9255
|
+
type: 'number',
|
|
9256
|
+
},
|
|
9257
|
+
workspace_id: {
|
|
9258
|
+
description: 'The ID of the workspace.',
|
|
9259
|
+
format: 'uuid',
|
|
9260
|
+
type: 'string',
|
|
9261
|
+
'x-title': 'Workspace ID',
|
|
9262
|
+
},
|
|
9263
|
+
},
|
|
9264
|
+
required: [
|
|
9265
|
+
'event_id',
|
|
9266
|
+
'workspace_id',
|
|
9267
|
+
'created_at',
|
|
9268
|
+
'occurred_at',
|
|
9269
|
+
'device_id',
|
|
9270
|
+
'connected_account_id',
|
|
9271
|
+
'event_type',
|
|
9272
|
+
'temperature_celsius',
|
|
9273
|
+
'temperature_fahrenheit',
|
|
9274
|
+
'upper_limit_celsius',
|
|
9275
|
+
'upper_limit_fahrenheit',
|
|
9276
|
+
'lower_limit_celsius',
|
|
9277
|
+
'lower_limit_fahrenheit',
|
|
9278
|
+
],
|
|
9279
|
+
type: 'object',
|
|
9280
|
+
},
|
|
9281
|
+
{
|
|
9282
|
+
description: "A thermostat's temperature reading is no longer exceeding the set threshold.",
|
|
9283
|
+
properties: {
|
|
9284
|
+
connected_account_id: {
|
|
9285
|
+
description: 'ID of the connected account.',
|
|
9286
|
+
format: 'uuid',
|
|
9287
|
+
type: 'string',
|
|
9288
|
+
'x-title': 'Connected Account ID',
|
|
9289
|
+
},
|
|
9290
|
+
created_at: {
|
|
9291
|
+
description: 'The time when the event was created.',
|
|
9292
|
+
format: 'date-time',
|
|
9293
|
+
type: 'string',
|
|
9294
|
+
'x-title': 'Created At',
|
|
9295
|
+
},
|
|
9296
|
+
device_id: {
|
|
9297
|
+
description: 'ID of the device.',
|
|
9298
|
+
format: 'uuid',
|
|
9299
|
+
type: 'string',
|
|
9300
|
+
'x-title': 'Device ID',
|
|
9301
|
+
},
|
|
9302
|
+
event_id: {
|
|
9303
|
+
description: 'The ID of the event.',
|
|
9304
|
+
format: 'uuid',
|
|
9305
|
+
type: 'string',
|
|
9306
|
+
'x-title': 'Event ID',
|
|
9307
|
+
},
|
|
9308
|
+
event_type: {
|
|
9309
|
+
enum: ['thermostat.temperature_threshold_no_longer_exceeded'],
|
|
9310
|
+
type: 'string',
|
|
9311
|
+
},
|
|
9312
|
+
lower_limit_celsius: {
|
|
9313
|
+
format: 'float',
|
|
9314
|
+
nullable: true,
|
|
9315
|
+
type: 'number',
|
|
9316
|
+
},
|
|
9317
|
+
lower_limit_fahrenheit: {
|
|
9318
|
+
format: 'float',
|
|
9319
|
+
nullable: true,
|
|
9320
|
+
type: 'number',
|
|
9321
|
+
},
|
|
9322
|
+
occurred_at: {
|
|
9323
|
+
description: 'The time when the event occurred.',
|
|
9324
|
+
format: 'date-time',
|
|
9325
|
+
type: 'string',
|
|
9326
|
+
'x-title': 'Occurred At',
|
|
9327
|
+
},
|
|
9328
|
+
temperature_celsius: { format: 'float', type: 'number' },
|
|
9329
|
+
temperature_fahrenheit: { format: 'float', type: 'number' },
|
|
9330
|
+
upper_limit_celsius: {
|
|
9331
|
+
format: 'float',
|
|
9332
|
+
nullable: true,
|
|
9333
|
+
type: 'number',
|
|
9334
|
+
},
|
|
9335
|
+
upper_limit_fahrenheit: {
|
|
9336
|
+
format: 'float',
|
|
9337
|
+
nullable: true,
|
|
9338
|
+
type: 'number',
|
|
9339
|
+
},
|
|
9340
|
+
workspace_id: {
|
|
9341
|
+
description: 'The ID of the workspace.',
|
|
9342
|
+
format: 'uuid',
|
|
9343
|
+
type: 'string',
|
|
9344
|
+
'x-title': 'Workspace ID',
|
|
9345
|
+
},
|
|
9346
|
+
},
|
|
9347
|
+
required: [
|
|
9348
|
+
'event_id',
|
|
9349
|
+
'workspace_id',
|
|
9350
|
+
'created_at',
|
|
9351
|
+
'occurred_at',
|
|
9352
|
+
'device_id',
|
|
9353
|
+
'connected_account_id',
|
|
9354
|
+
'event_type',
|
|
9355
|
+
'temperature_celsius',
|
|
9356
|
+
'temperature_fahrenheit',
|
|
9357
|
+
'upper_limit_celsius',
|
|
9358
|
+
'upper_limit_fahrenheit',
|
|
9359
|
+
'lower_limit_celsius',
|
|
9360
|
+
'lower_limit_fahrenheit',
|
|
9361
|
+
],
|
|
9362
|
+
type: 'object',
|
|
9363
|
+
},
|
|
9364
|
+
{
|
|
9365
|
+
description: 'An enrollment automation was deleted.',
|
|
9366
|
+
properties: {
|
|
9367
|
+
created_at: {
|
|
9368
|
+
description: 'The time when the event was created.',
|
|
9369
|
+
format: 'date-time',
|
|
9370
|
+
type: 'string',
|
|
9371
|
+
'x-title': 'Created At',
|
|
9372
|
+
},
|
|
9373
|
+
enrollment_automation_id: {
|
|
9374
|
+
description: 'ID of the enrollment automation.',
|
|
9375
|
+
format: 'uuid',
|
|
9376
|
+
type: 'string',
|
|
9377
|
+
'x-title': 'Enrollment Automation ID',
|
|
9378
|
+
},
|
|
9379
|
+
event_id: {
|
|
9380
|
+
description: 'The ID of the event.',
|
|
9381
|
+
format: 'uuid',
|
|
9382
|
+
type: 'string',
|
|
9383
|
+
'x-title': 'Event ID',
|
|
9384
|
+
},
|
|
9385
|
+
event_type: {
|
|
9386
|
+
enum: ['enrollment_automation.deleted'],
|
|
9387
|
+
type: 'string',
|
|
9388
|
+
},
|
|
9389
|
+
occurred_at: {
|
|
9390
|
+
description: 'The time when the event occurred.',
|
|
9391
|
+
format: 'date-time',
|
|
9392
|
+
type: 'string',
|
|
9393
|
+
'x-title': 'Occurred At',
|
|
9394
|
+
},
|
|
9395
|
+
workspace_id: {
|
|
9396
|
+
description: 'The ID of the workspace.',
|
|
9397
|
+
format: 'uuid',
|
|
9398
|
+
type: 'string',
|
|
9399
|
+
'x-title': 'Workspace ID',
|
|
9400
|
+
},
|
|
9401
|
+
},
|
|
9402
|
+
required: [
|
|
9403
|
+
'event_id',
|
|
9404
|
+
'workspace_id',
|
|
9405
|
+
'created_at',
|
|
9406
|
+
'occurred_at',
|
|
9407
|
+
'enrollment_automation_id',
|
|
9408
|
+
'event_type',
|
|
9409
|
+
],
|
|
9410
|
+
type: 'object',
|
|
9411
|
+
},
|
|
9412
|
+
{
|
|
9413
|
+
description: 'A phone device was deactivated.',
|
|
9414
|
+
properties: {
|
|
9415
|
+
created_at: {
|
|
9416
|
+
description: 'The time when the event was created.',
|
|
9417
|
+
format: 'date-time',
|
|
9418
|
+
type: 'string',
|
|
9419
|
+
'x-title': 'Created At',
|
|
9420
|
+
},
|
|
9421
|
+
device_id: {
|
|
9422
|
+
description: 'ID of the device.',
|
|
9423
|
+
format: 'uuid',
|
|
9424
|
+
type: 'string',
|
|
9425
|
+
'x-title': 'Device ID',
|
|
9426
|
+
},
|
|
9427
|
+
event_id: {
|
|
9428
|
+
description: 'The ID of the event.',
|
|
9429
|
+
format: 'uuid',
|
|
9430
|
+
type: 'string',
|
|
9431
|
+
'x-title': 'Event ID',
|
|
9432
|
+
},
|
|
9433
|
+
event_type: { enum: ['phone.deactivated'], type: 'string' },
|
|
9434
|
+
occurred_at: {
|
|
9435
|
+
description: 'The time when the event occurred.',
|
|
9436
|
+
format: 'date-time',
|
|
9437
|
+
type: 'string',
|
|
9438
|
+
'x-title': 'Occurred At',
|
|
9439
|
+
},
|
|
9440
|
+
workspace_id: {
|
|
9441
|
+
description: 'The ID of the workspace.',
|
|
9442
|
+
format: 'uuid',
|
|
9443
|
+
type: 'string',
|
|
9444
|
+
'x-title': 'Workspace ID',
|
|
9445
|
+
},
|
|
9446
|
+
},
|
|
9447
|
+
required: [
|
|
9448
|
+
'event_id',
|
|
9449
|
+
'workspace_id',
|
|
9450
|
+
'created_at',
|
|
9451
|
+
'occurred_at',
|
|
9452
|
+
'device_id',
|
|
9453
|
+
'event_type',
|
|
9454
|
+
],
|
|
9455
|
+
type: 'object',
|
|
5331
9456
|
},
|
|
5332
|
-
workspace_id: { format: 'uuid', type: 'string' },
|
|
5333
|
-
},
|
|
5334
|
-
required: [
|
|
5335
|
-
'event_id',
|
|
5336
|
-
'event_type',
|
|
5337
|
-
'workspace_id',
|
|
5338
|
-
'created_at',
|
|
5339
|
-
'occurred_at',
|
|
5340
|
-
'event_description',
|
|
5341
9457
|
],
|
|
5342
|
-
type: 'object',
|
|
5343
9458
|
},
|
|
5344
9459
|
network: {
|
|
5345
9460
|
properties: {
|
|
@@ -16001,7 +20116,13 @@ export default {
|
|
|
16001
20116
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
16002
20117
|
type: 'string',
|
|
16003
20118
|
},
|
|
16004
|
-
manual_override_allowed: {
|
|
20119
|
+
manual_override_allowed: {
|
|
20120
|
+
default: true,
|
|
20121
|
+
deprecated: true,
|
|
20122
|
+
description: "Indicates whether a person at the thermostat or using the API can change the thermostat's settings.",
|
|
20123
|
+
type: 'boolean',
|
|
20124
|
+
'x-deprecated': "Use 'thermostat_schedule.is_override_allowed'",
|
|
20125
|
+
},
|
|
16005
20126
|
name: {
|
|
16006
20127
|
default: null,
|
|
16007
20128
|
description: 'User-friendly name to identify the climate preset.',
|
|
@@ -16683,10 +20804,14 @@ export default {
|
|
|
16683
20804
|
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.',
|
|
16684
20805
|
type: 'string',
|
|
16685
20806
|
},
|
|
16686
|
-
is_override_allowed: {
|
|
20807
|
+
is_override_allowed: {
|
|
20808
|
+
default: false,
|
|
20809
|
+
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).",
|
|
20810
|
+
type: 'boolean',
|
|
20811
|
+
},
|
|
16687
20812
|
max_override_period_minutes: {
|
|
16688
20813
|
default: 0,
|
|
16689
|
-
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).",
|
|
20814
|
+
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).",
|
|
16690
20815
|
minimum: 0,
|
|
16691
20816
|
type: 'integer',
|
|
16692
20817
|
},
|
|
@@ -16935,9 +21060,12 @@ export default {
|
|
|
16935
21060
|
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.',
|
|
16936
21061
|
type: 'string',
|
|
16937
21062
|
},
|
|
16938
|
-
is_override_allowed: {
|
|
21063
|
+
is_override_allowed: {
|
|
21064
|
+
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).",
|
|
21065
|
+
type: 'boolean',
|
|
21066
|
+
},
|
|
16939
21067
|
max_override_period_minutes: {
|
|
16940
|
-
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).",
|
|
21068
|
+
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).",
|
|
16941
21069
|
minimum: 0,
|
|
16942
21070
|
type: 'integer',
|
|
16943
21071
|
},
|
|
@@ -17005,9 +21133,12 @@ export default {
|
|
|
17005
21133
|
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.',
|
|
17006
21134
|
type: 'string',
|
|
17007
21135
|
},
|
|
17008
|
-
is_override_allowed: {
|
|
21136
|
+
is_override_allowed: {
|
|
21137
|
+
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).",
|
|
21138
|
+
type: 'boolean',
|
|
21139
|
+
},
|
|
17009
21140
|
max_override_period_minutes: {
|
|
17010
|
-
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).",
|
|
21141
|
+
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).",
|
|
17011
21142
|
minimum: 0,
|
|
17012
21143
|
type: 'integer',
|
|
17013
21144
|
},
|