{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventStreamDeliveryAttempt", "title": "EventStreamDeliveryAttempt", "type": "object", "additionalProperties": false, "required": [ "status", "timestamp" ], "properties": { "status": { "$ref": "#/components/schemas/EventStreamDeliveryStatusEnum" }, "timestamp": { "type": "string", "description": "Timestamp of delivery attempt", "format": "date-time" }, "error_message": { "type": "string", "description": "Delivery error message, if applicable" } } }