Mastercard · Schema
LVCCard
LVC Card information
Credit CardsDigital IdentityFinancial ServicesFraud DetectionOpen BankingPaymentsFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| perTransactionLimit | string | It is the limit set for each transaction. **Conditional Mandatory*** field - Required while requesting for LVC card. |
| totalTransactionLimit | string | It is the maximum transaction limit configured for the client. **Conditional Mandatory*** field - Required while requesting for LVC card. |
| velocity | string | Number of times the card can be used in a configured duration. **Conditional Mandatory*** field - Required while requesting for LVC card. |
| validity | string | Card validity duration after which the card gets expired. **Conditional Mandatory*** field - Required while requesting for LVC card. Must be expressed in ISO 8601 |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "LVCCard",
"type": "object",
"description": "LVC Card information",
"properties": {
"perTransactionLimit": {
"type": "string",
"description": "It is the limit set for each transaction. <BR/> **Conditional Mandatory**<font color='red'>* </font> field - Required while requesting for LVC card."
},
"totalTransactionLimit": {
"type": "string",
"description": "It is the maximum transaction limit configured for the client. <BR/> **Conditional Mandatory**<font color='red'>* </font> field - Required while requesting for LVC card."
},
"velocity": {
"type": "string",
"description": "Number of times the card can be used in a configured duration. <BR/> **Conditional Mandatory**<font color='red'>* </font> field - Required while requesting for LVC card."
},
"validity": {
"type": "string",
"description": "Card validity duration after which the card gets expired. <BR/> **Conditional Mandatory**<font color='red'>* </font> field - Required while requesting for LVC card. <BR/> Must be expressed in ISO 8601 Durations format: <BR/> Format - P(n)Y(n)M(n)DT(n)H(n)M(n)S <BR/> <BR/> Where: <BR/>\n* (n) is replaced by the value for each of the date and time elements that follow the (n). <BR/>\n* P is the duration designator (referred to as \"period\"), and is always placed at the beginning of the duration. <BR/>\n* Y is the year designator that follows the value for the number of years. <BR/>\n* M is the month designator that follows the value for the number of months. <BR/>\n* W is the week designator that follows the value for the number of weeks. <BR/>\n* D is the day designator that follows the value for the number of days. <BR/>\n* T is the time designator that precedes the time components. <BR/>\n* H is the hour designator that follows the value for the number of hours. <BR/>\n* M is the minute designator that follows the value for the number of minutes. <BR/> * S is the second designator that follows the value for the number of seconds. <BR/> Maximum validity period: 3 Years"
}
}
}