@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.
@@ -533,6 +533,29 @@ export default {
533
533
  required: ['created_at', 'message', 'error_code'],
534
534
  type: 'object',
535
535
  },
536
+ {
537
+ properties: {
538
+ created_at: {
539
+ description:
540
+ 'Date and time at which Seam created the error.',
541
+ format: 'date-time',
542
+ type: 'string',
543
+ },
544
+ error_code: {
545
+ description:
546
+ 'You have reached the maximum number of users allowed for your site; Please contact Salto support to increase your user limit.',
547
+ enum: ['salto_site_user_limit_reached'],
548
+ type: 'string',
549
+ },
550
+ message: {
551
+ description:
552
+ 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
553
+ type: 'string',
554
+ },
555
+ },
556
+ required: ['created_at', 'message', 'error_code'],
557
+ type: 'object',
558
+ },
536
559
  ],
537
560
  },
538
561
  type: 'array',
@@ -596,10 +619,32 @@ export default {
596
619
  type: 'object',
597
620
  },
598
621
  warnings: {
599
- items: { properties: {}, type: 'object' },
622
+ description: 'Warnings associated with the `acs_system`.',
623
+ items: {
624
+ description: 'Warning associated with the `acs_system`.',
625
+ properties: {
626
+ created_at: {
627
+ description:
628
+ 'Date and time at which Seam created the warning.',
629
+ format: 'date-time',
630
+ type: 'string',
631
+ },
632
+ message: {
633
+ description:
634
+ 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
635
+ type: 'string',
636
+ },
637
+ warning_code: {
638
+ description:
639
+ '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.',
640
+ enum: ['salto_site_user_limit_almost_reached'],
641
+ type: 'string',
642
+ },
643
+ },
644
+ required: ['created_at', 'message', 'warning_code'],
645
+ type: 'object',
646
+ },
600
647
  type: 'array',
601
- 'x-undocumented':
602
- 'Currently, no warnings defined for `acs_system`s.',
603
648
  },
