File size: 984 Bytes
ad8efa2 |
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 |
{
"version": "1.0.0",
"last_updated": "2025-06-22T17:55:07.055211",
"fields": [
{
"name": "geographic_id",
"type": "string",
"description": "Australian Statistical Geography Standard (ASGS) SA2 identifier",
"example": "101021001",
"constraints": {
"pattern": "^[0-9]{9}$"
}
},
{
"name": "geographic_name",
"type": "string",
"description": "Human-readable name of the SA2 area",
"example": "Sydney - Haymarket - The Rocks"
},
{
"name": "life_expectancy_years",
"type": "float",
"description": "Life expectancy at birth in years",
"example": 82.5,
"constraints": {
"min": 60,
"max": 100
}
},
{
"name": "smoking_prevalence_percent",
"type": "float",
"description": "Percentage of population who smoke regularly",
"example": 14.2,
"constraints": {
"min": 0,
"max": 100
}
}
]
} |