Mastercard · Schema
ErrorItem
Credit CardsDigital IdentityFinancial ServicesFraud DetectionOpen BankingPaymentsFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| Source | string | Source of the error. |
| Description | string | Short description of the ReasonCode field. |
| ReasonCode | string | A unique constant identifying the error case encountered during API request processing. |
| Recoverable | boolean | Indicates whether this error will always be returned for this request, or retrying could change the outcome. |
| Details | string | Where appropriate, indicates detailed information about data received. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ErrorItem",
"type": "object",
"properties": {
"Source": {
"type": "string",
"description": "Source of the error."
},
"Description": {
"type": "string",
"description": "Short description of the ReasonCode field."
},
"ReasonCode": {
"type": "string",
"description": "A unique constant identifying the error case encountered during API request processing."
},
"Recoverable": {
"type": "boolean",
"description": "Indicates whether this error will always be returned for this request, or retrying could change the outcome."
},
"Details": {
"type": "string",
"description": "Where appropriate, indicates detailed information about data received."
}
}
}