forked from FIWARE-TMForum/biz-umbrella-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.22 KB
/
package.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
{
"name": "Umbrella Service",
"author": "fdelavega",
"version": "0.1",
"module": "umbrella_service.UmbrellaService",
"media_types": [],
"formats": ["URL"],
"overrides": [],
"pull_accounting": true,
"form": {
"auth_method": {
"type": "select",
"label": "Authorization Method",
"mandatory": true,
"default": "umbrella",
"options": [{
"label": "API Umbrella role",
"value": "umbrella"
}, {
"label": "FIWARE IdM role",
"value": "idm"
}, {
"label": "Both roles",
"value": "both"
}]
},
"role": {
"type": "text",
"label": "Acquisition Role",
"placeholder": "customer",
"mandatory": true
},
"admin_key": {
"type": "text",
"label": "Admin API Key",
"placeholder": "admin_api_key",
"mandatory": true
},
"admin_token": {
"type": "text",
"label": "Admin Auth Token",
"placeholder": "admin_auth_token",
"mandatory": true
},
}
}