forked from TerriaJS/catalog-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CswCatalogGroup.json
69 lines (69 loc) · 2.12 KB
/
CswCatalogGroup.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
{
"type": "object",
"defaultProperties": [
"name",
"type",
"url"
],
"properties": {
"url": {
"type": "string",
"title": "#URL",
"description": "The URL of the CSW server."
},
"getRecordsTemplate": {
"type": "string",
"title": "#Get records template",
"description": "The template XML string to POST to the CSW server to query for catalog items. If this property is undefined,\n{@link CswCatalogGroup.defaultGetRecordsTemplate} is used. The XML string should have a `{startPosition}` placeholder to be\nreplaced with the next start position in order to allow incremental paging of results."
},
"includeWms": {
"type": "boolean",
"title": "#Include WMS",
"description": "True to allow WMS resources to be added to the catalog; otherwise, false.",
"format": "checkbox"
},
"includeKml": {
"type": "boolean",
"title": "#Include KML",
"description": "True to allow KML resources to be added to the catalog; otherwise, false.",
"format": "checkbox"
},
"includeCsv": {
"type": "boolean",
"title": "#Include CSV",
"description": "True to allow CSV resources to be added to the catalog; otherwise, false.",
"format": "checkbox"
},
"includeEsriMapServer": {
"type": "boolean",
"title": "#Include esri map server",
"description": "True to allow ESRI Map resources to be added to the catalog; otherwise, false.",
"format": "checkbox"
},
"includeGeoJson": {
"type": "boolean",
"title": "#Include geo JSON",
"description": "True to allow GeoJSON resources to be added to the catalog; otherwise, false.",
"format": "checkbox"
},
"type": {
"type": "string",
"enum": [
"csw"
],
"options": {
"hidden": true
}
}
},
"description": "A {@link CatalogGroup} representing a collection of datasets queried from an OGC Catalog Service (CSW) server.",
"title": "Catalogue Service (CSW)",
"allOf": [
{
"$ref": "CatalogGroup.json"
},
{
"$ref": "CatalogMember.json"
}
]
}