Country
Country reference data with ISO codes
8 properties
Schema
Properties
| Property | Type | Mode | Description | Required |
|---|---|---|---|---|
| code | string | stored | ISO 3166-1 alpha-2 country code Example: | Required |
| code3 | string | stored | ISO 3166-1 alpha-3 country code Example: | Optional |
| numericCode | string | stored | ISO 3166-1 numeric country code Example: | Optional |
| name | string | stored | Official country name Example: | Required |
| nativeName | string | stored | Country name in native language Example: | Optional |
| region | string | enum | Geographic region Values: Example: | Optional |
| subregion | string | stored | Geographic subregion Example: | Optional |
| demonym | string | stored | Nationality/citizenship demonym (Algerian, American, French, British, etc.) Example: | Optional |
Examples
Example 1
{
"@type": "Country",
"code": "US",
"code3": "USA",
"numericCode": "840",
"name": "United States of America",
"nativeName": "United States",
"region": "Americas",
"subregion": "Northern America",
"demonym": "American"
}Example 2
{
"@type": "Country",
"code": "FR",
"code3": "FRA",
"numericCode": "250",
"name": "France",
"nativeName": "France",
"region": "Europe",
"subregion": "Western Europe",
"demonym": "French"
}Example 3
{
"@type": "Country",
"code": "GB",
"code3": "GBR",
"numericCode": "826",
"name": "United Kingdom",
"nativeName": "United Kingdom",
"region": "Europe",
"subregion": "Northern Europe",
"demonym": "British"
}