-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.json
55 lines (55 loc) · 1.34 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
{
"author" : "Maroš Kollár",
"category" : "environment",
"defaults" : {
"createAzimuthDevice" : false,
"description" : "__m_descr__",
"title" : "__m_title__"
},
"dependencies" : [],
"homepage" : "https://github.com/maros/Zway-Astronomy/",
"icon" : "icon.png",
"maturity" : "stable",
"moduleName" : "Astronomy",
"options" : {
"fields" : {
"createAzimuthDevice" : {
"label" : "__create_azimuth_device_label__",
"order" : 3
},
"latitude" : {
"helper" : "__coordinate_helper__",
"label" : "__latitude_label__",
"order" : 1
},
"longitude" : {
"helper" : "__coordinate_helper__",
"label" : "__longitude_label__",
"order" : 2
}
}
},
"repository" : {
"source" : "https://github.com/maros/Zway-Astronomy",
"type" : "git"
},
"schema" : {
"properties" : {
"createAzimuthDevice" : {
"type" : "boolean"
},
"latitude" : {
"required" : true,
"type" : "number"
},
"longitude" : {
"required" : true,
"type" : "number"
}
},
"required" : true,
"type" : "object"
},
"singleton" : true,
"version" : "1.10"
}