forked from TerriaJS/DataSourceEditor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ArcGisCatalogGroup.json
46 lines (46 loc) · 949 Bytes
/
ArcGisCatalogGroup.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
{
"title": "ESRI Mapserver group",
"description": "An ESRI Mapserver catalog",
"type": "object",
"allOf": [
{
"$ref": "grouptypes.json"
},
{
"$ref": "CatalogMember.json"
}
],
"defaultProperties": [
"name",
"type",
"url"
],
"properties": {
"type": {
"type": "string",
"enum": [
"esri-mapServer-group"
]
},
"dataCustodian": {
"$ref": "r_datacustodian.json"
},
"blacklist": {
"$ref": "r_blacklist.json"
},
"itemProperties": {
"type": "object",
"title": "Item Properties",
"description": "Additional properties applied to each item in the group, overriding values retrieved from data sources.",
"additionalProperties": true,
"required": [],
"properties": {},
"$ref": "ArcGisCatalogItem.json",
"allOf": [
{
"$ref": "CatalogMember.json"
}
]
}
}
}