Mastercard · Schema

Country

Available information for the Country such as the name and code

Credit CardsDigital IdentityFinancial ServicesFraud DetectionOpen BankingPaymentsFortune 500

Properties

Name Type Description
countryCode string Three digit alpha country code as defined in ISO 3166-1
countryName string Name of the country
View JSON Schema on GitHub

JSON Schema

mastercard-merchant-locations-country-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Country",
  "type": "object",
  "description": "Available information for the Country such as the name and code",
  "properties": {
    "countryCode": {
      "type": "string",
      "description": "Three digit alpha country code as defined in ISO 3166-1"
    },
    "countryName": {
      "type": "string",
      "description": "Name of the country"
    }
  }
}