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
/
AbsIttCatalogItem.json
69 lines (69 loc) · 2.51 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
61
62
63
64
65
66
67
68
69
{
"type": "object",
"defaultProperties": [
"name",
"type",
"url"
],
"properties": {
"dataSetID": {
"type": "string",
"title": "#Data set i d",
"description": "The ID of the ABS dataset. You can obtain a list of all datasets by querying\nhttp://stat.abs.gov.au/itt/query.jsp?method=GetDatasetList (or equivalent). This property\nis observable."
},
"regionTypeConcept": {
"type": "string",
"title": "#Region type concept",
"description": "The ABS region type concept used with the region code to set the region type."
},
"regionConcept": {
"type": "string",
"title": "#Region concept",
"description": "The ABS region concept. You can obtain a list of all available concepts for\na dataset by querying\nhttp://stat.abs.gov.au/itt/query.jsp?method=GetDatasetConcepts&datasetid=ABS_CENSUS2011_B19\n(or equivalent)."
},
"filter": {
"type": "array",
"title": "#Filter",
"description": "Gets the list of initial concepts and codes on which to filter the data. You can obtain a list of all available\nconcepts for a dataset by querying http://stat.abs.gov.au/itt/query.jsp?method=GetDatasetConcepts&datasetid=ABS_CENSUS2011_B25\n(or equivalent) and a list of the possible values for a concept by querying\nhttp://stat.abs.gov.au/itt/query.jsp?method=GetCodeListValue&datasetid=ABS_CENSUS2011_B25&concept=MEASURE&format=json.",
"format": "table",
"items": {
"type": "string"
}
},
"opacity": {
"type": "number",
"title": "#Opacity",
"description": "The opacity (alpha) of the data item, where 0.0 is fully transparent and 1.0 is\nfully opaque."
},
"displayPercent": {
"type": "boolean",
"title": "#Display percent",
"description": "Gets or sets whether to show percentages or raw values.",
"format": "checkbox"
},
"tableStyle": {
"type": "object",
"title": "#Table style",
"description": "The styling for the abs data."
},
"type": {
"type": "string",
"enum": [
"abs-itt"
],
"options": {
"hidden": true
}
}
},
"description": "A {@link CatalogItem} representing region-mapped data obtained from the Australia Bureau of Statistics\n(ABS) ITT query interface. Documentation for the query interface is found here: http://stat.abs.gov.au/itt/r.jsp?api",
"title": "ABS.Stat",
"allOf": [
{
"$ref": "CatalogItem.json"
},
{
"$ref": "CatalogMember.json"
}
]
}