@seamapi/types 1.222.0 → 1.224.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.
@@ -502,6 +502,26 @@ export default {
502
502
  required: ['created_at', 'message', 'error_code'],
503
503
  type: 'object',
504
504
  },
505
+ {
506
+ properties: {
507
+ created_at: {
508
+ description: 'Date and time at which Seam created the error.',
509
+ format: 'date-time',
510
+ type: 'string',
511
+ },
512
+ error_code: {
513
+ description: 'You have reached the maximum number of users allowed for your site; Please contact Salto support to increase your user limit.',
514
+ enum: ['salto_site_user_limit_reached'],
515
+ type: 'string',
516
+ },
517
+ message: {
518
+ description: 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
519
+ type: 'string',
520
+ },
521
+ },
522
+ required: ['created_at', 'message', 'error_code'],
523
+ type: 'object',
524
+ },
505
525
  ],
506
526
  },
507
527
  type: 'array',
@@ -563,9 +583,29 @@ export default {
563
583
  type: 'object',
564
584
  },
565
585
  warnings: {
566
- items: { properties: {}, type: 'object' },
586
+ description: 'Warnings associated with the `acs_system`.',
587
+ items: {
588
+ description: 'Warning associated with the `acs_system`.',
589
+ properties: {
590
+ created_at: {
591
+ description: 'Date and time at which Seam created the warning.',
592
+ format: 'date-time',
593
+ type: 'string',
594
+ },
595
+ message: {
596
+ description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
597
+ type: 'string',
598
+ },
599
+ warning_code: {
600
+ description: 'You have reached more than 80% of the maximum number of users allowed for your site; Please contact Salto support to increase your user limit.',
601
+ enum: ['salto_site_user_limit_almost_reached'],
602
+ type: 'string',
603
+ },
604
+ },
605
+ required: ['created_at', 'message', 'warning_code'],
606
+ type: 'object',
607
+ },
567
608
  type: 'array',
568
- 'x-undocumented': 'Currently, no warnings defined for `acs_system`s.',
569
609
  },
