Skip to main content

event.item.removed

An event was removed from an event feed.

Delivery Metadata

FieldValue
Scopefeed
Feed typeevents
Source/feeds/events/{feedId}
SubjectThe event id that was removed.

Event Data Schema

The data field in the event payload contains the following structure:

FieldTypeRequiredDescription
feedIdstring (uuid)YesID of the event feed that was updated
eventIdstring (uuid)YesID of the event that was removed

Example Payload

Complete example of a CloudEvents-formatted event payload for this event type. The id field is the envelope identifier — stable across retries; use it as your idempotency key.

{
"specversion": "1.0",
"type": "event.item.removed",
"source": "/feeds/events/{feedId}",
"subject": "123e4567-e89b-12d3-a456-426614174000",
"id": "456e7890-a12b-34c5-d678-901234567890",
"time": "2024-01-15T10:30:00.000Z",
"datacontenttype": "application/json",
"data": {
"feedId": "123e4567-e89b-12d3-a456-426614174000",
"eventId": "123e4567-e89b-12d3-a456-426614174000"
}
}