generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.schema.json
73 lines (73 loc) · 2 KB
/
config.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
{
"pluginAlias": "Homebridge Griddy",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "Griddy"
},
"zone": {
"title": "Zone",
"type": "string",
"required": true,
"default": "LZ_HOUSTON",
"description": "Google ERCOT Load Zone Map if you're not sure",
"oneOf": [
{
"title": "Houston",
"enum": ["LZ_HOUSTON"]
},
{
"title": "North",
"enum": ["LZ_NORTH"]
},
{
"title": "South",
"enum": ["LZ_SOUTH"]
},
{
"title": "West",
"enum": ["LZ_WEST"]
}
]
},
"lowPriceCents": {
"title": "What's a low price (cents)",
"description": "The Low Price On is always triggered when the price is below this level",
"type": "number",
"required": true,
"default": 1
},
"lowPricePercentage": {
"title": "What's a low price (%)",
"description": "The Low Price On is always triggered when the price is below this as a percent of the day's hi/low range",
"type": "number",
"required": true,
"default": 15,
"minimum": 0,
"maximum": 100
},
"highPriceCents": {
"title": "What's a high price (cents)",
"description": "The High Price On is only triggered when the price is above this level",
"type": "number",
"required": true,
"default": 2
},
"highPricePercentage": {
"title": "What's a high price (%)",
"description": "The High Price On only triggered when the price is above this as a percent of the day's hi/low range",
"type": "integer",
"required": true,
"default": 50,
"minimum": 0,
"maximum": 100
}
}
}
}