570
610
  workspace_id: {
571
611
  description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`.',
@@ -2813,596 +2853,198 @@ export default {
2813
2853
  type: 'object',
2814
2854
  },
2815
2855
  {
2816
- oneOf: [
2817
- {
2856
+ properties: {
2857
+ active_climate_setting_schedule: {
2818
2858
  properties: {
2819
- active_climate_setting_schedule: {
2820
- properties: {
2821
- automatic_cooling_enabled: { type: 'boolean' },
2822
- automatic_heating_enabled: { type: 'boolean' },
2823
- climate_setting_schedule_id: {
2824
- format: 'uuid',
2825
- type: 'string',
2826
- },
2827
- cooling_set_point_celsius: {
2828
- format: 'float',
2829
- type: 'number',
2830
- },
2831
- cooling_set_point_fahrenheit: {
2832
- format: 'float',
2833
- type: 'number',
2834
- },
2835
- created_at: {
2836
- format: 'date-time',
2837
- type: 'string',
2838
- },
2839
- device_id: { format: 'uuid', type: 'string' },
2840
- errors: {
2841
- description: '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.',
2842
- },
2843
- heating_set_point_celsius: {
2844
- format: 'float',
2845
- type: 'number',
2846
- },
2847
- heating_set_point_fahrenheit: {
2848
- format: 'float',
2849
- type: 'number',
2850
- },
2851
- hvac_mode_setting: {
2852
- enum: ['off', 'heat', 'cool', 'heat_cool'],
2853
- type: 'string',
2854
- },
2855
- manual_override_allowed: { type: 'boolean' },
2856
- name: { type: 'string' },
2857
- schedule_ends_at: { type: 'string' },
2858
- schedule_starts_at: { type: 'string' },
2859
- schedule_type: {
2860
- enum: ['time_bound'],
2861
- type: 'string',
2862
- },
2863
- },
2864
- required: [
2865
- 'climate_setting_schedule_id',
2866
- 'schedule_type',
2867
- 'device_id',
2868
- 'schedule_starts_at',
2869
- 'schedule_ends_at',
2870
- 'created_at',
2871
- ],
2872
- type: 'object',
2873
- },
2874
- available_hvac_mode_settings: {
2875
- items: {
2876
- enum: ['off', 'heat', 'cool', 'heat_cool'],
2877
- type: 'string',
2878
- },
2879
- type: 'array',
2880
- },
2881
- can_enable_automatic_cooling: { type: 'boolean' },
2882
- can_enable_automatic_heating: { type: 'boolean' },
2883
- current_climate_setting: {
2884
- properties: {
2885
- automatic_cooling_enabled: { type: 'boolean' },
2886
- automatic_heating_enabled: { type: 'boolean' },
2887
- cooling_set_point_celsius: {
2888
- format: 'float',
2889
- type: 'number',
2890
- },
2891
- cooling_set_point_fahrenheit: {
2892
- format: 'float',
2893
- type: 'number',
2894
- },
2895
- heating_set_point_celsius: {
2896
- format: 'float',
2897
- type: 'number',
2898
- },
2899
- heating_set_point_fahrenheit: {
2900
- format: 'float',
2901
- type: 'number',
2902
- },
2903
- hvac_mode_setting: {
2904
- enum: ['off', 'heat', 'cool', 'heat_cool'],
2905
- type: 'string',
2906
- },
2907
- manual_override_allowed: { type: 'boolean' },
2908
- },
2909
- required: [
2910
- 'automatic_heating_enabled',
2911
- 'automatic_cooling_enabled',
2912
- 'hvac_mode_setting',
2913
- 'manual_override_allowed',
2914
- ],
2915
- type: 'object',
2916
- },
2917
- default_climate_setting: {
2918
- properties: {
2919
- automatic_cooling_enabled: { type: 'boolean' },
2920
- automatic_heating_enabled: { type: 'boolean' },
2921
- cooling_set_point_celsius: {
2922
- format: 'float',
2923
- type: 'number',
2924
- },
2925
- cooling_set_point_fahrenheit: {
2926
- format: 'float',
2927
- type: 'number',
2928
- },
2929
- heating_set_point_celsius: {
2930
- format: 'float',
2931
- type: 'number',
2932
- },
2933
- heating_set_point_fahrenheit: {
2934
- format: 'float',
2935
- type: 'number',
2936
- },
2937
- hvac_mode_setting: {
2938
- enum: ['off', 'heat', 'cool', 'heat_cool'],
2939
- type: 'string',
2940
- },
2941
- manual_override_allowed: { type: 'boolean' },
2942
- },
2943
- required: [
2944
- 'automatic_heating_enabled',
2945
- 'automatic_cooling_enabled',
2946
- 'hvac_mode_setting',
2947
- 'manual_override_allowed',
2948
- ],
2949
- type: 'object',
2950
- },
2951
- fan_mode_setting: {
2952
- enum: ['auto', 'on'],
2859
+ automatic_cooling_enabled: { type: 'boolean' },
2860
+ automatic_heating_enabled: { type: 'boolean' },
2861
+ climate_setting_schedule_id: {
2862
+ format: 'uuid',
2953
2863
  type: 'string',
2954
2864
  },
2955
- is_climate_setting_schedule_active: {
2956
- type: 'boolean',
2957
- },
2958
- is_cooling: { type: 'boolean' },
2959
- is_cooling_available: {
2960
- enum: [true],
2961
- type: 'boolean',
2962
- },
2963
- is_fan_running: { type: 'boolean' },
2964
- is_heating: { type: 'boolean' },
2965
- is_heating_available: {
2966
- enum: [true],
2967
- type: 'boolean',
2968
- },
2969
- is_temporary_manual_override_active: {
2970
- type: 'boolean',
2971
- },
2972
- max_cooling_set_point_celsius: {
2973
- format: 'float',
2974
- type: 'number',
2975
- },
2976
- max_cooling_set_point_fahrenheit: {
2977
- format: 'float',
2978
- type: 'number',
2979
- },
2980
- max_heating_set_point_celsius: {
2981
- format: 'float',
2982
- type: 'number',
2983
- },
2984
- max_heating_set_point_fahrenheit: {
2985
- format: 'float',
2986
- type: 'number',
2987
- },
2988
- min_cooling_set_point_celsius: {
2989
- format: 'float',
2990
- type: 'number',
2991
- },
2992
- min_cooling_set_point_fahrenheit: {
2993
- format: 'float',
2994
- type: 'number',
2995
- },
2996
- min_heating_cooling_delta_celsius: {
2865
+ cooling_set_point_celsius: {
2997
2866
  format: 'float',
2998
2867
  type: 'number',
2999
2868
  },
3000
- min_heating_cooling_delta_fahrenheit: {
2869
+ cooling_set_point_fahrenheit: {
3001
2870
  format: 'float',
3002
2871
  type: 'number',
3003
2872
  },
3004
- min_heating_set_point_celsius: {
3005
- format: 'float',
3006
- type: 'number',
2873
+ created_at: { format: 'date-time', type: 'string' },
2874
+ device_id: { format: 'uuid', type: 'string' },
2875
+ errors: {
2876
+ description: '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.',
3007
2877
  },
3008
- min_heating_set_point_fahrenheit: {
2878
+ heating_set_point_celsius: {
3009
2879
  format: 'float',
3010
2880
  type: 'number',
3011
2881
  },
3012
- relative_humidity: {
2882
+ heating_set_point_fahrenheit: {
3013
2883
  format: 'float',
3014
- maximum: 1,
3015
- minimum: 0,
3016
2884
  type: 'number',
3017
2885
  },
3018
- temperature_celsius: {
3019
- format: 'float',
3020
- type: 'number',
2886
+ hvac_mode_setting: {
2887
+ enum: ['off', 'heat', 'cool', 'heat_cool'],
2888
+ type: 'string',
3021
2889
  },
3022
- temperature_fahrenheit: {
3023
- format: 'float',
3024
- type: 'number',
2890
+ manual_override_allowed: { type: 'boolean' },
2891
+ name: { type: 'string' },
2892
+ schedule_ends_at: { type: 'string' },
2893
+ schedule_starts_at: { type: 'string' },
2894
+ schedule_type: {
2895
+ enum: ['time_bound'],
2896
+ type: 'string',
3025
2897
  },
3026
2898
  },
2899
+ required: [
2900
+ 'climate_setting_schedule_id',
2901
+ 'schedule_type',
2902
+ 'device_id',
2903
+ 'schedule_starts_at',
2904
+ 'schedule_ends_at',
2905
+ 'created_at',
2906
+ ],
3027
2907
  type: 'object',
3028
2908
  },
3029
- {
2909
+ available_hvac_mode_settings: {
2910
+ items: {
2911
+ enum: ['off', 'heat', 'cool', 'heat_cool'],
2912
+ type: 'string',
2913
+ },
2914
+ type: 'array',
2915
+ },
2916
+ can_enable_automatic_cooling: { type: 'boolean' },
2917
+ can_enable_automatic_heating: { type: 'boolean' },
2918
+ current_climate_setting: {
3030
2919
  properties: {
3031
- active_climate_setting_schedule: {
3032
- properties: {
3033
- automatic_cooling_enabled: { type: 'boolean' },
3034
- automatic_heating_enabled: { type: 'boolean' },
3035
- climate_setting_schedule_id: {
3036
- format: 'uuid',
3037
- type: 'string',
3038
- },
3039
- cooling_set_point_celsius: {
3040
- format: 'float',
3041
- type: 'number',
3042
- },
3043
- cooling_set_point_fahrenheit: {
3044
- format: 'float',
3045
- type: 'number',
3046
- },
3047
- created_at: {
3048
- format: 'date-time',
3049
- type: 'string',
3050
- },
3051
- device_id: { format: 'uuid', type: 'string' },
3052
- errors: {
3053
- description: '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.',
3054
- },
3055
- heating_set_point_celsius: {
3056
- format: 'float',
3057
- type: 'number',
3058
- },
3059
- heating_set_point_fahrenheit: {
3060
- format: 'float',
3061
- type: 'number',
3062
- },
3063
- hvac_mode_setting: {
3064
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3065
- type: 'string',
3066
- },
3067
- manual_override_allowed: { type: 'boolean' },
3068
- name: { type: 'string' },
3069
- schedule_ends_at: { type: 'string' },
3070
- schedule_starts_at: { type: 'string' },
3071
- schedule_type: {
3072
- enum: ['time_bound'],
3073
- type: 'string',
3074
- },
3075
- },
3076
- required: [
3077
- 'climate_setting_schedule_id',
3078
- 'schedule_type',
3079
- 'device_id',
3080
- 'schedule_starts_at',
3081
- 'schedule_ends_at',
3082
- 'created_at',
3083
- ],
3084
- type: 'object',
3085
- },
3086
- available_hvac_mode_settings: {
3087
- items: {
3088
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3089
- type: 'string',
3090
- },
3091
- type: 'array',
3092
- },
3093
- can_enable_automatic_cooling: { type: 'boolean' },
3094
- can_enable_automatic_heating: { type: 'boolean' },
3095
- current_climate_setting: {
3096
- properties: {
3097
- automatic_cooling_enabled: { type: 'boolean' },
3098
- automatic_heating_enabled: { type: 'boolean' },
3099
- cooling_set_point_celsius: {
3100
- format: 'float',
3101
- type: 'number',
3102
- },
3103
- cooling_set_point_fahrenheit: {
3104
- format: 'float',
3105
- type: 'number',
3106
- },
3107
- heating_set_point_celsius: {
3108
- format: 'float',
3109
- type: 'number',
3110
- },
3111
- heating_set_point_fahrenheit: {
3112
- format: 'float',
3113
- type: 'number',
3114
- },
3115
- hvac_mode_setting: {
3116
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3117
- type: 'string',
3118
- },
3119
- manual_override_allowed: { type: 'boolean' },
3120
- },
3121
- required: [
3122
- 'automatic_heating_enabled',
3123
- 'automatic_cooling_enabled',
3124
- 'hvac_mode_setting',
3125
- 'manual_override_allowed',
3126
- ],
3127
- type: 'object',
3128
- },
3129
- default_climate_setting: {
3130
- properties: {
3131
- automatic_cooling_enabled: { type: 'boolean' },
3132
- automatic_heating_enabled: { type: 'boolean' },
3133
- cooling_set_point_celsius: {
3134
- format: 'float',
3135
- type: 'number',
3136
- },
3137
- cooling_set_point_fahrenheit: {
3138
- format: 'float',
3139
- type: 'number',
3140
- },
3141
- heating_set_point_celsius: {
3142
- format: 'float',
3143
- type: 'number',
3144
- },
3145
- heating_set_point_fahrenheit: {
3146
- format: 'float',
3147
- type: 'number',
3148
- },
3149
- hvac_mode_setting: {
3150
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3151
- type: 'string',
3152
- },
3153
- manual_override_allowed: { type: 'boolean' },
3154
- },
3155
- required: [
3156
- 'automatic_heating_enabled',
3157
- 'automatic_cooling_enabled',
3158
- 'hvac_mode_setting',
3159
- 'manual_override_allowed',
3160
- ],
3161
- type: 'object',
3162
- },
3163
- fan_mode_setting: {
3164
- enum: ['auto', 'on'],
3165
- type: 'string',
3166
- },
3167
- is_climate_setting_schedule_active: {
3168
- type: 'boolean',
3169
- },
3170
- is_cooling: { type: 'boolean' },
3171
- is_cooling_available: {
3172
- enum: [false],
3173
- type: 'boolean',
3174
- },
3175
- is_fan_running: { type: 'boolean' },
3176
- is_heating: { type: 'boolean' },
3177
- is_heating_available: {
3178
- enum: [true],
3179
- type: 'boolean',
3180
- },
3181
- is_temporary_manual_override_active: {
3182
- type: 'boolean',
3183
- },
3184
- max_heating_set_point_celsius: {
3185
- format: 'float',
3186
- type: 'number',
3187
- },
3188
- max_heating_set_point_fahrenheit: {
3189
- format: 'float',
3190
- type: 'number',
3191
- },
3192
- min_heating_set_point_celsius: {
2920
+ automatic_cooling_enabled: { type: 'boolean' },
2921
+ automatic_heating_enabled: { type: 'boolean' },
2922
+ cooling_set_point_celsius: {
3193
2923
  format: 'float',
3194
2924
  type: 'number',
3195
2925
  },
3196
- min_heating_set_point_fahrenheit: {
2926
+ cooling_set_point_fahrenheit: {
3197
2927
  format: 'float',
3198
2928
  type: 'number',
3199
2929
  },
3200
- relative_humidity: {
2930
+ heating_set_point_celsius: {
3201
2931
  format: 'float',
3202
- maximum: 1,
3203
- minimum: 0,
3204
2932
  type: 'number',
3205
2933
  },
3206
- temperature_celsius: {
2934
+ heating_set_point_fahrenheit: {
3207
2935
  format: 'float',
3208
2936
  type: 'number',
3209
2937
  },
3210
- temperature_fahrenheit: {
3211
- format: 'float',
3212
- type: 'number',
2938
+ hvac_mode_setting: {
2939
+ enum: ['off', 'heat', 'cool', 'heat_cool'],
2940
+ type: 'string',
3213
2941
  },
2942
+ manual_override_allowed: { type: 'boolean' },
3214
2943
  },
2944
+ required: [
2945
+ 'automatic_heating_enabled',
2946
+ 'automatic_cooling_enabled',
2947
+ 'hvac_mode_setting',
2948
+ 'manual_override_allowed',
2949
+ ],
3215
2950
  type: 'object',
3216
2951
  },
3217
- {
2952
+ default_climate_setting: {
3218
2953
  properties: {
3219
- active_climate_setting_schedule: {
3220
- properties: {
3221
- automatic_cooling_enabled: { type: 'boolean' },
3222
- automatic_heating_enabled: { type: 'boolean' },
3223
- climate_setting_schedule_id: {
3224
- format: 'uuid',
3225
- type: 'string',
3226
- },
3227
- cooling_set_point_celsius: {
3228
- format: 'float',
3229
- type: 'number',
3230
- },
3231
- cooling_set_point_fahrenheit: {
3232
- format: 'float',
3233
- type: 'number',
3234
- },
3235
- created_at: {
3236
- format: 'date-time',
3237
- type: 'string',
3238
- },
3239
- device_id: { format: 'uuid', type: 'string' },
3240
- errors: {
3241
- description: '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.',
3242
- },
3243
- heating_set_point_celsius: {
3244
- format: 'float',
3245
- type: 'number',
3246
- },
3247
- heating_set_point_fahrenheit: {
3248
- format: 'float',
3249
- type: 'number',
3250
- },
3251
- hvac_mode_setting: {
3252
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3253
- type: 'string',
3254
- },
3255
- manual_override_allowed: { type: 'boolean' },
3256
- name: { type: 'string' },
3257
- schedule_ends_at: { type: 'string' },
3258
- schedule_starts_at: { type: 'string' },
3259
- schedule_type: {
3260
- enum: ['time_bound'],
3261
- type: 'string',
3262
- },
3263
- },
3264
- required: [
3265
- 'climate_setting_schedule_id',
3266
- 'schedule_type',
3267
- 'device_id',
3268
- 'schedule_starts_at',
3269
- 'schedule_ends_at',
3270
- 'created_at',
3271
- ],
3272
- type: 'object',
3273
- },
3274
- available_hvac_mode_settings: {
3275
- items: {
3276
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3277
- type: 'string',
3278
- },
3279
- type: 'array',
3280
- },
3281
- can_enable_automatic_cooling: { type: 'boolean' },
3282
- can_enable_automatic_heating: { type: 'boolean' },
3283
- current_climate_setting: {
3284
- properties: {
3285
- automatic_cooling_enabled: { type: 'boolean' },
3286
- automatic_heating_enabled: { type: 'boolean' },
3287
- cooling_set_point_celsius: {
3288
- format: 'float',
3289
- type: 'number',
3290
- },
3291
- cooling_set_point_fahrenheit: {
3292
- format: 'float',
3293
- type: 'number',
3294
- },
3295
- heating_set_point_celsius: {
3296
- format: 'float',
3297
- type: 'number',
3298
- },
3299
- heating_set_point_fahrenheit: {
3300
- format: 'float',
3301
- type: 'number',
3302
- },
3303
- hvac_mode_setting: {
3304
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3305
- type: 'string',
3306
- },
3307
- manual_override_allowed: { type: 'boolean' },
3308
- },
3309
- required: [
3310
- 'automatic_heating_enabled',
3311
- 'automatic_cooling_enabled',
3312
- 'hvac_mode_setting',
3313
- 'manual_override_allowed',
3314
- ],
3315
- type: 'object',
3316
- },
3317
- default_climate_setting: {
3318
- properties: {
3319
- automatic_cooling_enabled: { type: 'boolean' },
3320
- automatic_heating_enabled: { type: 'boolean' },
3321
- cooling_set_point_celsius: {
3322
- format: 'float',
3323
- type: 'number',
3324
- },
3325
- cooling_set_point_fahrenheit: {
3326
- format: 'float',
3327
- type: 'number',
3328
- },
3329
- heating_set_point_celsius: {
3330
- format: 'float',
3331
- type: 'number',
3332
- },
3333
- heating_set_point_fahrenheit: {
3334
- format: 'float',
3335
- type: 'number',
3336
- },
3337
- hvac_mode_setting: {
3338
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3339
- type: 'string',
3340
- },
3341
- manual_override_allowed: { type: 'boolean' },
3342
- },
3343
- required: [
3344
- 'automatic_heating_enabled',
3345
- 'automatic_cooling_enabled',
3346
- 'hvac_mode_setting',
3347
- 'manual_override_allowed',
3348
- ],
3349
- type: 'object',
3350
- },
3351
- fan_mode_setting: {
3352
- enum: ['auto', 'on'],
3353
- type: 'string',
3354
- },
3355
- is_climate_setting_schedule_active: {
3356
- type: 'boolean',
3357
- },
3358
- is_cooling: { type: 'boolean' },
3359
- is_cooling_available: {
3360
- enum: [true],
3361
- type: 'boolean',
3362
- },
3363
- is_fan_running: { type: 'boolean' },
3364
- is_heating: { type: 'boolean' },
3365
- is_heating_available: {
3366
- enum: [false],
3367
- type: 'boolean',
3368
- },
3369
- is_temporary_manual_override_active: {
3370
- type: 'boolean',
3371
- },
3372
- max_cooling_set_point_celsius: {
2954
+ automatic_cooling_enabled: { type: 'boolean' },
2955
+ automatic_heating_enabled: { type: 'boolean' },
2956
+ cooling_set_point_celsius: {
3373
2957
  format: 'float',
3374
2958
  type: 'number',
3375
2959
  },
3376
- max_cooling_set_point_fahrenheit: {
2960
+ cooling_set_point_fahrenheit: {
3377
2961
  format: 'float',
3378
2962
  type: 'number',
3379
2963
  },
3380
- min_cooling_set_point_celsius: {
2964
+ heating_set_point_celsius: {
3381
2965
  format: 'float',
3382
2966
  type: 'number',
3383
2967
  },
3384
- min_cooling_set_point_fahrenheit: {
2968
+ heating_set_point_fahrenheit: {
3385
2969
  format: 'float',
3386
2970
  type: 'number',
3387
2971
  },
3388
- relative_humidity: {
3389
- format: 'float',
3390
- maximum: 1,
3391
- minimum: 0,
3392
- type: 'number',
3393
- },
3394
- temperature_celsius: {
3395
- format: 'float',
3396
- type: 'number',
3397
- },
3398
- temperature_fahrenheit: {
3399
- format: 'float',
3400
- type: 'number',
2972
+ hvac_mode_setting: {
2973
+ enum: ['off', 'heat', 'cool', 'heat_cool'],
2974
+ type: 'string',
3401
2975
  },
2976
+ manual_override_allowed: { type: 'boolean' },
3402
2977
  },
2978
+ required: [
2979
+ 'automatic_heating_enabled',
2980
+ 'automatic_cooling_enabled',
2981
+ 'hvac_mode_setting',
2982
+ 'manual_override_allowed',
2983
+ ],
3403
2984
  type: 'object',
3404
2985
  },
3405
- ],
2986
+ fan_mode_setting: {
2987
+ enum: ['auto', 'on'],
2988
+ type: 'string',
2989
+ },
2990
+ is_climate_setting_schedule_active: { type: 'boolean' },
2991
+ is_cooling: { type: 'boolean' },
2992
+ is_fan_running: { type: 'boolean' },
2993
+ is_heating: { type: 'boolean' },
2994
+ is_temporary_manual_override_active: { type: 'boolean' },
2995
+ max_cooling_set_point_celsius: {
2996
+ format: 'float',
2997
+ type: 'number',
2998
+ },
2999
+ max_cooling_set_point_fahrenheit: {
3000
+ format: 'float',
3001
+ type: 'number',
3002
+ },
3003
+ max_heating_set_point_celsius: {
3004
+ format: 'float',
3005
+ type: 'number',
3006
+ },
3007
+ max_heating_set_point_fahrenheit: {
3008
+ format: 'float',
3009
+ type: 'number',
3010
+ },
3011
+ min_cooling_set_point_celsius: {
3012
+ format: 'float',
3013
+ type: 'number',
3014
+ },
3015
+ min_cooling_set_point_fahrenheit: {
3016
+ format: 'float',
3017
+ type: 'number',
3018
+ },
3019
+ min_heating_cooling_delta_celsius: {
3020
+ format: 'float',
3021
+ type: 'number',
3022
+ },
3023
+ min_heating_cooling_delta_fahrenheit: {
3024
+ format: 'float',
3025
+ type: 'number',
3026
+ },
3027
+ min_heating_set_point_celsius: {
3028
+ format: 'float',
3029
+ type: 'number',
3030
+ },
3031
+ min_heating_set_point_fahrenheit: {
3032
+ format: 'float',
3033
+ type: 'number',
3034
+ },
3035
+ relative_humidity: {
3036
+ format: 'float',
3037
+ maximum: 1,
3038
+ minimum: 0,
3039
+ type: 'number',
3040
+ },
3041
+ temperature_celsius: { format: 'float', type: 'number' },
3042
+ temperature_fahrenheit: {
3043
+ format: 'float',
3044
+ type: 'number',
3045
+ },
3046
+ },
3047
+ type: 'object',
3406
3048
  },
3407
3049
  ],
3408
3050
  },