events.iterate.com

Event type

events.iterate.com/stream/subscription-delivery-halted

One subscription stopped after delivering matching source events exhausted the bounded retry count.

Payload schema

namestring
reason"delivery-failed"
afterOffsetinteger
attemptsinteger
errorstringoptional
Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1
    },
    "reason": {
      "type": "string",
      "const": "delivery-failed"
    },
    "afterOffset": {
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    },
    "attempts": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991
    },
    "error": {
      "type": "string",
      "minLength": 1,
      "maxLength": 4096
    }
  },
  "required": [
    "name",
    "reason",
    "afterOffset",
    "attempts"
  ],
  "additionalProperties": false
}