Mastercard · Schema

InitialLoad

Credit CardsDigital IdentityFinancial ServicesFraud DetectionOpen BankingPaymentsFortune 500

Properties

Name Type Description
currency string The currency in which the amount is loaded.
**Valid values :** 3-letter currency codes in `ISO 4217`
amount number The amount that can be loaded to the client account.
View JSON Schema on GitHub

JSON Schema

mastercard-card-issuance-initial-load-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "InitialLoad",
  "type": "object",
  "properties": {
    "currency": {
      "type": "string",
      "description": "The currency in which the amount is loaded. <br/> **Valid values :** 3-letter currency codes in `ISO 4217`"
    },
    "amount": {
      "type": "number",
      "description": "The amount that can be loaded to the client account."
    }
  }
}