Mastercard · Schema

FrozenCard

Credit CardsDigital IdentityFinancial ServicesFraud DetectionOpen BankingPaymentsFortune 500

Properties

Name Type Description
cardNumber integer 16 or 19 digit PAN number that will be frozen/unfrozen.
date string Date at which the freeze will be effective. Date should be in YYYY-MM-DD format.
isFrozen boolean Variable to change whether or not the card number is frozen. True for freeze and false for unfreeze.
View JSON Schema on GitHub

JSON Schema

mastercard-benefit-allocation-service-frozen-card-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FrozenCard",
  "type": "object",
  "properties": {
    "cardNumber": {
      "type": "integer",
      "description": "16 or 19 digit PAN number that will be frozen/unfrozen."
    },
    "date": {
      "type": "string",
      "description": "Date at which the freeze will be effective. Date should be in YYYY-MM-DD format."
    },
    "isFrozen": {
      "type": "boolean",
      "description": "Variable to change whether or not the card number is frozen. True for freeze and false for unfreeze."
    }
  }
}