IPGeolocation.io · JSON Structure

Ip Location Country Metadata Structure

Telephone, TLD, and language information for the country.

Type: object Properties: 3
GeocodingIP GeolocationIP IntelligenceIP SecurityASN LookupAbuse ContactTimezoneAstronomyUser AgentThreat IntelligencePublic APIs

CountryMetadata is a JSON Structure definition published by IPGeolocation.io, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

calling_code tld languages

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ipgeolocation/refs/heads/main/json-structure/ip-location-country-metadata-structure.json",
  "name": "CountryMetadata",
  "description": "Telephone, TLD, and language information for the country.",
  "type": "object",
  "properties": {
    "calling_code": {
      "type": "string",
      "description": "International dialing code with leading `+`.",
      "example": "+46"
    },
    "tld": {
      "type": "string",
      "description": "Country-code top-level domain.",
      "example": ".se"
    },
    "languages": {
      "type": "array",
      "description": "IETF language tags spoken in the country, ordered by prevalence.\n",
      "items": {
        "type": "string"
      },
      "examples": [
        "sv-SE",
        "se",
        "sma",
        "fi-SE"
      ]
    }
  }
}