-
Notifications
You must be signed in to change notification settings - Fork 29
/
settingsmeta.json
39 lines (39 loc) · 1.24 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
{
"skillMetadata": {
"sections": [
{
"name": "Options << Name of section",
"fields": [
{
"name": "internal_python_variable_name",
"type": "text",
"label": "Setting Friendly Display Name",
"value": "",
"placeholder": "demo prompt in the input box"
}
]
},
{
"name": "Login << Name of another section",
"fields": [
{
"type": "label",
"label": "Just a little bit of extra info for the user to understand following settings"
},
{
"name": "username",
"type": "text",
"label": "Username",
"value": ""
},
{
"name": "password",
"type": "password",
"label": "Password",
"value": ""
}
]
}
]
}
}