{ "type": "object", "description": "Response after sending a transactional email", "properties": { "status": { "type": "string", "description": "The status of the email send", "example": "PENDING", "enum": [ "PENDING", "PROCESSING", "CANCELED", "COMPLETE" ] }, "statusId": { "type": "string", "description": "A unique identifier for tracking the email status", "example": "status-id-abc123" }, "sendResult": { "type": "string", "description": "Additional details about the send result", "example": "SENT" }, "requestedAt": { "type": "string", "description": "When the send was requested", "format": "date-time", "example": "2025-03-15T14:30:00Z" }, "startedAt": { "type": "string", "description": "When the send processing started", "format": "date-time", "example": "2025-03-15T14:30:00Z" }, "completedAt": { "type": "string", "description": "When the send processing completed", "format": "date-time", "example": "2025-03-15T14:30:00Z" } }, "required": [ "status", "statusId" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "TransactionalEmailResponse" }