Mastercard · Schema

CbsAccount

Core Banking System Account Info. Applicable for Debit Cards only

Credit CardsDigital IdentityFinancial ServicesFraud DetectionOpen BankingPaymentsFortune 500

Properties

Name Type Description
number string Primary Account number in CBS.
**Conditional Mandatory*** field - Required while creating new client.
clientId string Unique id/code/reference assigned to the client in CBS.
currency string "The currency in which the amount is loaded.
Values - 3 letter alphabetic currency codes in `ISO 4217`"
**Conditional Mandatory*** field - Required while creating
View JSON Schema on GitHub

JSON Schema

mastercard-card-issuance-cbs-account-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CbsAccount",
  "type": "object",
  "description": "Core Banking System Account Info. Applicable for Debit Cards only",
  "properties": {
    "number": {
      "type": "string",
      "description": "Primary Account number in CBS. <br/> **Conditional Mandatory**<font color='red'>* </font> field - Required while creating new client."
    },
    "clientId": {
      "type": "string",
      "description": "Unique id/code/reference assigned to the client in CBS."
    },
    "currency": {
      "type": "string",
      "description": "\"The currency in which the amount is loaded. <br> Values - 3 letter alphabetic currency codes in `ISO 4217`\" <br/> **Conditional Mandatory**<font color='red'>* </font> field - Required while creating new client."
    }
  }
}