-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
71 lines (71 loc) · 1.2 KB
/
app.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
{
"id": "se.adamnoren.spotprices",
"version": "0.0.2",
"compatibility": ">=2.0.0",
"sdk": 2,
"name": {
"en": "Spot Prices"
},
"description": {
"en": "Provides Homey with electrical spot prices"
},
"images": {
"large": "/assets/images/large.png",
"small": "/assets/images/small.png"
},
"author": {
"name": "Adam Norén",
"email": "[email protected]"
},
"contributors": {
"developers": [
{
"name": "Adam Norén",
"email": "[email protected]"
}
]
},
"category": [ "energy" ],
"brandColor": "#11a9e8",
"permissions": [],
"flow": {
"triggers": [
{
"id": "price_changed",
"title": {
"en": "Price changes"
},
"tokens": [
{
"name": "price_per_kwh",
"type": "number",
"title": {
"en": "SEK/kWh"
},
"example": 0.34
}
]
}
],
"conditions": [
{
"id": "price_condition",
"title": {
"en": "Current price is !{{lower than|higher than}}..."
},
"titleFormatted": {
"en": "Current price is !{{lower than|higher than}} [[my_number]] SEK/kWh"
},
"args": [
{
"type": "number",
"name": "my_number",
"placeholder": {
"en": "Enter a price per kWh"
}
}
]
}
]
}
}