Skip to content

Instantly share code, notes, and snippets.

@zzzet
Created June 2, 2016 09:57
Show Gist options
  • Save zzzet/8cfc7b5de09ea23515cc543365968a0a to your computer and use it in GitHub Desktop.
Save zzzet/8cfc7b5de09ea23515cc543365968a0a to your computer and use it in GitHub Desktop.
World Regions and Sub Regions in json
{
"regions": [
{
"name": "Africa",
"subregions": [
"Eastern Africa",
"Middle Africa",
"Northern Africa",
"Southern Africa",
"Western Africa"
]
},
{
"name": "Americas",
"subregions": [
"Caribbean",
"Central America",
"South America",
"Northern America"
]
},
{
"name": "Asia",
"subregions": [
"Central Asia",
"Eastern Asia",
"Southern Asia",
"South-Eastern Asia",
"Western Asia"
]
},
{
"name": "Europe",
"subregions": [
"Eastern Europe",
"Northern Europe",
"Southern Europe",
"Western Europe"
]
},
{
"name": "Oceania",
"subregions": [
"Australia and New Zealand",
"Melanesia",
"Micronesia",
"Polynesia"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment