@seamapi/types 1.323.0 → 1.324.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.
Files changed (52) hide show
  1. package/dist/connect.cjs +631 -719
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +500 -643
  4. package/lib/seam/connect/models/events/access-codes.js +32 -41
  5. package/lib/seam/connect/models/events/access-codes.js.map +1 -1
  6. package/lib/seam/connect/models/events/acs/common.js +9 -12
  7. package/lib/seam/connect/models/events/acs/common.js.map +1 -1
  8. package/lib/seam/connect/models/events/acs/credentials.js +2 -2
  9. package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
  10. package/lib/seam/connect/models/events/acs/encoders.js +6 -3
  11. package/lib/seam/connect/models/events/acs/encoders.js.map +1 -1
  12. package/lib/seam/connect/models/events/acs/systems.js +3 -3
  13. package/lib/seam/connect/models/events/acs/systems.js.map +1 -1
  14. package/lib/seam/connect/models/events/acs/users.js +5 -3
  15. package/lib/seam/connect/models/events/acs/users.js.map +1 -1
  16. package/lib/seam/connect/models/events/action-attempts.js +10 -22
  17. package/lib/seam/connect/models/events/action-attempts.js.map +1 -1
  18. package/lib/seam/connect/models/events/client-sessions.js +5 -7
  19. package/lib/seam/connect/models/events/client-sessions.js.map +1 -1
  20. package/lib/seam/connect/models/events/common.js +5 -2
  21. package/lib/seam/connect/models/events/common.js.map +1 -1
  22. package/lib/seam/connect/models/events/connect-webviews.js +10 -14
  23. package/lib/seam/connect/models/events/connect-webviews.js.map +1 -1
  24. package/lib/seam/connect/models/events/connected-accounts.js +15 -19
  25. package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
  26. package/lib/seam/connect/models/events/devices.js +43 -47
  27. package/lib/seam/connect/models/events/devices.js.map +1 -1
  28. package/lib/seam/connect/models/events/enrollment-automations.js +5 -7
  29. package/lib/seam/connect/models/events/enrollment-automations.js.map +1 -1
  30. package/lib/seam/connect/models/events/phones.js +4 -6
  31. package/lib/seam/connect/models/events/phones.js.map +1 -1
  32. package/lib/seam/connect/openapi.d.ts +0 -143
  33. package/lib/seam/connect/openapi.js +316 -440
  34. package/lib/seam/connect/openapi.js.map +1 -1
  35. package/lib/seam/connect/route-types.d.ts +500 -500
  36. package/package.json +1 -1
  37. package/src/lib/seam/connect/models/events/access-codes.ts +64 -41
  38. package/src/lib/seam/connect/models/events/acs/common.ts +13 -12
  39. package/src/lib/seam/connect/models/events/acs/credentials.ts +6 -2
  40. package/src/lib/seam/connect/models/events/acs/encoders.ts +12 -3
  41. package/src/lib/seam/connect/models/events/acs/systems.ts +9 -3
  42. package/src/lib/seam/connect/models/events/acs/users.ts +10 -4
  43. package/src/lib/seam/connect/models/events/action-attempts.ts +20 -22
  44. package/src/lib/seam/connect/models/events/client-sessions.ts +9 -7
  45. package/src/lib/seam/connect/models/events/common.ts +5 -2
  46. package/src/lib/seam/connect/models/events/connect-webviews.ts +18 -14
  47. package/src/lib/seam/connect/models/events/connected-accounts.ts +25 -19
  48. package/src/lib/seam/connect/models/events/devices.ts +75 -47
  49. package/src/lib/seam/connect/models/events/enrollment-automations.ts +9 -7
  50. package/src/lib/seam/connect/models/events/phones.ts +6 -6
  51. package/src/lib/seam/connect/openapi.ts +454 -440
  52. package/src/lib/seam/connect/route-types.ts +500 -500
