forked from JJediny/DataSourceEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathr_info.json
34 lines (34 loc) · 988 Bytes
/
r_info.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
{
"type": "array",
"title": "Information metadata",
"format": "tabs",
"description": "Gets or sets the array of section titles and contents for display in the layer info panel.\n In future this may replace 'description' above - this list should not contain\n sections named 'description' or 'Description' if the 'description' property\n is also set as both will be displayed.\n Content will be rendered as Markdown with HTML.",
"items": {
"type": "object",
"title": "Info",
"headerTemplate": "{{ self.name }}",
"defaultProperties": [
"name",
"content"
],
"required": [
"name",
"content"
],
"additionalProperties": false,
"properties": {
"name": {
"title": "Section name",
"type": "string"
},
"content": {
"title": "Content",
"type": "string",
"format": "textarea",
"options": {
"expand_height": true
}
}
}
}
}