forked from JJediny/DataSourceEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbsIttCatalogGroup.json
59 lines (59 loc) · 1.53 KB
/
AbsIttCatalogGroup.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
{
"title": "ABS ITT Dataset List",
"type": "object",
"allOf": [
{
"$ref": "grouptypes.json"
},
{
"$ref": "CatalogMember.json"
},
{
"$ref": "CatalogItem.json"
}
],
"properties": {
"type": {
"type": "string",
"enum": [
"abs-itt-dataset-list"
]
},
"dataSetID": {
"title": "Dataset ID",
"description": "The ID of the ABS dataset. You can obtain a list of all datasets by querying http://stat.abs.gov.au/itt/query.jsp?method=GetDatasetList (or equivalent)",
"type": "string"
},
"regionType": {
"title": "Region Type",
"description": "The ABS region type to query. See the <a href='http://stat.abs.gov.au/itt/query.jsp?method=GetCodeListValue&datasetid=ABS_CENSUS2011_B25&concept=REGIONTYPE&format=json'>\n list of all available region types for a dataset</a>.",
"type": "string"
},
"blacklist": {
"$ref": "r_blacklist.json"
},
"whitelist": {
"$ref": "r_whitelist.json"
},
"itemProperties": {
"type": "object",
"title": "Item Properties",
"description": "Additional properties applied to each item in the group, overriding values retrieved from data sources.",
"required": [],
"properties": {
"info": {
"title": "Information metadata",
"$ref": "r_info.json"
}
},
"allOf": [
{
"$ref": "AbsIttCatalogItem.json"
},
{
"$ref": "CatalogItem.json"
}
]
}
}
}