{ "$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" }