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
/
AbsIttCatalogGroup.json
71 lines (71 loc) · 2.32 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"type": "object",
"defaultProperties": [
"name",
"type",
"url"
],
"properties": {
"url": {
"type": "string",
"title": "#URL",
"description": "The URL of the ABS ITT API, typically http://stat.abs.gov.au/itt/query.jsp."
},
"filter": {
"type": "array",
"title": "#Filter",
"description": "The filter for 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.",
"format": "tabs",
"items": {
"type": "string"
}
},
"tableStyle": {
"type": "object",
"title": "#Table style",
"description": "The styling for the abs data."
},
"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."
},
"blacklist": {
"type": "object",
"title": "#Blacklist",
"description": "A hash of names of blacklisted datasets. A dataset that appears in this hash\nwill not be shown to the user. In this hash, the keys should be the name of the dataset to blacklist,\nand the values should be \"true\".",
"additionalProperties": {
"type": "boolean",
"format": "checkbox"
}
},
"whitelist": {
"type": "object",
"title": "#Whitelist",
"description": "A hash of names of whitelisted datasets. A dataset that doesn't appears in this hash\nwill not be shown to the user. In this hash, the keys should be the name of the dataset to blacklist,\nand the values should be \"true\".",
"additionalProperties": {
"type": "boolean",
"format": "checkbox"
}
},
"type": {
"type": "string",
"enum": [
"abs-itt-dataset-list"
],
"options": {
"hidden": true
}
}
},
"description": "A {@link CatalogGroup} representing a collection of items from an Australian Bureau of Statistics\n(ABS) ITT server, formed by querying for all the codes in a given dataset and concept.",
"title": "ABS.Stat Dataset List",
"allOf": [
{
"$ref": "CatalogGroup.json"
},
{
"$ref": "CatalogMember.json"
}
]
}