events.iterate.com

Event type

events.iterate.com/stream/subscription-removed

Removes one durable subscription.

Payload schema

namestring
reason"requested"
Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1
    },
    "reason": {
      "type": "string",
      "const": "requested"
    }
  },
  "required": [
    "name",
    "reason"
  ],
  "additionalProperties": false
}