forked from TerriaJS/DataSourceEditor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
catalogMember.json
76 lines (76 loc) · 1.89 KB
/
catalogMember.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"description": "Name identifying this item or group.",
"propertyOrder": 1,
"default": "(unnamed item)"
},
"type": {
"title": "Item type",
"type": "string",
"description": "Code designating the kind of data source. Cannot be changed in this editor.",
"options": {
"hidden": true
}
},
"description": {
"title": "Description",
"description": "Free text description of the layer, appearing in the datasource description box, overriding any retrieved metadata.",
"type": "string",
"format": "textarea",
"options": {
"expand_height": true
}
},
"url": {
"title": "URL",
"description": "Source of the data to load",
"type": "string"
},
"info": {
"$ref": "r_info.json"
},
"isPromoted": {
"title": "Promote this item",
"type": "boolean",
"format": "checkbox",
"description": "Whether this item is kept above other non-promoted items."
},
"isHidden": {
"title": "Hide",
"type": "boolean",
"format": "checkbox",
"description": "Whether this item is hidden from the catalog."
},
"initialMessage": {
"title": "Initial message",
"type": "object",
"description": "A message that is presented to the user when an item or group is initially clicked.",
"defaultProperties": [
"title",
"content",
"key"
],
"options": {
"remove_empty_properties": true
},
"properties": {
"title": {
"title": "Title",
"type": "string"
},
"content": {
"title": "Content",
"type": "string"
},
"key": {
"title": "Key",
"type": "string"
}
}
}
}
}