-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.json
63 lines (63 loc) · 1.63 KB
/
configuration.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
58
59
60
61
62
63
[
{
"key": "UserName",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "UserName",
"description": "The UserName to connect to the API",
"required": true
}
},
{
"key": "Password",
"type": "input",
"defaultValue": "",
"templateOptions": {
"type": "password",
"label": "Password",
"description": "The password to connect to the API",
"required": true
}
},
{
"key": "BaseUrl",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "BaseUrl",
"description": "The URL to the API.",
"required": true
}
},
{
"key": "positionId",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Dummy PositionId",
"description": "Dummy positionId Required to remove all assigned positions",
"required": true
}
},
{
"key": "orgunitId",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Dummy OrgunitId",
"description": "Dummy OrgunitId Required to remove all assigned positions",
"required": true
}
},
{
"key": "IsDebug",
"type": "checkbox",
"defaultValue": true,
"templateOptions": {
"label": "Toggle debug logging",
"description": "When toggled, debug logging will be displayed",
"required": false
}
}
]