Mastercard · Schema
SuspectedFraud
Credit CardsDigital IdentityFinancial ServicesFraud DetectionOpen BankingPaymentsFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| cardNumber | string | Cardholder account number used in the fraudulent transaction. Card number to be verified through Luhn's algorithm. |
| transactionAmount | string | Transaction amount at the merchant location (without any decimals). |
| transactionDate | string | Local date at the merchant location when the transaction occurred. Format is 'YYYYMMDD'. |
| fraudPostedDate | string | Date on which the fraud is posted in FLD by the originator. Format is 'YYYYMMDD'. |
| fraudTypeCode | string | Code identifying the reason the originator submitted the transaction as fraud in FLD. Please refer to [TBD - Table 1](https://developer.mastercard.com/) for possible values. |
| accountDeviceType | string | Indicates if the account uses a magnetic stripe, chip, pin, contactless or any combination thereof. Please refer to [Table 3](https://developer.mastercard.com/fld-fraud-submission/documentation/parame |
| cardholderReportedDate | string | Date on which the cardholder had reported the fraud. Format is 'YYYYMMDD'. |
| memo | string | Brief description by the originator providing some comment supporting the action. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SuspectedFraud",
"type": "object",
"properties": {
"cardNumber": {
"type": "string",
"description": "Cardholder account number used in the fraudulent transaction. Card number to be verified through Luhn's algorithm."
},
"transactionAmount": {
"type": "string",
"description": "Transaction amount at the merchant location (without any decimals)."
},
"transactionDate": {
"type": "string",
"description": "Local date at the merchant location when the transaction occurred. Format is 'YYYYMMDD'."
},
"fraudPostedDate": {
"type": "string",
"description": "Date on which the fraud is posted in FLD by the originator. Format is 'YYYYMMDD'."
},
"fraudTypeCode": {
"type": "string",
"description": "Code identifying the reason the originator submitted the transaction as fraud in FLD. Please refer to [TBD - Table 1](https://developer.mastercard.com/) for possible values."
},
"accountDeviceType": {
"type": "string",
"description": "Indicates if the account uses a magnetic stripe, chip, pin, contactless or any combination thereof. Please refer to [Table 3](https://developer.mastercard.com/fld-fraud-submission/documentation/parameters/annexure-1/#table-3-account-device-type-codes) for possible values. This field is required for Issuer and optional for Acquirer."
},
"cardholderReportedDate": {
"type": "string",
"description": "Date on which the cardholder had reported the fraud. Format is 'YYYYMMDD'."
},
"memo": {
"type": "string",
"description": "Brief description by the originator providing some comment supporting the action."
}
}
}