-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmodule.json
57 lines (57 loc) · 1.38 KB
/
module.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
{
"author" : "Maroš Kollár",
"category" : "automation_basic",
"defaults" : {
"description" : "__m_descr__",
"title" : "__m_title__"
},
"dependencies" : [
"Cron",
"BaseModule"
],
"homepage" : "https://github.com/maros/Zway-Presence/",
"icon" : "icon.png",
"maturity" : "stable",
"moduleName" : "Presence",
"options" : {
"fields" : {
"nightEnd" : {
"dateFormat" : "HH:mm",
"label" : "__night_end_label__",
"maskString" : "99:99",
"order" : 2,
"placeholder" : "__time_format__",
"type" : "time"
},
"nightStart" : {
"dateFormat" : "HH:mm",
"helper" : "__night_time_helper__",
"label" : "__night_start_label__",
"maskString" : "99:99",
"order" : 1,
"placeholder" : "__time_format__",
"type" : "time"
}
}
},
"repository" : {
"source" : "https://github.com/maros/Zway-Presence",
"type" : "git"
},
"schema" : {
"properties" : {
"nightEnd" : {
"format" : "time",
"type" : "string"
},
"nightStart" : {
"format" : "time",
"type" : "string"
}
},
"required" : true,
"type" : "object"
},
"singleton" : true,
"version" : 1.10
}