Country

Country reference data with ISO codes

8 properties
Schema

Properties

PropertyTypeModeDescriptionRequired
codestring
stored

ISO 3166-1 alpha-2 country code

Example: "US"

Required
code3string
stored

ISO 3166-1 alpha-3 country code

Example: "USA"

Optional
numericCodestring
stored

ISO 3166-1 numeric country code

Example: "840"

Optional
namestring
stored

Official country name

Example: "United States of America"

Required
nativeNamestring
stored

Country name in native language

Example: "United States"

Optional
regionstring
enum

Geographic region

Values: Europe, Asia, Americas, Africa, Oceania

Example: "Americas"

Optional
subregionstring
stored

Geographic subregion

Example: "Northern America"

Optional
demonymstring
stored

Nationality/citizenship demonym (Algerian, American, French, British, etc.)

Example: "American"

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"
}