{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api.bolt.com/schemas/failed-event", "title": "failed-event", "type": "object", "properties": { "eventId": { "type": "string", "description": "UUID of the event that failed", "example": "1234-5678-9012-3456" }, "eventType": { "type": "string", "enum": [ "update_cart", "cart_updated", "payment", "payment_completed" ], "description": "Type of the event that failed", "example": "cart_updated" }, "errorMessage": { "type": "string", "description": "error message processing payload", "example": "Failed to unmarshal array" } } }