{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Fail-GenericError2", "title": "Fail-GenericError2", "required": [ "paymentId", "settleId", "value", "code", "message", "requestId" ], "type": "object", "description": "Internal server error information.", "properties": { "paymentId": { "type": "string", "description": "The same `paymentId` sent in the request." }, "settleId": { "type": "string", "nullable": true, "description": "VTEX identifier for this settlement." }, "value": { "type": "integer", "description": "The amount to be settled." }, "code": { "type": "string", "description": "Provider's operation/error code to be logged." }, "message": { "type": "string", "description": "Provider's operation/error message to be logged." }, "requestId": { "type": "string", "description": "The same `requestId` sent in the request." } } }