events.iterate.com

Event type

events.iterate.com/stream/subscription-parked

Delivery for one subscription gave up after sustained failure and stopped. Appended by the stream's own delivery spine, idempotent per (subscriptionKey, atOffset). Parked is a fact, loud by design; resume it explicitly with subscription-resumed.

Payload schema

subscriptionKeystring
atOffsetinteger
attemptsinteger
errorstringoptional
Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "subscriptionKey": {
      "type": "string",
      "minLength": 1
    },
    "atOffset": {
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    },
    "attempts": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991
    },
    "error": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "subscriptionKey",
    "atOffset",
    "attempts"
  ]
}