Mastercard · Schema
ReplaceBenefitAllocation
Credit CardsDigital IdentityFinancial ServicesFraud DetectionOpen BankingPaymentsFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| cardNumber | integer | 16 or 19 digit PAN number that will have its segment replaced. |
| oldSegmentCode | string | Unique identifier representing a group of benefit bundles that will be expired and replaced. |
| newSegmentCode | string | Unique identifier representing the new group of benefit bundles that will be assigned. |
| effectiveDate | string | Date at which the new segment will go in effect. Date should be in YYYY-MM-DD format. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ReplaceBenefitAllocation",
"type": "object",
"properties": {
"cardNumber": {
"type": "integer",
"description": "16 or 19 digit PAN number that will have its segment replaced."
},
"oldSegmentCode": {
"type": "string",
"description": "Unique identifier representing a group of benefit bundles that will be expired and replaced."
},
"newSegmentCode": {
"type": "string",
"description": "Unique identifier representing the new group of benefit bundles that will be assigned."
},
"effectiveDate": {
"type": "string",
"description": "Date at which the new segment will go in effect. Date should be in YYYY-MM-DD format."
}
}
}