@@ -5513,30 +5513,27 @@ export default {
5513
5513
  discriminator: { propertyName: 'event_type' },
5514
5514
  oneOf: [
5515
5515
  {
5516
- description: 'An access code was created.',
5516
+ description: 'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was created.',
5517
5517
  properties: {
5518
5518
  access_code_id: {
5519
- description: 'The ID of the access code.',
5519
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
5520
5520
  format: 'uuid',
5521
5521
  type: 'string',
5522
- 'x-title': 'Access Code ID',
5523
5522
  },
5524
5523
  connected_account_id: {
5525
- description: 'The ID of the connected account.',
5524
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
5526
5525
  format: 'uuid',
5527
5526
  type: 'string',
5528
- 'x-title': 'Connected Account ID',
5529
5527
  },
5530
5528
  created_at: {
5531
- description: 'Time at which the event was created.',
5529
+ description: 'Date and time at which the event was created.',
5532
5530
  format: 'date-time',
5533
5531
  type: 'string',
5534
5532
  },
5535
5533
  device_id: {
5536
- description: 'The ID of the device.',
5534
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
5537
5535
  format: 'uuid',
5538
5536
  type: 'string',
5539
- 'x-title': 'Device ID',
5540
5537
  },
5541
5538
  event_id: {
5542
5539
  description: 'ID of the event.',
@@ -5545,7 +5542,7 @@ export default {
5545
5542
  },
5546
5543
  event_type: { enum: ['access_code.created'], type: 'string' },
5547
5544
  occurred_at: {
5548
- description: 'Time when the event occurred.',
5545
+ description: 'Date and time at which the event occurred.',
5549
5546
  format: 'date-time',
5550
5547
  type: 'string',
5551
5548
  },
@@ -5568,30 +5565,27 @@ export default {
5568
5565
  type: 'object',
5569
5566
  },
5570
5567
  {
5571
- description: 'An access code was changed.',
5568
+ description: 'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was changed.',
5572
5569
  properties: {
5573
5570
  access_code_id: {
5574
- description: 'The ID of the access code.',
5571
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
5575
5572
  format: 'uuid',
5576
5573
  type: 'string',
5577
- 'x-title': 'Access Code ID',
5578
5574
  },
5579
5575
  connected_account_id: {
5580
- description: 'The ID of the connected account.',
5576
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
5581
5577
  format: 'uuid',
5582
5578
  type: 'string',
5583
- 'x-title': 'Connected Account ID',
5584
5579
  },
5585
5580
  created_at: {
5586
- description: 'Time at which the event was created.',
5581
+ description: 'Date and time at which the event was created.',
5587
5582
  format: 'date-time',
5588
5583
  type: 'string',
5589
5584
  },
5590
5585
  device_id: {
5591
- description: 'The ID of the device.',
5586
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
5592
5587
  format: 'uuid',
5593
5588
  type: 'string',
5594
- 'x-title': 'Device ID',
5595
5589
  },
5596
5590
  event_id: {
5597
5591
  description: 'ID of the event.',
@@ -5600,7 +5594,7 @@ export default {
5600
5594
  },
5601
5595
  event_type: { enum: ['access_code.changed'], type: 'string' },
5602
5596
  occurred_at: {
5603
- description: 'Time when the event occurred.',
5597
+ description: 'Date and time at which the event occurred.',
5604
5598
  format: 'date-time',
5605
5599
  type: 'string',
5606
5600
  },
@@ -5623,35 +5617,31 @@ export default {
5623
5617
  type: 'object',
5624
5618
  },
5625
5619
  {
5626
- description: 'An access code was natively scheduled on a device.',
5620
+ description: 'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was [scheduled natively](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#native-scheduling) on a device.',
5627
5621
  properties: {
5628
5622
  access_code_id: {
5629
- description: 'The ID of the access code.',
5623
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
5630
5624
  format: 'uuid',
5631
5625
  type: 'string',
5632
- 'x-title': 'Access Code ID',
5633
5626
  },
5634
5627
  code: {
5635
- description: 'The code of the access code.',
5628
+ description: 'Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
5636
5629
  type: 'string',
5637
- 'x-title': 'Access Code',
5638
5630
  },
5639
5631
  connected_account_id: {
5640
- description: 'The ID of the connected account.',
5632
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
5641
5633
  format: 'uuid',
5642
5634
  type: 'string',
5643
- 'x-title': 'Connected Account ID',
5644
5635
  },
5645
5636
  created_at: {
5646
- description: 'Time at which the event was created.',
5637
+ description: 'Date and time at which the event was created.',
5647
5638
  format: 'date-time',
5648
5639
  type: 'string',
5649
5640
  },
5650
5641
  device_id: {
5651
- description: 'The ID of the device.',
5642
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
5652
5643
  format: 'uuid',
5653
5644
  type: 'string',
5654
- 'x-title': 'Device ID',
5655
5645
  },
5656
5646
  event_id: {
5657
5647
  description: 'ID of the event.',
@@ -5663,7 +5653,7 @@ export default {
5663
5653
  type: 'string',
5664
5654
  },
5665
5655
  occurred_at: {
5666
- description: 'Time when the event occurred.',
5656
+ description: 'Date and time at which the event occurred.',
5667
5657
  format: 'date-time',
5668
5658
  type: 'string',
5669
5659
  },
@@ -5687,35 +5677,31 @@ export default {
5687
5677
  type: 'object',
5688
5678
  },
5689
5679
  {
5690
- description: 'An access code was set on a device.',
5680
+ description: 'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was set on a device.',
5691
5681
  properties: {
5692
5682
  access_code_id: {
5693
- description: 'The ID of the access code.',
5683
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
5694
5684
  format: 'uuid',
5695
5685
  type: 'string',
5696
- 'x-title': 'Access Code ID',
5697
5686
  },
5698
5687
  code: {
5699
- description: 'The code of the access code.',
5688
+ description: 'Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
5700
5689
  type: 'string',
5701
- 'x-title': 'Access Code',
5702
5690
  },
5703
5691
  connected_account_id: {
5704
- description: 'The ID of the connected account.',
5692
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
5705
5693
  format: 'uuid',
5706
5694
  type: 'string',
5707
- 'x-title': 'Connected Account ID',
5708
5695
  },
5709
5696
  created_at: {
5710
- description: 'Time at which the event was created.',
5697
+ description: 'Date and time at which the event was created.',
5711
5698
  format: 'date-time',
5712
5699
  type: 'string',
5713
5700
  },
5714
5701
  device_id: {
5715
- description: 'The ID of the device.',
5702
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
5716
5703
  format: 'uuid',
5717
5704
  type: 'string',
5718
- 'x-title': 'Device ID',
5719
5705
  },
5720
5706
  event_id: {
5721
5707
  description: 'ID of the event.',
@@ -5727,7 +5713,7 @@ export default {
5727
5713
  type: 'string',
5728
5714
  },
5729
5715
  occurred_at: {
5730
- description: 'Time when the event occurred.',
5716
+ description: 'Date and time at which the event occurred.',
5731
5717
  format: 'date-time',
5732
5718
  type: 'string',
5733
5719
  },
@@ -5751,30 +5737,27 @@ export default {
5751
5737
  type: 'object',
5752
5738
  },
5753
5739
  {
5754
- description: 'An access code was removed from a device.',
5740
+ description: 'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was removed from a device.',
5755
5741
  properties: {
5756
5742
  access_code_id: {
5757
- description: 'The ID of the access code.',
5743
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
5758
5744
  format: 'uuid',
5759
5745
  type: 'string',
5760
- 'x-title': 'Access Code ID',
5761
5746
  },
5762
5747
  connected_account_id: {
5763
- description: 'The ID of the connected account.',
5748
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
5764
5749
  format: 'uuid',
5765
5750
  type: 'string',
5766
- 'x-title': 'Connected Account ID',
5767
5751
  },
5768
5752
  created_at: {
5769
- description: 'Time at which the event was created.',
5753
+ description: 'Date and time at which the event was created.',
5770
5754
  format: 'date-time',
5771
5755
  type: 'string',
5772
5756
  },
5773
5757
  device_id: {
5774
- description: 'The ID of the device.',
5758
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
5775
5759
  format: 'uuid',
5776
5760
  type: 'string',
5777
- 'x-title': 'Device ID',
5778
5761
  },
5779
5762
  event_id: {
5780
5763
  description: 'ID of the event.',
@@ -5786,7 +5769,7 @@ export default {
5786
5769
  type: 'string',
5787
5770
  },
5788
5771
  occurred_at: {
5789
- description: 'Time when the event occurred.',
5772
+ description: 'Date and time at which the event occurred.',
5790
5773
  format: 'date-time',
5791
5774
  type: 'string',
5792
5775
  },
@@ -5809,30 +5792,27 @@ export default {
5809
5792
  type: 'object',
5810
5793
  },
5811
5794
  {
5812
- description: 'There was an unusually long delay in setting an access code on a device.',
5795
+ description: 'There was an unusually long delay in setting an [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) on a device.',
5813
5796
  properties: {
5814
5797
  access_code_id: {
5815
- description: 'The ID of the access code.',
5798
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
5816
5799
  format: 'uuid',
5817
5800
  type: 'string',
5818
- 'x-title': 'Access Code ID',
5819
5801
  },
5820
5802
  connected_account_id: {
5821
- description: 'The ID of the connected account.',
5803
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
5822
5804
  format: 'uuid',
5823
5805
  type: 'string',
5824
- 'x-title': 'Connected Account ID',
5825
5806
  },
5826
5807
  created_at: {
5827
- description: 'Time at which the event was created.',
5808
+ description: 'Date and time at which the event was created.',
5828
5809
  format: 'date-time',
5829
5810
  type: 'string',
5830
5811
  },
5831
5812
  device_id: {
5832
- description: 'The ID of the device.',
5813
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
5833
5814
  format: 'uuid',
5834
5815
  type: 'string',
5835
- 'x-title': 'Device ID',
5836
5816
  },
5837
5817
  event_id: {
5838
5818
  description: 'ID of the event.',
@@ -5844,7 +5824,7 @@ export default {
5844
5824
  type: 'string',
5845
5825
  },
5846
5826
  occurred_at: {
5847
- description: 'Time when the event occurred.',
5827
+ description: 'Date and time at which the event occurred.',
5848
5828
  format: 'date-time',
5849
5829
  type: 'string',
5850
5830
  },
@@ -5867,30 +5847,27 @@ export default {
5867
5847
  type: 'object',
5868
5848
  },
5869
5849
  {
5870
- description: 'An access code failed to be set on a device.',
5850
+ description: 'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) failed to be set on a device.',
5871
5851
  properties: {
5872
5852
  access_code_id: {
5873
- description: 'The ID of the access code.',
5853
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
5874
5854
  format: 'uuid',
5875
5855
  type: 'string',
5876
- 'x-title': 'Access Code ID',
5877
5856
  },
5878
5857
  connected_account_id: {
5879
- description: 'The ID of the connected account.',
5858
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
5880
5859
  format: 'uuid',
5881
5860
  type: 'string',
5882
- 'x-title': 'Connected Account ID',
5883
5861
  },
5884
5862
  created_at: {
5885
- description: 'Time at which the event was created.',
5863
+ description: 'Date and time at which the event was created.',
5886
5864
  format: 'date-time',
5887
5865
  type: 'string',
5888
5866
  },
5889
5867
  device_id: {
5890
- description: 'The ID of the device.',
5868
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
5891
5869
  format: 'uuid',
5892
5870
  type: 'string',
5893
- 'x-title': 'Device ID',
5894
5871
  },
5895
5872
  event_id: {
5896
5873
  description: 'ID of the event.',
@@ -5902,7 +5879,7 @@ export default {
5902
5879
  type: 'string',
5903
5880
  },
5904
5881
  occurred_at: {
5905
- description: 'Time when the event occurred.',
5882
+ description: 'Date and time at which the event occurred.',
5906
5883
  format: 'date-time',
5907
5884
  type: 'string',
5908
5885
  },
@@ -5925,36 +5902,32 @@ export default {
5925
5902
  type: 'object',
5926
5903
  },
5927
5904
  {
5928
- description: 'An access code was deleted.',
5905
+ description: 'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was deleted.',
5929
5906
  properties: {
5930
5907
  access_code_id: {
5931
- description: 'The ID of the access code.',
5908
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
5932
5909
  format: 'uuid',
5933
5910
  type: 'string',
5934
- 'x-title': 'Access Code ID',
5935
5911
  },
5936
5912
  code: {
5937
- description: 'The code of the access code.',
5913
+ description: 'Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
5938
5914
  nullable: true,
5939
5915
  type: 'string',
5940
- 'x-title': 'Access Code',
5941
5916
  },
5942
5917
  connected_account_id: {
5943
- description: 'The ID of the connected account.',
5918
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
5944
5919
  format: 'uuid',
5945
5920
  type: 'string',
5946
- 'x-title': 'Connected Account ID',
5947
5921
  },
5948
5922
  created_at: {
5949
- description: 'Time at which the event was created.',
5923
+ description: 'Date and time at which the event was created.',
5950
5924
  format: 'date-time',
5951
5925
  type: 'string',
5952
5926
  },
5953
5927
  device_id: {
5954
- description: 'The ID of the device.',
5928
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
5955
5929
  format: 'uuid',
5956
5930
  type: 'string',
5957
- 'x-title': 'Device ID',
5958
5931
  },
5959
5932
  event_id: {
5960
5933
  description: 'ID of the event.',
@@ -5963,7 +5936,7 @@ export default {
5963
5936
  },
5964
5937
  event_type: { enum: ['access_code.deleted'], type: 'string' },
5965
5938
  occurred_at: {
5966
- description: 'Time when the event occurred.',
5939
+ description: 'Date and time at which the event occurred.',
5967
5940
  format: 'date-time',
5968
5941
  type: 'string',
5969
5942
  },
@@ -5987,30 +5960,27 @@ export default {
5987
5960
  type: 'object',
5988
5961
  },
5989
5962
  {
5990
- description: 'There was an unusually long delay in removing an access code from a device.',
5963
+ description: 'There was an unusually long delay in removing an [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) from a device.',
5991
5964
  properties: {
5992
5965
  access_code_id: {
5993
- description: 'The ID of the access code.',
5966
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
5994
5967
  format: 'uuid',
5995
5968
  type: 'string',
5996
- 'x-title': 'Access Code ID',
5997
5969
  },
5998
5970
  connected_account_id: {
5999
- description: 'The ID of the connected account.',
5971
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6000
5972
  format: 'uuid',
6001
5973
  type: 'string',
6002
- 'x-title': 'Connected Account ID',
6003
5974
  },
6004
5975
  created_at: {
6005
- description: 'Time at which the event was created.',
5976
+ description: 'Date and time at which the event was created.',
6006
5977
  format: 'date-time',
6007
5978
  type: 'string',
6008
5979
  },
6009
5980
  device_id: {
6010
- description: 'The ID of the device.',
5981
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
6011
5982
  format: 'uuid',
6012
5983
  type: 'string',
6013
- 'x-title': 'Device ID',
6014
5984
  },
6015
5985
  event_id: {
6016
5986
  description: 'ID of the event.',
@@ -6022,7 +5992,7 @@ export default {
6022
5992
  type: 'string',
6023
5993
  },
6024
5994
  occurred_at: {
6025
- description: 'Time when the event occurred.',
5995
+ description: 'Date and time at which the event occurred.',
6026
5996
  format: 'date-time',
6027
5997
  type: 'string',
6028
5998
  },
@@ -6045,30 +6015,27 @@ export default {
6045
6015
  type: 'object',
6046
6016
  },
6047
6017
  {
6048
- description: 'An access code failed to be removed from a device.',
6018
+ description: 'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) failed to be removed from a device.',
6049
6019
  properties: {
6050
6020
  access_code_id: {
6051
- description: 'The ID of the access code.',
6021
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
6052
6022
  format: 'uuid',
6053
6023
  type: 'string',
6054
- 'x-title': 'Access Code ID',
6055
6024
  },
6056
6025
  connected_account_id: {
6057
- description: 'The ID of the connected account.',
6026
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6058
6027
  format: 'uuid',
6059
6028
  type: 'string',
6060
- 'x-title': 'Connected Account ID',
6061
6029
  },
6062
6030
  created_at: {
6063
- description: 'Time at which the event was created.',
6031
+ description: 'Date and time at which the event was created.',
6064
6032
  format: 'date-time',
6065
6033
  type: 'string',
6066
6034
  },
6067
6035
  device_id: {
6068
- description: 'The ID of the device.',
6036
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
6069
6037
  format: 'uuid',
6070
6038
  type: 'string',
6071
- 'x-title': 'Device ID',
6072
6039
  },
6073
6040
  event_id: {
6074
6041
  description: 'ID of the event.',
@@ -6080,7 +6047,7 @@ export default {
6080
6047
  type: 'string',
6081
6048
  },
6082
6049
  occurred_at: {
6083
- description: 'Time when the event occurred.',
6050
+ description: 'Date and time at which the event occurred.',
6084
6051
  format: 'date-time',
6085
6052
  type: 'string',
6086
6053
  },
@@ -6103,30 +6070,27 @@ export default {
6103
6070
  type: 'object',
6104
6071
  },
6105
6072
  {
6106
- description: 'An access code was modified external to Seam.',
6073
+ description: 'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was modified outside of Seam.',
6107
6074
  properties: {
6108
6075
  access_code_id: {
6109
- description: 'The ID of the access code.',
6076
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
6110
6077
  format: 'uuid',
6111
6078
  type: 'string',
6112
- 'x-title': 'Access Code ID',
6113
6079
  },
6114
6080
  connected_account_id: {
6115
- description: 'The ID of the connected account.',
6081
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6116
6082
  format: 'uuid',
6117
6083
  type: 'string',
6118
- 'x-title': 'Connected Account ID',
6119
6084
  },
6120
6085
  created_at: {
6121
- description: 'Time at which the event was created.',
6086
+ description: 'Date and time at which the event was created.',
6122
6087
  format: 'date-time',
6123
6088
  type: 'string',
6124
6089
  },
6125
6090
  device_id: {
6126
- description: 'The ID of the device.',
6091
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
6127
6092
  format: 'uuid',
6128
6093
  type: 'string',
6129
- 'x-title': 'Device ID',
6130
6094
  },
6131
6095
  event_id: {
6132
6096
  description: 'ID of the event.',
@@ -6138,7 +6102,7 @@ export default {
6138
6102
  type: 'string',
6139
6103
  },
6140
6104
  occurred_at: {
6141
- description: 'Time when the event occurred.',
6105
+ description: 'Date and time at which the event occurred.',
6142
6106
  format: 'date-time',
6143
6107
  type: 'string',
6144
6108
  },
@@ -6161,30 +6125,27 @@ export default {
6161
6125
  type: 'object',
6162
6126
  },
6163
6127
  {
6164
- description: 'An access code was deleted external to Seam.',
6128
+ description: 'An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was deleted outside of Seam.',
6165
6129
  properties: {
6166
6130
  access_code_id: {
6167
- description: 'The ID of the access code.',
6131
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
6168
6132
  format: 'uuid',
6169
6133
  type: 'string',
6170
- 'x-title': 'Access Code ID',
6171
6134
  },
6172
6135
  connected_account_id: {
6173
- description: 'The ID of the connected account.',
6136
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6174
6137
  format: 'uuid',
6175
6138
  type: 'string',
6176
- 'x-title': 'Connected Account ID',
6177
6139
  },
6178
6140
  created_at: {
6179
- description: 'Time at which the event was created.',
6141
+ description: 'Date and time at which the event was created.',
6180
6142
  format: 'date-time',
6181
6143
  type: 'string',
6182
6144
  },
6183
6145
  device_id: {
6184
- description: 'The ID of the device.',
6146
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
6185
6147
  format: 'uuid',
6186
6148
  type: 'string',
6187
- 'x-title': 'Device ID',
6188
6149
  },
6189
6150
  event_id: {
6190
6151
  description: 'ID of the event.',
@@ -6196,7 +6157,7 @@ export default {
6196
6157
  type: 'string',
6197
6158
  },
6198
6159
  occurred_at: {
6199
- description: 'Time when the event occurred.',
6160
+ description: 'Date and time at which the event occurred.',
6200
6161
  format: 'date-time',
6201
6162
  type: 'string',
6202
6163
  },
@@ -6219,31 +6180,28 @@ export default {
6219
6180
  type: 'object',
6220
6181
  },
6221
6182
  {
6222
- description: 'A backup access code was pulled from the backup access code pool and set on a device.',
6183
+ description: 'A [backup access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/backup-access-codes) was pulled from the backup access code pool and set on a device.',
6223
6184
  properties: {
6224
6185
  access_code_id: {
6225
- description: 'The ID of the access code.',
6186
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
6226
6187
  format: 'uuid',
6227
6188
  type: 'string',
6228
- 'x-title': 'Access Code ID',
6229
6189
  },
6230
6190
  backup_access_code_id: { type: 'string' },
6231
6191
  connected_account_id: {
6232
- description: 'The ID of the connected account.',
6192
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6233
6193
  format: 'uuid',
6234
6194
  type: 'string',
6235
- 'x-title': 'Connected Account ID',
6236
6195
  },
6237
6196
  created_at: {
6238
- description: 'Time at which the event was created.',
6197
+ description: 'Date and time at which the event was created.',
6239
6198
  format: 'date-time',
6240
6199
  type: 'string',
6241
6200
  },
6242
6201
  device_id: {
6243
- description: 'The ID of the device.',
6202
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
6244
6203
  format: 'uuid',
6245
6204
  type: 'string',
6246
- 'x-title': 'Device ID',
6247
6205
  },
6248
6206
  event_id: {
6249
6207
  description: 'ID of the event.',
@@ -6255,7 +6213,7 @@ export default {
6255
6213
  type: 'string',
6256
6214
  },
6257
6215
  occurred_at: {
6258
- description: 'Time when the event occurred.',
6216
+ description: 'Date and time at which the event occurred.',
6259
6217
  format: 'date-time',
6260
6218
  type: 'string',
6261
6219
  },
@@ -6279,30 +6237,27 @@ export default {
6279
6237
  type: 'object',
6280
6238
  },
6281
6239
  {
6282
- description: 'An unmanaged access code was successfully converted to a managed access code.',
6240
+ description: 'An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) was converted successfully to a managed access code.',
6283
6241
  properties: {
6284
6242
  access_code_id: {
6285
- description: 'The ID of the access code.',
6243
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
6286
6244
  format: 'uuid',
6287
6245
  type: 'string',
6288
- 'x-title': 'Access Code ID',
6289
6246
  },
6290
6247
  connected_account_id: {
6291
- description: 'The ID of the connected account.',
6248
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6292
6249
  format: 'uuid',
6293
6250
  type: 'string',
6294
- 'x-title': 'Connected Account ID',
6295
6251
  },
6296
6252
  created_at: {
6297
- description: 'Time at which the event was created.',
6253
+ description: 'Date and time at which the event was created.',
6298
6254
  format: 'date-time',
6299
6255
  type: 'string',
6300
6256
  },
6301
6257
  device_id: {
6302
- description: 'The ID of the device.',
6258
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
6303
6259
  format: 'uuid',
6304
6260
  type: 'string',
6305
- 'x-title': 'Device ID',
6306
6261
  },
6307
6262
  event_id: {
6308
6263
  description: 'ID of the event.',
@@ -6314,7 +6269,7 @@ export default {
6314
6269
  type: 'string',
6315
6270
  },
6316
6271
  occurred_at: {
6317
- description: 'Time when the event occurred.',
6272
+ description: 'Date and time at which the event occurred.',
6318
6273
  format: 'date-time',
6319
6274
  type: 'string',
6320
6275
  },
@@ -6337,30 +6292,27 @@ export default {
6337
6292
  type: 'object',
6338
6293
  },
6339
6294
  {
6340
- description: 'An unmanaged access code failed to be converted to a managed access code.',
6295
+ description: 'An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) failed to be converted to a managed access code.',
6341
6296
  properties: {
6342
6297
  access_code_id: {
6343
- description: 'The ID of the access code.',
6298
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
6344
6299
  format: 'uuid',
6345
6300
  type: 'string',
6346
- 'x-title': 'Access Code ID',
6347
6301
  },
6348
6302
  connected_account_id: {
6349
- description: 'The ID of the connected account.',
6303
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6350
6304
  format: 'uuid',
6351
6305
  type: 'string',
6352
- 'x-title': 'Connected Account ID',
6353
6306
  },
6354
6307
  created_at: {
6355
- description: 'Time at which the event was created.',
6308
+ description: 'Date and time at which the event was created.',
6356
6309
  format: 'date-time',
6357
6310
  type: 'string',
6358
6311
  },
6359
6312
  device_id: {
6360
- description: 'The ID of the device.',
6313
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
6361
6314
  format: 'uuid',
6362
6315
  type: 'string',
6363
- 'x-title': 'Device ID',
6364
6316
  },
6365
6317
  event_id: {
6366
6318
  description: 'ID of the event.',
@@ -6372,7 +6324,7 @@ export default {
6372
6324
  type: 'string',
6373
6325
  },
6374
6326
  occurred_at: {
6375
- description: 'Time when the event occurred.',
6327
+ description: 'Date and time at which the event occurred.',
6376
6328
  format: 'date-time',
6377
6329
  type: 'string',
6378
6330
  },
@@ -6395,30 +6347,27 @@ export default {
6395
6347
  type: 'object',
6396
6348
  },
6397
6349
  {
6398
- description: 'An unmanaged access code was created on a device.',
6350
+ description: 'An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) was created on a device.',
6399
6351
  properties: {
6400
6352
  access_code_id: {
6401
- description: 'The ID of the access code.',
6353
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
6402
6354
  format: 'uuid',
6403
6355
  type: 'string',
6404
- 'x-title': 'Access Code ID',
6405
6356
  },
6406
6357
  connected_account_id: {
6407
- description: 'The ID of the connected account.',
6358
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6408
6359
  format: 'uuid',
6409
6360
  type: 'string',
6410
- 'x-title': 'Connected Account ID',
6411
6361
  },
6412
6362
  created_at: {
6413
- description: 'Time at which the event was created.',
6363
+ description: 'Date and time at which the event was created.',
6414
6364
  format: 'date-time',
6415
6365
  type: 'string',
6416
6366
  },
6417
6367
  device_id: {
6418
- description: 'The ID of the device.',
6368
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
6419
6369
  format: 'uuid',
6420
6370
  type: 'string',
6421
- 'x-title': 'Device ID',
6422
6371
  },
6423
6372
  event_id: {
6424
6373
  description: 'ID of the event.',
@@ -6430,7 +6379,7 @@ export default {
6430
6379
  type: 'string',
6431
6380
  },
6432
6381
  occurred_at: {
6433
- description: 'Time when the event occurred.',
6382
+ description: 'Date and time at which the event occurred.',
6434
6383
  format: 'date-time',
6435
6384
  type: 'string',
6436
6385
  },
@@ -6453,30 +6402,27 @@ export default {
6453
6402
  type: 'object',
6454
6403
  },
6455
6404
  {
6456
- description: 'An unmanaged access code was removed from a device.',
6405
+ description: 'An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) was removed from a device.',
6457
6406
  properties: {
6458
6407
  access_code_id: {
6459
- description: 'The ID of the access code.',
6408
+ description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).',
6460
6409
  format: 'uuid',
6461
6410
  type: 'string',
6462
- 'x-title': 'Access Code ID',
6463
6411
  },
6464
6412
  connected_account_id: {
6465
- description: 'The ID of the connected account.',
6413
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6466
6414
  format: 'uuid',
6467
6415
  type: 'string',
6468
- 'x-title': 'Connected Account ID',
6469
6416
  },
6470
6417
  created_at: {
6471
- description: 'Time at which the event was created.',
6418
+ description: 'Date and time at which the event was created.',
6472
6419
  format: 'date-time',
6473
6420
  type: 'string',
6474
6421
  },
6475
6422
  device_id: {
6476
- description: 'The ID of the device.',
6423
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
6477
6424
  format: 'uuid',
6478
6425
  type: 'string',
6479
- 'x-title': 'Device ID',
6480
6426
  },
6481
6427
  event_id: {
6482
6428
  description: 'ID of the event.',
@@ -6488,7 +6434,7 @@ export default {
6488
6434
  type: 'string',
6489
6435
  },
6490
6436
  occurred_at: {
6491
- description: 'Time when the event occurred.',
6437
+ description: 'Date and time at which the event occurred.',
6492
6438
  format: 'date-time',
6493
6439
  type: 'string',
6494
6440
  },
@@ -6511,22 +6457,20 @@ export default {
6511
6457
  type: 'object',
6512
6458
  },
6513
6459
  {
6514
- description: 'An ACS system was connected.',
6460
+ description: 'An [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) was connected.',
6515
6461
  properties: {
6516
6462
  acs_system_id: {
6517
- description: 'ID of the ACS system.',
6463
+ description: 'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
6518
6464
  format: 'uuid',
6519
6465
  type: 'string',
6520
- 'x-title': 'ACS System ID',
6521
6466
  },
6522
6467
  connected_account_id: {
6523
- description: 'ID of the connected account.',
6468
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6524
6469
  format: 'uuid',
6525
6470
  type: 'string',
6526
- 'x-title': 'Connected Account ID',
6527
6471
  },
6528
6472
  created_at: {
6529
- description: 'Time at which the event was created.',
6473
+ description: 'Date and time at which the event was created.',
6530
6474
  format: 'date-time',
6531
6475
  type: 'string',
6532
6476
  },
@@ -6537,7 +6481,7 @@ export default {
6537
6481
  },
6538
6482
  event_type: { enum: ['acs_system.connected'], type: 'string' },
6539
6483
  occurred_at: {
6540
- description: 'Time when the event occurred.',
6484
+ description: 'Date and time at which the event occurred.',
6541
6485
  format: 'date-time',
6542
6486
  type: 'string',
6543
6487
  },
@@ -6558,22 +6502,20 @@ export default {
6558
6502
  type: 'object',
6559
6503
  },
6560
6504
  {
6561
- description: 'An ACS system was added.',
6505
+ description: 'An [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) was added.',
6562
6506
  properties: {
6563
6507
  acs_system_id: {
6564
- description: 'ID of the ACS system.',
6508
+ description: 'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
6565
6509
  format: 'uuid',
6566
6510
  type: 'string',
6567
- 'x-title': 'ACS System ID',
6568
6511
  },
6569
6512
  connected_account_id: {
6570
- description: 'ID of the connected account.',
6513
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6571
6514
  format: 'uuid',
6572
6515
  type: 'string',
6573
- 'x-title': 'Connected Account ID',
6574
6516
  },
6575
6517
  created_at: {
6576
- description: 'Time at which the event was created.',
6518
+ description: 'Date and time at which the event was created.',
6577
6519
  format: 'date-time',
6578
6520
  type: 'string',
6579
6521
  },
@@ -6584,7 +6526,7 @@ export default {
6584
6526
  },
6585
6527
  event_type: { enum: ['acs_system.added'], type: 'string' },
6586
6528
  occurred_at: {
6587
- description: 'Time when the event occurred.',
6529
+ description: 'Date and time at which the event occurred.',
6588
6530
  format: 'date-time',
6589
6531
  type: 'string',
6590
6532
  },
@@ -6605,22 +6547,20 @@ export default {
6605
6547
  type: 'object',
6606
6548
  },
6607
6549
  {
6608
- description: 'An ACS system was disconnected.',
6550
+ description: 'An [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) was disconnected.',
6609
6551
  properties: {
6610
6552
  acs_system_id: {
6611
- description: 'ID of the ACS system.',
6553
+ description: 'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
6612
6554
  format: 'uuid',
6613
6555
  type: 'string',
6614
- 'x-title': 'ACS System ID',
6615
6556
  },
6616
6557
  connected_account_id: {
6617
- description: 'ID of the connected account.',
6558
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6618
6559
  format: 'uuid',
6619
6560
  type: 'string',
6620
- 'x-title': 'Connected Account ID',
6621
6561
  },
6622
6562
  created_at: {
6623
- description: 'Time at which the event was created.',
6563
+ description: 'Date and time at which the event was created.',
6624
6564
  format: 'date-time',
6625
6565
  type: 'string',
6626
6566
  },
@@ -6631,7 +6571,7 @@ export default {
6631
6571
  },
6632
6572
  event_type: { enum: ['acs_system.disconnected'], type: 'string' },
6633
6573
  occurred_at: {
6634
- description: 'Time when the event occurred.',
6574
+ description: 'Date and time at which the event occurred.',
6635
6575
  format: 'date-time',
6636
6576
  type: 'string',
6637
6577
  },
@@ -6652,23 +6592,21 @@ export default {
6652
6592
  type: 'object',
6653
6593
  },
6654
6594
  {
6655
- description: 'An ACS credential was deleted.',
6595
+ description: 'An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was deleted.',
6656
6596
  properties: {
6657
6597
  acs_credential_id: { format: 'uuid', type: 'string' },
6658
6598
  acs_system_id: {
6659
- description: 'ID of the ACS system.',
6599
+ description: 'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
6660
6600
  format: 'uuid',
6661
6601
  type: 'string',
6662
- 'x-title': 'ACS System ID',
6663
6602
  },
6664
6603
  connected_account_id: {
6665
- description: 'ID of the connected account.',
6604
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6666
6605
  format: 'uuid',
6667
6606
  type: 'string',
6668
- 'x-title': 'Connected Account ID',
6669
6607
  },
6670
6608
  created_at: {
6671
- description: 'Time at which the event was created.',
6609
+ description: 'Date and time at which the event was created.',
6672
6610
  format: 'date-time',
6673
6611
  type: 'string',
6674
6612
  },
@@ -6679,7 +6617,7 @@ export default {
6679
6617
  },
6680
6618
  event_type: { enum: ['acs_credential.deleted'], type: 'string' },
6681
6619
  occurred_at: {
6682
- description: 'Time when the event occurred.',
6620
+ description: 'Date and time at which the event occurred.',
6683
6621
  format: 'date-time',
6684
6622
  type: 'string',
6685
6623
  },
@@ -6701,23 +6639,21 @@ export default {
6701
6639
  type: 'object',
6702
6640
  },
6703
6641
  {
6704
- description: 'An ACS credential was issued.',
6642
+ description: 'An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was issued.',
6705
6643
  properties: {
6706
6644
  acs_credential_id: { format: 'uuid', type: 'string' },
6707
6645
  acs_system_id: {
6708
- description: 'ID of the ACS system.',
6646
+ description: 'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
6709
6647
  format: 'uuid',
6710
6648
  type: 'string',
6711
- 'x-title': 'ACS System ID',
6712
6649
  },
6713
6650
  connected_account_id: {
6714
- description: 'ID of the connected account.',
6651
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6715
6652
  format: 'uuid',
6716
6653
  type: 'string',
6717
- 'x-title': 'Connected Account ID',
6718
6654
  },
6719
6655
  created_at: {
6720
- description: 'Time at which the event was created.',
6656
+ description: 'Date and time at which the event was created.',
6721
6657
  format: 'date-time',
6722
6658
  type: 'string',
6723
6659
  },
@@ -6728,7 +6664,7 @@ export default {
6728
6664
  },
6729
6665
  event_type: { enum: ['acs_credential.issued'], type: 'string' },
6730
6666
  occurred_at: {
6731
- description: 'Time when the event occurred.',
6667
+ description: 'Date and time at which the event occurred.',
6732
6668
  format: 'date-time',
6733
6669
  type: 'string',
6734
6670
  },
@@ -6750,23 +6686,21 @@ export default {
6750
6686
  type: 'object',
6751
6687
  },
6752
6688
  {
6753
- description: 'An ACS user was deleted.',
6689
+ description: 'An [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) was deleted.',
6754
6690
  properties: {
6755
6691
  acs_system_id: {
6756
- description: 'ID of the ACS system.',
6692
+ description: 'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
6757
6693
  format: 'uuid',
6758
6694
  type: 'string',
6759
- 'x-title': 'ACS System ID',
6760
6695
  },
6761
6696
  acs_user_id: { format: 'uuid', type: 'string' },
6762
6697
  connected_account_id: {
6763
- description: 'ID of the connected account.',
6698
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6764
6699
  format: 'uuid',
6765
6700
  type: 'string',
6766
- 'x-title': 'Connected Account ID',
6767
6701
  },
6768
6702
  created_at: {
6769
- description: 'Time at which the event was created.',
6703
+ description: 'Date and time at which the event was created.',
6770
6704
  format: 'date-time',
6771
6705
  type: 'string',
6772
6706
  },
@@ -6777,7 +6711,7 @@ export default {
6777
6711
  },
6778
6712
  event_type: { enum: ['acs_user.deleted'], type: 'string' },
6779
6713
  occurred_at: {
6780
- description: 'Time when the event occurred.',
6714
+ description: 'Date and time at which the event occurred.',
6781
6715
  format: 'date-time',
6782
6716
  type: 'string',
6783
6717
  },
@@ -6799,27 +6733,25 @@ export default {
6799
6733
  type: 'object',
6800
6734
  },
6801
6735
  {
6802
- description: 'An ACS encoder was added.',
6736
+ description: 'An [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners) was added.',
6803
6737
  properties: {
6804
6738
  acs_encoder_id: {
6805
- description: 'ID of the ACS encoder.',
6739
+ description: 'ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners).',
6806
6740
  format: 'uuid',
6807
6741
  type: 'string',
6808
6742
  },
6809
6743
  acs_system_id: {
6810
- description: 'ID of the ACS system.',
6744
+ description: 'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
6811
6745
  format: 'uuid',
6812
6746
  type: 'string',
6813
- 'x-title': 'ACS System ID',
6814
6747
  },
6815
6748
  connected_account_id: {
6816
- description: 'ID of the connected account.',
6749
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6817
6750
  format: 'uuid',
6818
6751
  type: 'string',
6819
- 'x-title': 'Connected Account ID',
6820
6752
  },
6821
6753
  created_at: {
6822
- description: 'Time at which the event was created.',
6754
+ description: 'Date and time at which the event was created.',
6823
6755
  format: 'date-time',
6824
6756
  type: 'string',
6825
6757
  },
@@ -6830,7 +6762,7 @@ export default {
6830
6762
  },
6831
6763
  event_type: { enum: ['acs_encoder.added'], type: 'string' },
6832
6764
  occurred_at: {
6833
- description: 'Time when the event occurred.',
6765
+ description: 'Date and time at which the event occurred.',
6834
6766
  format: 'date-time',
6835
6767
  type: 'string',
6836
6768
  },
@@ -6852,27 +6784,25 @@ export default {
6852
6784
  type: 'object',
6853
6785
  },
6854
6786
  {
6855
- description: 'An ACS encoder was removed.',
6787
+ description: 'An [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners) was removed.',
6856
6788
  properties: {
6857
6789
  acs_encoder_id: {
6858
- description: 'ID of the ACS encoder.',
6790
+ description: 'ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners).',
6859
6791
  format: 'uuid',
6860
6792
  type: 'string',
6861
6793
  },
6862
6794
  acs_system_id: {
6863
- description: 'ID of the ACS system.',
6795
+ description: 'ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).',
6864
6796
  format: 'uuid',
6865
6797
  type: 'string',
6866
- 'x-title': 'ACS System ID',
6867
6798
  },
6868
6799
  connected_account_id: {
6869
- description: 'ID of the connected account.',
6800
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6870
6801
  format: 'uuid',
6871
6802
  type: 'string',
6872
- 'x-title': 'Connected Account ID',
6873
6803
  },
6874
6804
  created_at: {
6875
- description: 'Time at which the event was created.',
6805
+ description: 'Date and time at which the event was created.',
6876
6806
  format: 'date-time',
6877
6807
  type: 'string',
6878
6808
  },
@@ -6883,7 +6813,7 @@ export default {
6883
6813
  },
6884
6814
  event_type: { enum: ['acs_encoder.removed'], type: 'string' },
6885
6815
  occurred_at: {
6886
- description: 'Time when the event occurred.',
6816
+ description: 'Date and time at which the event occurred.',
6887
6817
  format: 'date-time',
6888
6818
  type: 'string',
6889
6819
  },
@@ -6905,16 +6835,15 @@ export default {
6905
6835
  type: 'object',
6906
6836
  },
6907
6837
  {
6908
- description: 'A client session was deleted.',
6838
+ description: 'A [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens) was deleted.',
6909
6839
  properties: {
6910
6840
  client_session_id: {
6911
- description: 'ID of the client session.',
6841
+ description: 'ID of the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens).',
6912
6842
  format: 'uuid',
6913
6843
  type: 'string',
6914
- 'x-title': 'Client Session ID',
6915
6844
  },
6916
6845
  created_at: {
6917
- description: 'Time at which the event was created.',
6846
+ description: 'Date and time at which the event was created.',
6918
6847
  format: 'date-time',
6919
6848
  type: 'string',
6920
6849
  },
@@ -6925,7 +6854,7 @@ export default {
6925
6854
  },
6926
6855
  event_type: { enum: ['client_session.deleted'], type: 'string' },
6927
6856
  occurred_at: {
6928
- description: 'Time when the event occurred.',
6857
+ description: 'Date and time at which the event occurred.',
6929
6858
  format: 'date-time',
6930
6859
  type: 'string',
6931
6860
  },
@@ -6946,22 +6875,20 @@ export default {
6946
6875
  type: 'object',
6947
6876
  },
6948
6877
  {
6949
- description: 'A connected account was connected for the first time, was reconnected after being disconnected.',
6878
+ description: 'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was connected for the first time or was reconnected after being disconnected.',
6950
6879
  properties: {
6951
6880
  connect_webview_id: {
6952
- description: 'ID of the connect webview.',
6881
+ description: 'ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).',
6953
6882
  format: 'uuid',
6954
6883
  type: 'string',
6955
- 'x-title': 'Connect Webview ID',
6956
6884
  },
6957
6885
  connected_account_id: {
6958
- description: 'ID of the connected account.',
6886
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
6959
6887
  format: 'uuid',
6960
6888
  type: 'string',
6961
- 'x-title': 'Connected Account ID',
6962
6889
  },
6963
6890
  created_at: {
6964
- description: 'Time at which the event was created.',
6891
+ description: 'Date and time at which the event was created.',
6965
6892
  format: 'date-time',
6966
6893
  type: 'string',
6967
6894
  },
@@ -6975,7 +6902,7 @@ export default {
6975
6902
  type: 'string',
6976
6903
  },
6977
6904
  occurred_at: {
6978
- description: 'Time when the event occurred.',
6905
+ description: 'Date and time at which the event occurred.',
6979
6906
  format: 'date-time',
6980
6907
  type: 'string',
6981
6908
  },
@@ -6997,22 +6924,20 @@ export default {
6997
6924
  type: 'object',
6998
6925
  },
6999
6926
  {
7000
- description: 'A connected account was created.',
6927
+ description: 'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was created.',
7001
6928
  properties: {
7002
6929
  connect_webview_id: {
7003
- description: 'ID of the connect webview.',
6930
+ description: 'ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).',
7004
6931
  format: 'uuid',
7005
6932
  type: 'string',
7006
- 'x-title': 'Connect Webview ID',
7007
6933
  },
7008
6934
  connected_account_id: {
7009
- description: 'ID of the connected account.',
6935
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
7010
6936
  format: 'uuid',
7011
6937
  type: 'string',
7012
- 'x-title': 'Connected Account ID',
7013
6938
  },
7014
6939
  created_at: {
7015
- description: 'Time at which the event was created.',
6940
+ description: 'Date and time at which the event was created.',
7016
6941
  format: 'date-time',
7017
6942
  type: 'string',
7018
6943
  },
@@ -7026,7 +6951,7 @@ export default {
7026
6951
  type: 'string',
7027
6952
  },
7028
6953
  occurred_at: {
7029
- description: 'Time when the event occurred.',
6954
+ description: 'Date and time at which the event occurred.',
7030
6955
  format: 'date-time',
7031
6956
  type: 'string',
7032
6957
  },
@@ -7049,22 +6974,20 @@ export default {
7049
6974
  },
7050
6975
  {
7051
6976
  deprecated: true,
7052
- description: 'A connected account had a successful connect webview login.',
6977
+ description: 'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) had a successful login using a [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).',
7053
6978
  properties: {
7054
6979
  connect_webview_id: {
7055
- description: 'ID of the connect webview.',
6980
+ description: 'ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).',
7056
6981
  format: 'uuid',
7057
6982
  type: 'string',
7058
- 'x-title': 'Connect Webview ID',
7059
6983
  },
7060
6984
  connected_account_id: {
7061
- description: 'ID of the connected account.',
6985
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
7062
6986
  format: 'uuid',
7063
6987
  type: 'string',
7064
- 'x-title': 'Connected Account ID',
7065
6988
  },
7066
6989
  created_at: {
7067
- description: 'Time at which the event was created.',
6990
+ description: 'Date and time at which the event was created.',
7068
6991
  format: 'date-time',
7069
6992
  type: 'string',
7070
6993
  },
@@ -7078,7 +7001,7 @@ export default {
7078
7001
  type: 'string',
7079
7002
  },
7080
7003
  occurred_at: {
7081
- description: 'Time when the event occurred.',
7004
+ description: 'Date and time at which the event occurred.',
7082
7005
  format: 'date-time',
7083
7006
  type: 'string',
7084
7007
  },
@@ -7101,16 +7024,15 @@ export default {
7101
7024
  'x-deprecated': 'Use `connect_webview.login_succeeded`.',
7102
7025
  },
7103
7026
  {
7104
- description: 'A connected account was disconnected.',
7027
+ description: 'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was disconnected.',
7105
7028
  properties: {
7106
7029
  connected_account_id: {
7107
- description: 'ID of the connected account.',
7030
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
7108
7031
  format: 'uuid',
7109
7032
  type: 'string',
7110
- 'x-title': 'Connected Account ID',
7111
7033
  },
7112
7034
  created_at: {
7113
- description: 'Time at which the event was created.',
7035
+ description: 'Date and time at which the event was created.',
7114
7036
  format: 'date-time',
7115
7037
  type: 'string',
7116
7038
  },
@@ -7124,7 +7046,7 @@ export default {
7124
7046
  type: 'string',
7125
7047
  },
7126
7048
  occurred_at: {
7127
- description: 'Time when the event occurred.',
7049
+ description: 'Date and time at which the event occurred.',
7128
7050
  format: 'date-time',
7129
7051
  type: 'string',
7130
7052
  },
@@ -7145,16 +7067,15 @@ export default {
7145
7067
  type: 'object',
7146
7068
  },
7147
7069
  {
7148
- description: 'A connected account completed the first sync with Seam and devices are now available.',
7070
+ description: 'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) completed the first sync with Seam, and the corresponding devices or systems are now available.',
7149
7071
  properties: {
7150
7072
  connected_account_id: {
7151
- description: 'ID of the connected account.',
7073
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
7152
7074
  format: 'uuid',
7153
7075
  type: 'string',
7154
- 'x-title': 'Connected Account ID',
7155
7076
  },
7156
7077
  created_at: {
7157
- description: 'Time at which the event was created.',
7078
+ description: 'Date and time at which the event was created.',
7158
7079
  format: 'date-time',
7159
7080
  type: 'string',
7160
7081
  },
@@ -7168,7 +7089,7 @@ export default {
7168
7089
  type: 'string',
7169
7090
  },
7170
7091
  occurred_at: {
7171
- description: 'Time when the event occurred.',
7092
+ description: 'Date and time at which the event occurred.',
7172
7093
  format: 'date-time',
7173
7094
  type: 'string',
7174
7095
  },
@@ -7189,16 +7110,15 @@ export default {
7189
7110
  type: 'object',
7190
7111
  },
7191
7112
  {
7192
- description: 'A connected account was deleted.',
7113
+ description: 'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was deleted.',
7193
7114
  properties: {
7194
7115
  connected_account_id: {
7195
- description: 'ID of the connected account.',
7116
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
7196
7117
  format: 'uuid',
7197
7118
  type: 'string',
7198
- 'x-title': 'Connected Account ID',
7199
7119
  },
7200
7120
  created_at: {
7201
- description: 'Time at which the event was created.',
7121
+ description: 'Date and time at which the event was created.',
7202
7122
  format: 'date-time',
7203
7123
  type: 'string',
7204
7124
  },
@@ -7212,7 +7132,7 @@ export default {
7212
7132
  type: 'string',
7213
7133
  },
7214
7134
  occurred_at: {
7215
- description: 'Time when the event occurred.',
7135
+ description: 'Date and time at which the event occurred.',
7216
7136
  format: 'date-time',
7217
7137
  type: 'string',
7218
7138
  },
@@ -7233,16 +7153,15 @@ export default {
7233
7153
  type: 'object',
7234
7154
  },
7235
7155
  {
7236
- description: 'A connected account completed the first sync after reconnection with Seam and devices are now available.',
7156
+ description: 'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) completed the first sync after reconnection with Seam, and the corresponding devices or systems are now available.',
7237
7157
  properties: {
7238
7158
  connected_account_id: {
7239
- description: 'ID of the connected account.',
7159
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
7240
7160
  format: 'uuid',
7241
7161
  type: 'string',
7242
- 'x-title': 'Connected Account ID',
7243
7162
  },
7244
7163
  created_at: {
7245
- description: 'Time at which the event was created.',
7164
+ description: 'Date and time at which the event was created.',
7246
7165
  format: 'date-time',
7247
7166
  type: 'string',
7248
7167
  },
@@ -7258,7 +7177,7 @@ export default {
7258
7177
  type: 'string',
7259
7178
  },
7260
7179
  occurred_at: {
7261
- description: 'Time when the event occurred.',
7180
+ description: 'Date and time at which the event occurred.',
7262
7181
  format: 'date-time',
7263
7182
  type: 'string',
7264
7183
  },
@@ -7279,21 +7198,16 @@ export default {
7279
7198
  type: 'object',
7280
7199
  },
7281
7200
  {
7282
- description: 'A lock door action attempt succeeded.',
7201
+ description: 'A lock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) succeeded.',
7283
7202
  properties: {
7284
7203
  action_attempt_id: {
7285
- description: 'The ID of the action attempt.',
7204
+ description: 'ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts).',
7286
7205
  format: 'uuid',
7287
7206
  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
7207
  },
7208
+ action_type: { description: 'Type of action.', type: 'string' },
7295
7209
  created_at: {
7296
- description: 'Time at which the event was created.',
7210
+ description: 'Date and time at which the event was created.',
7297
7211
  format: 'date-time',
7298
7212
  type: 'string',
7299
7213
  },
@@ -7307,15 +7221,11 @@ export default {
7307
7221
  type: 'string',
7308
7222
  },
7309
7223
  occurred_at: {
7310
- description: 'Time when the event occurred.',
7224
+ description: 'Date and time at which the event occurred.',
7311
7225
  format: 'date-time',
7312
7226
  type: 'string',
7313
7227
  },
7314
- status: {
7315
- description: 'The status of the action.',
7316
- type: 'string',
7317
- 'x-title': 'Status',
7318
- },
7228
+ status: { description: 'Status of the action.', type: 'string' },
7319
7229
  workspace_id: {
7320
7230
  description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
7321
7231
  format: 'uuid',
@@ -7335,21 +7245,16 @@ export default {
7335
7245
  type: 'object',
7336
7246
  },
7337
7247
  {
7338
- description: 'A lock door action attempt failed.',
7248
+ description: 'A lock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) failed.',
7339
7249
  properties: {
7340
7250
  action_attempt_id: {
7341
- description: 'The ID of the action attempt.',
7251
+ description: 'ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts).',
7342
7252
  format: 'uuid',
7343
7253
  type: 'string',
7344
- 'x-title': 'Action Attempt ID',
7345
- },
7346
- action_type: {
7347
- description: 'The type of action.',
7348
- type: 'string',
7349
- 'x-title': 'Action Type',
7350
7254
  },
7255
+ action_type: { description: 'Type of action.', type: 'string' },
7351
7256
  created_at: {
7352
- description: 'Time at which the event was created.',
7257
+ description: 'Date and time at which the event was created.',
7353
7258
  format: 'date-time',
7354
7259
  type: 'string',
7355
7260
  },
@@ -7363,15 +7268,11 @@ export default {
7363
7268
  type: 'string',
7364
7269
  },
7365
7270
  occurred_at: {
7366
- description: 'Time when the event occurred.',
7271
+ description: 'Date and time at which the event occurred.',
7367
7272
  format: 'date-time',
7368
7273
  type: 'string',
7369
7274
  },
7370
- status: {
7371
- description: 'The status of the action.',
7372
- type: 'string',
7373
- 'x-title': 'Status',
7374
- },
7275
+ status: { description: 'Status of the action.', type: 'string' },
7375
7276
  workspace_id: {
7376
7277
  description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
7377
7278
  format: 'uuid',
@@ -7391,21 +7292,16 @@ export default {
7391
7292
  type: 'object',
7392
7293
  },
7393
7294
  {
7394
- description: 'An unlock door action attempt succeeded.',
7295
+ description: 'An unlock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) succeeded.',
7395
7296
  properties: {
7396
7297
  action_attempt_id: {
7397
- description: 'The ID of the action attempt.',
7298
+ description: 'ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts).',
7398
7299
  format: 'uuid',
7399
7300
  type: 'string',
7400
- 'x-title': 'Action Attempt ID',
7401
- },
7402
- action_type: {
7403
- description: 'The type of action.',
7404
- type: 'string',
7405
- 'x-title': 'Action Type',
7406
7301
  },
7302
+ action_type: { description: 'Type of action.', type: 'string' },
7407
7303
  created_at: {
7408
- description: 'Time at which the event was created.',
7304
+ description: 'Date and time at which the event was created.',
7409
7305
  format: 'date-time',
7410
7306
  type: 'string',
7411
7307
  },
@@ -7419,15 +7315,11 @@ export default {
7419
7315
  type: 'string',
7420
7316
  },
7421
7317
  occurred_at: {
7422
- description: 'Time when the event occurred.',
7318
+ description: 'Date and time at which the event occurred.',
7423
7319
  format: 'date-time',
7424
7320
  type: 'string',
7425
7321
  },
7426
- status: {
7427
- description: 'The status of the action.',
7428
- type: 'string',
7429
- 'x-title': 'Status',
7430
- },
7322
+ status: { description: 'Status of the action.', type: 'string' },
7431
7323
  workspace_id: {
7432
7324
  description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
7433
7325
  format: 'uuid',
@@ -7447,21 +7339,16 @@ export default {
7447
7339
  type: 'object',
7448
7340
  },
7449
7341
  {
7450
- description: 'An unlock door action attempt failed.',
7342
+ description: 'An unlock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) failed.',
7451
7343
  properties: {
7452
7344
  action_attempt_id: {
7453
- description: 'The ID of the action attempt.',
7345
+ description: 'ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts).',
7454
7346
  format: 'uuid',
7455
7347
  type: 'string',
7456
- 'x-title': 'Action Attempt ID',
7457
- },
7458
- action_type: {
7459
- description: 'The type of action.',
7460
- type: 'string',
7461
- 'x-title': 'Action Type',
7462
7348
  },
7349
+ action_type: { description: 'Type of action.', type: 'string' },
7463
7350
  created_at: {
7464
- description: 'Time at which the event was created.',
7351
+ description: 'Date and time at which the event was created.',
7465
7352
  format: 'date-time',
7466
7353
  type: 'string',
7467
7354
  },
@@ -7475,15 +7362,11 @@ export default {
7475
7362
  type: 'string',
7476
7363
  },
7477
7364
  occurred_at: {
7478
- description: 'Time when the event occurred.',
7365
+ description: 'Date and time at which the event occurred.',
7479
7366
  format: 'date-time',
7480
7367
  type: 'string',
7481
7368
  },
7482
- status: {
7483
- description: 'The status of the action.',
7484
- type: 'string',
7485
- 'x-title': 'Status',
7486
- },
7369
+ status: { description: 'Status of the action.', type: 'string' },
7487
7370
  workspace_id: {
7488
7371
  description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
7489
7372
  format: 'uuid',
@@ -7503,22 +7386,20 @@ export default {
7503
7386
  type: 'object',
7504
7387
  },
7505
7388
  {
7506
- description: 'A connect webview had a successful login.',
7389
+ description: 'A [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews) login succeeded.',
7507
7390
  properties: {
7508
7391
  connect_webview_id: {
7509
- description: 'ID of the connect webview.',
7392
+ description: 'ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).',
7510
7393
  format: 'uuid',
7511
7394
  type: 'string',
7512
- 'x-title': 'Connect Webview ID',
7513
7395
  },
7514
7396
  connected_account_id: {
7515
- description: 'ID of the connected account.',
7397
+ description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
7516
7398
  format: 'uuid',
7517
7399
  type: 'string',
7518
- 'x-title': 'Connected Account ID',
7519
7400
  },
7520
7401
  created_at: {
7521
- description: 'Time at which the event was created.',
7402
+ description: 'Date and time at which the event was created.',
7522
7403
  format: 'date-time',
7523
7404
  type: 'string',
7524
7405
  },
@@ -7532,7 +7413,7 @@ export default {
7532
7413
  type: 'string',
7533
7414
  },
7534
7415
  occurred_at: {
7535
- description: 'Time when the event occurred.',
7416
+ description: 'Date and time at which the event occurred.',
7536
7417
  format: 'date-time',
7537
7418
  type: 'string',
7538
7419
  },
@@ -7554,16 +7435,15 @@ export default {
7554
7435
  type: 'object',
7555
7436
  },
7556
7437
  {
7557
- description: 'A connect webview had a failed login.',
7438
+ description: 'A [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews) login failed.',
7558
7439
  properties: {
7559
7440
  connect_webview_id: {
7560
- description: 'ID of the connect webview.',
7441
+ description: 'ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).',
7561
7442
  format: 'uuid',
7562
7443
  type: 'string',
7563
- 'x-title': 'Connect Webview ID',
7564
7444
  },
7565
7445
  created_at: {
7566
- description: 'Time at which the event was created.',
7446
+ description: 'Date and time at which the event was created.',
7567
7447
  format: 'date-time',
7568
7448
  type: 'string',
7569
7449
  },
@@ -7577,7 +7457,7 @@ export default {
7577
7457
  type: 'string',
7578
7458
  },
7579
7459
  occurred_at: {
7580
- description: 'Time when the event occurred.',
7460
+ description: 'Date and time at which the event occurred.',
7581
7461
  format: 'date-time',
7582
7462
  type: 'string',
7583
7463
  },
@@ -7598,7 +7478,7 @@ export default {
7598
7478
  type: 'object',
7599
7479
  },
7600
7480
  {
7601
- description: 'A new device was connected to Seam.',
7481
+ description: 'The status of a [device](https://docs.seam.co/latest/core-concepts/devices) changed from offline to online. That is, the `device.properties.online` property changed from `false` to `true`. Note that some devices operate entirely in offline mode, so Seam never emits a `device.connected` event for these devices.',
7602
7482
  properties: {
7603
7483
  connected_account_id: {
7604
7484
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -7606,7 +7486,7 @@ export default {
7606
7486
  type: 'string',
7607
7487
  },
7608
7488
  created_at: {
7609
- description: 'Time at which the event was created.',
7489
+ description: 'Date and time at which the event was created.',
7610
7490
  format: 'date-time',
7611
7491
  type: 'string',
7612
7492
  },
@@ -7622,7 +7502,7 @@ export default {
7622
7502
  },
7623
7503
  event_type: { enum: ['device.connected'], type: 'string' },
7624
7504
  occurred_at: {
7625
- description: 'Time when the event occurred.',
7505
+ description: 'Date and time at which the event occurred.',
7626
7506
  format: 'date-time',
7627
7507
  type: 'string',
7628
7508
  },
@@ -7644,7 +7524,7 @@ export default {
7644
7524
  type: 'object',
7645
7525
  },
7646
7526
  {
7647
- description: 'A device was added or reconnected to Seam.',
7527
+ description: 'A [device](https://docs.seam.co/latest/core-concepts/devices) was added to Seam or was re-added to Seam after having been removed.',
7648
7528
  properties: {
7649
7529
  connected_account_id: {
7650
7530
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -7652,7 +7532,7 @@ export default {
7652
7532
  type: 'string',
7653
7533
  },
7654
7534
  created_at: {
7655
- description: 'Time at which the event was created.',
7535
+ description: 'Date and time at which the event was created.',
7656
7536
  format: 'date-time',
7657
7537
  type: 'string',
7658
7538
  },
@@ -7668,7 +7548,7 @@ export default {
7668
7548
  },
7669
7549
  event_type: { enum: ['device.added'], type: 'string' },
7670
7550
  occurred_at: {
7671
- description: 'Time when the event occurred.',
7551
+ description: 'Date and time at which the event occurred.',
7672
7552
  format: 'date-time',
7673
7553
  type: 'string',
7674
7554
  },
@@ -7698,7 +7578,7 @@ export default {
7698
7578
  type: 'string',
7699
7579
  },
7700
7580
  created_at: {
7701
- description: 'Time at which the event was created.',
7581
+ description: 'Date and time at which the event was created.',
7702
7582
  format: 'date-time',
7703
7583
  type: 'string',
7704
7584
  },
@@ -7717,7 +7597,7 @@ export default {
7717
7597
  type: 'string',
7718
7598
  },
7719
7599
  occurred_at: {
7720
- description: 'Time when the event occurred.',
7600
+ description: 'Date and time at which the event occurred.',
7721
7601
  format: 'date-time',
7722
7602
  type: 'string',
7723
7603
  },
@@ -7747,7 +7627,7 @@ export default {
7747
7627
  type: 'string',
7748
7628
  },
7749
7629
  created_at: {
7750
- description: 'Time at which the event was created.',
7630
+ description: 'Date and time at which the event was created.',
7751
7631
  format: 'date-time',
7752
7632
  type: 'string',
7753
7633
  },
@@ -7766,7 +7646,7 @@ export default {
7766
7646
  type: 'string',
7767
7647
  },
7768
7648
  occurred_at: {
7769
- description: 'Time when the event occurred.',
7649
+ description: 'Date and time at which the event occurred.',
7770
7650
  format: 'date-time',
7771
7651
  type: 'string',
7772
7652
  },
@@ -7788,7 +7668,7 @@ export default {
7788
7668
  type: 'object',
7789
7669
  },
7790
7670
  {
7791
- description: 'An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was connected to Seam.',
7671
+ description: 'The status of an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) changed from offline to online. That is, the `device.properties.online` property changed from `false` to `true`.',
7792
7672
  properties: {
7793
7673
  connected_account_id: {
7794
7674
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -7796,7 +7676,7 @@ export default {
7796
7676
  type: 'string',
7797
7677
  },
7798
7678
  created_at: {
7799
- description: 'Time at which the event was created.',
7679
+ description: 'Date and time at which the event was created.',
7800
7680
  format: 'date-time',
7801
7681
  type: 'string',
7802
7682
  },
@@ -7815,7 +7695,7 @@ export default {
7815
7695
  type: 'string',
7816
7696
  },
7817
7697
  occurred_at: {
7818
- description: 'Time when the event occurred.',
7698
+ description: 'Date and time at which the event occurred.',
7819
7699
  format: 'date-time',
7820
7700
  type: 'string',
7821
7701
  },
@@ -7837,7 +7717,7 @@ export default {
7837
7717
  type: 'object',
7838
7718
  },
7839
7719
  {
7840
- description: 'A device was disconnected from Seam.',
7720
+ description: 'The status of a [device](https://docs.seam.co/latest/core-concepts/devices) changed from online to offline. That is, the `device.properties.online` property changed from `true` to `false`.',
7841
7721
  properties: {
7842
7722
  connected_account_id: {
7843
7723
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -7845,7 +7725,7 @@ export default {
7845
7725
  type: 'string',
7846
7726
  },
7847
7727
  created_at: {
7848
- description: 'Time at which the event was created.',
7728
+ description: 'Date and time at which the event was created.',
7849
7729
  format: 'date-time',
7850
7730
  type: 'string',
7851
7731
  },
@@ -7870,7 +7750,7 @@ export default {
7870
7750
  },
7871
7751
  event_type: { enum: ['device.disconnected'], type: 'string' },
7872
7752
  occurred_at: {
7873
- description: 'Time when the event occurred.',
7753
+ description: 'Date and time at which the event occurred.',
7874
7754
  format: 'date-time',
7875
7755
  type: 'string',
7876
7756
  },
@@ -7893,7 +7773,7 @@ export default {
7893
7773
  type: 'object',
7894
7774
  },
7895
7775
  {
7896
- description: 'An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was disconnected from Seam.',
7776
+ description: 'The status of an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) changed from online to offline. That is, the `device.properties.online` property changed from `true` to `false`.',
7897
7777
  properties: {
7898
7778
  connected_account_id: {
7899
7779
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -7901,7 +7781,7 @@ export default {
7901
7781
  type: 'string',
7902
7782
  },
7903
7783
  created_at: {
7904
- description: 'Time at which the event was created.',
7784
+ description: 'Date and time at which the event was created.',
7905
7785
  format: 'date-time',
7906
7786
  type: 'string',
7907
7787
  },
@@ -7929,7 +7809,7 @@ export default {
7929
7809
  type: 'string',
7930
7810
  },
7931
7811
  occurred_at: {
7932
- description: 'Time when the event occurred.',
7812
+ description: 'Date and time at which the event occurred.',
7933
7813
  format: 'date-time',
7934
7814
  type: 'string',
7935
7815
  },
@@ -7952,7 +7832,7 @@ export default {
7952
7832
  type: 'object',
7953
7833
  },
7954
7834
  {
7955
- description: 'A device detected that it was tampered with, for example, opened or moved.',
7835
+ description: 'A [device](https://docs.seam.co/latest/core-concepts/devices) detected that it was tampered with, for example, opened or moved.',
7956
7836
  properties: {
7957
7837
  connected_account_id: {
7958
7838
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -7960,7 +7840,7 @@ export default {
7960
7840
  type: 'string',
7961
7841
  },
7962
7842
  created_at: {
7963
- description: 'Time at which the event was created.',
7843
+ description: 'Date and time at which the event was created.',
7964
7844
  format: 'date-time',
7965
7845
  type: 'string',
7966
7846
  },
@@ -7976,7 +7856,7 @@ export default {
7976
7856
  },
7977
7857
  event_type: { enum: ['device.tampered'], type: 'string' },
7978
7858
  occurred_at: {
7979
- description: 'Time when the event occurred.',
7859
+ description: 'Date and time at which the event occurred.',
7980
7860
  format: 'date-time',
7981
7861
  type: 'string',
7982
7862
  },
@@ -7998,7 +7878,7 @@ export default {
7998
7878
  type: 'object',
7999
7879
  },
8000
7880
  {
8001
- description: 'A device battery level dropped below the low threshold.',
7881
+ description: 'A [device](https://docs.seam.co/latest/core-concepts/devices) battery level dropped below the low threshold.',
8002
7882
  properties: {
8003
7883
  battery_level: {
8004
7884
  description: 'Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device.',
@@ -8013,7 +7893,7 @@ export default {
8013
7893
  type: 'string',
8014
7894
  },
8015
7895
  created_at: {
8016
- description: 'Time at which the event was created.',
7896
+ description: 'Date and time at which the event was created.',
8017
7897
  format: 'date-time',
8018
7898
  type: 'string',
8019
7899
  },
@@ -8029,7 +7909,7 @@ export default {
8029
7909
  },
8030
7910
  event_type: { enum: ['device.low_battery'], type: 'string' },
8031
7911
  occurred_at: {
8032
- description: 'Time when the event occurred.',
7912
+ description: 'Date and time at which the event occurred.',
8033
7913
  format: 'date-time',
8034
7914
  type: 'string',
8035
7915
  },
@@ -8052,7 +7932,7 @@ export default {
8052
7932
  type: 'object',
8053
7933
  },
8054
7934
  {
8055
- description: 'A device battery status changed since the last `battery_status_changed` event.',
7935
+ description: 'A [device](https://docs.seam.co/latest/core-concepts/devices) battery status changed since the last `battery_status_changed` event.',
8056
7936
  properties: {
8057
7937
  battery_level: {
8058
7938
  description: 'Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device.',
@@ -8072,7 +7952,7 @@ export default {
8072
7952
  type: 'string',
8073
7953
  },
8074
7954
  created_at: {
8075
- description: 'Time at which the event was created.',
7955
+ description: 'Date and time at which the event was created.',
8076
7956
  format: 'date-time',
8077
7957
  type: 'string',
8078
7958
  },
@@ -8091,7 +7971,7 @@ export default {
8091
7971
  type: 'string',
8092
7972
  },
8093
7973
  occurred_at: {
8094
- description: 'Time when the event occurred.',
7974
+ description: 'Date and time at which the event occurred.',
8095
7975
  format: 'date-time',
8096
7976
  type: 'string',
8097
7977
  },
@@ -8115,7 +7995,7 @@ export default {
8115
7995
  type: 'object',
8116
7996
  },
8117
7997
  {
8118
- description: 'A device was removed externally from the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
7998
+ description: 'A [device](https://docs.seam.co/latest/core-concepts/devices) was removed externally from the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
8119
7999
  properties: {
8120
8000
  connected_account_id: {
8121
8001
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -8123,7 +8003,7 @@ export default {
8123
8003
  type: 'string',
8124
8004
  },
8125
8005
  created_at: {
8126
- description: 'Time at which the event was created.',
8006
+ description: 'Date and time at which the event was created.',
8127
8007
  format: 'date-time',
8128
8008
  type: 'string',
8129
8009
  },
@@ -8139,7 +8019,7 @@ export default {
8139
8019
  },
8140
8020
  event_type: { enum: ['device.removed'], type: 'string' },
8141
8021
  occurred_at: {
8142
- description: 'Time when the event occurred.',
8022
+ description: 'Date and time at which the event occurred.',
8143
8023
  format: 'date-time',
8144
8024
  type: 'string',
8145
8025
  },
@@ -8161,7 +8041,7 @@ export default {
8161
8041
  type: 'object',
8162
8042
  },
8163
8043
  {
8164
- description: 'A device was [deleted](https://docs.seam.co/latest/api/devices/delete).',
8044
+ description: 'A [device](https://docs.seam.co/latest/core-concepts/devices) was deleted.',
8165
8045
  properties: {
8166
8046
  connected_account_id: {
8167
8047
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -8169,7 +8049,7 @@ export default {
8169
8049
  type: 'string',
8170
8050
  },
8171
8051
  created_at: {
8172
- description: 'Time at which the event was created.',
8052
+ description: 'Date and time at which the event was created.',
8173
8053
  format: 'date-time',
8174
8054
  type: 'string',
8175
8055
  },
@@ -8185,7 +8065,7 @@ export default {
8185
8065
  },
8186
8066
  event_type: { enum: ['device.deleted'], type: 'string' },
8187
8067
  occurred_at: {
8188
- description: 'Time when the event occurred.',
8068
+ description: 'Date and time at which the event occurred.',
8189
8069
  format: 'date-time',
8190
8070
  type: 'string',
8191
8071
  },
@@ -8207,7 +8087,7 @@ export default {
8207
8087
  type: 'object',
8208
8088
  },
8209
8089
  {
8210
- description: 'Seam detected that a device is using a third-party integration that will interfere with Seam device management.',
8090
+ description: 'Seam detected that a [device](https://docs.seam.co/latest/core-concepts/devices) is using a third-party integration that will interfere with Seam device management.',
8211
8091
  properties: {
8212
8092
  connected_account_id: {
8213
8093
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -8215,7 +8095,7 @@ export default {
8215
8095
  type: 'string',
8216
8096
  },
8217
8097
  created_at: {
8218
- description: 'Time at which the event was created.',
8098
+ description: 'Date and time at which the event was created.',
8219
8099
  format: 'date-time',
8220
8100
  type: 'string',
8221
8101
  },
@@ -8234,7 +8114,7 @@ export default {
8234
8114
  type: 'string',
8235
8115
  },
8236
8116
  occurred_at: {
8237
- description: 'Time when the event occurred.',
8117
+ description: 'Date and time at which the event occurred.',
8238
8118
  format: 'date-time',
8239
8119
  type: 'string',
8240
8120
  },
@@ -8256,7 +8136,7 @@ export default {
8256
8136
  type: 'object',
8257
8137
  },
8258
8138
  {
8259
- description: 'Seam detected that a device is no longer using a third-party integration that was interfering with Seam device management.',
8139
+ description: 'Seam detected that a [device](https://docs.seam.co/latest/core-concepts/devices) is no longer using a third-party integration that was interfering with Seam device management.',
8260
8140
  properties: {
8261
8141
  connected_account_id: {
8262
8142
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -8264,7 +8144,7 @@ export default {
8264
8144
  type: 'string',
8265
8145
  },
8266
8146
  created_at: {
8267
- description: 'Time at which the event was created.',
8147
+ description: 'Date and time at which the event was created.',
8268
8148
  format: 'date-time',
8269
8149
  type: 'string',
8270
8150
  },
@@ -8283,7 +8163,7 @@ export default {
8283
8163
  type: 'string',
8284
8164
  },
8285
8165
  occurred_at: {
8286
- description: 'Time when the event occurred.',
8166
+ description: 'Date and time at which the event occurred.',
8287
8167
  format: 'date-time',
8288
8168
  type: 'string',
8289
8169
  },
@@ -8305,7 +8185,7 @@ export default {
8305
8185
  type: 'object',
8306
8186
  },
8307
8187
  {
8308
- description: 'A Salto device activated privacy mode.',
8188
+ description: 'A [Salto device](https://docs.seam.co/latest/device-and-system-integration-guides/salto-locks) activated privacy mode.',
8309
8189
  properties: {
8310
8190
  connected_account_id: {
8311
8191
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -8313,7 +8193,7 @@ export default {
8313
8193
  type: 'string',
8314
8194
  },
8315
8195
  created_at: {
8316
- description: 'Time at which the event was created.',
8196
+ description: 'Date and time at which the event was created.',
8317
8197
  format: 'date-time',
8318
8198
  type: 'string',
8319
8199
  },
@@ -8332,7 +8212,7 @@ export default {
8332
8212
  type: 'string',
8333
8213
  },
8334
8214
  occurred_at: {
8335
- description: 'Time when the event occurred.',
8215
+ description: 'Date and time at which the event occurred.',
8336
8216
  format: 'date-time',
8337
8217
  type: 'string',
8338
8218
  },
@@ -8354,7 +8234,7 @@ export default {
8354
8234
  type: 'object',
8355
8235
  },
8356
8236
  {
8357
- description: 'A Salto device deactivated privacy mode.',
8237
+ description: 'A [Salto device](https://docs.seam.co/latest/device-and-system-integration-guides/salto-locks) deactivated privacy mode.',
8358
8238
  properties: {
8359
8239
  connected_account_id: {
8360
8240
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -8362,7 +8242,7 @@ export default {
8362
8242
  type: 'string',
8363
8243
  },
8364
8244
  created_at: {
8365
- description: 'Time at which the event was created.',
8245
+ description: 'Date and time at which the event was created.',
8366
8246
  format: 'date-time',
8367
8247
  type: 'string',
8368
8248
  },
@@ -8381,7 +8261,7 @@ export default {
8381
8261
  type: 'string',
8382
8262
  },
8383
8263
  occurred_at: {
8384
- description: 'Time when the event occurred.',
8264
+ description: 'Date and time at which the event occurred.',
8385
8265
  format: 'date-time',
8386
8266
  type: 'string',
8387
8267
  },
@@ -8403,7 +8283,7 @@ export default {
8403
8283
  type: 'object',
8404
8284
  },
8405
8285
  {
8406
- description: 'Seam detected a flaky device connection.',
8286
+ description: 'Seam detected a flaky [device](https://docs.seam.co/latest/core-concepts/devices) connection.',
8407
8287
  properties: {
8408
8288
  connected_account_id: {
8409
8289
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -8411,7 +8291,7 @@ export default {
8411
8291
  type: 'string',
8412
8292
  },
8413
8293
  created_at: {
8414
- description: 'Time at which the event was created.',
8294
+ description: 'Date and time at which the event was created.',
8415
8295
  format: 'date-time',
8416
8296
  type: 'string',
8417
8297
  },
@@ -8430,7 +8310,7 @@ export default {
8430
8310
  type: 'string',
8431
8311
  },
8432
8312
  occurred_at: {
8433
- description: 'Time when the event occurred.',
8313
+ description: 'Date and time at which the event occurred.',
8434
8314
  format: 'date-time',
8435
8315
  type: 'string',
8436
8316
  },
@@ -8452,7 +8332,7 @@ export default {
8452
8332
  type: 'object',
8453
8333
  },
8454
8334
  {
8455
- description: 'Seam detected that a previously-flaky device connection stabilized.',
8335
+ description: 'Seam detected that a previously-flaky [device](https://docs.seam.co/latest/core-concepts/devices) connection stabilized.',
8456
8336
  properties: {
8457
8337
  connected_account_id: {
8458
8338
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -8460,7 +8340,7 @@ export default {
8460
8340
  type: 'string',
8461
8341
  },
8462
8342
  created_at: {
8463
- description: 'Time at which the event was created.',
8343
+ description: 'Date and time at which the event was created.',
8464
8344
  format: 'date-time',
8465
8345
  type: 'string',
8466
8346
  },
@@ -8479,7 +8359,7 @@ export default {
8479
8359
  type: 'string',
8480
8360
  },
8481
8361
  occurred_at: {
8482
- description: 'Time when the event occurred.',
8362
+ description: 'Date and time at which the event occurred.',
8483
8363
  format: 'date-time',
8484
8364
  type: 'string',
8485
8365
  },
@@ -8501,7 +8381,7 @@ export default {
8501
8381
  type: 'object',
8502
8382
  },
8503
8383
  {
8504
- description: 'A third-party subscription is required to use all device features.',
8384
+ description: 'A third-party subscription is required to use all [device](https://docs.seam.co/latest/core-concepts/devices) features.',
8505
8385
  properties: {
8506
8386
  connected_account_id: {
8507
8387
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -8509,7 +8389,7 @@ export default {
8509
8389
  type: 'string',
8510
8390
  },
8511
8391
  created_at: {
8512
- description: 'Time at which the event was created.',
8392
+ description: 'Date and time at which the event was created.',
8513
8393
  format: 'date-time',
8514
8394
  type: 'string',
8515
8395
  },
@@ -8528,7 +8408,7 @@ export default {
8528
8408
  type: 'string',
8529
8409
  },
8530
8410
  occurred_at: {
8531
- description: 'Time when the event occurred.',
8411
+ description: 'Date and time at which the event occurred.',
8532
8412
  format: 'date-time',
8533
8413
  type: 'string',
8534
8414
  },
@@ -8550,7 +8430,7 @@ export default {
8550
8430
  type: 'object',
8551
8431
  },
8552
8432
  {
8553
- description: 'A third-party subscription is active or no longer required to use all device features.',
8433
+ description: 'A third-party subscription is active or no longer required to use all [device](https://docs.seam.co/latest/core-concepts/devices) features.',
8554
8434
  properties: {
8555
8435
  connected_account_id: {
8556
8436
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -8558,7 +8438,7 @@ export default {
8558
8438
  type: 'string',
8559
8439
  },
8560
8440
  created_at: {
8561
- description: 'Time at which the event was created.',
8441
+ description: 'Date and time at which the event was created.',
8562
8442
  format: 'date-time',
8563
8443
  type: 'string',
8564
8444
  },
@@ -8577,7 +8457,7 @@ export default {
8577
8457
  type: 'string',
8578
8458
  },
8579
8459
  occurred_at: {
8580
- description: 'Time when the event occurred.',
8460
+ description: 'Date and time at which the event occurred.',
8581
8461
  format: 'date-time',
8582
8462
  type: 'string',
8583
8463
  },
@@ -8599,7 +8479,7 @@ export default {
8599
8479
  type: 'object',
8600
8480
  },
8601
8481
  {
8602
- description: 'An accessory keypad was connected to a device.',
8482
+ description: 'An accessory keypad was connected to a [device](https://docs.seam.co/latest/core-concepts/devices).',
8603
8483
  properties: {
8604
8484
  connected_account_id: {
8605
8485
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -8607,7 +8487,7 @@ export default {
8607
8487
  type: 'string',
8608
8488
  },
8609
8489
  created_at: {
8610
- description: 'Time at which the event was created.',
8490
+ description: 'Date and time at which the event was created.',
8611
8491
  format: 'date-time',
8612
8492
  type: 'string',
8613
8493
  },
@@ -8626,7 +8506,7 @@ export default {
8626
8506
  type: 'string',
8627
8507
  },
8628
8508
  occurred_at: {
8629
- description: 'Time when the event occurred.',
8509
+ description: 'Date and time at which the event occurred.',
8630
8510
  format: 'date-time',
8631
8511
  type: 'string',
8632
8512
  },
@@ -8648,7 +8528,7 @@ export default {
8648
8528
  type: 'object',
8649
8529
  },
8650
8530
  {
8651
- description: 'An accessory keypad was disconnected from a device.',
8531
+ description: 'An accessory keypad was disconnected from a [device](https://docs.seam.co/latest/core-concepts/devices).',
8652
8532
  properties: {
8653
8533
  connected_account_id: {
8654
8534
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -8656,7 +8536,7 @@ export default {
8656
8536
  type: 'string',
8657
8537
  },
8658
8538
  created_at: {
8659
- description: 'Time at which the event was created.',
8539
+ description: 'Date and time at which the event was created.',
8660
8540
  format: 'date-time',
8661
8541
  type: 'string',
8662
8542
  },
@@ -8675,7 +8555,7 @@ export default {
8675
8555
  type: 'string',
8676
8556
  },
8677
8557
  occurred_at: {
8678
- description: 'Time when the event occurred.',
8558
+ description: 'Date and time at which the event occurred.',
8679
8559
  format: 'date-time',
8680
8560
  type: 'string',
8681
8561
  },
@@ -8705,7 +8585,7 @@ export default {
8705
8585
  type: 'string',
8706
8586
  },
8707
8587
  created_at: {
8708
- description: 'Time at which the event was created.',
8588
+ description: 'Date and time at which the event was created.',
8709
8589
  format: 'date-time',
8710
8590
  type: 'string',
8711
8591
  },
@@ -8727,7 +8607,6 @@ export default {
8727
8607
  additionalProperties: {},
8728
8608
  description: 'Metadata from Minut.',
8729
8609
  type: 'object',
8730
- 'x-title': 'Minut Metadata',
8731
8610
  },
8732
8611
  noise_level_decibels: {
8733
8612
  description: 'Detected noise level in decibels.',
@@ -8752,10 +8631,9 @@ export default {
8752
8631
  additionalProperties: {},
8753
8632
  description: 'Metadata from Noiseaware.',
8754
8633
  type: 'object',
8755
- 'x-title': 'Noiseaware Metadata',
8756
8634
  },
8757
8635
  occurred_at: {
8758
- description: 'Time when the event occurred.',
8636
+ description: 'Date and time at which the event occurred.',
8759
8637
  format: 'date-time',
8760
8638
  type: 'string',
8761
8639
  },
@@ -8777,7 +8655,7 @@ export default {
8777
8655
  type: 'object',
8778
8656
  },
8779
8657
  {
8780
- description: 'A lock was locked.',
8658
+ description: 'A [lock](https://docs.seam.co/latest/capability-guides/smart-locks) was locked.',
8781
8659
  properties: {
8782
8660
  access_code_id: {
8783
8661
  description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used to lock the device.',
@@ -8795,7 +8673,7 @@ export default {
8795
8673
  type: 'string',
8796
8674
  },
8797
8675
  created_at: {
8798
- description: 'Time at which the event was created.',
8676
+ description: 'Date and time at which the event was created.',
8799
8677
  format: 'date-time',
8800
8678
  type: 'string',
8801
8679
  },
@@ -8811,12 +8689,12 @@ export default {
8811
8689
  },
8812
8690
  event_type: { enum: ['lock.locked'], type: 'string' },
8813
8691
  method: {
8814
- description: 'Method by which a lock device was locked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device.',
8692
+ description: 'Method by which a [lock device](https://docs.seam.co/latest/capability-guides/smart-locks) was locked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device.',
8815
8693
  enum: ['keycode', 'manual', 'automatic', 'unknown', 'seamapi'],
8816
8694
  type: 'string',
8817
8695
  },
8818
8696
  occurred_at: {
8819
- description: 'Time when the event occurred.',
8697
+ description: 'Date and time at which the event occurred.',
8820
8698
  format: 'date-time',
8821
8699
  type: 'string',
8822
8700
  },
@@ -8839,7 +8717,7 @@ export default {
8839
8717
  type: 'object',
8840
8718
  },
8841
8719
  {
8842
- description: 'A lock was unlocked.',
8720
+ description: 'A [lock](https://docs.seam.co/latest/capability-guides/smart-locks) was unlocked.',
8843
8721
  properties: {
8844
8722
  access_code_id: {
8845
8723
  description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used to unlock the device.',
@@ -8857,7 +8735,7 @@ export default {
8857
8735
  type: 'string',
8858
8736
  },
8859
8737
  created_at: {
8860
- description: 'Time at which the event was created.',
8738
+ description: 'Date and time at which the event was created.',
8861
8739
  format: 'date-time',
8862
8740
  type: 'string',
8863
8741
  },
@@ -8873,12 +8751,12 @@ export default {
8873
8751
  },
8874
8752
  event_type: { enum: ['lock.unlocked'], type: 'string' },
8875
8753
  method: {
8876
- description: 'Method by which a lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device.',
8754
+ description: 'Method by which a [lock device](https://docs.seam.co/latest/capability-guides/smart-locks) was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device.',
8877
8755
  enum: ['keycode', 'manual', 'automatic', 'unknown', 'seamapi'],
8878
8756
  type: 'string',
8879
8757
  },
8880
8758
  occurred_at: {
8881
- description: 'Time when the event occurred.',
8759
+ description: 'Date and time at which the event occurred.',
8882
8760
  format: 'date-time',
8883
8761
  type: 'string',
8884
8762
  },
@@ -8901,7 +8779,7 @@ export default {
8901
8779
  type: 'object',
8902
8780
  },
8903
8781
  {
8904
- description: 'The lock denied access to a user after one or more consecutive invalid attempts to unlock the device.',
8782
+ description: 'The [lock](https://docs.seam.co/latest/capability-guides/smart-locks) denied access to a user after one or more consecutive invalid attempts to unlock the device.',
8905
8783
  properties: {
8906
8784
  access_code_id: {
8907
8785
  description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used in the unlock attempts.',
@@ -8914,7 +8792,7 @@ export default {
8914
8792
  type: 'string',
8915
8793
  },
8916
8794
  created_at: {
8917
- description: 'Time at which the event was created.',
8795
+ description: 'Date and time at which the event was created.',
8918
8796
  format: 'date-time',
8919
8797
  type: 'string',
8920
8798
  },
@@ -8930,7 +8808,7 @@ export default {
8930
8808
  },
8931
8809
  event_type: { enum: ['lock.access_denied'], type: 'string' },
8932
8810
  occurred_at: {
8933
- description: 'Time when the event occurred.',
8811
+ description: 'Date and time at which the event occurred.',
8934
8812
  format: 'date-time',
8935
8813
  type: 'string',
8936
8814
  },
@@ -8964,7 +8842,7 @@ export default {
8964
8842
  type: 'string',
8965
8843
  },
8966
8844
  created_at: {
8967
- description: 'Time at which the event was created.',
8845
+ description: 'Date and time at which the event was created.',
8968
8846
  format: 'date-time',
8969
8847
  type: 'string',
8970
8848
  },
@@ -8983,11 +8861,11 @@ export default {
8983
8861
  type: 'string',
8984
8862
  },
8985
8863
  is_fallback_climate_preset: {
8986
- description: 'Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated is the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat.',
8864
+ description: 'Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated is the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).',
8987
8865
  type: 'boolean',
8988
8866
  },
8989
8867
  occurred_at: {
8990
- description: 'Time when the event occurred.',
8868
+ description: 'Date and time at which the event occurred.',
8991
8869
  format: 'date-time',
8992
8870
  type: 'string',
8993
8871
  },
@@ -9018,7 +8896,7 @@ export default {
9018
8896
  type: 'object',
9019
8897
  },
9020
8898
  {
9021
- description: 'A thermostat was adjusted manually.',
8899
+ description: 'A [thermostat](https://docs.seam.co/latest/capability-guides/thermostats) was adjusted manually.',
9022
8900
  properties: {
9023
8901
  connected_account_id: {
9024
8902
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -9036,7 +8914,7 @@ export default {
9036
8914
  type: 'number',
9037
8915
  },
9038
8916
  created_at: {
9039
- description: 'Time at which the event was created.',
8917
+ description: 'Date and time at which the event was created.',
9040
8918
  format: 'date-time',
9041
8919
  type: 'string',
9042
8920
  },
@@ -9075,12 +8953,12 @@ export default {
9075
8953
  type: 'string',
9076
8954
  },
9077
8955
  method: {
9078
- description: 'Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat.',
8956
+ description: 'Method used to adjust the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats) manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).',
9079
8957
  enum: ['seam', 'external'],
9080
8958
  type: 'string',
9081
8959
  },
9082
8960
  occurred_at: {
9083
- description: 'Time when the event occurred.',
8961
+ description: 'Date and time at which the event occurred.',
9084
8962
  format: 'date-time',
9085
8963
  type: 'string',
9086
8964
  },
@@ -9103,7 +8981,7 @@ export default {
9103
8981
  type: 'object',
9104
8982
  },
9105
8983
  {
9106
- description: "A thermostat's temperature reading exceeded the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
8984
+ description: "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading exceeded the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
9107
8985
  properties: {
9108
8986
  connected_account_id: {
9109
8987
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -9111,7 +8989,7 @@ export default {
9111
8989
  type: 'string',
9112
8990
  },
9113
8991
  created_at: {
9114
- description: 'Time at which the event was created.',
8992
+ description: 'Date and time at which the event was created.',
9115
8993
  format: 'date-time',
9116
8994
  type: 'string',
9117
8995
  },
@@ -9142,17 +9020,17 @@ export default {
9142
9020
  type: 'number',
9143
9021
  },
9144
9022
  occurred_at: {
9145
- description: 'Time when the event occurred.',
9023
+ description: 'Date and time at which the event occurred.',
9146
9024
  format: 'date-time',
9147
9025
  type: 'string',
9148
9026
  },
9149
9027
  temperature_celsius: {
9150
- description: 'Temperature, in °C, reported by the thermostat.',
9028
+ description: 'Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).',
9151
9029
  format: 'float',
9152
9030
  type: 'number',
9153
9031
  },
9154
9032
  temperature_fahrenheit: {
9155
- description: 'Temperature, in °F, reported by the thermostat.',
9033
+ description: 'Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).',
9156
9034
  format: 'float',
9157
9035
  type: 'number',
9158
9036
  },
@@ -9192,7 +9070,7 @@ export default {
9192
9070
  type: 'object',
9193
9071
  },
9194
9072
  {
9195
- description: "A thermostat's temperature reading no longer exceeds the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
9073
+ description: "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading no longer exceeds the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
9196
9074
  properties: {
9197
9075
  connected_account_id: {
9198
9076
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
@@ -9200,7 +9078,7 @@ export default {
9200
9078
  type: 'string',
9201
9079
  },
9202
9080
  created_at: {
9203
- description: 'Time at which the event was created.',
9081
+ description: 'Date and time at which the event was created.',
9204
9082
  format: 'date-time',
9205
9083
  type: 'string',
9206
9084
  },
@@ -9231,17 +9109,17 @@ export default {
9231
9109
  type: 'number',
9232
9110
  },
9233
9111
  occurred_at: {
9234
- description: 'Time when the event occurred.',
9112
+ description: 'Date and time at which the event occurred.',
9235
9113
  format: 'date-time',
9236
9114
  type: 'string',
9237
9115
  },
9238
9116
  temperature_celsius: {
9239
- description: 'Temperature, in °C, reported by the thermostat.',
9117
+ description: 'Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).',
9240
9118
  format: 'float',
9241
9119
  type: 'number',
9242
9120
  },
9243
9121
  temperature_fahrenheit: {
9244
- description: 'Temperature, in °F, reported by the thermostat.',
9122
+ description: 'Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).',
9245
9123
  format: 'float',
9246
9124
  type: 'number',
9247
9125
  },
@@ -9281,18 +9159,17 @@ export default {
9281
9159
  type: 'object',
9282
9160
  },
9283
9161
  {
9284
- description: 'An enrollment automation was deleted.',
9162
+ description: 'An [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) was deleted.',
9285
9163
  properties: {
9286
9164
  created_at: {
9287
- description: 'Time at which the event was created.',
9165
+ description: 'Date and time at which the event was created.',
9288
9166
  format: 'date-time',
9289
9167
  type: 'string',
9290
9168
  },
9291
9169
  enrollment_automation_id: {
9292
- description: 'ID of the enrollment automation.',
9170
+ description: 'ID of the [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut).',
9293
9171
  format: 'uuid',
9294
9172
  type: 'string',
9295
- 'x-title': 'Enrollment Automation ID',
9296
9173
  },
9297
9174
  event_id: {
9298
9175
  description: 'ID of the event.',
@@ -9304,7 +9181,7 @@ export default {
9304
9181
  type: 'string',
9305
9182
  },
9306
9183
  occurred_at: {
9307
- description: 'Time when the event occurred.',
9184
+ description: 'Date and time at which the event occurred.',
9308
9185
  format: 'date-time',
9309
9186
  type: 'string',
9310
9187
  },
@@ -9328,15 +9205,14 @@ export default {
9328
9205
  description: 'A phone device was deactivated.',
9329
9206
  properties: {
9330
9207
  created_at: {
9331
- description: 'Time at which the event was created.',
9208
+ description: 'Date and time at which the event was created.',
9332
9209
  format: 'date-time',
9333
9210
  type: 'string',
9334
9211
  },
9335
9212
  device_id: {
9336
- description: 'ID of the device.',
9213
+ description: 'ID of the [device](https://docs.seam.co/latest/core-concepts/devices).',
9337
9214
  format: 'uuid',
9338
9215
  type: 'string',
9339
- 'x-title': 'Device ID',
9340
9216
  },
9341
9217
  event_id: {
9342
9218
  description: 'ID of the event.',
@@ -9345,7 +9221,7 @@ export default {
9345
9221
  },
9346
9222
  event_type: { enum: ['phone.deactivated'], type: 'string' },
9347
9223
  occurred_at: {
9348
- description: 'Time when the event occurred.',
9224
+ description: 'Date and time at which the event occurred.',
9349
9225
  format: 'date-time',
9350
9226
  type: 'string',
9351
9227
  },