@seamapi/types 1.223.0 → 1.225.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,196 @@ 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
+ current_climate_setting: {
3070
2917
  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: {
2918
+ automatic_cooling_enabled: { type: 'boolean' },
2919
+ automatic_heating_enabled: { type: 'boolean' },
2920
+ cooling_set_point_celsius: {
3229
2921
  format: 'float',
3230
2922
  type: 'number',
3231
2923
  },
3232
- min_heating_set_point_celsius: {
2924
+ cooling_set_point_fahrenheit: {
3233
2925
  format: 'float',
3234
2926
  type: 'number',
3235
2927
  },
3236
- min_heating_set_point_fahrenheit: {
2928
+ heating_set_point_celsius: {
3237
2929
  format: 'float',
3238
2930
  type: 'number',
3239
2931
  },
3240
- relative_humidity: {
3241
- format: 'float',
3242
- maximum: 1,
3243
- minimum: 0,
3244
- type: 'number',
3245
- },
3246
- temperature_celsius: {
2932
+ heating_set_point_fahrenheit: {
3247
2933
  format: 'float',
3248
2934
  type: 'number',
3249
2935
  },
3250
- temperature_fahrenheit: {
3251
- format: 'float',
3252
- type: 'number',
2936
+ hvac_mode_setting: {
2937
+ enum: ['off', 'heat', 'cool', 'heat_cool'],
2938
+ type: 'string',
3253
2939
  },
2940
+ manual_override_allowed: { type: 'boolean' },
3254
2941
  },
2942
+ required: [
2943
+ 'automatic_heating_enabled',
2944
+ 'automatic_cooling_enabled',
2945
+ 'hvac_mode_setting',
2946
+ 'manual_override_allowed',
2947
+ ],
3255
2948
  type: 'object',
3256
2949
  },
3257
- {
2950
+ default_climate_setting: {
3258
2951
  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: {
2952
+ automatic_cooling_enabled: { type: 'boolean' },
2953
+ automatic_heating_enabled: { type: 'boolean' },
2954
+ cooling_set_point_celsius: {
3417
2955
  format: 'float',
3418
2956
  type: 'number',
3419
2957
  },
3420
- min_cooling_set_point_celsius: {
2958
+ cooling_set_point_fahrenheit: {
3421
2959
  format: 'float',
3422
2960
  type: 'number',
3423
2961
  },
3424
- min_cooling_set_point_fahrenheit: {
2962
+ heating_set_point_celsius: {
3425
2963
  format: 'float',
3426
2964
  type: 'number',
3427
2965
  },
3428
- relative_humidity: {
2966
+ heating_set_point_fahrenheit: {
3429
2967
  format: 'float',
3430
- maximum: 1,
3431
- minimum: 0,
3432
2968
  type: 'number',
3433
2969
  },
3434
- temperature_celsius: {
3435
- format: 'float',
3436
- type: 'number',
3437
- },
3438
- temperature_fahrenheit: {
3439
- format: 'float',
3440
- type: 'number',
2970
+ hvac_mode_setting: {
2971
+ enum: ['off', 'heat', 'cool', 'heat_cool'],
2972
+ type: 'string',
3441
2973
  },
2974
+ manual_override_allowed: { type: 'boolean' },
3442
2975
  },
2976
+ required: [
2977
+ 'automatic_heating_enabled',
2978
+ 'automatic_cooling_enabled',
2979
+ 'hvac_mode_setting',
2980
+ 'manual_override_allowed',
2981
+ ],
3443
2982
  type: 'object',
3444
2983
  },
3445
- ],
2984
+ fan_mode_setting: {
2985
+ enum: ['auto', 'on'],
2986
+ type: 'string',
2987
+ },
2988
+ is_climate_setting_schedule_active: { type: 'boolean' },
2989
+ is_cooling: { type: 'boolean' },
2990
+ is_fan_running: { type: 'boolean' },
2991
+ is_heating: { type: 'boolean' },
2992
+ is_temporary_manual_override_active: { type: 'boolean' },
2993
+ max_cooling_set_point_celsius: {
2994
+ format: 'float',
2995
+ type: 'number',
2996
+ },
2997
+ max_cooling_set_point_fahrenheit: {
2998
+ format: 'float',
2999
+ type: 'number',
3000
+ },
3001
+ max_heating_set_point_celsius: {
3002
+ format: 'float',
3003
+ type: 'number',
3004
+ },
3005
+ max_heating_set_point_fahrenheit: {
3006
+ format: 'float',
3007
+ type: 'number',
3008
+ },
3009
+ min_cooling_set_point_celsius: {
3010
+ format: 'float',
3011
+ type: 'number',
3012
+ },
3013
+ min_cooling_set_point_fahrenheit: {
3014
+ format: 'float',
3015
+ type: 'number',
3016
+ },
3017
+ min_heating_cooling_delta_celsius: {
3018
+ format: 'float',
3019
+ type: 'number',
3020
+ },
3021
+ min_heating_cooling_delta_fahrenheit: {
3022
+ format: 'float',
3023
+ type: 'number',
3024
+ },
3025
+ min_heating_set_point_celsius: {
3026
+ format: 'float',
3027
+ type: 'number',
3028
+ },
3029
+ min_heating_set_point_fahrenheit: {
3030
+ format: 'float',
3031
+ type: 'number',
3032
+ },
3033
+ relative_humidity: {
3034
+ format: 'float',
3035
+ maximum: 1,
3036
+ minimum: 0,
3037
+ type: 'number',
3038
+ },
3039
+ temperature_celsius: { format: 'float', type: 'number' },
3040
+ temperature_fahrenheit: {
3041
+ format: 'float',
3042
+ type: 'number',
3043
+ },
3044
+ },
3045
+ type: 'object',
3446
3046
  },
3447
3047
  ],
3448
3048
  },