This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSocrataCatalogGroup.json
53 lines (53 loc) · 1.67 KB
/
SocrataCatalogGroup.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
{
"type": "object",
"defaultProperties": [
"name",
"type",
"url"
],
"properties": {
"url": {
"type": "string",
"title": "#URL",
"description": "The URL of the Socrata server."
},
"filterQuery": {
"type": "array",
"title": "#Filter query",
"description": "The filter query to pass to Socrata when querying the available data sources and their groups. Each string in the\narray is passed to Socrata as an independent search string and the results are concatenated to create the complete list.",
"format": "tabs",
"items": {
"type": "string"
}
},
"dataCustodian": {
"type": "string",
"title": "#Data custodian",
"description": "A description of the custodian of the data sources in this group.\nThis property is an HTML string that must be sanitized before display to the user."
},
"groupBy": {
"type": "string",
"title": "#Group by",
"description": "A value indicating how datasets should be grouped. Valid values are:\n* `none` - Datasets are put in a flat list; they are not grouped at all.\n* `category` - Datasets are grouped according to their category in Socrata."
},
"type": {
"type": "string",
"enum": [
"socrata"
],
"options": {
"hidden": true
}
}
},
"description": "A {@link CatalogGroup} representing a collection of layers from a [Socrata](http://Socrata.org) server. Only spatial layers with a defined Map \nvisualisation are shown, using WMS.",
"title": "Socrata Server",
"allOf": [
{
"$ref": "CatalogGroup.json"
},
{
"$ref": "CatalogMember.json"
}
]
}