event.item.removed
An event was removed from an event feed.
Delivery Metadata
| Field | Value |
|---|---|
| Scope | feed |
| Feed type | events |
| Source | /feeds/events/{feedId} |
| Subject | The event id that was removed. |
Event Data Schema
The data field in the event payload contains the following structure:
| Field | Type | Required | Description |
|---|---|---|---|
feedId | string (uuid) | Yes | ID of the event feed that was updated |
eventId | string (uuid) | Yes | ID 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"
}
}