Skip to content

Geography Object

Articles can include geographic tags indicating what geography the article content discusses. Tags are either specific countries or broader geographic groups.

Each entry in the geographies array has a type field indicating whether it references a country or a group.

AttributeTypeDescription
typestringAlways "country"
countrystringISO 3166-1 alpha-2 country code (e.g., "GB", "US")
country_namestringFull country name (e.g., "United Kingdom")
AttributeTypeDescription
typestringAlways "group"
groupobjectGroup details
group.idintegerUnique group identifier
group.namestringGroup display name (e.g., "European Union")
group.slugstringURL-friendly slug (e.g., "european-union")

An article about EU insurance regulation:

{
"id": 12345,
"heading": "EU Solvency II Reforms Impact Cross-Border Reinsurance",
"geographies": [
{
"type": "group",
"group": { "id": 5, "name": "European Union", "slug": "european-union" }
}
]
}

An article about specific countries:

{
"id": 12346,
"heading": "Lloyd's Syndicates Eye US Hurricane Exposure",
"geographies": [
{ "type": "country", "country": "GB", "country_name": "United Kingdom" },
{ "type": "country", "country": "US", "country_name": "United States" }
]
}