Upload data_dictionary.json with huggingface_hub
Browse files- data_dictionary.json +41 -0
data_dictionary.json
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"version": "1.0.0",
|
3 |
+
"last_updated": "2025-06-22T17:55:07.055211",
|
4 |
+
"fields": [
|
5 |
+
{
|
6 |
+
"name": "geographic_id",
|
7 |
+
"type": "string",
|
8 |
+
"description": "Australian Statistical Geography Standard (ASGS) SA2 identifier",
|
9 |
+
"example": "101021001",
|
10 |
+
"constraints": {
|
11 |
+
"pattern": "^[0-9]{9}$"
|
12 |
+
}
|
13 |
+
},
|
14 |
+
{
|
15 |
+
"name": "geographic_name",
|
16 |
+
"type": "string",
|
17 |
+
"description": "Human-readable name of the SA2 area",
|
18 |
+
"example": "Sydney - Haymarket - The Rocks"
|
19 |
+
},
|
20 |
+
{
|
21 |
+
"name": "life_expectancy_years",
|
22 |
+
"type": "float",
|
23 |
+
"description": "Life expectancy at birth in years",
|
24 |
+
"example": 82.5,
|
25 |
+
"constraints": {
|
26 |
+
"min": 60,
|
27 |
+
"max": 100
|
28 |
+
}
|
29 |
+
},
|
30 |
+
{
|
31 |
+
"name": "smoking_prevalence_percent",
|
32 |
+
"type": "float",
|
33 |
+
"description": "Percentage of population who smoke regularly",
|
34 |
+
"example": 14.2,
|
35 |
+
"constraints": {
|
36 |
+
"min": 0,
|
37 |
+
"max": 100
|
38 |
+
}
|
39 |
+
}
|
40 |
+
]
|
41 |
+
}
|