7digital · Schema

Country

Country schema from 7digital API

MusicStreamingLicensingCatalogueB2BRoyalty ReportingPublic APIs

Properties

Name Type Description
countryCode string ISO 3166-1 alpha-2 code.
name string
currency string ISO 4217 currency code.
View JSON Schema on GitHub

JSON Schema

api-country-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/7digital/refs/heads/main/json-schema/api-country-schema.json",
  "title": "Country",
  "description": "Country schema from 7digital API",
  "type": "object",
  "properties": {
    "countryCode": {
      "type": "string",
      "description": "ISO 3166-1 alpha-2 code.",
      "example": "GB"
    },
    "name": {
      "type": "string",
      "example": "United Kingdom"
    },
    "currency": {
      "type": "string",
      "description": "ISO 4217 currency code.",
      "example": "GBP"
    }
  }
}