Mastercard · Schema

CardReplacement

Credit CardsDigital IdentityFinancial ServicesFraud DetectionOpen BankingPaymentsFortune 500

Properties

Name Type Description
oldCardNumber integer 16 or 19 digit PAN number that will be expired and replaced along with its benefit bundles.
newCardNumber integer New 16 or 19 digit PAN number that will have the same unexpired set of benefits as the old card number.
effectiveDate string Date at which the replace will be effective. Date should be in YYYY-MM-DD format.
View JSON Schema on GitHub

JSON Schema

mastercard-benefit-allocation-service-card-replacement-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CardReplacement",
  "type": "object",
  "properties": {
    "oldCardNumber": {
      "type": "integer",
      "description": "16 or 19 digit PAN number that will be expired and replaced along with its benefit bundles."
    },
    "newCardNumber": {
      "type": "integer",
      "description": "New 16 or 19 digit PAN number that will have the same unexpired set of benefits as the old card number."
    },
    "effectiveDate": {
      "type": "string",
      "description": "Date at which the replace will be effective. Date should be in YYYY-MM-DD format."
    }
  }
}