forked from TerriaJS/DataSourceEditor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
AbsIttCatalogItem.json
60 lines (60 loc) · 2.21 KB
/
AbsIttCatalogItem.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
{
"title": "ABS ITT",
"type": "object",
"allOf": [
{
"$ref": "CatalogItem.json"
},
{
"$ref": "CatalogMember.json"
}
],
"defaultProperties": [
"type",
"url",
"name"
],
"properties": {
"type": {
"type": "string",
"enum": [
"abs-itt"
]
},
"filter": {
"title": "Filter",
"description": "The list of initial concepts and codes on which to filter the data. See the \n <a target='_blank' href='http://stat.abs.gov.au/itt/query.jsp?method=GetDatasetConcepts&datasetid=ABS_CENSUS2011_B25>list of all available\n concepts for a dataset</a>\n and a <a target='_blank' href='http://stat.abs.gov.au/itt/query.jsp?method=GetCodeListValue&datasetid=ABS_CENSUS2011_B25&concept=MEASURE&format=json'>list of the possible values for a concept</a>",
"type": "array",
"format": "table",
"items": {
"type": "string"
}
},
"dataSetID": {
"title": "Dataset ID",
"description": "The ID of the ABS dataset. See the <a target='_blank' href='http://stat.abs.gov.au/itt/query.jsp?method=GetDatasetList'>list of all datasets</a>",
"type": "string"
},
"regionType": {
"title": "Region Type",
"description": "The ABS region type to query. See the <a target='_blank' href='http://stat.abs.gov.au/itt/query.jsp?method=GetCodeListValue&datasetid=ABS_CENSUS2011_B25&concept=REGIONTYPE&format=json'>\n available region types for a dataset</a>",
"type": "string"
},
"regionConcept": {
"title": "Region Concept",
"description": "The ABS region concept. You can obtain a list of all available concepts for\n a dataset by querying http://stat.abs.gov.au/itt/query.jsp?method=GetDatasetConcepts&datasetid=ABS_CENSUS2011_B19",
"type": "string"
},
"opacity": {
"title": "Opacity",
"description": "the opacity (alpha) of the data item, where 0.0 is fully transparent and 1.0 is fully opaque.",
"type": "number"
},
"displayPercent": {
"title": "Display percentage",
"description": "Show percentages instead of raw values. True by default",
"type": "boolean",
"format": "checkbox"
}
}
}