-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsettingsmeta.json
54 lines (51 loc) · 1.94 KB
/
settingsmeta.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
{
"skillMetadata": {
"sections": [
{
"name": "MBTA Bus Tracking",
"fields": [
{
"type": "label",
"label": "How many busses should Mycroft track?"
},
{
"name": "maxTrack",
"type": "number",
"label": "Busses to track",
"value": "3"
},
{
"type": "label",
"label": "How often should Mycroft announce bus arrival predictions (min 30 secs)?"
},
{
"name": "trackingUpateFreq",
"type": "number",
"label": "Seconds",
"value": "30"
},
{
"type": "label",
"label":"API Key - If you would like to use your own MBTA API key you may check the box and enter it here Using an API key rasies the request per minute rate limit but shold not normally be needed. "
},
{
"name": "useownkey",
"type": "checkbox",
"label": "Use my API key",
"value": "false"
},
{
"type": "label",
"label": "Enter your <a href=\"https://api-v3.mbta.com/login\">MBTA</a> API key"
},
{
"name": "api_key",
"type": "text",
"label": "API Key",
"value": ""
}
]
}
]
}
}