> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-actions-triggers-prototype.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Learn about the event-stream Action trigger's event object, which provides contextual information about the trigger execution.

# Event Object

The `event` object for the event-stream Actions trigger provides contextual information about the trigger execution.

<RequestExample>
  ```json Event Object theme={null}
  {
    "message": {
      "id": "evt_0123456789abcdef",
      "type": "user.created",
      "time": "2026-06-05T12:00:00.000Z",
      "tenant_name": "your-tenant",
      "data": {}
    },
    "secrets": {}
  }
  ```
</RequestExample>

## `event.message`

<ResponseField name="event.message" type="dictionary">
  The CloudEvent message containing all event properties.

  <Expandable title="message properties" defaultOpen>
    <ResponseField name="id" type="string">
      Identifies the event.
    </ResponseField>

    <ResponseField name="type" type="string">
      Describes the type of event related to the originating occurrence.
    </ResponseField>

    <ResponseField name="data" type="dictionary" post={["optional"]}>
      The event payload.
    </ResponseField>

    <ResponseField name="source" type="string">
      Identifies the context in which an event happened.
    </ResponseField>

    <ResponseField name="specversion" type="string">
      The version of the CloudEvents specification which the event uses.
    </ResponseField>

    <ResponseField name="time" type="string" post={["optional"]}>
      Timestamp of when the occurrence happened. Must adhere to RFC 3339.
    </ResponseField>
  </Expandable>
</ResponseField>

## `event.secrets`

<ResponseField name="event.secrets" type="secrets">
  Secret values securely associated with this Action.
</ResponseField>
