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