-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
47
48
{
"name": "NGSI-query",
"author": "jchoque",
"version": "0.1",
"module": "ngsi_query.NGSIQuery",
"media_types": ["application/json"],
"formats": ["URL"],
"overrides": [],
"pull_accounting": true,
"form_order": ["app_id", "role", "perm_name", "action", "resource", "is_regex"],
"form": {
"app_id": {
"type": "text",
"label": "Application ID",
"placeholder": "app_id",
"mandatory": true
},
"role": {
"type": "text",
"label": "Acquisition Role",
"placeholder": "customer",
"mandatory": true
},
"perm_name": {
"type": "text",
"label": "Permission Name",
"placeholder": "iot_sensors",
"mandatory": true
},
"action": {
"type": "text",
"label": "Action",
"placeholder": "GET",
"mandatory": true
},
"resource": {
"type": "text",
"label": "Resource",
"placeholder": "/v2/entities/",
"mandatory": true
},
"is_regex": {
"type": "checkbox",
"label": "Is regex?",
"default": true
}
}
}