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

> トリガーの実行に関するコンテキスト情報を提供する、event-stream Action トリガーのイベントオブジェクトについて説明します。

# イベントオブジェクト

event-stream Actions トリガーの `event` オブジェクトは、トリガーの実行に関するコンテキスト情報を提供します。

```json Event Object theme={null}
{
  "secrets": {},
  "message": {
    "id": "string",
    "type": "string",
    "source": "string",
    "specversion": "string"
  }
}
```

<div id="eventmessage">
  ## `event.message`
</div>

<ResponseField name="event.message" type="object">
  すべてのイベントプロパティを含むCloudEventメッセージ。

  <Expandable title="event.messageのプロパティ" defaultOpen>
    <ResponseField name="id" type="string">
      イベントを識別します。
    </ResponseField>

    <ResponseField name="type" type="string">
      発生元の出来事に関連するイベントの種類を示します。
    </ResponseField>

    <ResponseField name="data" type="dictionary" post={["optional"]}>
      イベントのpayload。
    </ResponseField>

    <ResponseField name="source" type="string">
      イベントが発生したコンテキストを識別します。
    </ResponseField>

    <ResponseField name="specversion" type="string">
      イベントで使用されるCloudEvents仕様のバージョン。
    </ResponseField>

    <ResponseField name="time" type="string" post={["optional"]}>
      出来事が発生した日時を示すタイムスタンプ。RFC 3339に準拠する必要があります。
    </ResponseField>
  </Expandable>
</ResponseField>

<div id="eventsecrets">
  ## `event.secrets`
</div>

<ResponseField name="event.secrets" type="secrets">
  この Action に安全に関連付けられたシークレット値。
</ResponseField>
