Mastercard · Schema

BaseAccount

Credit CardsDigital IdentityFinancial ServicesFraud DetectionOpen BankingPaymentsFortune 500

Properties

Name Type Description
default boolean Indicates given account is default account or not
currency string Currency of the account.
Values - 3 letter alphabetic currency codes in `ISO 4217`
View JSON Schema on GitHub

JSON Schema

mastercard-card-issuance-base-account-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BaseAccount",
  "type": "object",
  "properties": {
    "default": {
      "type": "boolean",
      "description": "Indicates given account is default account or not"
    },
    "currency": {
      "type": "string",
      "description": "Currency of the account. <br> Values - 3 letter alphabetic currency codes in `ISO 4217` <br/>"
    }
  }
}