-
Notifications
You must be signed in to change notification settings - Fork 16
/
template.json
57 lines (57 loc) · 2.14 KB
/
template.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
{
"apiURI": {
"type": "text",
"className": ["hidden"],
"defaultValue": ""
},
"params": {
"type": "object",
"className": ["optional"],
"content": {
"instances": {
"type": "array",
"caption": "Geolocation Services",
"content": {
"id": {
"type": "text",
"className": ["hidden", "optional"],
"defaultValue": ""
},
"params": {
"type": "object",
"className": ["optional"],
"content": {
"connector": {
"type": "select",
"values": {
"Select implementation:": [
{
"value": "*default",
"text": "Device default"
},{
"value": "geoip",
"text": "IP"
},
{
"value": "android",
"text": "Android"
},
{
"value": "simulator",
"text": "Car Simulator"
},
{
"value": "most",
"text": "Car Emulator"
}
]
},
"defaultValue": "*default"
}
}
}
}
}
}
}
}