-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
81 lines (81 loc) · 1.96 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
72
73
74
75
76
77
78
79
80
81
{
"id": "no.matsa.yr",
"version": "0.1.0",
"compatibility": ">=1.5.0",
"sdk": 2,
"name": {
"en": "Yr",
"no": "Yr"
},
"description": {
"en": "Get the weather forecast from Yr, the weather service by Norwegian Meteorological Institute and the Norwegian Broadcasting Corporation",
"no": "Integrerer værmeldingen fra Yr med Homey!"
},
"category": [
"climate",
"tools"
],
"permissions": [],
"images": {
"large": "/assets/images/large.png",
"small": "/assets/images/small.png"
},
"brandColor": "#00b8f1",
"author": {
"name": "Mats Andreassen",
"email": "[email protected]"
},
"flow": {
"triggers": [
{
"id": "starts-to-rain",
"title": {
"en": "It starts to rain",
"no": "Det begynner å regne"
},
"hint": {
"en": "Flow is triggered when it starts to rain whitin the minute",
"no": "Flyten kjøres når det starter å regne innen ett minutt"
},
"tokens": [
{
"type": "number",
"name": "millimeters",
"title": {
"en": "Millimeters of rain",
"no": "Millimeter nedbør"
},
"example": {
"en": "4.3 mm",
"no": "4.3 mm"
}
},
{
"type": "number",
"name": "startsIn",
"title": {
"en": "Starts in (seconds)",
"no": "Starter om (sekunder)"
},
"example": {
"en": "13 seconds",
"no": "13 sekunder"
}
},
{
"type": "number",
"name": "duration",
"title": {
"en": "Rain duration (minutes)",
"no": "Varighet (minutter)"
},
"example": {
"en": "15 minutes",
"no": "15 minutter"
}
}
]
}
]
}
}