event.item.updated
An existing event's data changed (time, venue, status).
Not currently emitted
No part of the Helix platform publishes event.item.updated today. You can subscribe to
it and the subscription is valid, but nothing will ever be delivered. The type
and the schema below are reserved so that adding a producer later is not a
breaking change — treat this page as a forward-looking contract, not as a
description of traffic you can expect to receive.
Delivery Metadata
| Field | Value |
|---|---|
| Scope | feed |
| Feed type | events |
| Source | /feeds/events/{feedId} |
| Subject | The event feed item id. |
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 |
id | string (uuid) | Yes | ID of the event feed item that was updated |
eventId | string (uuid) | Yes | ID of the event that was updated |
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.updated",
"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",
"id": "123e4567-e89b-12d3-a456-426614174000",
"eventId": "123e4567-e89b-12d3-a456-426614174000"
}
}