Properties
| Name | Type | Description |
|---|---|---|
| errorCode | string | The error code mapped to the error message. |
| errorType | string | The category of the error. |
| message | string | A short explanation of the issue. |
| pspReference | string | The PSP reference of the payment. |
| status | integer | The HTTP response status. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ServiceError",
"title": "ServiceError",
"properties": {
"errorCode": {
"description": "The error code mapped to the error message.",
"type": "string"
},
"errorType": {
"description": "The category of the error.",
"type": "string"
},
"message": {
"description": "A short explanation of the issue.",
"type": "string"
},
"pspReference": {
"description": "The PSP reference of the payment.",
"type": "string"
},
"status": {
"description": "The HTTP response status.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
}