forked from bramstroker/homeassistant-powercalc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_schema.json
162 lines (162 loc) · 4.09 KB
/
model_schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "model.json describes a number of devices, typically lights, for use within the HomeAssistant Powercalc extension.",
"type": "object",
"required": [
"name",
"standby_power",
"measure_method",
"measure_device",
"supported_modes"
],
"properties": {
"name": {
"type": "string",
"description": "The full name"
},
"standby_power": {
"type": "number",
"minimum": 0.05,
"description": "Power draw when the device is turned off. When you are not able to measure set to 0.4 for lights"
},
"standby_power_on": {
"type": "number",
"minimum": 0.05,
"description": "Power draw when the device is turned on."
},
"supported_modes": {
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"enum": [
"lut",
"linear",
"fixed"
]
},
"description": "Supported calculation modes"
},
"measure_method": {
"type": "string",
"enum": [
"manual",
"script"
],
"description": "How the device was measured"
},
"measure_device": {
"type": "string",
"description": "Device which was used to measure"
},
"measure_description": {
"type": "string",
"description": "Add more information about how you measured the device or any remarks"
},
"measure_settings": {
"type": "object",
"description": "Settings used for measure script"
},
"linked_lut": {
"type": "string",
"description": "Use LUT data files from another model"
},
"requires_additional_configuration": {
"type": "boolean",
"description": "Defines whether this model needs additional configuration by the user. Used for smart switches and lights where we can only know the standby power, but not the power of connected light bulb"
},
"device_type": {
"type": "string",
"enum": [
"light",
"smart_switch",
"smart_speaker"
],
"description": "Type of device"
},
"calculation_enabled_condition": {
"type": "string",
"description": "Template which can be evaluated."
},
"aliases": {
"type": "array",
"items": {
"type": "string"
},
"description": "Aliases for this model"
},
"linear_config": {
"type": "object",
"description": "Configuration for linear calculation mode",
"properties": {
"min_power": {
"type": "number"
},
"max_power": {
"type": "number"
},
"calibrate": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"fixed_config": {
"type": "object",
"description": "Configuration for fixed calculation mode",
"properties": {
"power": {
"type": "number"
},
"states_power": {
"type": "object",
"description": "A dict of state attributes and the power. See https://github.com/bramstroker/homeassistant-powercalc#power-per-state.",
"properties": {
"idle": {
"type": [
"number",
"string"
]
},
"playing": {
"type": [
"number",
"string"
]
},
"paused": {
"type": [
"number",
"string"
]
},
"off": {
"type": [
"number",
"string"
]
},
"unavailable": {
"type": [
"number",
"string"
]
}
},
"additionalProperties": {
"type": [
"number",
"string"
]
}
}
}
},
"sensor_config": {
"type": "object",
"description": "Sensor configuration options. See the README"
}
}
}