Mastercard · Schema

NewCard

Credit CardsDigital IdentityFinancial-ServicesFraud DetectionOpen BankingPaymentsFortune 500

Properties

Name Type Description
numberless boolean Indicates whether number should be printed on the physical card or not.
Not applicable while issuing existing non-personalized card.
instant boolean Indicates whether instant card is required be generated or not.
It will be always considered as true in case of SVC/LVC card issuance irrespective of input value.
Not applicable while issui
deliveryDate string Date on which card is delivered or handed over to client.
Format - It is expressed in ISO 8601 - `YYYY-MM-DD`
View JSON Schema on GitHub

JSON Schema

mastercard-card-issuance-new-card-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "NewCard",
  "type": "object",
  "properties": {
    "numberless": {
      "type": "boolean",
      "description": "Indicates whether number should be printed on the physical card or not. <BR/> Not applicable while issuing existing non-personalized card."
    },
    "instant": {
      "type": "boolean",
      "description": "Indicates whether instant card is required be generated or not. <BR/> It will be always considered as true in case of SVC/LVC card issuance irrespective of input value. <BR/>Not applicable while issuing existing non-personalized card."
    },
    "deliveryDate": {
      "type": "string",
      "description": "Date on which card is delivered or handed over to client. <br/> Format - It is expressed in ISO 8601 - `YYYY-MM-DD`"
    }
  }
}