# WebhookErrors Estrutura de dados do contrato OpenAPI. ## Campos | Campo | Tipo | Presença | Descrição | |---|---|---|---| | `errors` | `array` | obrigatório | — | | `worker` | `string` | obrigatório | — | | `lastStatus` | `integer` | opcional | — | | `lastError` | `string` | opcional | — | | `consecutiveFailures` | `integer` | opcional | — | ## Definição OpenAPI ```json { "type": "object", "properties": { "errors": { "type": "array", "items": { "type": "object", "description": "Falhas recentes do worker, sem payload." } }, "worker": { "type": "string" }, "lastStatus": { "type": "integer" }, "lastError": { "type": "string" }, "consecutiveFailures": { "type": "integer" } }, "required": [ "errors", "worker" ] } ```