This repository has been archived by the owner on Dec 15, 2017. It is now read-only.
forked from stemmr/com.athom.trashchecker
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
212 lines (212 loc) · 4.29 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
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
{
"id": "com.athom.trashchecker2",
"sdk": 2,
"name": {
"en": "Trashcan Reminder 2.0",
"nl": "Afval Herinnering 2.0"
},
"version": "2.0.0",
"compatibility": ">=1.3",
"author": {
"name": "Robert Raaijmakers",
"email": "[email protected]"
},
"permissions": [
"homey:manager:speech-output",
"homey:manager:speech-input"
],
"contributors": {
"developers": [{
"name": "Marcel Timmermans",
"email": "[email protected]"
},
{
"name": "Robert Raaijmakers",
"email": "[email protected]"
},
{
"name": "Remco Hannink",
"email": "[email protected]"
},
{
"name": "Arthur Stemmer",
"email": "[email protected]"
}
]
},
"description": {
"en": "Use this app to check when your trash will be collected",
"nl": "Gebruik deze app om er achter te komen wanneer uw afval thuis wordt opgehaald"
},
"category": "tools",
"images": {
"large": "./assets/images/large.png",
"small": "./assets/images/small.png"
},
"credits": {
"icon": "Pham Thi Dieu Linh"
},
"speech": [{
"id": "trash_collected",
"importance": 0.8,
"en": {
"element": {
"actionWords": {
"type": "regex",
"value": "(when|which|what|is)"
},
"trash":
{
"type": "regex",
"value": "(container|trash|waste|collected)"
},
"trashType": {
"type": "regex",
"value": "(green|biological|black|residual|grey|gray|elastic|supple|metal|drink carton|cardboard|papery|textile|cloth|yarn)"
},
"query": {
"type": "regex",
"value": "[\\s\\S]+"
}
},
"group": {
"main": {
"set": "(actionWords) && (trashType) && trash && query",
"orderd": false,
"allowDisconnect": true,
"capturingGroup": true
}
}
},
"nl": {
"element": {
"actionWords": {
"type": "regex",
"value": "(wanneer|welke|wordt|wat)"
},
"trash": {
"type": "regex",
"value": "(afval|afvalbak|container|kliko|vuilnisbak|opgehaald)"
},
"trashType": {
"type": "regex",
"value": "(groen|tuinafval|groene|groente|fruit|zwart|grijs|grijze|restafval|plastic|oranje|metaal|drinkpak|drink karton|blauw|karton|kleding|kledij)"
},
"query": {
"type": "regex",
"value": "[\\s\\S]+"
}
}
},
"triggers": {
"en": [
"trash collected",
"collected",
"trash",
"container",
"residual waste",
"organic waste"
],
"nl": [
"opgehaald",
"container",
"afvalbak",
"vuilnisbak"
]
}
}],
"speechExamples": {
"en": ["When is the paper trash collected?", "What type of trash is collected next?", "What is collected next monday?", "Is the green container collected this friday?"],
"nl": ["Wanneer wordt het afval opgehaald?", "Welk type afwal wordt als eerste opgehaald?", "Wat wordt er volgende week maandag opgehaald?", "Wordt de groene container deze vrijdag opgehaald?"]
},
"flow": {
"conditions": [{
"id": "days_to_collect",
"title": {
"en": "Trash will !{{|not}} be collected",
"nl": "Afval wordt !{{|niet}} opgehaald"
},
"args": [{
"name": "when",
"type": "dropdown",
"values": [{
"id": "today",
"label": {
"en": "Today",
"nl": "Vandaag"
}
},
{
"id": "tomorrow",
"label": {
"en": "Tomorrow",
"nl": "Morgen"
}
},
{
"id": "datomorrow",
"label": {
"en": "Day after tomorrow",
"nl": "Overmorgen"
}
}
]
},
{
"name": "trash_type",
"type": "dropdown",
"values": [{
"id": "ANY",
"label": {
"en": "Any",
"nl": "Iets"
}
},
{
"id": "REST",
"label": {
"en": "Residual",
"nl": "Rest"
}
},
{
"id": "GFT",
"label": {
"en": "Organic Waste",
"nl": "GFT"
}
},
{
"id": "PAPIER",
"label": {
"en": "Paper",
"nl": "Papier"
}
},
{
"id": "PLASTIC",
"label": {
"en": "Plastic",
"nl": "Plastic"
}
},
{
"id": "PMD",
"label": {
"en": "PMD",
"nl": "PMD"
}
},
{
"id": "TEXTIEL",
"label": {
"en": "Textiles",
"nl": "Textiel"
}
}
]
}
]
}]
}
}