-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
53 lines (53 loc) · 1.21 KB
/
schema.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
{
"type": "component",
"metadata": {},
"schema": {
"name": "json-editor",
"friendlyName": "JSON Editor",
"description": "JSON Editor (based on https://github.com/josdejong/svelte-jsoneditor)",
"icon": "Brackets",
"settings": [
{
"type": "select",
"key": "fieldType",
"label": "Field Type",
"options": [{"label": "String", "value": "text"}, {"label": "JSON", "value": "json"}],
"defaultValue": "text",
"required": true
},
{
"type": "field/string",
"key": "fieldText",
"label": "Field (String)",
"dependsOn": {
"setting": "fieldType",
"value": "text"
}
},
{
"type": "field/json",
"key": "fieldJSON",
"label": "Field (JSON)",
"dependsOn": {
"setting": "fieldType",
"value": "json"
}
},
{
"type": "text",
"label": "Label",
"key": "label"
},
{
"type": "boolean",
"label": "Read Only",
"key": "readOnly"
},
{
"type": "validation/string",
"label": "Validation (String)",
"key": "validationText"
}
]
}
}