@seamapi/types 1.223.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.
@@ -2853,596 +2853,198 @@ export default {
2853
2853
  type: 'object',
2854
2854
  },
2855
2855
  {
2856
- oneOf: [
2857
- {
2856
+ properties: {
2857
+ active_climate_setting_schedule: {
2858
2858
  properties: {
2859
- active_climate_setting_schedule: {
2860
- properties: {
2861
- automatic_cooling_enabled: { type: 'boolean' },
2862
- automatic_heating_enabled: { type: 'boolean' },
2863
- climate_setting_schedule_id: {
2864
- format: 'uuid',
2865
- type: 'string',
2866
- },
2867
- cooling_set_point_celsius: {
2868
- format: 'float',
2869
- type: 'number',
2870
- },
2871
- cooling_set_point_fahrenheit: {
2872
- format: 'float',
2873
- type: 'number',
2874
- },
2875
- created_at: {
2876
- format: 'date-time',
2877
- type: 'string',
2878
- },
2879
- device_id: { format: 'uuid', type: 'string' },
2880
- errors: {
2881
- 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.',
2882
- },
2883
- heating_set_point_celsius: {
2884
- format: 'float',
2885
- type: 'number',
2886
- },
2887
- heating_set_point_fahrenheit: {
2888
- format: 'float',
2889
- type: 'number',
2890
- },
2891
- hvac_mode_setting: {
2892
- enum: ['off', 'heat', 'cool', 'heat_cool'],
2893
- type: 'string',
2894
- },
2895
- manual_override_allowed: { type: 'boolean' },
2896
- name: { type: 'string' },
2897
- schedule_ends_at: { type: 'string' },
2898
- schedule_starts_at: { type: 'string' },
2899
- schedule_type: {
2900
- enum: ['time_bound'],
2901
- type: 'string',
2902
- },
2903
- },
2904
- required: [
2905
- 'climate_setting_schedule_id',
2906
- 'schedule_type',
2907
- 'device_id',
2908
- 'schedule_starts_at',
2909
- 'schedule_ends_at',
2910
- 'created_at',
2911
- ],
2912
- type: 'object',
2913
- },
2914
- available_hvac_mode_settings: {
2915
- items: {
2916
- enum: ['off', 'heat', 'cool', 'heat_cool'],
2917
- type: 'string',
2918
- },
2919
- type: 'array',
2920
- },
2921
- can_enable_automatic_cooling: { type: 'boolean' },
2922
- can_enable_automatic_heating: { type: 'boolean' },
2923
- current_climate_setting: {
2924
- properties: {
2925
- automatic_cooling_enabled: { type: 'boolean' },
2926
- automatic_heating_enabled: { type: 'boolean' },
2927
- cooling_set_point_celsius: {
2928
- format: 'float',
2929
- type: 'number',
2930
- },
2931
- cooling_set_point_fahrenheit: {
2932
- format: 'float',
2933
- type: 'number',
2934
- },
2935
- heating_set_point_celsius: {
2936
- format: 'float',
2937
- type: 'number',
2938
- },
2939
- heating_set_point_fahrenheit: {
2940
- format: 'float',
2941
- type: 'number',
2942
- },
2943
- hvac_mode_setting: {
2944
- enum: ['off', 'heat', 'cool', 'heat_cool'],
2945
- type: 'string',
2946
- },
2947
- manual_override_allowed: { type: 'boolean' },
2948
- },
2949
- required: [
2950
- 'automatic_heating_enabled',
2951
- 'automatic_cooling_enabled',
2952
- 'hvac_mode_setting',
2953
- 'manual_override_allowed',
2954
- ],
2955
- type: 'object',
2956
- },
2957
- default_climate_setting: {
2958
- properties: {
2959
- automatic_cooling_enabled: { type: 'boolean' },
2960
- automatic_heating_enabled: { type: 'boolean' },
2961
- cooling_set_point_celsius: {
2962
- format: 'float',
2963
- type: 'number',
2964
- },
2965
- cooling_set_point_fahrenheit: {
2966
- format: 'float',
2967
- type: 'number',
2968
- },
2969
- heating_set_point_celsius: {
2970
- format: 'float',
2971
- type: 'number',
2972
- },
2973
- heating_set_point_fahrenheit: {
2974
- format: 'float',
2975
- type: 'number',
2976
- },
2977
- hvac_mode_setting: {
2978
- enum: ['off', 'heat', 'cool', 'heat_cool'],
2979
- type: 'string',
2980
- },
2981
- manual_override_allowed: { type: 'boolean' },
2982
- },
2983
- required: [
2984
- 'automatic_heating_enabled',
2985
- 'automatic_cooling_enabled',
2986
- 'hvac_mode_setting',
2987
- 'manual_override_allowed',
2988
- ],
2989
- type: 'object',
2990
- },
2991
- fan_mode_setting: {
2992
- enum: ['auto', 'on'],
2859
+ automatic_cooling_enabled: { type: 'boolean' },
2860
+ automatic_heating_enabled: { type: 'boolean' },
2861
+ climate_setting_schedule_id: {
2862
+ format: 'uuid',
2993
2863
  type: 'string',
2994
2864
  },
2995
- is_climate_setting_schedule_active: {
2996
- type: 'boolean',
2997
- },
2998
- is_cooling: { type: 'boolean' },
2999
- is_cooling_available: {
3000
- enum: [true],
3001
- type: 'boolean',
3002
- },
3003
- is_fan_running: { type: 'boolean' },
3004
- is_heating: { type: 'boolean' },
3005
- is_heating_available: {
3006
- enum: [true],
3007
- type: 'boolean',
3008
- },
3009
- is_temporary_manual_override_active: {
3010
- type: 'boolean',
3011
- },
3012
- max_cooling_set_point_celsius: {
3013
- format: 'float',
3014
- type: 'number',
3015
- },
3016
- max_cooling_set_point_fahrenheit: {
3017
- format: 'float',
3018
- type: 'number',
3019
- },
3020
- max_heating_set_point_celsius: {
2865
+ cooling_set_point_celsius: {
3021
2866
  format: 'float',
3022
2867
  type: 'number',
3023
2868
  },
3024
- max_heating_set_point_fahrenheit: {
2869
+ cooling_set_point_fahrenheit: {
3025
2870
  format: 'float',
3026
2871
  type: 'number',
3027
2872
  },
3028
- min_cooling_set_point_celsius: {
3029
- format: 'float',
3030
- type: 'number',
3031
- },
3032
- min_cooling_set_point_fahrenheit: {
3033
- format: 'float',
3034
- type: 'number',
3035
- },
3036
- min_heating_cooling_delta_celsius: {
3037
- format: 'float',
3038
- type: 'number',
3039
- },
3040
- min_heating_cooling_delta_fahrenheit: {
3041
- format: 'float',
3042
- 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.',
3043
2877
  },
3044
- min_heating_set_point_celsius: {
2878
+ heating_set_point_celsius: {
3045
2879
  format: 'float',
3046
2880
  type: 'number',
3047
2881
  },
3048
- min_heating_set_point_fahrenheit: {
2882
+ heating_set_point_fahrenheit: {
3049
2883
  format: 'float',
3050
2884
  type: 'number',
3051
2885
  },
3052
- relative_humidity: {
3053
- format: 'float',
3054
- maximum: 1,
3055
- minimum: 0,
3056
- type: 'number',
3057
- },
3058
- temperature_celsius: {
3059
- format: 'float',
3060
- type: 'number',
2886
+ hvac_mode_setting: {
2887
+ enum: ['off', 'heat', 'cool', 'heat_cool'],
2888
+ type: 'string',
3061
2889
  },
3062
- temperature_fahrenheit: {
3063
- format: 'float',
3064
- 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',
3065
2897
  },
3066
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
+ ],
3067
2907
  type: 'object',
3068
2908
  },
3069
- {
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: {
3070
2919
  properties: {
3071
- active_climate_setting_schedule: {
3072
- properties: {
3073
- automatic_cooling_enabled: { type: 'boolean' },
3074
- automatic_heating_enabled: { type: 'boolean' },
3075
- climate_setting_schedule_id: {
3076
- format: 'uuid',
3077
- type: 'string',
3078
- },
3079
- cooling_set_point_celsius: {
3080
- format: 'float',
3081
- type: 'number',
3082
- },
3083
- cooling_set_point_fahrenheit: {
3084
- format: 'float',
3085
- type: 'number',
3086
- },
3087
- created_at: {
3088
- format: 'date-time',
3089
- type: 'string',
3090
- },
3091
- device_id: { format: 'uuid', type: 'string' },
3092
- errors: {
3093
- 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.',
3094
- },
3095
- heating_set_point_celsius: {
3096
- format: 'float',
3097
- type: 'number',
3098
- },
3099
- heating_set_point_fahrenheit: {
3100
- format: 'float',
3101
- type: 'number',
3102
- },
3103
- hvac_mode_setting: {
3104
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3105
- type: 'string',
3106
- },
3107
- manual_override_allowed: { type: 'boolean' },
3108
- name: { type: 'string' },
3109
- schedule_ends_at: { type: 'string' },
3110
- schedule_starts_at: { type: 'string' },
3111
- schedule_type: {
3112
- enum: ['time_bound'],
3113
- type: 'string',
3114
- },
3115
- },
3116
- required: [
3117
- 'climate_setting_schedule_id',
3118
- 'schedule_type',
3119
- 'device_id',
3120
- 'schedule_starts_at',
3121
- 'schedule_ends_at',
3122
- 'created_at',
3123
- ],
3124
- type: 'object',
3125
- },
3126
- available_hvac_mode_settings: {
3127
- items: {
3128
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3129
- type: 'string',
3130
- },
3131
- type: 'array',
3132
- },
3133
- can_enable_automatic_cooling: { type: 'boolean' },
3134
- can_enable_automatic_heating: { type: 'boolean' },
3135
- current_climate_setting: {
3136
- properties: {
3137
- automatic_cooling_enabled: { type: 'boolean' },
3138
- automatic_heating_enabled: { type: 'boolean' },
3139
- cooling_set_point_celsius: {
3140
- format: 'float',
3141
- type: 'number',
3142
- },
3143
- cooling_set_point_fahrenheit: {
3144
- format: 'float',
3145
- type: 'number',
3146
- },
3147
- heating_set_point_celsius: {
3148
- format: 'float',
3149
- type: 'number',
3150
- },
3151
- heating_set_point_fahrenheit: {
3152
- format: 'float',
3153
- type: 'number',
3154
- },
3155
- hvac_mode_setting: {
3156
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3157
- type: 'string',
3158
- },
3159
- manual_override_allowed: { type: 'boolean' },
3160
- },
3161
- required: [
3162
- 'automatic_heating_enabled',
3163
- 'automatic_cooling_enabled',
3164
- 'hvac_mode_setting',
3165
- 'manual_override_allowed',
3166
- ],
3167
- type: 'object',
3168
- },
3169
- default_climate_setting: {
3170
- properties: {
3171
- automatic_cooling_enabled: { type: 'boolean' },
3172
- automatic_heating_enabled: { type: 'boolean' },
3173
- cooling_set_point_celsius: {
3174
- format: 'float',
3175
- type: 'number',
3176
- },
3177
- cooling_set_point_fahrenheit: {
3178
- format: 'float',
3179
- type: 'number',
3180
- },
3181
- heating_set_point_celsius: {
3182
- format: 'float',
3183
- type: 'number',
3184
- },
3185
- heating_set_point_fahrenheit: {
3186
- format: 'float',
3187
- type: 'number',
3188
- },
3189
- hvac_mode_setting: {
3190
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3191
- type: 'string',
3192
- },
3193
- manual_override_allowed: { type: 'boolean' },
3194
- },
3195
- required: [
3196
- 'automatic_heating_enabled',
3197
- 'automatic_cooling_enabled',
3198
- 'hvac_mode_setting',
3199
- 'manual_override_allowed',
3200
- ],
3201
- type: 'object',
3202
- },
3203
- fan_mode_setting: {
3204
- enum: ['auto', 'on'],
3205
- type: 'string',
3206
- },
3207
- is_climate_setting_schedule_active: {
3208
- type: 'boolean',
3209
- },
3210
- is_cooling: { type: 'boolean' },
3211
- is_cooling_available: {
3212
- enum: [false],
3213
- type: 'boolean',
3214
- },
3215
- is_fan_running: { type: 'boolean' },
3216
- is_heating: { type: 'boolean' },
3217
- is_heating_available: {
3218
- enum: [true],
3219
- type: 'boolean',
3220
- },
3221
- is_temporary_manual_override_active: {
3222
- type: 'boolean',
3223
- },
3224
- max_heating_set_point_celsius: {
3225
- format: 'float',
3226
- type: 'number',
3227
- },
3228
- max_heating_set_point_fahrenheit: {
2920
+ automatic_cooling_enabled: { type: 'boolean' },
2921
+ automatic_heating_enabled: { type: 'boolean' },
2922
+ cooling_set_point_celsius: {
3229
2923
  format: 'float',
3230
2924
  type: 'number',
3231
2925
  },
3232
- min_heating_set_point_celsius: {
2926
+ cooling_set_point_fahrenheit: {
3233
2927
  format: 'float',
3234
2928
  type: 'number',
3235
2929
  },
3236
- min_heating_set_point_fahrenheit: {
2930
+ heating_set_point_celsius: {
3237
2931
  format: 'float',
3238
2932
  type: 'number',
3239
2933
  },
3240
- relative_humidity: {
3241
- format: 'float',
3242
- maximum: 1,
3243
- minimum: 0,
3244
- type: 'number',
3245
- },
3246
- temperature_celsius: {
2934
+ heating_set_point_fahrenheit: {
3247
2935
  format: 'float',
3248
2936
  type: 'number',
3249
2937
  },
3250
- temperature_fahrenheit: {
3251
- format: 'float',
3252
- type: 'number',
2938
+ hvac_mode_setting: {
2939
+ enum: ['off', 'heat', 'cool', 'heat_cool'],
2940
+ type: 'string',
3253
2941
  },
2942
+ manual_override_allowed: { type: 'boolean' },
3254
2943
  },
2944
+ required: [
2945
+ 'automatic_heating_enabled',
2946
+ 'automatic_cooling_enabled',
2947
+ 'hvac_mode_setting',
2948
+ 'manual_override_allowed',
2949
+ ],
3255
2950
  type: 'object',
3256
2951
  },
3257
- {
2952
+ default_climate_setting: {
3258
2953
  properties: {
3259
- active_climate_setting_schedule: {
3260
- properties: {
3261
- automatic_cooling_enabled: { type: 'boolean' },
3262
- automatic_heating_enabled: { type: 'boolean' },
3263
- climate_setting_schedule_id: {
3264
- format: 'uuid',
3265
- type: 'string',
3266
- },
3267
- cooling_set_point_celsius: {
3268
- format: 'float',
3269
- type: 'number',
3270
- },
3271
- cooling_set_point_fahrenheit: {
3272
- format: 'float',
3273
- type: 'number',
3274
- },
3275
- created_at: {
3276
- format: 'date-time',
3277
- type: 'string',
3278
- },
3279
- device_id: { format: 'uuid', type: 'string' },
3280
- errors: {
3281
- 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.',
3282
- },
3283
- heating_set_point_celsius: {
3284
- format: 'float',
3285
- type: 'number',
3286
- },
3287
- heating_set_point_fahrenheit: {
3288
- format: 'float',
3289
- type: 'number',
3290
- },
3291
- hvac_mode_setting: {
3292
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3293
- type: 'string',
3294
- },
3295
- manual_override_allowed: { type: 'boolean' },
3296
- name: { type: 'string' },
3297
- schedule_ends_at: { type: 'string' },
3298
- schedule_starts_at: { type: 'string' },
3299
- schedule_type: {
3300
- enum: ['time_bound'],
3301
- type: 'string',
3302
- },
3303
- },
3304
- required: [
3305
- 'climate_setting_schedule_id',
3306
- 'schedule_type',
3307
- 'device_id',
3308
- 'schedule_starts_at',
3309
- 'schedule_ends_at',
3310
- 'created_at',
3311
- ],
3312
- type: 'object',
3313
- },
3314
- available_hvac_mode_settings: {
3315
- items: {
3316
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3317
- type: 'string',
3318
- },
3319
- type: 'array',
3320
- },
3321
- can_enable_automatic_cooling: { type: 'boolean' },
3322
- can_enable_automatic_heating: { type: 'boolean' },
3323
- current_climate_setting: {
3324
- properties: {
3325
- automatic_cooling_enabled: { type: 'boolean' },
3326
- automatic_heating_enabled: { type: 'boolean' },
3327
- cooling_set_point_celsius: {
3328
- format: 'float',
3329
- type: 'number',
3330
- },
3331
- cooling_set_point_fahrenheit: {
3332
- format: 'float',
3333
- type: 'number',
3334
- },
3335
- heating_set_point_celsius: {
3336
- format: 'float',
3337
- type: 'number',
3338
- },
3339
- heating_set_point_fahrenheit: {
3340
- format: 'float',
3341
- type: 'number',
3342
- },
3343
- hvac_mode_setting: {
3344
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3345
- type: 'string',
3346
- },
3347
- manual_override_allowed: { type: 'boolean' },
3348
- },
3349
- required: [
3350
- 'automatic_heating_enabled',
3351
- 'automatic_cooling_enabled',
3352
- 'hvac_mode_setting',
3353
- 'manual_override_allowed',
3354
- ],
3355
- type: 'object',
3356
- },
3357
- default_climate_setting: {
3358
- properties: {
3359
- automatic_cooling_enabled: { type: 'boolean' },
3360
- automatic_heating_enabled: { type: 'boolean' },
3361
- cooling_set_point_celsius: {
3362
- format: 'float',
3363
- type: 'number',
3364
- },
3365
- cooling_set_point_fahrenheit: {
3366
- format: 'float',
3367
- type: 'number',
3368
- },
3369
- heating_set_point_celsius: {
3370
- format: 'float',
3371
- type: 'number',
3372
- },
3373
- heating_set_point_fahrenheit: {
3374
- format: 'float',
3375
- type: 'number',
3376
- },
3377
- hvac_mode_setting: {
3378
- enum: ['off', 'heat', 'cool', 'heat_cool'],
3379
- type: 'string',
3380
- },
3381
- manual_override_allowed: { type: 'boolean' },
3382
- },
3383
- required: [
3384
- 'automatic_heating_enabled',
3385
- 'automatic_cooling_enabled',
3386
- 'hvac_mode_setting',
3387
- 'manual_override_allowed',
3388
- ],
3389
- type: 'object',
3390
- },
3391
- fan_mode_setting: {
3392
- enum: ['auto', 'on'],
3393
- type: 'string',
3394
- },
3395
- is_climate_setting_schedule_active: {
3396
- type: 'boolean',
3397
- },
3398
- is_cooling: { type: 'boolean' },
3399
- is_cooling_available: {
3400
- enum: [true],
3401
- type: 'boolean',
3402
- },
3403
- is_fan_running: { type: 'boolean' },
3404
- is_heating: { type: 'boolean' },
3405
- is_heating_available: {
3406
- enum: [false],
3407
- type: 'boolean',
3408
- },
3409
- is_temporary_manual_override_active: {
3410
- type: 'boolean',
3411
- },
3412
- max_cooling_set_point_celsius: {
3413
- format: 'float',
3414
- type: 'number',
3415
- },
3416
- max_cooling_set_point_fahrenheit: {
2954
+ automatic_cooling_enabled: { type: 'boolean' },
2955
+ automatic_heating_enabled: { type: 'boolean' },
2956
+ cooling_set_point_celsius: {
3417
2957
  format: 'float',
3418
2958
  type: 'number',
3419
2959
  },
3420
- min_cooling_set_point_celsius: {
2960
+ cooling_set_point_fahrenheit: {
3421
2961
  format: 'float',
3422
2962
  type: 'number',
3423
2963
  },
3424
- min_cooling_set_point_fahrenheit: {
2964
+ heating_set_point_celsius: {
3425
2965
  format: 'float',
3426
2966
  type: 'number',
3427
2967
  },
3428
- relative_humidity: {
2968
+ heating_set_point_fahrenheit: {
3429
2969
  format: 'float',
3430
- maximum: 1,
3431
- minimum: 0,
3432
2970
  type: 'number',
3433
2971
  },
3434
- temperature_celsius: {
3435
- format: 'float',
3436
- type: 'number',
3437
- },
3438
- temperature_fahrenheit: {
3439
- format: 'float',
3440
- type: 'number',
2972
+ hvac_mode_setting: {
2973
+ enum: ['off', 'heat', 'cool', 'heat_cool'],
2974
+ type: 'string',
3441
2975
  },
2976
+ manual_override_allowed: { type: 'boolean' },
3442
2977
  },
2978
+ required: [
2979
+ 'automatic_heating_enabled',
2980
+ 'automatic_cooling_enabled',
2981
+ 'hvac_mode_setting',
2982
+ 'manual_override_allowed',
2983
+ ],
3443
2984
  type: 'object',
3444
2985
  },
3445
- ],
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',
3446
3048
  },
3447
3049
  ],
3448
3050
  },