@seamapi/types 1.192.0 → 1.194.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.
@@ -41,7 +41,6 @@ export default {
41
41
  errors: {
42
42
  description:
43
43
  'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
44
- nullable: true,
45
44
  },
46
45
  is_backup: {
47
46
  description: 'Indicates whether the access code is a backup code.',
@@ -117,7 +116,6 @@ export default {
117
116
  warnings: {
118
117
  description:
119
118
  'Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention.',
120
- nullable: true,
121
119
  },
122
120
  },
123
121
  required: [
@@ -140,8 +138,7 @@ export default {
140
138
  acs_access_group: {
141
139
  properties: {
142
140
  access_group_type: {
143
- description:
144
- '\n ---\n deprecated: use external_type\n ---\n ',
141
+ deprecated: true,
145
142
  enum: [
146
143
  'pti_unit',
147
144
  'pti_access_level',
@@ -149,11 +146,12 @@ export default {
149
146
  'brivo_group',
150
147
  ],
151
148
  type: 'string',
149
+ 'x-deprecated': 'use external_type',
152
150
  },
153
151
  access_group_type_display_name: {
154
- description:
155
- '\n ---\n deprecated: use external_type_display_name\n ---\n ',
152
+ deprecated: true,
156
153
  type: 'string',
154
+ 'x-deprecated': 'use external_type_display_name',
157
155
  },
158
156
  acs_access_group_id: { format: 'uuid', type: 'string' },
159
157
  acs_system_id: { format: 'uuid', type: 'string' },
@@ -451,8 +449,7 @@ export default {
451
449
  image_url: { type: 'string' },
452
450
  name: { type: 'string' },
453
451
  system_type: {
454
- description:
455
- '\n ---\n deprecated: use external_type\n ---\n ',
452
+ deprecated: true,
456
453
  enum: [
457
454
  'pti_site',
458
455
  'alta_org',
@@ -464,11 +461,12 @@ export default {
464
461
  'latch_building',
465
462
  ],
466
463
  type: 'string',
464
+ 'x-deprecated': 'use external_type',
467
465
  },
468
466
  system_type_display_name: {
469
- description:
470
- '\n ---\n deprecated: use external_type_display_name\n ---\n ',
467
+ deprecated: true,
471
468
  type: 'string',
469
+ 'x-deprecated': 'use external_type_display_name',
472
470
  },
473
471
  warnings: {
474
472
  items: { properties: {}, type: 'object' },
@@ -504,10 +502,10 @@ export default {
504
502
  created_at: { format: 'date-time', type: 'string' },
505
503
  display_name: { type: 'string' },
506
504
  email: {
507
- description:
508
- '\n ---\n deprecated: use email_address.\n ---\n ',
505
+ deprecated: true,
509
506
  format: 'email',
510
507
  type: 'string',
508
+ 'x-deprecated': 'use email_address.',
511
509
  },
512
510
  email_address: { format: 'email', type: 'string' },
513
511
  external_type: {
@@ -524,7 +522,7 @@ export default {
524
522
  full_name: { type: 'string' },
525
523
  hid_acs_system_id: { format: 'uuid', type: 'string' },
526
524
  is_suspended: { type: 'boolean' },
527
- phone_number: { nullable: true, type: 'string' },
525
+ phone_number: { type: 'string' },
528
526
  user_identity_email_address: { nullable: true, type: 'string' },
529
527
  user_identity_full_name: { nullable: true, type: 'string' },
530
528
  user_identity_id: { type: 'string' },
@@ -547,14 +545,14 @@ export default {
547
545
  description: 'Locking door.',
548
546
  properties: {
549
547
  action_attempt_id: {
550
- description:
551
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
548
+ description: 'The ID of the action attempt.',
552
549
  format: 'uuid',
553
550
  type: 'string',
551
+ 'x-title': 'Action Attempt ID',
554
552
  },
555
553
  action_type: { enum: ['LOCK_DOOR'], type: 'string' },
556
- error: { format: 'null', nullable: true, type: 'string' },
557
- result: { format: 'null', nullable: true, type: 'string' },
554
+ error: { nullable: true },
555
+ result: { nullable: true },
558
556
  status: { enum: ['pending'], type: 'string' },
559
557
  },
560
558
  required: [
@@ -570,13 +568,13 @@ export default {
570
568
  description: 'Locking door succeeded.',
571
569
  properties: {
572
570
  action_attempt_id: {
573
- description:
574
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
571
+ description: 'The ID of the action attempt.',
575
572
  format: 'uuid',
576
573
  type: 'string',
574
+ 'x-title': 'Action Attempt ID',
577
575
  },
578
576
  action_type: { enum: ['LOCK_DOOR'], type: 'string' },
579
- error: { format: 'null', nullable: true, type: 'string' },
577
+ error: { nullable: true },
580
578
  result: { properties: {}, type: 'object' },
581
579
  status: { enum: ['success'], type: 'string' },
582
580
  },
@@ -593,10 +591,10 @@ export default {
593
591
  description: 'Locking door failed.',
594
592
  properties: {
595
593
  action_attempt_id: {
596
- description:
597
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
594
+ description: 'The ID of the action attempt.',
598
595
  format: 'uuid',
599
596
  type: 'string',
597
+ 'x-title': 'Action Attempt ID',
600
598
  },
601
599
  action_type: { enum: ['LOCK_DOOR'], type: 'string' },
602
600
  error: {
@@ -607,7 +605,7 @@ export default {
607
605
  required: ['type', 'message'],
608
606
  type: 'object',
609
607
  },
610
- result: { format: 'null', nullable: true, type: 'string' },
608
+ result: { nullable: true },
611
609
  status: { enum: ['error'], type: 'string' },
612
610
  },
613
611
  required: [
@@ -623,14 +621,14 @@ export default {
623
621
  description: 'Unlocking door.',
624
622
  properties: {
625
623
  action_attempt_id: {
626
- description:
627
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
624
+ description: 'The ID of the action attempt.',
628
625
  format: 'uuid',
629
626
  type: 'string',
627
+ 'x-title': 'Action Attempt ID',
630
628
  },
631
629
  action_type: { enum: ['UNLOCK_DOOR'], type: 'string' },
632
- error: { format: 'null', nullable: true, type: 'string' },
633
- result: { format: 'null', nullable: true, type: 'string' },
630
+ error: { nullable: true },
631
+ result: { nullable: true },
634
632
  status: { enum: ['pending'], type: 'string' },
635
633
  },
636
634
  required: [
@@ -646,13 +644,13 @@ export default {
646
644
  description: 'Unlocking door succeeded.',
647
645
  properties: {
648
646
  action_attempt_id: {
649
- description:
650
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
647
+ description: 'The ID of the action attempt.',
651
648
  format: 'uuid',
652
649
  type: 'string',
650
+ 'x-title': 'Action Attempt ID',
653
651
  },
654
652
  action_type: { enum: ['UNLOCK_DOOR'], type: 'string' },
655
- error: { format: 'null', nullable: true, type: 'string' },
653
+ error: { nullable: true },
656
654
  result: { properties: {}, type: 'object' },
657
655
  status: { enum: ['success'], type: 'string' },
658
656
  },
@@ -669,10 +667,10 @@ export default {
669
667
  description: 'Unlocking door failed.',
670
668
  properties: {
671
669
  action_attempt_id: {
672
- description:
673
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
670
+ description: 'The ID of the action attempt.',
674
671
  format: 'uuid',
675
672
  type: 'string',
673
+ 'x-title': 'Action Attempt ID',
676
674
  },
677
675
  action_type: { enum: ['UNLOCK_DOOR'], type: 'string' },
678
676
  error: {
@@ -683,7 +681,7 @@ export default {
683
681
  required: ['type', 'message'],
684
682
  type: 'object',
685
683
  },
686
- result: { format: 'null', nullable: true, type: 'string' },
684
+ result: { nullable: true },
687
685
  status: { enum: ['error'], type: 'string' },
688
686
  },
689
687
  required: [
@@ -699,17 +697,17 @@ export default {
699
697
  description: 'Resetting sandbox workspace.',
700
698
  properties: {
701
699
  action_attempt_id: {
702
- description:
703
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
700
+ description: 'The ID of the action attempt.',
704
701
  format: 'uuid',
705
702
  type: 'string',
703
+ 'x-title': 'Action Attempt ID',
706
704
  },
707
705
  action_type: {
708
706
  enum: ['RESET_SANDBOX_WORKSPACE'],
709
707
  type: 'string',
710
708
  },
711
- error: { format: 'null', nullable: true, type: 'string' },
712
- result: { format: 'null', nullable: true, type: 'string' },
709
+ error: { nullable: true },
710
+ result: { nullable: true },
713
711
  status: { enum: ['pending'], type: 'string' },
714
712
  },
715
713
  required: [
@@ -725,16 +723,16 @@ export default {
725
723
  description: 'Resetting sandbox workspace succeeded.',
726
724
  properties: {
727
725
  action_attempt_id: {
728
- description:
729
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
726
+ description: 'The ID of the action attempt.',
730
727
  format: 'uuid',
731
728
  type: 'string',
729
+ 'x-title': 'Action Attempt ID',
732
730
  },
733
731
  action_type: {
734
732
  enum: ['RESET_SANDBOX_WORKSPACE'],
735
733
  type: 'string',
736
734
  },
737
- error: { format: 'null', nullable: true, type: 'string' },
735
+ error: { nullable: true },
738
736
  result: { properties: {}, type: 'object' },
739
737
  status: { enum: ['success'], type: 'string' },
740
738
  },
@@ -751,10 +749,10 @@ export default {
751
749
  description: 'Resetting sandbox workspace failed.',
752
750
  properties: {
753
751
  action_attempt_id: {
754
- description:
755
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
752
+ description: 'The ID of the action attempt.',
756
753
  format: 'uuid',
757
754
  type: 'string',
755
+ 'x-title': 'Action Attempt ID',
758
756
  },
759
757
  action_type: {
760
758
  enum: ['RESET_SANDBOX_WORKSPACE'],
@@ -768,7 +766,7 @@ export default {
768
766
  required: ['type', 'message'],
769
767
  type: 'object',
770
768
  },
771
- result: { format: 'null', nullable: true, type: 'string' },
769
+ result: { nullable: true },
772
770
  status: { enum: ['error'], type: 'string' },
773
771
  },
774
772
  required: [
@@ -784,14 +782,14 @@ export default {
784
782
  description: 'Setting HVAC to cool.',
785
783
  properties: {
786
784
  action_attempt_id: {
787
- description:
788
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
785
+ description: 'The ID of the action attempt.',
789
786
  format: 'uuid',
790
787
  type: 'string',
788
+ 'x-title': 'Action Attempt ID',
791
789
  },
792
790
  action_type: { enum: ['SET_COOL'], type: 'string' },
793
- error: { format: 'null', nullable: true, type: 'string' },
794
- result: { format: 'null', nullable: true, type: 'string' },
791
+ error: { nullable: true },
792
+ result: { nullable: true },
795
793
  status: { enum: ['pending'], type: 'string' },
796
794
  },
797
795
  required: [
@@ -807,13 +805,13 @@ export default {
807
805
  description: 'Setting HVAC to cool succeeded.',
808
806
  properties: {
809
807
  action_attempt_id: {
810
- description:
811
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
808
+ description: 'The ID of the action attempt.',
812
809
  format: 'uuid',
813
810
  type: 'string',
811
+ 'x-title': 'Action Attempt ID',
814
812
  },
815
813
  action_type: { enum: ['SET_COOL'], type: 'string' },
816
- error: { format: 'null', nullable: true, type: 'string' },
814
+ error: { nullable: true },
817
815
  result: { properties: {}, type: 'object' },
818
816
  status: { enum: ['success'], type: 'string' },
819
817
  },
@@ -830,10 +828,10 @@ export default {
830
828
  description: 'Setting HVAC to cool failed.',
831
829
  properties: {
832
830
  action_attempt_id: {
833
- description:
834
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
831
+ description: 'The ID of the action attempt.',
835
832
  format: 'uuid',
836
833
  type: 'string',
834
+ 'x-title': 'Action Attempt ID',
837
835
  },
838
836
  action_type: { enum: ['SET_COOL'], type: 'string' },
839
837
  error: {
@@ -844,7 +842,7 @@ export default {
844
842
  required: ['type', 'message'],
845
843
  type: 'object',
846
844
  },
847
- result: { format: 'null', nullable: true, type: 'string' },
845
+ result: { nullable: true },
848
846
  status: { enum: ['error'], type: 'string' },
849
847
  },
850
848
  required: [
@@ -860,14 +858,14 @@ export default {
860
858
  description: 'Setting HVAC to heat mode.',
861
859
  properties: {
862
860
  action_attempt_id: {
863
- description:
864
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
861
+ description: 'The ID of the action attempt.',
865
862
  format: 'uuid',
866
863
  type: 'string',
864
+ 'x-title': 'Action Attempt ID',
867
865
  },
868
866
  action_type: { enum: ['SET_HEAT'], type: 'string' },
869
- error: { format: 'null', nullable: true, type: 'string' },
870
- result: { format: 'null', nullable: true, type: 'string' },
867
+ error: { nullable: true },
868
+ result: { nullable: true },
871
869
  status: { enum: ['pending'], type: 'string' },
872
870
  },
873
871
  required: [
@@ -883,13 +881,13 @@ export default {
883
881
  description: 'Setting HVAC to heat mode succeeded.',
884
882
  properties: {
885
883
  action_attempt_id: {
886
- description:
887
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
884
+ description: 'The ID of the action attempt.',
888
885
  format: 'uuid',
889
886
  type: 'string',
887
+ 'x-title': 'Action Attempt ID',
890
888
  },
891
889
  action_type: { enum: ['SET_HEAT'], type: 'string' },
892
- error: { format: 'null', nullable: true, type: 'string' },
890
+ error: { nullable: true },
893
891
  result: { properties: {}, type: 'object' },
894
892
  status: { enum: ['success'], type: 'string' },
895
893
  },
@@ -906,10 +904,10 @@ export default {
906
904
  description: 'Setting HVAC to heat mode failed.',
907
905
  properties: {
908
906
  action_attempt_id: {
909
- description:
910
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
907
+ description: 'The ID of the action attempt.',
911
908
  format: 'uuid',
912
909
  type: 'string',
910
+ 'x-title': 'Action Attempt ID',
913
911
  },
914
912
  action_type: { enum: ['SET_HEAT'], type: 'string' },
915
913
  error: {
@@ -920,7 +918,7 @@ export default {
920
918
  required: ['type', 'message'],
921
919
  type: 'object',
922
920
  },
923
- result: { format: 'null', nullable: true, type: 'string' },
921
+ result: { nullable: true },
924
922
  status: { enum: ['error'], type: 'string' },
925
923
  },
926
924
  required: [
@@ -936,14 +934,14 @@ export default {
936
934
  description: 'Setting HVAC to heat-cool mode.',
937
935
  properties: {
938
936
  action_attempt_id: {
939
- description:
940
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
937
+ description: 'The ID of the action attempt.',
941
938
  format: 'uuid',
942
939
  type: 'string',
940
+ 'x-title': 'Action Attempt ID',
943
941
  },
944
942
  action_type: { enum: ['SET_HEAT_COOL'], type: 'string' },
945
- error: { format: 'null', nullable: true, type: 'string' },
946
- result: { format: 'null', nullable: true, type: 'string' },
943
+ error: { nullable: true },
944
+ result: { nullable: true },
947
945
  status: { enum: ['pending'], type: 'string' },
948
946
  },
949
947
  required: [
@@ -959,13 +957,13 @@ export default {
959
957
  description: 'Setting HVAC to heat-cool mode succeeded.',
960
958
  properties: {
961
959
  action_attempt_id: {
962
- description:
963
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
960
+ description: 'The ID of the action attempt.',
964
961
  format: 'uuid',
965
962
  type: 'string',
963
+ 'x-title': 'Action Attempt ID',
966
964
  },
967
965
  action_type: { enum: ['SET_HEAT_COOL'], type: 'string' },
968
- error: { format: 'null', nullable: true, type: 'string' },
966
+ error: { nullable: true },
969
967
  result: { properties: {}, type: 'object' },
970
968
  status: { enum: ['success'], type: 'string' },
971
969
  },
@@ -982,10 +980,10 @@ export default {
982
980
  description: 'Setting heat-cool mode failed.',
983
981
  properties: {
984
982
  action_attempt_id: {
985
- description:
986
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
983
+ description: 'The ID of the action attempt.',
987
984
  format: 'uuid',
988
985
  type: 'string',
986
+ 'x-title': 'Action Attempt ID',
989
987
  },
990
988
  action_type: { enum: ['SET_HEAT_COOL'], type: 'string' },
991
989
  error: {
@@ -996,7 +994,7 @@ export default {
996
994
  required: ['type', 'message'],
997
995
  type: 'object',
998
996
  },
999
- result: { format: 'null', nullable: true, type: 'string' },
997
+ result: { nullable: true },
1000
998
  status: { enum: ['error'], type: 'string' },
1001
999
  },
1002
1000
  required: [
@@ -1012,14 +1010,14 @@ export default {
1012
1010
  description: 'Setting fan mode.',
1013
1011
  properties: {
1014
1012
  action_attempt_id: {
1015
- description:
1016
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1013
+ description: 'The ID of the action attempt.',
1017
1014
  format: 'uuid',
1018
1015
  type: 'string',
1016
+ 'x-title': 'Action Attempt ID',
1019
1017
  },
1020
1018
  action_type: { enum: ['SET_FAN_MODE'], type: 'string' },
1021
- error: { format: 'null', nullable: true, type: 'string' },
1022
- result: { format: 'null', nullable: true, type: 'string' },
1019
+ error: { nullable: true },
1020
+ result: { nullable: true },
1023
1021
  status: { enum: ['pending'], type: 'string' },
1024
1022
  },
1025
1023
  required: [
@@ -1035,13 +1033,13 @@ export default {
1035
1033
  description: 'Setting fan mode succeeded.',
1036
1034
  properties: {
1037
1035
  action_attempt_id: {
1038
- description:
1039
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1036
+ description: 'The ID of the action attempt.',
1040
1037
  format: 'uuid',
1041
1038
  type: 'string',
1039
+ 'x-title': 'Action Attempt ID',
1042
1040
  },
1043
1041
  action_type: { enum: ['SET_FAN_MODE'], type: 'string' },
1044
- error: { format: 'null', nullable: true, type: 'string' },
1042
+ error: { nullable: true },
1045
1043
  result: { properties: {}, type: 'object' },
1046
1044
  status: { enum: ['success'], type: 'string' },
1047
1045
  },
@@ -1058,10 +1056,10 @@ export default {
1058
1056
  description: 'Setting fan mode failed.',
1059
1057
  properties: {
1060
1058
  action_attempt_id: {
1061
- description:
1062
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1059
+ description: 'The ID of the action attempt.',
1063
1060
  format: 'uuid',
1064
1061
  type: 'string',
1062
+ 'x-title': 'Action Attempt ID',
1065
1063
  },
1066
1064
  action_type: { enum: ['SET_FAN_MODE'], type: 'string' },
1067
1065
  error: {
@@ -1072,7 +1070,7 @@ export default {
1072
1070
  required: ['type', 'message'],
1073
1071
  type: 'object',
1074
1072
  },
1075
- result: { format: 'null', nullable: true, type: 'string' },
1073
+ result: { nullable: true },
1076
1074
  status: { enum: ['error'], type: 'string' },
1077
1075
  },
1078
1076
  required: [
@@ -1088,14 +1086,14 @@ export default {
1088
1086
  description: 'Turning HVAC off.',
1089
1087
  properties: {
1090
1088
  action_attempt_id: {
1091
- description:
1092
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1089
+ description: 'The ID of the action attempt.',
1093
1090
  format: 'uuid',
1094
1091
  type: 'string',
1092
+ 'x-title': 'Action Attempt ID',
1095
1093
  },
1096
1094
  action_type: { enum: ['SET_THERMOSTAT_OFF'], type: 'string' },
1097
- error: { format: 'null', nullable: true, type: 'string' },
1098
- result: { format: 'null', nullable: true, type: 'string' },
1095
+ error: { nullable: true },
1096
+ result: { nullable: true },
1099
1097
  status: { enum: ['pending'], type: 'string' },
1100
1098
  },
1101
1099
  required: [
@@ -1111,13 +1109,13 @@ export default {
1111
1109
  description: 'Turning HVAC off succeeded.',
1112
1110
  properties: {
1113
1111
  action_attempt_id: {
1114
- description:
1115
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1112
+ description: 'The ID of the action attempt.',
1116
1113
  format: 'uuid',
1117
1114
  type: 'string',
1115
+ 'x-title': 'Action Attempt ID',
1118
1116
  },
1119
1117
  action_type: { enum: ['SET_THERMOSTAT_OFF'], type: 'string' },
1120
- error: { format: 'null', nullable: true, type: 'string' },
1118
+ error: { nullable: true },
1121
1119
  result: { properties: {}, type: 'object' },
1122
1120
  status: { enum: ['success'], type: 'string' },
1123
1121
  },
@@ -1134,10 +1132,10 @@ export default {
1134
1132
  description: 'Turning HVAC off failed.',
1135
1133
  properties: {
1136
1134
  action_attempt_id: {
1137
- description:
1138
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1135
+ description: 'The ID of the action attempt.',
1139
1136
  format: 'uuid',
1140
1137
  type: 'string',
1138
+ 'x-title': 'Action Attempt ID',
1141
1139
  },
1142
1140
  action_type: { enum: ['SET_THERMOSTAT_OFF'], type: 'string' },
1143
1141
  error: {
@@ -1148,7 +1146,7 @@ export default {
1148
1146
  required: ['type', 'message'],
1149
1147
  type: 'object',
1150
1148
  },
1151
- result: { format: 'null', nullable: true, type: 'string' },
1149
+ result: { nullable: true },
1152
1150
  status: { enum: ['error'], type: 'string' },
1153
1151
  },
1154
1152
  required: [
@@ -1163,14 +1161,14 @@ export default {
1163
1161
  {
1164
1162
  properties: {
1165
1163
  action_attempt_id: {
1166
- description:
1167
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1164
+ description: 'The ID of the action attempt.',
1168
1165
  format: 'uuid',
1169
1166
  type: 'string',
1167
+ 'x-title': 'Action Attempt ID',
1170
1168
  },
1171
1169
  action_type: { enum: ['SYNC_ACCESS_CODES'], type: 'string' },
1172
- error: { format: 'null', nullable: true, type: 'string' },
1173
- result: { format: 'null', nullable: true, type: 'string' },
1170
+ error: { nullable: true },
1171
+ result: { nullable: true },
1174
1172
  status: { enum: ['pending'], type: 'string' },
1175
1173
  },
1176
1174
  required: [
@@ -1185,14 +1183,14 @@ export default {
1185
1183
  {
1186
1184
  properties: {
1187
1185
  action_attempt_id: {
1188
- description:
1189
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1186
+ description: 'The ID of the action attempt.',
1190
1187
  format: 'uuid',
1191
1188
  type: 'string',
1189
+ 'x-title': 'Action Attempt ID',
1192
1190
  },
1193
1191
  action_type: { enum: ['SYNC_ACCESS_CODES'], type: 'string' },
1194
- error: { format: 'null', nullable: true, type: 'string' },
1195
- result: { nullable: true },
1192
+ error: { nullable: true },
1193
+ result: {},
1196
1194
  status: { enum: ['success'], type: 'string' },
1197
1195
  },
1198
1196
  required: ['action_attempt_id', 'status', 'error', 'action_type'],
@@ -1201,10 +1199,10 @@ export default {
1201
1199
  {
1202
1200
  properties: {
1203
1201
  action_attempt_id: {
1204
- description:
1205
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1202
+ description: 'The ID of the action attempt.',
1206
1203
  format: 'uuid',
1207
1204
  type: 'string',
1205
+ 'x-title': 'Action Attempt ID',
1208
1206
  },
1209
1207
  action_type: { enum: ['SYNC_ACCESS_CODES'], type: 'string' },
1210
1208
  error: {
@@ -1215,7 +1213,7 @@ export default {
1215
1213
  required: ['type', 'message'],
1216
1214
  type: 'object',
1217
1215
  },
1218
- result: { format: 'null', nullable: true, type: 'string' },
1216
+ result: { nullable: true },
1219
1217
  status: { enum: ['error'], type: 'string' },
1220
1218
  },
1221
1219
  required: [
@@ -1230,14 +1228,14 @@ export default {
1230
1228
  {
1231
1229
  properties: {
1232
1230
  action_attempt_id: {
1233
- description:
1234
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1231
+ description: 'The ID of the action attempt.',
1235
1232
  format: 'uuid',
1236
1233
  type: 'string',
1234
+ 'x-title': 'Action Attempt ID',
1237
1235
  },
1238
1236
  action_type: { enum: ['CREATE_ACCESS_CODE'], type: 'string' },
1239
- error: { format: 'null', nullable: true, type: 'string' },
1240
- result: { format: 'null', nullable: true, type: 'string' },
1237
+ error: { nullable: true },
1238
+ result: { nullable: true },
1241
1239
  status: { enum: ['pending'], type: 'string' },
1242
1240
  },
1243
1241
  required: [
@@ -1252,14 +1250,14 @@ export default {
1252
1250
  {
1253
1251
  properties: {
1254
1252
  action_attempt_id: {
1255
- description:
1256
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1253
+ description: 'The ID of the action attempt.',
1257
1254
  format: 'uuid',
1258
1255
  type: 'string',
1256
+ 'x-title': 'Action Attempt ID',
1259
1257
  },
1260
1258
  action_type: { enum: ['CREATE_ACCESS_CODE'], type: 'string' },
1261
- error: { format: 'null', nullable: true, type: 'string' },
1262
- result: { nullable: true },
1259
+ error: { nullable: true },
1260
+ result: {},
1263
1261
  status: { enum: ['success'], type: 'string' },
1264
1262
  },
1265
1263
  required: ['action_attempt_id', 'status', 'error', 'action_type'],
@@ -1268,10 +1266,10 @@ export default {
1268
1266
  {
1269
1267
  properties: {
1270
1268
  action_attempt_id: {
1271
- description:
1272
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1269
+ description: 'The ID of the action attempt.',
1273
1270
  format: 'uuid',
1274
1271
  type: 'string',
1272
+ 'x-title': 'Action Attempt ID',
1275
1273
  },
1276
1274
  action_type: { enum: ['CREATE_ACCESS_CODE'], type: 'string' },
1277
1275
  error: {
@@ -1282,7 +1280,7 @@ export default {
1282
1280
  required: ['type', 'message'],
1283
1281
  type: 'object',
1284
1282
  },
1285
- result: { format: 'null', nullable: true, type: 'string' },
1283
+ result: { nullable: true },
1286
1284
  status: { enum: ['error'], type: 'string' },
1287
1285
  },
1288
1286
  required: [
@@ -1297,14 +1295,14 @@ export default {
1297
1295
  {
1298
1296
  properties: {
1299
1297
  action_attempt_id: {
1300
- description:
1301
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1298
+ description: 'The ID of the action attempt.',
1302
1299
  format: 'uuid',
1303
1300
  type: 'string',
1301
+ 'x-title': 'Action Attempt ID',
1304
1302
  },
1305
1303
  action_type: { enum: ['DELETE_ACCESS_CODE'], type: 'string' },
1306
- error: { format: 'null', nullable: true, type: 'string' },
1307
- result: { format: 'null', nullable: true, type: 'string' },
1304
+ error: { nullable: true },
1305
+ result: { nullable: true },
1308
1306
  status: { enum: ['pending'], type: 'string' },
1309
1307
  },
1310
1308
  required: [
@@ -1319,14 +1317,14 @@ export default {
1319
1317
  {
1320
1318
  properties: {
1321
1319
  action_attempt_id: {
1322
- description:
1323
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1320
+ description: 'The ID of the action attempt.',
1324
1321
  format: 'uuid',
1325
1322
  type: 'string',
1323
+ 'x-title': 'Action Attempt ID',
1326
1324
  },
1327
1325
  action_type: { enum: ['DELETE_ACCESS_CODE'], type: 'string' },
1328
- error: { format: 'null', nullable: true, type: 'string' },
1329
- result: { nullable: true },
1326
+ error: { nullable: true },
1327
+ result: {},
1330
1328
  status: { enum: ['success'], type: 'string' },
1331
1329
  },
1332
1330
  required: ['action_attempt_id', 'status', 'error', 'action_type'],
@@ -1335,10 +1333,10 @@ export default {
1335
1333
  {
1336
1334
  properties: {
1337
1335
  action_attempt_id: {
1338
- description:
1339
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1336
+ description: 'The ID of the action attempt.',
1340
1337
  format: 'uuid',
1341
1338
  type: 'string',
1339
+ 'x-title': 'Action Attempt ID',
1342
1340
  },
1343
1341
  action_type: { enum: ['DELETE_ACCESS_CODE'], type: 'string' },
1344
1342
  error: {
@@ -1349,7 +1347,7 @@ export default {
1349
1347
  required: ['type', 'message'],
1350
1348
  type: 'object',
1351
1349
  },
1352
- result: { format: 'null', nullable: true, type: 'string' },
1350
+ result: { nullable: true },
1353
1351
  status: { enum: ['error'], type: 'string' },
1354
1352
  },
1355
1353
  required: [
@@ -1364,14 +1362,14 @@ export default {
1364
1362
  {
1365
1363
  properties: {
1366
1364
  action_attempt_id: {
1367
- description:
1368
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1365
+ description: 'The ID of the action attempt.',
1369
1366
  format: 'uuid',
1370
1367
  type: 'string',
1368
+ 'x-title': 'Action Attempt ID',
1371
1369
  },
1372
1370
  action_type: { enum: ['UPDATE_ACCESS_CODE'], type: 'string' },
1373
- error: { format: 'null', nullable: true, type: 'string' },
1374
- result: { format: 'null', nullable: true, type: 'string' },
1371
+ error: { nullable: true },
1372
+ result: { nullable: true },
1375
1373
  status: { enum: ['pending'], type: 'string' },
1376
1374
  },
1377
1375
  required: [
@@ -1386,14 +1384,14 @@ export default {
1386
1384
  {
1387
1385
  properties: {
1388
1386
  action_attempt_id: {
1389
- description:
1390
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1387
+ description: 'The ID of the action attempt.',
1391
1388
  format: 'uuid',
1392
1389
  type: 'string',
1390
+ 'x-title': 'Action Attempt ID',
1393
1391
  },
1394
1392
  action_type: { enum: ['UPDATE_ACCESS_CODE'], type: 'string' },
1395
- error: { format: 'null', nullable: true, type: 'string' },
1396
- result: { nullable: true },
1393
+ error: { nullable: true },
1394
+ result: {},
1397
1395
  status: { enum: ['success'], type: 'string' },
1398
1396
  },
1399
1397
  required: ['action_attempt_id', 'status', 'error', 'action_type'],
@@ -1402,10 +1400,10 @@ export default {
1402
1400
  {
1403
1401
  properties: {
1404
1402
  action_attempt_id: {
1405
- description:
1406
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1403
+ description: 'The ID of the action attempt.',
1407
1404
  format: 'uuid',
1408
1405
  type: 'string',
1406
+ 'x-title': 'Action Attempt ID',
1409
1407
  },
1410
1408
  action_type: { enum: ['UPDATE_ACCESS_CODE'], type: 'string' },
1411
1409
  error: {
@@ -1416,7 +1414,7 @@ export default {
1416
1414
  required: ['type', 'message'],
1417
1415
  type: 'object',
1418
1416
  },
1419
- result: { format: 'null', nullable: true, type: 'string' },
1417
+ result: { nullable: true },
1420
1418
  status: { enum: ['error'], type: 'string' },
1421
1419
  },
1422
1420
  required: [
@@ -1431,14 +1429,14 @@ export default {
1431
1429
  {
1432
1430
  properties: {
1433
1431
  action_attempt_id: {
1434
- description:
1435
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1432
+ description: 'The ID of the action attempt.',
1436
1433
  format: 'uuid',
1437
1434
  type: 'string',
1435
+ 'x-title': 'Action Attempt ID',
1438
1436
  },
1439
1437
  action_type: { enum: ['CREATE_NOISE_THRESHOLD'], type: 'string' },
1440
- error: { format: 'null', nullable: true, type: 'string' },
1441
- result: { format: 'null', nullable: true, type: 'string' },
1438
+ error: { nullable: true },
1439
+ result: { nullable: true },
1442
1440
  status: { enum: ['pending'], type: 'string' },
1443
1441
  },
1444
1442
  required: [
@@ -1453,14 +1451,14 @@ export default {
1453
1451
  {
1454
1452
  properties: {
1455
1453
  action_attempt_id: {
1456
- description:
1457
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1454
+ description: 'The ID of the action attempt.',
1458
1455
  format: 'uuid',
1459
1456
  type: 'string',
1457
+ 'x-title': 'Action Attempt ID',
1460
1458
  },
1461
1459
  action_type: { enum: ['CREATE_NOISE_THRESHOLD'], type: 'string' },
1462
- error: { format: 'null', nullable: true, type: 'string' },
1463
- result: { nullable: true },
1460
+ error: { nullable: true },
1461
+ result: {},
1464
1462
  status: { enum: ['success'], type: 'string' },
1465
1463
  },
1466
1464
  required: ['action_attempt_id', 'status', 'error', 'action_type'],
@@ -1469,10 +1467,10 @@ export default {
1469
1467
  {
1470
1468
  properties: {
1471
1469
  action_attempt_id: {
1472
- description:
1473
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1470
+ description: 'The ID of the action attempt.',
1474
1471
  format: 'uuid',
1475
1472
  type: 'string',
1473
+ 'x-title': 'Action Attempt ID',
1476
1474
  },
1477
1475
  action_type: { enum: ['CREATE_NOISE_THRESHOLD'], type: 'string' },
1478
1476
  error: {
@@ -1483,7 +1481,7 @@ export default {
1483
1481
  required: ['type', 'message'],
1484
1482
  type: 'object',
1485
1483
  },
1486
- result: { format: 'null', nullable: true, type: 'string' },
1484
+ result: { nullable: true },
1487
1485
  status: { enum: ['error'], type: 'string' },
1488
1486
  },
1489
1487
  required: [
@@ -1498,14 +1496,14 @@ export default {
1498
1496
  {
1499
1497
  properties: {
1500
1498
  action_attempt_id: {
1501
- description:
1502
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1499
+ description: 'The ID of the action attempt.',
1503
1500
  format: 'uuid',
1504
1501
  type: 'string',
1502
+ 'x-title': 'Action Attempt ID',
1505
1503
  },
1506
1504
  action_type: { enum: ['DELETE_NOISE_THRESHOLD'], type: 'string' },
1507
- error: { format: 'null', nullable: true, type: 'string' },
1508
- result: { format: 'null', nullable: true, type: 'string' },
1505
+ error: { nullable: true },
1506
+ result: { nullable: true },
1509
1507
  status: { enum: ['pending'], type: 'string' },
1510
1508
  },
1511
1509
  required: [
@@ -1520,14 +1518,14 @@ export default {
1520
1518
  {
1521
1519
  properties: {
1522
1520
  action_attempt_id: {
1523
- description:
1524
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1521
+ description: 'The ID of the action attempt.',
1525
1522
  format: 'uuid',
1526
1523
  type: 'string',
1524
+ 'x-title': 'Action Attempt ID',
1527
1525
  },
1528
1526
  action_type: { enum: ['DELETE_NOISE_THRESHOLD'], type: 'string' },
1529
- error: { format: 'null', nullable: true, type: 'string' },
1530
- result: { nullable: true },
1527
+ error: { nullable: true },
1528
+ result: {},
1531
1529
  status: { enum: ['success'], type: 'string' },
1532
1530
  },
1533
1531
  required: ['action_attempt_id', 'status', 'error', 'action_type'],
@@ -1536,10 +1534,10 @@ export default {
1536
1534
  {
1537
1535
  properties: {
1538
1536
  action_attempt_id: {
1539
- description:
1540
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1537
+ description: 'The ID of the action attempt.',
1541
1538
  format: 'uuid',
1542
1539
  type: 'string',
1540
+ 'x-title': 'Action Attempt ID',
1543
1541
  },
1544
1542
  action_type: { enum: ['DELETE_NOISE_THRESHOLD'], type: 'string' },
1545
1543
  error: {
@@ -1550,7 +1548,7 @@ export default {
1550
1548
  required: ['type', 'message'],
1551
1549
  type: 'object',
1552
1550
  },
1553
- result: { format: 'null', nullable: true, type: 'string' },
1551
+ result: { nullable: true },
1554
1552
  status: { enum: ['error'], type: 'string' },
1555
1553
  },
1556
1554
  required: [
@@ -1565,14 +1563,14 @@ export default {
1565
1563
  {
1566
1564
  properties: {
1567
1565
  action_attempt_id: {
1568
- description:
1569
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1566
+ description: 'The ID of the action attempt.',
1570
1567
  format: 'uuid',
1571
1568
  type: 'string',
1569
+ 'x-title': 'Action Attempt ID',
1572
1570
  },
1573
1571
  action_type: { enum: ['UPDATE_NOISE_THRESHOLD'], type: 'string' },
1574
- error: { format: 'null', nullable: true, type: 'string' },
1575
- result: { format: 'null', nullable: true, type: 'string' },
1572
+ error: { nullable: true },
1573
+ result: { nullable: true },
1576
1574
  status: { enum: ['pending'], type: 'string' },
1577
1575
  },
1578
1576
  required: [
@@ -1587,14 +1585,14 @@ export default {
1587
1585
  {
1588
1586
  properties: {
1589
1587
  action_attempt_id: {
1590
- description:
1591
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1588
+ description: 'The ID of the action attempt.',
1592
1589
  format: 'uuid',
1593
1590
  type: 'string',
1591
+ 'x-title': 'Action Attempt ID',
1594
1592
  },
1595
1593
  action_type: { enum: ['UPDATE_NOISE_THRESHOLD'], type: 'string' },
1596
- error: { format: 'null', nullable: true, type: 'string' },
1597
- result: { nullable: true },
1594
+ error: { nullable: true },
1595
+ result: {},
1598
1596
  status: { enum: ['success'], type: 'string' },
1599
1597
  },
1600
1598
  required: ['action_attempt_id', 'status', 'error', 'action_type'],
@@ -1603,10 +1601,10 @@ export default {
1603
1601
  {
1604
1602
  properties: {
1605
1603
  action_attempt_id: {
1606
- description:
1607
- '\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ',
1604
+ description: 'The ID of the action attempt.',
1608
1605
  format: 'uuid',
1609
1606
  type: 'string',
1607
+ 'x-title': 'Action Attempt ID',
1610
1608
  },
1611
1609
  action_type: { enum: ['UPDATE_NOISE_THRESHOLD'], type: 'string' },
1612
1610
  error: {
@@ -1617,7 +1615,7 @@ export default {
1617
1615
  required: ['type', 'message'],
1618
1616
  type: 'object',
1619
1617
  },
1620
- result: { format: 'null', nullable: true, type: 'string' },
1618
+ result: { nullable: true },
1621
1619
  status: { enum: ['error'], type: 'string' },
1622
1620
  },
1623
1621
  required: [
@@ -1643,7 +1641,7 @@ export default {
1643
1641
  type: 'array',
1644
1642
  },
1645
1643
  created_at: { format: 'date-time', type: 'string' },
1646
- device_count: { type: 'number' },
1644
+ device_count: { format: 'float', type: 'number' },
1647
1645
  token: { type: 'string' },
1648
1646
  user_identifier_key: { nullable: true, type: 'string' },
1649
1647
  user_identity_ids: {
@@ -1670,17 +1668,16 @@ export default {
1670
1668
  automatic_cooling_enabled: { type: 'boolean' },
1671
1669
  automatic_heating_enabled: { type: 'boolean' },
1672
1670
  climate_setting_schedule_id: { format: 'uuid', type: 'string' },
1673
- cooling_set_point_celsius: { type: 'number' },
1674
- cooling_set_point_fahrenheit: { type: 'number' },
1671
+ cooling_set_point_celsius: { format: 'float', type: 'number' },
1672
+ cooling_set_point_fahrenheit: { format: 'float', type: 'number' },
1675
1673
  created_at: { format: 'date-time', type: 'string' },
1676
1674
  device_id: { format: 'uuid', type: 'string' },
1677
1675
  errors: {
1678
1676
  description:
1679
1677
  'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
1680
- nullable: true,
1681
1678
  },
1682
- heating_set_point_celsius: { type: 'number' },
1683
- heating_set_point_fahrenheit: { type: 'number' },
1679
+ heating_set_point_celsius: { format: 'float', type: 'number' },
1680
+ heating_set_point_fahrenheit: { format: 'float', type: 'number' },
1684
1681
  hvac_mode_setting: {
1685
1682
  enum: ['off', 'heat', 'cool', 'heat_cool'],
1686
1683
  type: 'string',
@@ -1704,16 +1701,16 @@ export default {
1704
1701
  connect_webview: {
1705
1702
  properties: {
1706
1703
  accepted_devices: {
1707
- description:
1708
- '\n ---\n deprecated: Unused. Will be removed.\n ---\n ',
1704
+ deprecated: true,
1709
1705
  items: { type: 'string' },
1710
1706
  type: 'array',
1707
+ 'x-deprecated': 'Unused. Will be removed.',
1711
1708
  },
1712
1709
  accepted_providers: { items: { type: 'string' }, type: 'array' },
1713
1710
  any_device_allowed: {
1714
- description:
1715
- '\n ---\n deprecated: Unused. Will be removed.\n ---\n ',
1711
+ deprecated: true,
1716
1712
  type: 'boolean',
1713
+ 'x-deprecated': 'Unused. Will be removed.',
1717
1714
  },
1718
1715
  any_provider_allowed: { type: 'boolean' },
1719
1716
  authorized_at: {
@@ -1792,7 +1789,7 @@ export default {
1792
1789
  },
1793
1790
  type: 'object',
1794
1791
  },
1795
- errors: { nullable: true },
1792
+ errors: {},
1796
1793
  user_identifier: {
1797
1794
  properties: {
1798
1795
  api_url: { type: 'string' },
@@ -1803,7 +1800,7 @@ export default {
1803
1800
  },
1804
1801
  type: 'object',
1805
1802
  },
1806
- warnings: { nullable: true },
1803
+ warnings: {},
1807
1804
  },
1808
1805
  required: [
1809
1806
  'account_type_display_name',
@@ -1969,6 +1966,7 @@ export default {
1969
1966
  'Indicates if the keypad battery properties.',
1970
1967
  properties: {
1971
1968
  level: {
1969
+ format: 'float',
1972
1970
  maximum: 1,
1973
1971
  minimum: 0,
1974
1972
  type: 'number',
@@ -2001,7 +1999,12 @@ export default {
2001
1999
  description:
2002
2000
  'Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage.',
2003
2001
  properties: {
2004
- level: { maximum: 1, minimum: 0, type: 'number' },
2002
+ level: {
2003
+ format: 'float',
2004
+ maximum: 1,
2005
+ minimum: 0,
2006
+ type: 'number',
2007
+ },
2005
2008
  status: {
2006
2009
  enum: ['critical', 'low', 'good', 'full'],
2007
2010
  type: 'string',
@@ -2013,6 +2016,7 @@ export default {
2013
2016
  battery_level: {
2014
2017
  description:
2015
2018
  'Indicates the battery level of the device as a decimal value between 0 and 1, inclusive.',
2019
+ format: 'float',
2016
2020
  maximum: 1,
2017
2021
  minimum: 0,
2018
2022
  type: 'number',
@@ -2044,9 +2048,10 @@ export default {
2044
2048
  model: {
2045
2049
  properties: {
2046
2050
  accessory_keypad_supported: {
2047
- description:
2048
- '\n ---\n deprecated: use device.properties.model.can_connect_accessory_keypad\n ---\n ',
2051
+ deprecated: true,
2049
2052
  type: 'boolean',
2053
+ 'x-deprecated':
2054
+ 'use device.properties.model.can_connect_accessory_keypad',
2050
2055
  },
2051
2056
  can_connect_accessory_keypad: {
2052
2057
  description:
@@ -2086,13 +2091,15 @@ export default {
2086
2091
  type: 'object',
2087
2092
  },
2088
2093
  name: {
2089
- description:
2090
- '\n ---\n deprecated: use device.display_name instead\n ---\n Name of the device.\n ',
2094
+ deprecated: true,
2095
+ description: 'Name of the device.',
2091
2096
  type: 'string',
2097
+ 'x-deprecated': 'use device.display_name instead',
2092
2098
  },
2093
2099
  noise_level_decibels: {
2094
2100
  description:
2095
2101
  'Indicates current noise level in decibels, if the device supports noise detection.',
2102
+ format: 'float',
2096
2103
  type: 'number',
2097
2104
  },
2098
2105
  offline_access_codes_enabled: {
@@ -2115,14 +2122,15 @@ export default {
2115
2122
  type: 'string',
2116
2123
  },
2117
2124
  supports_accessory_keypad: {
2118
- description:
2119
- '\n ---\n deprecated: use device.properties.model.can_connect_accessory_keypad\n ---\n ',
2125
+ deprecated: true,
2120
2126
  type: 'boolean',
2127
+ 'x-deprecated':
2128
+ 'use device.properties.model.can_connect_accessory_keypad',
2121
2129
  },
2122
2130
  supports_offline_access_codes: {
2123
- description:
2124
- '\n ---\n deprecated: use offline_access_codes_enabled\n ---\n ',
2131
+ deprecated: true,
2125
2132
  type: 'boolean',
2133
+ 'x-deprecated': 'use offline_access_codes_enabled',
2126
2134
  },
2127
2135
  },
2128
2136
  required: ['online', 'name', 'appearance', 'model'],
@@ -2176,11 +2184,14 @@ export default {
2176
2184
  avigilon_alta_metadata: {
2177
2185
  properties: {
2178
2186
  entry_name: { type: 'string' },
2179
- entry_relays_total_count: { type: 'number' },
2187
+ entry_relays_total_count: {
2188
+ format: 'float',
2189
+ type: 'number',
2190
+ },
2180
2191
  org_name: { type: 'string' },
2181
- site_id: { type: 'number' },
2192
+ site_id: { format: 'float', type: 'number' },
2182
2193
  site_name: { type: 'string' },
2183
- zone_id: { type: 'number' },
2194
+ zone_id: { format: 'float', type: 'number' },
2184
2195
  zone_name: { type: 'string' },
2185
2196
  },
2186
2197
  required: [
@@ -2210,8 +2221,8 @@ export default {
2210
2221
  },
2211
2222
  dormakaba_oracode_metadata: {
2212
2223
  properties: {
2213
- device_id: { type: 'number' },
2214
- door_id: { type: 'number' },
2224
+ device_id: { format: 'float', type: 'number' },
2225
+ door_id: { format: 'float', type: 'number' },
2215
2226
  door_is_wireless: { type: 'boolean' },
2216
2227
  door_name: { type: 'string' },
2217
2228
  iana_timezone: { type: 'string' },
@@ -2225,6 +2236,7 @@ export default {
2225
2236
  type: 'string',
2226
2237
  },
2227
2238
  ext_dormakaba_oracode_user_level_prefix: {
2239
+ format: 'float',
2228
2240
  type: 'number',
2229
2241
  },
2230
2242
  is_24_hour: { type: 'boolean' },
@@ -2232,7 +2244,7 @@ export default {
2232
2244
  is_master: { type: 'boolean' },
2233
2245
  is_one_shot: { type: 'boolean' },
2234
2246
  name: { type: 'string' },
2235
- prefix: { type: 'number' },
2247
+ prefix: { format: 'float', type: 'number' },
2236
2248
  },
2237
2249
  required: [
2238
2250
  'name',
@@ -2250,7 +2262,7 @@ export default {
2250
2262
  },
2251
2263
  type: 'array',
2252
2264
  },
2253
- site_id: { type: 'number' },
2265
+ site_id: { format: 'float', type: 'number' },
2254
2266
  site_name: { type: 'string' },
2255
2267
  },
2256
2268
  required: [
@@ -2272,9 +2284,12 @@ export default {
2272
2284
  },
2273
2285
  four_suites_metadata: {
2274
2286
  properties: {
2275
- device_id: { type: 'number' },
2287
+ device_id: { format: 'float', type: 'number' },
2276
2288
  device_name: { type: 'string' },
2277
- reclose_delay_in_seconds: { type: 'number' },
2289
+ reclose_delay_in_seconds: {
2290
+ format: 'float',
2291
+ type: 'number',
2292
+ },
2278
2293
  },
2279
2294
  required: [
2280
2295
  'device_id',
@@ -2358,7 +2373,7 @@ export default {
2358
2373
  accelerometer_z: {
2359
2374
  properties: {
2360
2375
  time: { type: 'string' },
2361
- value: { type: 'number' },
2376
+ value: { format: 'float', type: 'number' },
2362
2377
  },
2363
2378
  required: ['time', 'value'],
2364
2379
  type: 'object',
@@ -2366,7 +2381,7 @@ export default {
2366
2381
  humidity: {
2367
2382
  properties: {
2368
2383
  time: { type: 'string' },
2369
- value: { type: 'number' },
2384
+ value: { format: 'float', type: 'number' },
2370
2385
  },
2371
2386
  required: ['time', 'value'],
2372
2387
  type: 'object',
@@ -2374,7 +2389,7 @@ export default {
2374
2389
  pressure: {
2375
2390
  properties: {
2376
2391
  time: { type: 'string' },
2377
- value: { type: 'number' },
2392
+ value: { format: 'float', type: 'number' },
2378
2393
  },
2379
2394
  required: ['time', 'value'],
2380
2395
  type: 'object',
@@ -2382,7 +2397,7 @@ export default {
2382
2397
  sound: {
2383
2398
  properties: {
2384
2399
  time: { type: 'string' },
2385
- value: { type: 'number' },
2400
+ value: { format: 'float', type: 'number' },
2386
2401
  },
2387
2402
  required: ['time', 'value'],
2388
2403
  type: 'object',
@@ -2390,7 +2405,7 @@ export default {
2390
2405
  temperature: {
2391
2406
  properties: {
2392
2407
  time: { type: 'string' },
2393
- value: { type: 'number' },
2408
+ value: { format: 'float', type: 'number' },
2394
2409
  },
2395
2410
  required: ['time', 'value'],
2396
2411
  type: 'object',
@@ -2434,8 +2449,11 @@ export default {
2434
2449
  type: 'string',
2435
2450
  },
2436
2451
  device_name: { type: 'string' },
2437
- noise_level_decibel: { type: 'number' },
2438
- noise_level_nrs: { type: 'number' },
2452
+ noise_level_decibel: {
2453
+ format: 'float',
2454
+ type: 'number',
2455
+ },
2456
+ noise_level_nrs: { format: 'float', type: 'number' },
2439
2457
  },
2440
2458
  required: [
2441
2459
  'device_model',
@@ -2478,6 +2496,7 @@ export default {
2478
2496
  schlage_metadata: {
2479
2497
  properties: {
2480
2498
  access_code_length: {
2499
+ format: 'float',
2481
2500
  nullable: true,
2482
2501
  type: 'number',
2483
2502
  },
@@ -2494,7 +2513,7 @@ export default {
2494
2513
  },
2495
2514
  seam_bridge_metadata: {
2496
2515
  properties: {
2497
- device_num: { type: 'number' },
2516
+ device_num: { format: 'float', type: 'number' },
2498
2517
  name: { type: 'string' },
2499
2518
  unlock_method: {
2500
2519
  enum: ['bridge', 'doorking'],
@@ -2516,12 +2535,12 @@ export default {
2516
2535
  },
2517
2536
  tedee_metadata: {
2518
2537
  properties: {
2519
- bridge_id: { type: 'number' },
2538
+ bridge_id: { format: 'float', type: 'number' },
2520
2539
  bridge_name: { type: 'string' },
2521
- device_id: { type: 'number' },
2540
+ device_id: { format: 'float', type: 'number' },
2522
2541
  device_model: { type: 'string' },
2523
2542
  device_name: { type: 'string' },
2524
- keypad_id: { type: 'number' },
2543
+ keypad_id: { format: 'float', type: 'number' },
2525
2544
  serial_number: { type: 'string' },
2526
2545
  },
2527
2546
  required: [
@@ -2538,14 +2557,14 @@ export default {
2538
2557
  properties: {
2539
2558
  feature_value: { type: 'string' },
2540
2559
  lock_alias: { type: 'string' },
2541
- lock_id: { type: 'number' },
2560
+ lock_id: { format: 'float', type: 'number' },
2542
2561
  },
2543
2562
  required: ['lock_id', 'lock_alias', 'feature_value'],
2544
2563
  type: 'object',
2545
2564
  },
2546
2565
  two_n_metadata: {
2547
2566
  properties: {
2548
- device_id: { type: 'number' },
2567
+ device_id: { format: 'float', type: 'number' },
2549
2568
  device_name: { type: 'string' },
2550
2569
  },
2551
2570
  required: ['device_id', 'device_name'],
@@ -2557,7 +2576,10 @@ export default {
2557
2576
  device_info_model: { type: 'string' },
2558
2577
  device_name: { type: 'string' },
2559
2578
  keypad_uuid: { type: 'string' },
2560
- locker_status_hardlock: { type: 'number' },
2579
+ locker_status_hardlock: {
2580
+ format: 'float',
2581
+ type: 'number',
2582
+ },
2561
2583
  product_model: { type: 'string' },
2562
2584
  product_name: { type: 'string' },
2563
2585
  product_type: { type: 'string' },
@@ -2582,7 +2604,7 @@ export default {
2582
2604
  {
2583
2605
  properties: {
2584
2606
  _experimental_supported_code_from_access_codes_lengths: {
2585
- items: { type: 'number' },
2607
+ items: { format: 'float', type: 'number' },
2586
2608
  type: 'array',
2587
2609
  },
2588
2610
  code_constraints: {
@@ -2614,8 +2636,8 @@ export default {
2614
2636
  enum: ['name_length', 'name_must_be_unique'],
2615
2637
  type: 'string',
2616
2638
  },
2617
- max_length: { type: 'number' },
2618
- min_length: { type: 'number' },
2639
+ max_length: { format: 'float', type: 'number' },
2640
+ min_length: { format: 'float', type: 'number' },
2619
2641
  },
2620
2642
  required: ['constraint_type'],
2621
2643
  type: 'object',
@@ -2627,14 +2649,19 @@ export default {
2627
2649
  door_open: { type: 'boolean' },
2628
2650
  has_native_entry_events: { type: 'boolean' },
2629
2651
  keypad_battery: {
2630
- properties: { level: { type: 'number' } },
2652
+ properties: {
2653
+ level: { format: 'float', type: 'number' },
2654
+ },
2631
2655
  required: ['level'],
2632
2656
  type: 'object',
2633
2657
  },
2634
2658
  locked: { type: 'boolean' },
2635
- max_active_codes_supported: { type: 'number' },
2659
+ max_active_codes_supported: {
2660
+ format: 'float',
2661
+ type: 'number',
2662
+ },
2636
2663
  supported_code_lengths: {
2637
- items: { type: 'number' },
2664
+ items: { format: 'float', type: 'number' },
2638
2665
  type: 'array',
2639
2666
  },
2640
2667
  supports_backup_access_code_pool: { type: 'boolean' },
@@ -2653,8 +2680,14 @@ export default {
2653
2680
  format: 'uuid',
2654
2681
  type: 'string',
2655
2682
  },
2656
- cooling_set_point_celsius: { type: 'number' },
2657
- cooling_set_point_fahrenheit: { type: 'number' },
2683
+ cooling_set_point_celsius: {
2684
+ format: 'float',
2685
+ type: 'number',
2686
+ },
2687
+ cooling_set_point_fahrenheit: {
2688
+ format: 'float',
2689
+ type: 'number',
2690
+ },
2658
2691
  created_at: {
2659
2692
  format: 'date-time',
2660
2693
  type: 'string',
@@ -2663,10 +2696,15 @@ export default {
2663
2696
  errors: {
2664
2697
  description:
2665
2698
  'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
2666
- nullable: true,
2667
2699
  },
2668
- heating_set_point_celsius: { type: 'number' },
2669
- heating_set_point_fahrenheit: { type: 'number' },
2700
+ heating_set_point_celsius: {
2701
+ format: 'float',
2702
+ type: 'number',
2703
+ },
2704
+ heating_set_point_fahrenheit: {
2705
+ format: 'float',
2706
+ type: 'number',
2707
+ },
2670
2708
  hvac_mode_setting: {
2671
2709
  enum: ['off', 'heat', 'cool', 'heat_cool'],
2672
2710
  type: 'string',
@@ -2703,10 +2741,22 @@ export default {
2703
2741
  properties: {
2704
2742
  automatic_cooling_enabled: { type: 'boolean' },
2705
2743
  automatic_heating_enabled: { type: 'boolean' },
2706
- cooling_set_point_celsius: { type: 'number' },
2707
- cooling_set_point_fahrenheit: { type: 'number' },
2708
- heating_set_point_celsius: { type: 'number' },
2709
- heating_set_point_fahrenheit: { type: 'number' },
2744
+ cooling_set_point_celsius: {
2745
+ format: 'float',
2746
+ type: 'number',
2747
+ },
2748
+ cooling_set_point_fahrenheit: {
2749
+ format: 'float',
2750
+ type: 'number',
2751
+ },
2752
+ heating_set_point_celsius: {
2753
+ format: 'float',
2754
+ type: 'number',
2755
+ },
2756
+ heating_set_point_fahrenheit: {
2757
+ format: 'float',
2758
+ type: 'number',
2759
+ },
2710
2760
  hvac_mode_setting: {
2711
2761
  enum: ['off', 'heat', 'cool', 'heat_cool'],
2712
2762
  type: 'string',
@@ -2725,10 +2775,22 @@ export default {
2725
2775
  properties: {
2726
2776
  automatic_cooling_enabled: { type: 'boolean' },
2727
2777
  automatic_heating_enabled: { type: 'boolean' },
2728
- cooling_set_point_celsius: { type: 'number' },
2729
- cooling_set_point_fahrenheit: { type: 'number' },
2730
- heating_set_point_celsius: { type: 'number' },
2731
- heating_set_point_fahrenheit: { type: 'number' },
2778
+ cooling_set_point_celsius: {
2779
+ format: 'float',
2780
+ type: 'number',
2781
+ },
2782
+ cooling_set_point_fahrenheit: {
2783
+ format: 'float',
2784
+ type: 'number',
2785
+ },
2786
+ heating_set_point_celsius: {
2787
+ format: 'float',
2788
+ type: 'number',
2789
+ },
2790
+ heating_set_point_fahrenheit: {
2791
+ format: 'float',
2792
+ type: 'number',
2793
+ },
2732
2794
  hvac_mode_setting: {
2733
2795
  enum: ['off', 'heat', 'cool', 'heat_cool'],
2734
2796
  type: 'string',
@@ -2764,25 +2826,60 @@ export default {
2764
2826
  is_temporary_manual_override_active: {
2765
2827
  type: 'boolean',
2766
2828
  },
2767
- max_cooling_set_point_celsius: { type: 'number' },
2768
- max_cooling_set_point_fahrenheit: { type: 'number' },
2769
- max_heating_set_point_celsius: { type: 'number' },
2770
- max_heating_set_point_fahrenheit: { type: 'number' },
2771
- min_cooling_set_point_celsius: { type: 'number' },
2772
- min_cooling_set_point_fahrenheit: { type: 'number' },
2773
- min_heating_cooling_delta_celsius: { type: 'number' },
2829
+ max_cooling_set_point_celsius: {
2830
+ format: 'float',
2831
+ type: 'number',
2832
+ },
2833
+ max_cooling_set_point_fahrenheit: {
2834
+ format: 'float',
2835
+ type: 'number',
2836
+ },
2837
+ max_heating_set_point_celsius: {
2838
+ format: 'float',
2839
+ type: 'number',
2840
+ },
2841
+ max_heating_set_point_fahrenheit: {
2842
+ format: 'float',
2843
+ type: 'number',
2844
+ },
2845
+ min_cooling_set_point_celsius: {
2846
+ format: 'float',
2847
+ type: 'number',
2848
+ },
2849
+ min_cooling_set_point_fahrenheit: {
2850
+ format: 'float',
2851
+ type: 'number',
2852
+ },
2853
+ min_heating_cooling_delta_celsius: {
2854
+ format: 'float',
2855
+ type: 'number',
2856
+ },
2774
2857
  min_heating_cooling_delta_fahrenheit: {
2858
+ format: 'float',
2859
+ type: 'number',
2860
+ },
2861
+ min_heating_set_point_celsius: {
2862
+ format: 'float',
2863
+ type: 'number',
2864
+ },
2865
+ min_heating_set_point_fahrenheit: {
2866
+ format: 'float',
2775
2867
  type: 'number',
2776
2868
  },
2777
- min_heating_set_point_celsius: { type: 'number' },
2778
- min_heating_set_point_fahrenheit: { type: 'number' },
2779
2869
  relative_humidity: {
2870
+ format: 'float',
2780
2871
  maximum: 1,
2781
2872
  minimum: 0,
2782
2873
  type: 'number',
2783
2874
  },
2784
- temperature_celsius: { type: 'number' },
2785
- temperature_fahrenheit: { type: 'number' },
2875
+ temperature_celsius: {
2876
+ format: 'float',
2877
+ type: 'number',
2878
+ },
2879
+ temperature_fahrenheit: {
2880
+ format: 'float',
2881
+ type: 'number',
2882
+ },
2786
2883
  },
2787
2884
  type: 'object',
2788
2885
  },
@@ -2796,8 +2893,14 @@ export default {
2796
2893
  format: 'uuid',
2797
2894
  type: 'string',
2798
2895
  },
2799
- cooling_set_point_celsius: { type: 'number' },
2800
- cooling_set_point_fahrenheit: { type: 'number' },
2896
+ cooling_set_point_celsius: {
2897
+ format: 'float',
2898
+ type: 'number',
2899
+ },
2900
+ cooling_set_point_fahrenheit: {
2901
+ format: 'float',
2902
+ type: 'number',
2903
+ },
2801
2904
  created_at: {
2802
2905
  format: 'date-time',
2803
2906
  type: 'string',
@@ -2806,10 +2909,15 @@ export default {
2806
2909
  errors: {
2807
2910
  description:
2808
2911
  'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
2809
- nullable: true,
2810
2912
  },
2811
- heating_set_point_celsius: { type: 'number' },
2812
- heating_set_point_fahrenheit: { type: 'number' },
2913
+ heating_set_point_celsius: {
2914
+ format: 'float',
2915
+ type: 'number',
2916
+ },
2917
+ heating_set_point_fahrenheit: {
2918
+ format: 'float',
2919
+ type: 'number',
2920
+ },
2813
2921
  hvac_mode_setting: {
2814
2922
  enum: ['off', 'heat', 'cool', 'heat_cool'],
2815
2923
  type: 'string',
@@ -2846,10 +2954,22 @@ export default {
2846
2954
  properties: {
2847
2955
  automatic_cooling_enabled: { type: 'boolean' },
2848
2956
  automatic_heating_enabled: { type: 'boolean' },
2849
- cooling_set_point_celsius: { type: 'number' },
2850
- cooling_set_point_fahrenheit: { type: 'number' },
2851
- heating_set_point_celsius: { type: 'number' },
2852
- heating_set_point_fahrenheit: { type: 'number' },
2957
+ cooling_set_point_celsius: {
2958
+ format: 'float',
2959
+ type: 'number',
2960
+ },
2961
+ cooling_set_point_fahrenheit: {
2962
+ format: 'float',
2963
+ type: 'number',
2964
+ },
2965
+ heating_set_point_celsius: {
2966
+ format: 'float',
2967
+ type: 'number',
2968
+ },
2969
+ heating_set_point_fahrenheit: {
2970
+ format: 'float',
2971
+ type: 'number',
2972
+ },
2853
2973
  hvac_mode_setting: {
2854
2974
  enum: ['off', 'heat', 'cool', 'heat_cool'],
2855
2975
  type: 'string',
@@ -2868,10 +2988,22 @@ export default {
2868
2988
  properties: {
2869
2989
  automatic_cooling_enabled: { type: 'boolean' },
2870
2990
  automatic_heating_enabled: { type: 'boolean' },
2871
- cooling_set_point_celsius: { type: 'number' },
2872
- cooling_set_point_fahrenheit: { type: 'number' },
2873
- heating_set_point_celsius: { type: 'number' },
2874
- heating_set_point_fahrenheit: { type: 'number' },
2991
+ cooling_set_point_celsius: {
2992
+ format: 'float',
2993
+ type: 'number',
2994
+ },
2995
+ cooling_set_point_fahrenheit: {
2996
+ format: 'float',
2997
+ type: 'number',
2998
+ },
2999
+ heating_set_point_celsius: {
3000
+ format: 'float',
3001
+ type: 'number',
3002
+ },
3003
+ heating_set_point_fahrenheit: {
3004
+ format: 'float',
3005
+ type: 'number',
3006
+ },
2875
3007
  hvac_mode_setting: {
2876
3008
  enum: ['off', 'heat', 'cool', 'heat_cool'],
2877
3009
  type: 'string',
@@ -2907,17 +3039,36 @@ export default {
2907
3039
  is_temporary_manual_override_active: {
2908
3040
  type: 'boolean',
2909
3041
  },
2910
- max_heating_set_point_celsius: { type: 'number' },
2911
- max_heating_set_point_fahrenheit: { type: 'number' },
2912
- min_heating_set_point_celsius: { type: 'number' },
2913
- min_heating_set_point_fahrenheit: { type: 'number' },
3042
+ max_heating_set_point_celsius: {
3043
+ format: 'float',
3044
+ type: 'number',
3045
+ },
3046
+ max_heating_set_point_fahrenheit: {
3047
+ format: 'float',
3048
+ type: 'number',
3049
+ },
3050
+ min_heating_set_point_celsius: {
3051
+ format: 'float',
3052
+ type: 'number',
3053
+ },
3054
+ min_heating_set_point_fahrenheit: {
3055
+ format: 'float',
3056
+ type: 'number',
3057
+ },
2914
3058
  relative_humidity: {
3059
+ format: 'float',
2915
3060
  maximum: 1,
2916
3061
  minimum: 0,
2917
3062
  type: 'number',
2918
3063
  },
2919
- temperature_celsius: { type: 'number' },
2920
- temperature_fahrenheit: { type: 'number' },
3064
+ temperature_celsius: {
3065
+ format: 'float',
3066
+ type: 'number',
3067
+ },
3068
+ temperature_fahrenheit: {
3069
+ format: 'float',
3070
+ type: 'number',
3071
+ },
2921
3072
  },
2922
3073
  type: 'object',
2923
3074
  },
@@ -2931,8 +3082,14 @@ export default {
2931
3082
  format: 'uuid',
2932
3083
  type: 'string',
2933
3084
  },
2934
- cooling_set_point_celsius: { type: 'number' },
2935
- cooling_set_point_fahrenheit: { type: 'number' },
3085
+ cooling_set_point_celsius: {
3086
+ format: 'float',
3087
+ type: 'number',
3088
+ },
3089
+ cooling_set_point_fahrenheit: {
3090
+ format: 'float',
3091
+ type: 'number',
3092
+ },
2936
3093
  created_at: {
2937
3094
  format: 'date-time',
2938
3095
  type: 'string',
@@ -2941,10 +3098,15 @@ export default {
2941
3098
  errors: {
2942
3099
  description:
2943
3100
  'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
2944
- nullable: true,
2945
3101
  },
2946
- heating_set_point_celsius: { type: 'number' },
2947
- heating_set_point_fahrenheit: { type: 'number' },
3102
+ heating_set_point_celsius: {
3103
+ format: 'float',
3104
+ type: 'number',
3105
+ },
3106
+ heating_set_point_fahrenheit: {
3107
+ format: 'float',
3108
+ type: 'number',
3109
+ },
2948
3110
  hvac_mode_setting: {
2949
3111
  enum: ['off', 'heat', 'cool', 'heat_cool'],
2950
3112
  type: 'string',
@@ -2981,10 +3143,22 @@ export default {
2981
3143
  properties: {
2982
3144
  automatic_cooling_enabled: { type: 'boolean' },
2983
3145
  automatic_heating_enabled: { type: 'boolean' },
2984
- cooling_set_point_celsius: { type: 'number' },
2985
- cooling_set_point_fahrenheit: { type: 'number' },
2986
- heating_set_point_celsius: { type: 'number' },
2987
- heating_set_point_fahrenheit: { type: 'number' },
3146
+ cooling_set_point_celsius: {
3147
+ format: 'float',
3148
+ type: 'number',
3149
+ },
3150
+ cooling_set_point_fahrenheit: {
3151
+ format: 'float',
3152
+ type: 'number',
3153
+ },
3154
+ heating_set_point_celsius: {
3155
+ format: 'float',
3156
+ type: 'number',
3157
+ },
3158
+ heating_set_point_fahrenheit: {
3159
+ format: 'float',
3160
+ type: 'number',
3161
+ },
2988
3162
  hvac_mode_setting: {
2989
3163
  enum: ['off', 'heat', 'cool', 'heat_cool'],
2990
3164
  type: 'string',
@@ -3003,10 +3177,22 @@ export default {
3003
3177
  properties: {
3004
3178
  automatic_cooling_enabled: { type: 'boolean' },
3005
3179
  automatic_heating_enabled: { type: 'boolean' },
3006
- cooling_set_point_celsius: { type: 'number' },
3007
- cooling_set_point_fahrenheit: { type: 'number' },
3008
- heating_set_point_celsius: { type: 'number' },
3009
- heating_set_point_fahrenheit: { type: 'number' },
3180
+ cooling_set_point_celsius: {
3181
+ format: 'float',
3182
+ type: 'number',
3183
+ },
3184
+ cooling_set_point_fahrenheit: {
3185
+ format: 'float',
3186
+ type: 'number',
3187
+ },
3188
+ heating_set_point_celsius: {
3189
+ format: 'float',
3190
+ type: 'number',
3191
+ },
3192
+ heating_set_point_fahrenheit: {
3193
+ format: 'float',
3194
+ type: 'number',
3195
+ },
3010
3196
  hvac_mode_setting: {
3011
3197
  enum: ['off', 'heat', 'cool', 'heat_cool'],
3012
3198
  type: 'string',
@@ -3042,17 +3228,36 @@ export default {
3042
3228
  is_temporary_manual_override_active: {
3043
3229
  type: 'boolean',
3044
3230
  },
3045
- max_cooling_set_point_celsius: { type: 'number' },
3046
- max_cooling_set_point_fahrenheit: { type: 'number' },
3047
- min_cooling_set_point_celsius: { type: 'number' },
3048
- min_cooling_set_point_fahrenheit: { type: 'number' },
3231
+ max_cooling_set_point_celsius: {
3232
+ format: 'float',
3233
+ type: 'number',
3234
+ },
3235
+ max_cooling_set_point_fahrenheit: {
3236
+ format: 'float',
3237
+ type: 'number',
3238
+ },
3239
+ min_cooling_set_point_celsius: {
3240
+ format: 'float',
3241
+ type: 'number',
3242
+ },
3243
+ min_cooling_set_point_fahrenheit: {
3244
+ format: 'float',
3245
+ type: 'number',
3246
+ },
3049
3247
  relative_humidity: {
3248
+ format: 'float',
3050
3249
  maximum: 1,
3051
3250
  minimum: 0,
3052
3251
  type: 'number',
3053
3252
  },
3054
- temperature_celsius: { type: 'number' },
3055
- temperature_fahrenheit: { type: 'number' },
3253
+ temperature_celsius: {
3254
+ format: 'float',
3255
+ type: 'number',
3256
+ },
3257
+ temperature_fahrenheit: {
3258
+ format: 'float',
3259
+ type: 'number',
3260
+ },
3056
3261
  },
3057
3262
  type: 'object',
3058
3263
  },
@@ -3224,9 +3429,9 @@ export default {
3224
3429
  device_id: { format: 'uuid', type: 'string' },
3225
3430
  ends_daily_at: { type: 'string' },
3226
3431
  name: { type: 'string' },
3227
- noise_threshold_decibels: { type: 'number' },
3432
+ noise_threshold_decibels: { format: 'float', type: 'number' },
3228
3433
  noise_threshold_id: { format: 'uuid', type: 'string' },
3229
- noise_threshold_nrs: { type: 'number' },
3434
+ noise_threshold_nrs: { format: 'float', type: 'number' },
3230
3435
  starts_daily_at: { type: 'string' },
3231
3436
  },
3232
3437
  required: [
@@ -3427,7 +3632,6 @@ export default {
3427
3632
  errors: {
3428
3633
  description:
3429
3634
  'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
3430
- nullable: true,
3431
3635
  },
3432
3636
  is_managed: { enum: [false], type: 'boolean' },
3433
3637
  name: {
@@ -3453,7 +3657,6 @@ export default {
3453
3657
  warnings: {
3454
3658
  description:
3455
3659
  'Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention.',
3456
- nullable: true,
3457
3660
  },
3458
3661
  },
3459
3662
  required: [
@@ -3581,7 +3784,12 @@ export default {
3581
3784
  battery: {
3582
3785
  description: 'Indicates if the keypad battery properties.',
3583
3786
  properties: {
3584
- level: { maximum: 1, minimum: 0, type: 'number' },
3787
+ level: {
3788
+ format: 'float',
3789
+ maximum: 1,
3790
+ minimum: 0,
3791
+ type: 'number',
3792
+ },
3585
3793
  },
3586
3794
  required: ['level'],
3587
3795
  type: 'object',
@@ -3599,7 +3807,12 @@ export default {
3599
3807
  description:
3600
3808
  'Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage.',
3601
3809
  properties: {
3602
- level: { maximum: 1, minimum: 0, type: 'number' },
3810
+ level: {
3811
+ format: 'float',
3812
+ maximum: 1,
3813
+ minimum: 0,
3814
+ type: 'number',
3815
+ },
3603
3816
  status: {
3604
3817
  enum: ['critical', 'low', 'good', 'full'],
3605
3818
  type: 'string',
@@ -3611,6 +3824,7 @@ export default {
3611
3824
  battery_level: {
3612
3825
  description:
3613
3826
  'Indicates the battery level of the device as a decimal value between 0 and 1, inclusive.',
3827
+ format: 'float',
3614
3828
  maximum: 1,
3615
3829
  minimum: 0,
3616
3830
  type: 'number',
@@ -3631,9 +3845,10 @@ export default {
3631
3845
  model: {
3632
3846
  properties: {
3633
3847
  accessory_keypad_supported: {
3634
- description:
3635
- '\n ---\n deprecated: use device.properties.model.can_connect_accessory_keypad\n ---\n ',
3848
+ deprecated: true,
3636
3849
  type: 'boolean',
3850
+ 'x-deprecated':
3851
+ 'use device.properties.model.can_connect_accessory_keypad',
3637
3852
  },
3638
3853
  can_connect_accessory_keypad: {
3639
3854
  description:
@@ -3669,9 +3884,10 @@ export default {
3669
3884
  type: 'object',
3670
3885
  },
3671
3886
  name: {
3672
- description:
3673
- '\n ---\n deprecated: use device.display_name instead\n ---\n Name of the device.\n ',
3887
+ deprecated: true,
3888
+ description: 'Name of the device.',
3674
3889
  type: 'string',
3890
+ 'x-deprecated': 'use device.display_name instead',
3675
3891
  },
3676
3892
  offline_access_codes_enabled: {
3677
3893
  description:
@@ -3762,10 +3978,10 @@ export default {
3762
3978
  properties: {
3763
3979
  company_name: { type: 'string' },
3764
3980
  connect_partner_name: {
3765
- description:
3766
- '\n ---\n deprecated: use company_name\n ---\n ',
3981
+ deprecated: true,
3767
3982
  nullable: true,
3768
3983
  type: 'string',
3984
+ 'x-deprecated': 'use company_name',
3769
3985
  },
3770
3986
  is_sandbox: { type: 'boolean' },
3771
3987
  name: { type: 'string' },
@@ -3951,7 +4167,7 @@ export default {
3951
4167
  },
3952
4168
  name: { type: 'string' },
3953
4169
  prefer_native_scheduling: { type: 'boolean' },
3954
- preferred_code_length: { type: 'number' },
4170
+ preferred_code_length: { format: 'float', type: 'number' },
3955
4171
  starts_at: { type: 'string' },
3956
4172
  use_backup_access_code_pool: { type: 'boolean' },
3957
4173
  use_offline_access_code: { type: 'boolean' },
@@ -4034,7 +4250,7 @@ export default {
4034
4250
  },
4035
4251
  name: { type: 'string' },
4036
4252
  prefer_native_scheduling: { type: 'boolean' },
4037
- preferred_code_length: { type: 'number' },
4253
+ preferred_code_length: { format: 'float', type: 'number' },
4038
4254
  starts_at: { type: 'string' },
4039
4255
  use_backup_access_code_pool: { type: 'boolean' },
4040
4256
  use_offline_access_code: { type: 'boolean' },
@@ -5489,9 +5705,9 @@ export default {
5489
5705
  type: 'string',
5490
5706
  },
5491
5707
  is_override_key: {
5492
- description:
5493
- '\n ---\n deprecated: use override.\n ---\n ',
5708
+ deprecated: true,
5494
5709
  type: 'boolean',
5710
+ 'x-deprecated': 'use override.',
5495
5711
  },
5496
5712
  joiner_acs_credential_ids: {
5497
5713
  items: { format: 'uuid', type: 'string' },
@@ -6419,14 +6635,14 @@ export default {
6419
6635
  },
6420
6636
  acs_system_id: { format: 'uuid', type: 'string' },
6421
6637
  email: {
6422
- description:
6423
- '\n ---\n deprecated: use email_address.\n ---\n ',
6638
+ deprecated: true,
6424
6639
  format: 'email',
6425
6640
  type: 'string',
6641
+ 'x-deprecated': 'use email_address.',
6426
6642
  },
6427
6643
  email_address: { format: 'email', type: 'string' },
6428
6644
  full_name: { type: 'string' },
6429
- phone_number: { nullable: true, type: 'string' },
6645
+ phone_number: { type: 'string' },
6430
6646
  user_identity_id: { format: 'uuid', type: 'string' },
6431
6647
  },
6432
6648
  required: ['acs_system_id'],
@@ -6563,10 +6779,7 @@ export default {
6563
6779
  acs_system_id: { format: 'uuid', type: 'string' },
6564
6780
  user_identity_email_address: { type: 'string' },
6565
6781
  user_identity_id: { format: 'uuid', type: 'string' },
6566
- user_identity_phone_number: {
6567
- nullable: true,
6568
- type: 'string',
6569
- },
6782
+ user_identity_phone_number: { type: 'string' },
6570
6783
  },
6571
6784
  type: 'object',
6572
6785
  },
@@ -6842,15 +7055,15 @@ export default {
6842
7055
  },
6843
7056
  acs_user_id: { format: 'uuid', type: 'string' },
6844
7057
  email: {
6845
- description:
6846
- '\n ---\n deprecated: use email_address.\n ---\n ',
7058
+ deprecated: true,
6847
7059
  format: 'email',
6848
7060
  type: 'string',
7061
+ 'x-deprecated': 'use email_address.',
6849
7062
  },
6850
7063
  email_address: { format: 'email', type: 'string' },
6851
7064
  full_name: { type: 'string' },
6852
7065
  hid_acs_system_id: { format: 'uuid', type: 'string' },
6853
- phone_number: { nullable: true, type: 'string' },
7066
+ phone_number: { type: 'string' },
6854
7067
  },
6855
7068
  required: ['acs_user_id'],
6856
7069
  type: 'object',
@@ -6900,15 +7113,15 @@ export default {
6900
7113
  },
6901
7114
  acs_user_id: { format: 'uuid', type: 'string' },
6902
7115
  email: {
6903
- description:
6904
- '\n ---\n deprecated: use email_address.\n ---\n ',
7116
+ deprecated: true,
6905
7117
  format: 'email',
6906
7118
  type: 'string',
7119
+ 'x-deprecated': 'use email_address.',
6907
7120
  },
6908
7121
  email_address: { format: 'email', type: 'string' },
6909
7122
  full_name: { type: 'string' },
6910
7123
  hid_acs_system_id: { format: 'uuid', type: 'string' },
6911
- phone_number: { nullable: true, type: 'string' },
7124
+ phone_number: { type: 'string' },
6912
7125
  },
6913
7126
  required: ['acs_user_id'],
6914
7127
  type: 'object',
@@ -7062,11 +7275,7 @@ export default {
7062
7275
  items: { type: 'string' },
7063
7276
  type: 'array',
7064
7277
  },
7065
- expires_at: {
7066
- format: 'date-time',
7067
- nullable: true,
7068
- type: 'string',
7069
- },
7278
+ expires_at: { format: 'date-time', type: 'string' },
7070
7279
  user_identifier_key: { minLength: 1, type: 'string' },
7071
7280
  user_identity_ids: {
7072
7281
  items: { type: 'string' },
@@ -7120,11 +7329,7 @@ export default {
7120
7329
  items: { type: 'string' },
7121
7330
  type: 'array',
7122
7331
  },
7123
- expires_at: {
7124
- format: 'date-time',
7125
- nullable: true,
7126
- type: 'string',
7127
- },
7332
+ expires_at: { format: 'date-time', type: 'string' },
7128
7333
  user_identifier_key: { minLength: 1, type: 'string' },
7129
7334
  user_identity_ids: {
7130
7335
  items: { type: 'string' },
@@ -7271,11 +7476,7 @@ export default {
7271
7476
  items: { type: 'string' },
7272
7477
  type: 'array',
7273
7478
  },
7274
- expires_at: {
7275
- format: 'date-time',
7276
- nullable: true,
7277
- type: 'string',
7278
- },
7479
+ expires_at: { format: 'date-time', type: 'string' },
7279
7480
  user_identifier_key: { minLength: 1, type: 'string' },
7280
7481
  user_identity_ids: {
7281
7482
  items: { type: 'string' },
@@ -7329,11 +7530,7 @@ export default {
7329
7530
  items: { type: 'string' },
7330
7531
  type: 'array',
7331
7532
  },
7332
- expires_at: {
7333
- format: 'date-time',
7334
- nullable: true,
7335
- type: 'string',
7336
- },
7533
+ expires_at: { format: 'date-time', type: 'string' },
7337
7534
  user_identifier_key: { minLength: 1, type: 'string' },
7338
7535
  user_identity_ids: {
7339
7536
  items: { type: 'string' },
@@ -7650,7 +7847,6 @@ export default {
7650
7847
  oneOf: [
7651
7848
  { maxLength: 500, type: 'string' },
7652
7849
  { type: 'boolean' },
7653
- { format: 'null', nullable: true, type: 'string' },
7654
7850
  ],
7655
7851
  },
7656
7852
  type: 'object',
@@ -7822,7 +8018,7 @@ export default {
7822
8018
  "Returns devices where the webview's custom_metadata contains all of the provided key/value pairs.",
7823
8019
  type: 'object',
7824
8020
  },
7825
- limit: { default: 500, nullable: true, type: 'number' },
8021
+ limit: { default: 500, format: 'float', type: 'number' },
7826
8022
  user_identifier_key: { type: 'string' },
7827
8023
  },
7828
8024
  type: 'object',
@@ -8040,7 +8236,6 @@ export default {
8040
8236
  oneOf: [
8041
8237
  { maxLength: 500, type: 'string' },
8042
8238
  { type: 'boolean' },
8043
- { format: 'null', nullable: true, type: 'string' },
8044
8239
  ],
8045
8240
  },
8046
8241
  type: 'object',
@@ -8193,11 +8388,7 @@ export default {
8193
8388
  items: { format: 'uuid', type: 'string' },
8194
8389
  type: 'array',
8195
8390
  },
8196
- created_before: {
8197
- format: 'date-time',
8198
- nullable: true,
8199
- type: 'string',
8200
- },
8391
+ created_before: { format: 'date-time', type: 'string' },
8201
8392
  custom_metadata_has: {
8202
8393
  additionalProperties: {
8203
8394
  oneOf: [{ type: 'string' }, { type: 'boolean' }],
@@ -8340,7 +8531,7 @@ export default {
8340
8531
  },
8341
8532
  type: 'array',
8342
8533
  },
8343
- limit: { default: 500, nullable: true, type: 'number' },
8534
+ limit: { default: 500, format: 'float', type: 'number' },
8344
8535
  manufacturer: {
8345
8536
  enum: [
8346
8537
  'akuvox',
@@ -8671,11 +8862,7 @@ export default {
8671
8862
  items: { format: 'uuid', type: 'string' },
8672
8863
  type: 'array',
8673
8864
  },
8674
- created_before: {
8675
- format: 'date-time',
8676
- nullable: true,
8677
- type: 'string',
8678
- },
8865
+ created_before: { format: 'date-time', type: 'string' },
8679
8866
  custom_metadata_has: {
8680
8867
  additionalProperties: {
8681
8868
  oneOf: [{ type: 'string' }, { type: 'boolean' }],
@@ -8818,7 +9005,7 @@ export default {
8818
9005
  },
8819
9006
  type: 'array',
8820
9007
  },
8821
- limit: { default: 500, nullable: true, type: 'number' },
9008
+ limit: { default: 500, format: 'float', type: 'number' },
8822
9009
  manufacturer: {
8823
9010
  enum: [
8824
9011
  'akuvox',
@@ -8998,7 +9185,6 @@ export default {
8998
9185
  oneOf: [
8999
9186
  { maxLength: 500, type: 'string' },
9000
9187
  { type: 'boolean' },
9001
- { format: 'null', nullable: true, type: 'string' },
9002
9188
  ],
9003
9189
  },
9004
9190
  type: 'object',
@@ -9055,7 +9241,6 @@ export default {
9055
9241
  oneOf: [
9056
9242
  { maxLength: 500, type: 'string' },
9057
9243
  { type: 'boolean' },
9058
- { format: 'null', nullable: true, type: 'string' },
9059
9244
  ],
9060
9245
  },
9061
9246
  type: 'object',
@@ -9222,6 +9407,7 @@ export default {
9222
9407
  'access_code.unmanaged.removed',
9223
9408
  'lock.locked',
9224
9409
  'lock.unlocked',
9410
+ 'lock.access_denied',
9225
9411
  'phone.deactivated',
9226
9412
  'connected_account.connected',
9227
9413
  'connected_account.successful_login',
@@ -9286,6 +9472,7 @@ export default {
9286
9472
  'access_code.unmanaged.removed',
9287
9473
  'lock.locked',
9288
9474
  'lock.unlocked',
9475
+ 'lock.access_denied',
9289
9476
  'phone.deactivated',
9290
9477
  'connected_account.connected',
9291
9478
  'connected_account.successful_login',
@@ -9310,7 +9497,7 @@ export default {
9310
9497
  },
9311
9498
  type: 'array',
9312
9499
  },
9313
- limit: { default: 500, nullable: true, type: 'number' },
9500
+ limit: { default: 500, format: 'float', type: 'number' },
9314
9501
  since: { type: 'string' },
9315
9502
  },
9316
9503
  type: 'object',
@@ -9421,11 +9608,7 @@ export default {
9421
9608
  items: { format: 'uuid', type: 'string' },
9422
9609
  type: 'array',
9423
9610
  },
9424
- created_before: {
9425
- format: 'date-time',
9426
- nullable: true,
9427
- type: 'string',
9428
- },
9611
+ created_before: { format: 'date-time', type: 'string' },
9429
9612
  custom_metadata_has: {
9430
9613
  additionalProperties: {
9431
9614
  oneOf: [{ type: 'string' }, { type: 'boolean' }],
@@ -9568,7 +9751,7 @@ export default {
9568
9751
  },
9569
9752
  type: 'array',
9570
9753
  },
9571
- limit: { default: 500, nullable: true, type: 'number' },
9754
+ limit: { default: 500, format: 'float', type: 'number' },
9572
9755
  manufacturer: {
9573
9756
  enum: [
9574
9757
  'akuvox',
@@ -9854,8 +10037,8 @@ export default {
9854
10037
  device_id: { format: 'uuid', type: 'string' },
9855
10038
  ends_daily_at: { type: 'string' },
9856
10039
  name: { type: 'string' },
9857
- noise_threshold_decibels: { type: 'number' },
9858
- noise_threshold_nrs: { type: 'number' },
10040
+ noise_threshold_decibels: { format: 'float', type: 'number' },
10041
+ noise_threshold_nrs: { format: 'float', type: 'number' },
9859
10042
  starts_daily_at: { type: 'string' },
9860
10043
  sync: { default: false, type: 'boolean' },
9861
10044
  },
@@ -10063,9 +10246,9 @@ export default {
10063
10246
  device_id: { format: 'uuid', type: 'string' },
10064
10247
  ends_daily_at: { type: 'string' },
10065
10248
  name: { type: 'string' },
10066
- noise_threshold_decibels: { type: 'number' },
10249
+ noise_threshold_decibels: { format: 'float', type: 'number' },
10067
10250
  noise_threshold_id: { format: 'uuid', type: 'string' },
10068
- noise_threshold_nrs: { type: 'number' },
10251
+ noise_threshold_nrs: { format: 'float', type: 'number' },
10069
10252
  starts_daily_at: { type: 'string' },
10070
10253
  sync: { default: false, type: 'boolean' },
10071
10254
  },
@@ -10115,9 +10298,9 @@ export default {
10115
10298
  device_id: { format: 'uuid', type: 'string' },
10116
10299
  ends_daily_at: { type: 'string' },
10117
10300
  name: { type: 'string' },
10118
- noise_threshold_decibels: { type: 'number' },
10301
+ noise_threshold_decibels: { format: 'float', type: 'number' },
10119
10302
  noise_threshold_id: { format: 'uuid', type: 'string' },
10120
- noise_threshold_nrs: { type: 'number' },
10303
+ noise_threshold_nrs: { format: 'float', type: 'number' },
10121
10304
  starts_daily_at: { type: 'string' },
10122
10305
  sync: { default: false, type: 'boolean' },
10123
10306
  },
@@ -10168,9 +10351,9 @@ export default {
10168
10351
  device_id: { format: 'uuid', type: 'string' },
10169
10352
  ends_daily_at: { type: 'string' },
10170
10353
  name: { type: 'string' },
10171
- noise_threshold_decibels: { type: 'number' },
10354
+ noise_threshold_decibels: { format: 'float', type: 'number' },
10172
10355
  noise_threshold_id: { format: 'uuid', type: 'string' },
10173
- noise_threshold_nrs: { type: 'number' },
10356
+ noise_threshold_nrs: { format: 'float', type: 'number' },
10174
10357
  starts_daily_at: { type: 'string' },
10175
10358
  sync: { default: false, type: 'boolean' },
10176
10359
  },
@@ -10359,7 +10542,11 @@ export default {
10359
10542
  hce_capability: { default: false, type: 'boolean' },
10360
10543
  nfc_capability: { default: false, type: 'boolean' },
10361
10544
  seos_applet_version: { default: '1.0.0', type: 'string' },
10362
- seos_tsm_endpoint_id: { default: 1, type: 'number' },
10545
+ seos_tsm_endpoint_id: {
10546
+ default: 1,
10547
+ format: 'float',
10548
+ type: 'number',
10549
+ },
10363
10550
  },
10364
10551
  type: 'object',
10365
10552
  },
@@ -10433,11 +10620,23 @@ export default {
10433
10620
  properties: {
10434
10621
  automatic_cooling_enabled: { type: 'boolean' },
10435
10622
  automatic_heating_enabled: { type: 'boolean' },
10436
- cooling_set_point_celsius: { type: 'number' },
10437
- cooling_set_point_fahrenheit: { type: 'number' },
10623
+ cooling_set_point_celsius: {
10624
+ format: 'float',
10625
+ type: 'number',
10626
+ },
10627
+ cooling_set_point_fahrenheit: {
10628
+ format: 'float',
10629
+ type: 'number',
10630
+ },
10438
10631
  device_id: { type: 'string' },
10439
- heating_set_point_celsius: { type: 'number' },
10440
- heating_set_point_fahrenheit: { type: 'number' },
10632
+ heating_set_point_celsius: {
10633
+ format: 'float',
10634
+ type: 'number',
10635
+ },
10636
+ heating_set_point_fahrenheit: {
10637
+ format: 'float',
10638
+ type: 'number',
10639
+ },
10441
10640
  hvac_mode_setting: {
10442
10641
  enum: ['off', 'heat', 'cool', 'heat_cool'],
10443
10642
  type: 'string',
@@ -10708,10 +10907,22 @@ export default {
10708
10907
  format: 'uuid',
10709
10908
  type: 'string',
10710
10909
  },
10711
- cooling_set_point_celsius: { type: 'number' },
10712
- cooling_set_point_fahrenheit: { type: 'number' },
10713
- heating_set_point_celsius: { type: 'number' },
10714
- heating_set_point_fahrenheit: { type: 'number' },
10910
+ cooling_set_point_celsius: {
10911
+ format: 'float',
10912
+ type: 'number',
10913
+ },
10914
+ cooling_set_point_fahrenheit: {
10915
+ format: 'float',
10916
+ type: 'number',
10917
+ },
10918
+ heating_set_point_celsius: {
10919
+ format: 'float',
10920
+ type: 'number',
10921
+ },
10922
+ heating_set_point_fahrenheit: {
10923
+ format: 'float',
10924
+ type: 'number',
10925
+ },
10715
10926
  hvac_mode_setting: {
10716
10927
  enum: ['off', 'heat', 'cool', 'heat_cool'],
10717
10928
  type: 'string',
@@ -10776,10 +10987,22 @@ export default {
10776
10987
  format: 'uuid',
10777
10988
  type: 'string',
10778
10989
  },
10779
- cooling_set_point_celsius: { type: 'number' },
10780
- cooling_set_point_fahrenheit: { type: 'number' },
10781
- heating_set_point_celsius: { type: 'number' },
10782
- heating_set_point_fahrenheit: { type: 'number' },
10990
+ cooling_set_point_celsius: {
10991
+ format: 'float',
10992
+ type: 'number',
10993
+ },
10994
+ cooling_set_point_fahrenheit: {
10995
+ format: 'float',
10996
+ type: 'number',
10997
+ },
10998
+ heating_set_point_celsius: {
10999
+ format: 'float',
11000
+ type: 'number',
11001
+ },
11002
+ heating_set_point_fahrenheit: {
11003
+ format: 'float',
11004
+ type: 'number',
11005
+ },
10783
11006
  hvac_mode_setting: {
10784
11007
  enum: ['off', 'heat', 'cool', 'heat_cool'],
10785
11008
  type: 'string',
@@ -10845,10 +11068,22 @@ export default {
10845
11068
  format: 'uuid',
10846
11069
  type: 'string',
10847
11070
  },
10848
- cooling_set_point_celsius: { type: 'number' },
10849
- cooling_set_point_fahrenheit: { type: 'number' },
10850
- heating_set_point_celsius: { type: 'number' },
10851
- heating_set_point_fahrenheit: { type: 'number' },
11071
+ cooling_set_point_celsius: {
11072
+ format: 'float',
11073
+ type: 'number',
11074
+ },
11075
+ cooling_set_point_fahrenheit: {
11076
+ format: 'float',
11077
+ type: 'number',
11078
+ },
11079
+ heating_set_point_celsius: {
11080
+ format: 'float',
11081
+ type: 'number',
11082
+ },
11083
+ heating_set_point_fahrenheit: {
11084
+ format: 'float',
11085
+ type: 'number',
11086
+ },
10852
11087
  hvac_mode_setting: {
10853
11088
  enum: ['off', 'heat', 'cool', 'heat_cool'],
10854
11089
  type: 'string',
@@ -10909,8 +11144,14 @@ export default {
10909
11144
  'application/json': {
10910
11145
  schema: {
10911
11146
  properties: {
10912
- cooling_set_point_celsius: { type: 'number' },
10913
- cooling_set_point_fahrenheit: { type: 'number' },
11147
+ cooling_set_point_celsius: {
11148
+ format: 'float',
11149
+ type: 'number',
11150
+ },
11151
+ cooling_set_point_fahrenheit: {
11152
+ format: 'float',
11153
+ type: 'number',
11154
+ },
10914
11155
  device_id: { format: 'uuid', type: 'string' },
10915
11156
  sync: { default: false, type: 'boolean' },
10916
11157
  },
@@ -11011,8 +11252,14 @@ export default {
11011
11252
  schema: {
11012
11253
  properties: {
11013
11254
  device_id: { format: 'uuid', type: 'string' },
11014
- heating_set_point_celsius: { type: 'number' },
11015
- heating_set_point_fahrenheit: { type: 'number' },
11255
+ heating_set_point_celsius: {
11256
+ format: 'float',
11257
+ type: 'number',
11258
+ },
11259
+ heating_set_point_fahrenheit: {
11260
+ format: 'float',
11261
+ type: 'number',
11262
+ },
11016
11263
  sync: { default: false, type: 'boolean' },
11017
11264
  },
11018
11265
  required: ['device_id'],
@@ -11063,11 +11310,23 @@ export default {
11063
11310
  'application/json': {
11064
11311
  schema: {
11065
11312
  properties: {
11066
- cooling_set_point_celsius: { type: 'number' },
11067
- cooling_set_point_fahrenheit: { type: 'number' },
11313
+ cooling_set_point_celsius: {
11314
+ format: 'float',
11315
+ type: 'number',
11316
+ },
11317
+ cooling_set_point_fahrenheit: {
11318
+ format: 'float',
11319
+ type: 'number',
11320
+ },
11068
11321
  device_id: { format: 'uuid', type: 'string' },
11069
- heating_set_point_celsius: { type: 'number' },
11070
- heating_set_point_fahrenheit: { type: 'number' },
11322
+ heating_set_point_celsius: {
11323
+ format: 'float',
11324
+ type: 'number',
11325
+ },
11326
+ heating_set_point_fahrenheit: {
11327
+ format: 'float',
11328
+ type: 'number',
11329
+ },
11071
11330
  sync: { default: false, type: 'boolean' },
11072
11331
  },
11073
11332
  required: ['device_id'],
@@ -11129,11 +11388,7 @@ export default {
11129
11388
  items: { format: 'uuid', type: 'string' },
11130
11389
  type: 'array',
11131
11390
  },
11132
- created_before: {
11133
- format: 'date-time',
11134
- nullable: true,
11135
- type: 'string',
11136
- },
11391
+ created_before: { format: 'date-time', type: 'string' },
11137
11392
  custom_metadata_has: {
11138
11393
  additionalProperties: {
11139
11394
  oneOf: [{ type: 'string' }, { type: 'boolean' }],
@@ -11276,7 +11531,7 @@ export default {
11276
11531
  },
11277
11532
  type: 'array',
11278
11533
  },
11279
- limit: { default: 500, nullable: true, type: 'number' },
11534
+ limit: { default: 500, format: 'float', type: 'number' },
11280
11535
  manufacturer: {
11281
11536
  enum: [
11282
11537
  'akuvox',
@@ -11474,10 +11729,22 @@ export default {
11474
11729
  properties: {
11475
11730
  automatic_cooling_enabled: { type: 'boolean' },
11476
11731
  automatic_heating_enabled: { type: 'boolean' },
11477
- cooling_set_point_celsius: { type: 'number' },
11478
- cooling_set_point_fahrenheit: { type: 'number' },
11479
- heating_set_point_celsius: { type: 'number' },
11480
- heating_set_point_fahrenheit: { type: 'number' },
11732
+ cooling_set_point_celsius: {
11733
+ format: 'float',
11734
+ type: 'number',
11735
+ },
11736
+ cooling_set_point_fahrenheit: {
11737
+ format: 'float',
11738
+ type: 'number',
11739
+ },
11740
+ heating_set_point_celsius: {
11741
+ format: 'float',
11742
+ type: 'number',
11743
+ },
11744
+ heating_set_point_fahrenheit: {
11745
+ format: 'float',
11746
+ type: 'number',
11747
+ },
11481
11748
  hvac_mode_setting: {
11482
11749
  enum: ['off', 'heat', 'cool', 'heat_cool'],
11483
11750
  type: 'string',
@@ -11531,10 +11798,22 @@ export default {
11531
11798
  properties: {
11532
11799
  automatic_cooling_enabled: { type: 'boolean' },
11533
11800
  automatic_heating_enabled: { type: 'boolean' },
11534
- cooling_set_point_celsius: { type: 'number' },
11535
- cooling_set_point_fahrenheit: { type: 'number' },
11536
- heating_set_point_celsius: { type: 'number' },
11537
- heating_set_point_fahrenheit: { type: 'number' },
11801
+ cooling_set_point_celsius: {
11802
+ format: 'float',
11803
+ type: 'number',
11804
+ },
11805
+ cooling_set_point_fahrenheit: {
11806
+ format: 'float',
11807
+ type: 'number',
11808
+ },
11809
+ heating_set_point_celsius: {
11810
+ format: 'float',
11811
+ type: 'number',
11812
+ },
11813
+ heating_set_point_fahrenheit: {
11814
+ format: 'float',
11815
+ type: 'number',
11816
+ },
11538
11817
  hvac_mode_setting: {
11539
11818
  enum: ['off', 'heat', 'cool', 'heat_cool'],
11540
11819
  type: 'string',
@@ -12218,10 +12497,10 @@ export default {
12218
12497
  schema: {
12219
12498
  properties: {
12220
12499
  accessible_devices: {
12221
- description:
12222
- '\n ---\n deprecated: use devices.\n ---\n ',
12500
+ deprecated: true,
12223
12501
  items: { $ref: '#/components/schemas/device' },
12224
12502
  type: 'array',
12503
+ 'x-deprecated': 'use devices.',
12225
12504
  },
12226
12505
  devices: {
12227
12506
  items: { $ref: '#/components/schemas/device' },
@@ -12850,10 +13129,10 @@ export default {
12850
13129
  properties: {
12851
13130
  company_name: { type: 'string' },
12852
13131
  connect_partner_name: {
12853
- description:
12854
- '\n ---\n deprecated: use company_name\n ---\n ',
13132
+ deprecated: true,
12855
13133
  nullable: true,
12856
13134
  type: 'string',
13135
+ 'x-deprecated': 'use company_name',
12857
13136
  },
12858
13137
  is_sandbox: { default: false, type: 'boolean' },
12859
13138
  name: { type: 'string' },