addedOutput schema / properties
Added value: +{
+ "attempts": {
+ "description": "Attempts so far; the redrive adds to this count.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "created_at": {
+ "description": "When the delivery was first enqueued, ISO-8601 UTC.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "dead_at": {
+ "description": "When it was dead-lettered, or null once redriven.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "delivered_at": {
+ "description": "When it finally succeeded, or null.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "delivery_id": {
+ "description": "The delivery that was requeued.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "error": {
+ "description": "Last failure reason, or null.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "event_type": {
+ "description": "The event this delivery carries.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "last_status_code": {
+ "description": "HTTP status of the most recent attempt, or null.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "next_attempt_at": {
+ "description": "When the pipeline will try again, ISO-8601 UTC. Null on a terminal row.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "payload_preview": {
+ "description": "First 200 chars of the body; the full body is never returned.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "status": {
+ "description": "Reset to 'pending' and due now.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+}