-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.json
37 lines (37 loc) · 883 Bytes
/
module.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
{
"autoload": true,
"singleton": true,
"dependencies": [
"BaseModule"
],
"category": "developers_stuff",
"author": "Arjan Haverkamp",
"moduleName": "HTTPBridge",
"homepage": "https://github.com/av01d/zway-http-bridge",
"version": "1.0.0",
"maturity": "stable",
"icon": "icon.png",
"defaults": {
"title": "__m_title__",
"description": "__m_descr__",
"url": ""
},
"options": {
"fields": {
"url": {
"label": "__fields_url_label__",
"helper": "__fields_url_helper__"
}
}
},
"schema": {
"properties": {
"url": {
"type": "string",
"required": true
}
},
"required": true,
"type": "object"
}
}