-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
49 lines (49 loc) · 1.08 KB
/
manifest.json
File metadata and controls
49 lines (49 loc) · 1.08 KB
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
{
"author": "WebThingsIO",
"description": "Tide calendar for WebThings Gateway",
"gateway_specific_settings": {
"webthings": {
"exec": "python3 {path}/main.py",
"primary_type": "adapter",
"strict_max_version": "*",
"strict_min_version": "0.10.0"
}
},
"homepage_url": "https://github.com/WebThingsIO/tide-calendar-adapter",
"id": "tide-calendar-adapter",
"license": "MPL-2.0",
"manifest_version": 1,
"name": "Tide Calendar",
"options": {
"default": {
"stations": [],
"unit": "english"
},
"schema": {
"type": "object",
"required": [
"stations",
"unit"
],
"properties": {
"stations": {
"type": "array",
"description": "List of NOAA station IDs",
"items": {
"type": "integer"
}
},
"unit": {
"type": "string",
"description": "Water level unit system",
"enum": [
"english",
"metric"
]
}
}
}
},
"short_name": "Tide",
"version": "0.4.3"
}