604
649
  workspace_id: {
605
650
  description:
@@ -2875,599 +2920,199 @@ export default {
2875
2920
  type: 'object',
2876
2921
  },
2877
2922
  {
2878
- oneOf: [
2879
- {
2923
+ properties: {
2924
+ active_climate_setting_schedule: {
2880
2925
  properties: {
2881
- active_climate_setting_schedule: {
2882
- properties: {
2883
- automatic_cooling_enabled: { type: 'boolean' },
2884
- automatic_heating_enabled: { type: 'boolean' },
2885
- climate_setting_schedule_id: {
2886
- format: 'uuid',
2887
- type: 'string',
2888
- },
2889
- cooling_set_point_celsius: {
2890
- format: 'float',
2891
- type: 'number',
2892
- },
2893
- cooling_set_point_fahrenheit: {
2894
- format: 'float',
2895
- type: 'number',
2896
- },
2897
- created_at: {
2898
- format: 'date-time',
2899
- type: 'string',
2900
- },
2901
- device_id: { format: 'uuid', type: 'string' },
2902
- errors: {
2903
- description:
2904
- '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.',
2905
- },
2906
- heating_set_point_celsius: {
2907
- format: 'float',
2908
- type: 'number',
2909
- },
2910
- heating_set_point_fahrenheit: {
2911
- format: 'float',
2912
- type: 'number',
2913
- },
2914
- hvac_mode_setting: {
2915
- enum: ['off', 'heat', 'cool', 'heat_cool'],
2916
- type: 'string',
2917
- },
2918
- manual_override_allowed: { type: 'boolean' },
2919
- name: { type: 'string' },
2920
- schedule_ends_at: { type: 'string' },
2921
- schedule_starts_at: { type: 'string' },
2922
- schedule_type: {
2923
- enum: ['time_bound'],
2924
- type: 'string',
2925
- },
2926
- },
2927
- required: [
2928
- 'climate_setting_schedule_id',
2929
- 'schedule_type',
2930
- 'device_id',
2931
- 'schedule_starts_at',
2932
- 'schedule_ends_at',
2933
- 'created_at',
2934
- ],
2935
- type: 'object',
2936
- },
2937
- available_hvac_mode_settings: {
2938
- items: {
2939
- enum: ['off', 'heat', 'cool', 'heat_cool'],
2940
- type: 'string',
2941
- },
2942
- type: 'array',
2943
- },
2944
- can_enable_automatic_cooling: { type: 'boolean' },
2945
- can_enable_automatic_heating: { type: 'boolean' },
2946
- current_climate_setting: {
2947
- properties: {
2948
- automatic_cooling_enabled: { type: 'boolean' },
2949
- automatic_heating_enabled: { type: 'boolean' },
2950
- cooling_set_point_celsius: {
2951
- format: 'float',
2952
- type: 'number',
2953
- },
2954
- cooling_set_point_fahrenheit: {
2955
- format: 'float',
2956
- type: 'number',
2957
- },
2958
- heating_set_point_celsius: {
2959
- format: 'float',
2960
- type: 'number',
2961
- },
2962
- heating_set_point_fahrenheit: {
2963
- format: 'float',
2964
- type: 'number',
2965
- },
2966
- hvac_mode_setting: {
2967
- enum: ['off', 'heat', 'cool', 'heat_cool'],
2968
- type: 'string',
2969
- },
2970
- manual_override_allowed: { type: 'boolean' },
2971
- },
2972
- required: [
2973
- 'automatic_heating_enabled',
2974
- 'automatic_cooling_enabled',
2975
- 'hvac_mode_setting',
2976
- 'manual_override_allowed',
2977
- ],
2978
- type: 'object',
2979
- },
2980
- default_climate_setting: {
2981
- properties: {
2982
- automatic_cooling_enabled: { type: 'boolean' },
2983
- automatic_heating_enabled: { type: 'boolean' },
2984
- cooling_set_point_celsius: {
2985
- format: 'float',
2986
- type: 'number',
2987
- },
2988
- cooling_set_point_fahrenheit: {
2989
- format: 'float',
2990
- type: 'number',
2991
- },
2992
- heating_set_point_celsius: {
2993
- format: 'float',
2994
- type: 'number',
2995
- },
2996
- heating_set_point_fahrenheit: {
2997
- format: 'float',
2998
- type: 'number',
2999
- },
3000
- hvac_mode_setting: {
3001
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3002
- type: 'string',
3003
- },
3004
- manual_override_allowed: { type: 'boolean' },
3005
- },
3006
- required: [
3007
- 'automatic_heating_enabled',
3008
- 'automatic_cooling_enabled',
3009
- 'hvac_mode_setting',
3010
- 'manual_override_allowed',
3011
- ],
3012
- type: 'object',
3013
- },
3014
- fan_mode_setting: {
3015
- enum: ['auto', 'on'],
2926
+ automatic_cooling_enabled: { type: 'boolean' },
2927
+ automatic_heating_enabled: { type: 'boolean' },
2928
+ climate_setting_schedule_id: {
2929
+ format: 'uuid',
3016
2930
  type: 'string',
3017
2931
  },
3018
- is_climate_setting_schedule_active: {
3019
- type: 'boolean',
3020
- },
3021
- is_cooling: { type: 'boolean' },
3022
- is_cooling_available: {
3023
- enum: [true],
3024
- type: 'boolean',
3025
- },
3026
- is_fan_running: { type: 'boolean' },
3027
- is_heating: { type: 'boolean' },
3028
- is_heating_available: {
3029
- enum: [true],
3030
- type: 'boolean',
3031
- },
3032
- is_temporary_manual_override_active: {
3033
- type: 'boolean',
3034
- },
3035
- max_cooling_set_point_celsius: {
3036
- format: 'float',
3037
- type: 'number',
3038
- },
3039
- max_cooling_set_point_fahrenheit: {
3040
- format: 'float',
3041
- type: 'number',
3042
- },
3043
- max_heating_set_point_celsius: {
2932
+ cooling_set_point_celsius: {
3044
2933
  format: 'float',
3045
2934
  type: 'number',
3046
2935
  },
3047
- max_heating_set_point_fahrenheit: {
2936
+ cooling_set_point_fahrenheit: {
3048
2937
  format: 'float',
3049
2938
  type: 'number',
3050
2939
  },
3051
- min_cooling_set_point_celsius: {
3052
- format: 'float',
3053
- type: 'number',
3054
- },
3055
- min_cooling_set_point_fahrenheit: {
3056
- format: 'float',
3057
- type: 'number',
3058
- },
3059
- min_heating_cooling_delta_celsius: {
3060
- format: 'float',
3061
- type: 'number',
3062
- },
3063
- min_heating_cooling_delta_fahrenheit: {
3064
- format: 'float',
3065
- type: 'number',
3066
- },
3067
- min_heating_set_point_celsius: {
3068
- format: 'float',
3069
- type: 'number',
2940
+ created_at: { format: 'date-time', type: 'string' },
2941
+ device_id: { format: 'uuid', type: 'string' },
2942
+ errors: {
2943
+ description:
2944
+ '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.',
3070
2945
  },
3071
- min_heating_set_point_fahrenheit: {
2946
+ heating_set_point_celsius: {
3072
2947
  format: 'float',
3073
2948
  type: 'number',
3074
2949
  },
3075
- relative_humidity: {
2950
+ heating_set_point_fahrenheit: {
3076
2951
  format: 'float',
3077
- maximum: 1,
3078
- minimum: 0,
3079
2952
  type: 'number',
3080
2953
  },
3081
- temperature_celsius: {
3082
- format: 'float',
3083
- type: 'number',
2954
+ hvac_mode_setting: {
2955
+ enum: ['off', 'heat', 'cool', 'heat_cool'],
2956
+ type: 'string',
3084
2957
  },
3085
- temperature_fahrenheit: {
3086
- format: 'float',
3087
- type: 'number',
2958
+ manual_override_allowed: { type: 'boolean' },
2959
+ name: { type: 'string' },
2960
+ schedule_ends_at: { type: 'string' },
2961
+ schedule_starts_at: { type: 'string' },
2962
+ schedule_type: {
2963
+ enum: ['time_bound'],
2964
+ type: 'string',
3088
2965
  },
3089
2966
  },
2967
+ required: [
2968
+ 'climate_setting_schedule_id',
2969
+ 'schedule_type',
2970
+ 'device_id',
2971
+ 'schedule_starts_at',
2972
+ 'schedule_ends_at',
2973
+ 'created_at',
2974
+ ],
3090
2975
  type: 'object',
3091
2976
  },
3092
- {
2977
+ available_hvac_mode_settings: {
2978
+ items: {
2979
+ enum: ['off', 'heat', 'cool', 'heat_cool'],
2980
+ type: 'string',
2981
+ },
2982
+ type: 'array',
2983
+ },
2984
+ can_enable_automatic_cooling: { type: 'boolean' },
2985
+ can_enable_automatic_heating: { type: 'boolean' },
2986
+ current_climate_setting: {
3093
2987
  properties: {
3094
- active_climate_setting_schedule: {
3095
- properties: {
3096
- automatic_cooling_enabled: { type: 'boolean' },
3097
- automatic_heating_enabled: { type: 'boolean' },
3098
- climate_setting_schedule_id: {
3099
- format: 'uuid',
3100
- type: 'string',
3101
- },
3102
- cooling_set_point_celsius: {
3103
- format: 'float',
3104
- type: 'number',
3105
- },
3106
- cooling_set_point_fahrenheit: {
3107
- format: 'float',
3108
- type: 'number',
3109
- },
3110
- created_at: {
3111
- format: 'date-time',
3112
- type: 'string',
3113
- },
3114
- device_id: { format: 'uuid', type: 'string' },
3115
- errors: {
3116
- description:
3117
- '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.',
3118
- },
3119
- heating_set_point_celsius: {
3120
- format: 'float',
3121
- type: 'number',
3122
- },
3123
- heating_set_point_fahrenheit: {
3124
- format: 'float',
3125
- type: 'number',
3126
- },
3127
- hvac_mode_setting: {
3128
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3129
- type: 'string',
3130
- },
3131
- manual_override_allowed: { type: 'boolean' },
3132
- name: { type: 'string' },
3133
- schedule_ends_at: { type: 'string' },
3134
- schedule_starts_at: { type: 'string' },
3135
- schedule_type: {
3136
- enum: ['time_bound'],
3137
- type: 'string',
3138
- },
3139
- },
3140
- required: [
3141
- 'climate_setting_schedule_id',
3142
- 'schedule_type',
3143
- 'device_id',
3144
- 'schedule_starts_at',
3145
- 'schedule_ends_at',
3146
- 'created_at',
3147
- ],
3148
- type: 'object',
3149
- },
3150
- available_hvac_mode_settings: {
3151
- items: {
3152
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3153
- type: 'string',
3154
- },
3155
- type: 'array',
3156
- },
3157
- can_enable_automatic_cooling: { type: 'boolean' },
3158
- can_enable_automatic_heating: { type: 'boolean' },
3159
- current_climate_setting: {
3160
- properties: {
3161
- automatic_cooling_enabled: { type: 'boolean' },
3162
- automatic_heating_enabled: { type: 'boolean' },
3163
- cooling_set_point_celsius: {
3164
- format: 'float',
3165
- type: 'number',
3166
- },
3167
- cooling_set_point_fahrenheit: {
3168
- format: 'float',
3169
- type: 'number',
3170
- },
3171
- heating_set_point_celsius: {
3172
- format: 'float',
3173
- type: 'number',
3174
- },
3175
- heating_set_point_fahrenheit: {
3176
- format: 'float',
3177
- type: 'number',
3178
- },
3179
- hvac_mode_setting: {
3180
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3181
- type: 'string',
3182
- },
3183
- manual_override_allowed: { type: 'boolean' },
3184
- },
3185
- required: [
3186
- 'automatic_heating_enabled',
3187
- 'automatic_cooling_enabled',
3188
- 'hvac_mode_setting',
3189
- 'manual_override_allowed',
3190
- ],
3191
- type: 'object',
3192
- },
3193
- default_climate_setting: {
3194
- properties: {
3195
- automatic_cooling_enabled: { type: 'boolean' },
3196
- automatic_heating_enabled: { type: 'boolean' },
3197
- cooling_set_point_celsius: {
3198
- format: 'float',
3199
- type: 'number',
3200
- },
3201
- cooling_set_point_fahrenheit: {
3202
- format: 'float',
3203
- type: 'number',
3204
- },
3205
- heating_set_point_celsius: {
3206
- format: 'float',
3207
- type: 'number',
3208
- },
3209
- heating_set_point_fahrenheit: {
3210
- format: 'float',
3211
- type: 'number',
3212
- },
3213
- hvac_mode_setting: {
3214
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3215
- type: 'string',
3216
- },
3217
- manual_override_allowed: { type: 'boolean' },
3218
- },
3219
- required: [
3220
- 'automatic_heating_enabled',
3221
- 'automatic_cooling_enabled',
3222
- 'hvac_mode_setting',
3223
- 'manual_override_allowed',
3224
- ],
3225
- type: 'object',
3226
- },
3227
- fan_mode_setting: {
3228
- enum: ['auto', 'on'],
3229
- type: 'string',
3230
- },
3231
- is_climate_setting_schedule_active: {
3232
- type: 'boolean',
3233
- },
3234
- is_cooling: { type: 'boolean' },
3235
- is_cooling_available: {
3236
- enum: [false],
3237
- type: 'boolean',
3238
- },
3239
- is_fan_running: { type: 'boolean' },
3240
- is_heating: { type: 'boolean' },
3241
- is_heating_available: {
3242
- enum: [true],
3243
- type: 'boolean',
3244
- },
3245
- is_temporary_manual_override_active: {
3246
- type: 'boolean',
3247
- },
3248
- max_heating_set_point_celsius: {
3249
- format: 'float',
3250
- type: 'number',
3251
- },
3252
- max_heating_set_point_fahrenheit: {
2988
+ automatic_cooling_enabled: { type: 'boolean' },
2989
+ automatic_heating_enabled: { type: 'boolean' },
2990
+ cooling_set_point_celsius: {
3253
2991
  format: 'float',
3254
2992
  type: 'number',
3255
2993
  },
3256
- min_heating_set_point_celsius: {
2994
+ cooling_set_point_fahrenheit: {
3257
2995
  format: 'float',
3258
2996
  type: 'number',
3259
2997
  },
3260
- min_heating_set_point_fahrenheit: {
2998
+ heating_set_point_celsius: {
3261
2999
  format: 'float',
3262
3000
  type: 'number',
3263
3001
  },
3264
- relative_humidity: {
3002
+ heating_set_point_fahrenheit: {
3265
3003
  format: 'float',
3266
- maximum: 1,
3267
- minimum: 0,
3268
3004
  type: 'number',
3269
3005
  },
3270
- temperature_celsius: {
3271
- format: 'float',
3272
- type: 'number',
3273
- },
3274
- temperature_fahrenheit: {
3275
- format: 'float',
3276
- type: 'number',
3006
+ hvac_mode_setting: {
3007
+ enum: ['off', 'heat', 'cool', 'heat_cool'],
3008
+ type: 'string',
3277
3009
  },
3010
+ manual_override_allowed: { type: 'boolean' },
3278
3011
  },
3012
+ required: [
3013
+ 'automatic_heating_enabled',
3014
+ 'automatic_cooling_enabled',
3015
+ 'hvac_mode_setting',
3016
+ 'manual_override_allowed',
3017
+ ],
3279
3018
  type: 'object',
3280
3019
  },
3281
- {
3020
+ default_climate_setting: {
3282
3021
  properties: {
3283
- active_climate_setting_schedule: {
3284
- properties: {
3285
- automatic_cooling_enabled: { type: 'boolean' },
3286
- automatic_heating_enabled: { type: 'boolean' },
3287
- climate_setting_schedule_id: {
3288
- format: 'uuid',
3289
- type: 'string',
3290
- },
3291
- cooling_set_point_celsius: {
3292
- format: 'float',
3293
- type: 'number',
3294
- },
3295
- cooling_set_point_fahrenheit: {
3296
- format: 'float',
3297
- type: 'number',
3298
- },
3299
- created_at: {
3300
- format: 'date-time',
3301
- type: 'string',
3302
- },
3303
- device_id: { format: 'uuid', type: 'string' },
3304
- errors: {
3305
- description:
3306
- '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.',
3307
- },
3308
- heating_set_point_celsius: {
3309
- format: 'float',
3310
- type: 'number',
3311
- },
3312
- heating_set_point_fahrenheit: {
3313
- format: 'float',
3314
- type: 'number',
3315
- },
3316
- hvac_mode_setting: {
3317
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3318
- type: 'string',
3319
- },
3320
- manual_override_allowed: { type: 'boolean' },
3321
- name: { type: 'string' },
3322
- schedule_ends_at: { type: 'string' },
3323
- schedule_starts_at: { type: 'string' },
3324
- schedule_type: {
3325
- enum: ['time_bound'],
3326
- type: 'string',
3327
- },
3328
- },
3329
- required: [
3330
- 'climate_setting_schedule_id',
3331
- 'schedule_type',
3332
- 'device_id',
3333
- 'schedule_starts_at',
3334
- 'schedule_ends_at',
3335
- 'created_at',
3336
- ],
3337
- type: 'object',
3338
- },
3339
- available_hvac_mode_settings: {
3340
- items: {
3341
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3342
- type: 'string',
3343
- },
3344
- type: 'array',
3345
- },
3346
- can_enable_automatic_cooling: { type: 'boolean' },
3347
- can_enable_automatic_heating: { type: 'boolean' },
3348
- current_climate_setting: {
3349
- properties: {
3350
- automatic_cooling_enabled: { type: 'boolean' },
3351
- automatic_heating_enabled: { type: 'boolean' },
3352
- cooling_set_point_celsius: {
3353
- format: 'float',
3354
- type: 'number',
3355
- },
3356
- cooling_set_point_fahrenheit: {
3357
- format: 'float',
3358
- type: 'number',
3359
- },
3360
- heating_set_point_celsius: {
3361
- format: 'float',
3362
- type: 'number',
3363
- },
3364
- heating_set_point_fahrenheit: {
3365
- format: 'float',
3366
- type: 'number',
3367
- },
3368
- hvac_mode_setting: {
3369
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3370
- type: 'string',
3371
- },
3372
- manual_override_allowed: { type: 'boolean' },
3373
- },
3374
- required: [
3375
- 'automatic_heating_enabled',
3376
- 'automatic_cooling_enabled',
3377
- 'hvac_mode_setting',
3378
- 'manual_override_allowed',
3379
- ],
3380
- type: 'object',
3381
- },
3382
- default_climate_setting: {
3383
- properties: {
3384
- automatic_cooling_enabled: { type: 'boolean' },
3385
- automatic_heating_enabled: { type: 'boolean' },
3386
- cooling_set_point_celsius: {
3387
- format: 'float',
3388
- type: 'number',
3389
- },
3390
- cooling_set_point_fahrenheit: {
3391
- format: 'float',
3392
- type: 'number',
3393
- },
3394
- heating_set_point_celsius: {
3395
- format: 'float',
3396
- type: 'number',
3397
- },
3398
- heating_set_point_fahrenheit: {
3399
- format: 'float',
3400
- type: 'number',
3401
- },
3402
- hvac_mode_setting: {
3403
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3404
- type: 'string',
3405
- },
3406
- manual_override_allowed: { type: 'boolean' },
3407
- },
3408
- required: [
3409
- 'automatic_heating_enabled',
3410
- 'automatic_cooling_enabled',
3411
- 'hvac_mode_setting',
3412
- 'manual_override_allowed',
3413
- ],
3414
- type: 'object',
3415
- },
3416
- fan_mode_setting: {
3417
- enum: ['auto', 'on'],
3418
- type: 'string',
3419
- },
3420
- is_climate_setting_schedule_active: {
3421
- type: 'boolean',
3422
- },
3423
- is_cooling: { type: 'boolean' },
3424
- is_cooling_available: {
3425
- enum: [true],
3426
- type: 'boolean',
3427
- },
3428
- is_fan_running: { type: 'boolean' },
3429
- is_heating: { type: 'boolean' },
3430
- is_heating_available: {
3431
- enum: [false],
3432
- type: 'boolean',
3433
- },
3434
- is_temporary_manual_override_active: {
3435
- type: 'boolean',
3436
- },
3437
- max_cooling_set_point_celsius: {
3438
- format: 'float',
3439
- type: 'number',
3440
- },
3441
- max_cooling_set_point_fahrenheit: {
3442
- format: 'float',
3443
- type: 'number',
3444
- },
3445
- min_cooling_set_point_celsius: {
3022
+ automatic_cooling_enabled: { type: 'boolean' },
3023
+ automatic_heating_enabled: { type: 'boolean' },
3024
+ cooling_set_point_celsius: {
3446
3025
  format: 'float',
3447
3026
  type: 'number',
3448
3027
  },
3449
- min_cooling_set_point_fahrenheit: {
3028
+ cooling_set_point_fahrenheit: {
3450
3029
  format: 'float',
3451
3030
  type: 'number',
3452
3031
  },
3453
- relative_humidity: {
3032
+ heating_set_point_celsius: {
3454
3033
  format: 'float',
3455
- maximum: 1,
3456
- minimum: 0,
3457
3034
  type: 'number',
3458
3035
  },
3459
- temperature_celsius: {
3036
+ heating_set_point_fahrenheit: {
3460
3037
  format: 'float',
3461
3038
  type: 'number',
3462
3039
  },
3463
- temperature_fahrenheit: {
3464
- format: 'float',
3465
- type: 'number',
3040
+ hvac_mode_setting: {
3041
+ enum: ['off', 'heat', 'cool', 'heat_cool'],
3042
+ type: 'string',
3466
3043
  },
3044
+ manual_override_allowed: { type: 'boolean' },
3467
3045
  },
3046
+ required: [
3047
+ 'automatic_heating_enabled',
3048
+ 'automatic_cooling_enabled',
3049
+ 'hvac_mode_setting',
3050
+ 'manual_override_allowed',
3051
+ ],
3468
3052
  type: 'object',
3469
3053
  },
3470
- ],
3054
+ fan_mode_setting: {
3055
+ enum: ['auto', 'on'],
3056
+ type: 'string',
3057
+ },
3058
+ is_climate_setting_schedule_active: { type: 'boolean' },
3059
+ is_cooling: { type: 'boolean' },
3060
+ is_fan_running: { type: 'boolean' },
3061
+ is_heating: { type: 'boolean' },
3062
+ is_temporary_manual_override_active: { type: 'boolean' },
3063
+ max_cooling_set_point_celsius: {
3064
+ format: 'float',
3065
+ type: 'number',
3066
+ },
3067
+ max_cooling_set_point_fahrenheit: {
3068
+ format: 'float',
3069
+ type: 'number',
3070
+ },
3071
+ max_heating_set_point_celsius: {
3072
+ format: 'float',
3073
+ type: 'number',
3074
+ },
3075
+ max_heating_set_point_fahrenheit: {
3076
+ format: 'float',
3077
+ type: 'number',
3078
+ },
3079
+ min_cooling_set_point_celsius: {
3080
+ format: 'float',
3081
+ type: 'number',
3082
+ },
3083
+ min_cooling_set_point_fahrenheit: {
3084
+ format: 'float',
3085
+ type: 'number',
3086
+ },
3087
+ min_heating_cooling_delta_celsius: {
3088
+ format: 'float',
3089
+ type: 'number',
3090
+ },
3091
+ min_heating_cooling_delta_fahrenheit: {
3092
+ format: 'float',
3093
+ type: 'number',
3094
+ },
3095
+ min_heating_set_point_celsius: {
3096
+ format: 'float',
3097
+ type: 'number',
3098
+ },
3099
+ min_heating_set_point_fahrenheit: {
3100
+ format: 'float',
3101
+ type: 'number',
3102
+ },
3103
+ relative_humidity: {
3104
+ format: 'float',
3105
+ maximum: 1,
3106
+ minimum: 0,
3107
+ type: 'number',
3108
+ },
3109
+ temperature_celsius: { format: 'float', type: 'number' },
3110
+ temperature_fahrenheit: {
3111
+ format: 'float',
3112
+ type: 'number',
3113
+ },
3114
+ },
3115
+ type: 'object',
3471
3116
  },
3472
3117
  ],
3473
3118
  },