-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathextension.json
More file actions
36 lines (36 loc) · 990 Bytes
/
extension.json
File metadata and controls
36 lines (36 loc) · 990 Bytes
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
{
"id": "json-editor-contentful-ui-extension",
"name": "JSON Editor",
"srcdoc": "./build/index.html",
"fieldTypes": [
"Object"
],
"parameters": {
"installation": [
{
"id": "defaultSchemaPath",
"name": "Default JSON Schema Path",
"description": "Default base path to look for the JSON schemas",
"type": "Symbol",
"required": true,
"default": "https://raw.githubusercontent.com/guidesmiths/json-editor-contentful-ui-extension/master/schemas/"
}
],
"instance": [
{
"id": "overridenSchemaPath",
"name": "Overriden Schema Path",
"description": "Overriden base path to look for this specific JSON schema",
"type": "Symbol",
"required": false
},
{
"id": "schemaName",
"name": "Schema Name",
"description": "Schema name to be validated by the JSON editor",
"type": "Symbol",
"required": true
}
]
}
}