> ## 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.

# イベントを購読

> Server-Sent Events（SSE）経由でイベントをサブスクライブする

export const Scopes = ({scopes = []}) => {
  return <div>
      <div class="api-section-heading flex flex-col gap-y-4 w-full">
        <div class="flex items-baseline border-b pb-2.5 border-gray-100 dark:border-gray-800 w-full">
          <h4 class="api-section-heading-title flex-1 mb-0">Scopes</h4>
          <div class="flex items-center"></div>
        </div>
      </div>
      <div class="mt-4">
        <div class="space-y-4 whitespace-normal prose prose-sm prose-gray dark:prose-invert overflow-wrap-anywhere [&_*]:overflow-wrap-anywhere">
          <p class="whitespace-pre-line text-xs">
            {"スコープは、APIリクエストと認証トークンの権限およびアクセスレベルを定義します。"}
          </p>
        </div>
      </div>
      <div class="flex font-mono text-sm group/param-head param-head break-all relative mt-6" id="scopes-scopes">
        <div class="flex-1 flex flex-col content-start py-0.5 mr-5">
          <div class="flex items-center flex-wrap gap-2">
            <div class="absolute -top-1.5">
              <a href="#scopes-scopes" class="-ml-10 flex items-center opacity-0 border-0 group-hover/param-head:opacity-100 focus:opacity-100 focus:outline-0 py-2 [.expandable-content_&]:-ml-[2.1rem] group/link" aria-label="見出しに移動">
                ​
                <div class="w-6 h-6 rounded-md flex items-center justify-center shadow-sm text-gray-400 dark:text-white/50 dark:bg-background-dark dark:brightness-[1.35] dark:ring-1 dark:hover:brightness-150 bg-white ring-1 ring-gray-400/30 dark:ring-gray-700/25 hover:ring-gray-400/60 dark:hover:ring-white/20 group-focus/link:border-2 group-focus/link:border-primary dark:group-focus/link:border-primary-light">
                  <svg xmlns="http://www.w3.org/2000/svg" fill="gray" height="12px" viewBox="0 0 576 512">
                    <path d="M0 256C0 167.6 71.6 96 160 96h72c13.3 0 24 10.7 24 24s-10.7 24-24 24H160C98.1 144 48 194.1 48 256s50.1 112 112 112h72c13.3 0 24 10.7 24 24s-10.7 24-24 24H160C71.6 416 0 344.4 0 256zm576 0c0 88.4-71.6 160-160 160H344c-13.3 0-24-10.7-24-24s10.7-24 24-24h72c61.9 0 112-50.1 112-112s-50.1-112-112-112H344c-13.3 0-24-10.7-24-24s10.7-24 24-24h72c88.4 0 160 71.6 160 160zM184 232H392c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24z"></path>
                  </svg>
                </div>
              </a>
            </div>
            {scopes.map((scope, index) => {
    return <span class="flex items-center px-2 py-0.5 rounded-md bg-gray-100/50 dark:bg-white/5 text-gray-600 dark:text-gray-200 font-medium break-all" style={{
      lineHeight: "1rem",
      fontSize: "0.75rem",
      fontFamily: 'var(--font-jetbrains-mono), ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace'
    }} data-component-part="field-info-pill" key={index}>
                  {scope}
                </span>;
  })}
          </div>
        </div>
      </div>
    </div>;
};

export const ApiReleaseLifecycle = ({releaseLifecycle = "GA"}) => {
  const lifecycleMap = {
    ea: "早期アクセス",
    ga: "一般提供",
    deprecated: "非推奨",
    planned: "計画中",
    beta: "ベータ"
  };
  const LIFECYCLE_THEMES = {
    info: {
      light: {
        bg: "lab(91.896% .077188 -6.94053)",
        text: "lab(36.091% 25.9241 -68.0384)"
      },
      dark: {
        bg: "lab(16.0426% 6.71726 -27.2409)",
        text: "lab(72.6029% 4.08953 -41.9669)"
      }
    },
    secondary: {
      light: {
        bg: "lab(90.8548% 11.3355 8.01476)",
        text: "lab(47.5286% 56.4238 43.4706)"
      },
      dark: {
        bg: "lab(16.3609% 37.191 25.6346)",
        text: "lab(71.881% 41.5 29.4839)"
      }
    },
    danger: {
      light: {
        bg: "lab(94.7916% -.0000298023 0)",
        text: "lab(54.3656% 0 -.0000119209)"
      },
      dark: {
        bg: "lab(13.232% 0 0)",
        text: "lab(51.6164% 0 0)"
      }
    }
  };
  const LIFECYCLE_THEME_MAP = {
    ea: "info",
    ga: "info",
    beta: "info",
    deprecated: "secondary",
    planned: "danger"
  };
  const lifecycle = releaseLifecycle.toLocaleLowerCase();
  const lifecycleText = lifecycleMap[lifecycle];
  if (!lifecycleText) {
    return null;
  }
  const theme = LIFECYCLE_THEMES[LIFECYCLE_THEME_MAP[lifecycle]];
  return <div>
      <div className="api-section-heading flex flex-col gap-y-4 w-full">
        <div className="flex items-baseline border-b pb-2.5 border-gray-100 dark:border-gray-800 w-full">
          <h4 className="api-section-heading-title flex-1 mb-0">リリースライフサイクル</h4>
        </div>
      </div>
      <div className="flex font-mono text-sm group/param-head param-head break-all relative mt-2.5" id="releaselifecycle-lifecycle">
        <div className="flex-1 flex flex-col content-start py-0.5 mr-5">
          <div className="flex items-center flex-wrap gap-2">
            <div className="absolute -top-1.5">
              <a href="#releaselifecycle-lifecycle" className="-ml-10 flex items-center opacity-0 border-0 group-hover/param-head:opacity-100 focus:opacity-100 focus:outline-0 py-2 [.expandable-content_&]:-ml-[2.1rem] group/link" aria-label="ヘッダーに移動">
                <div className="w-6 h-6 rounded-md flex items-center justify-center shadow-sm text-gray-400 dark:text-white/50 dark:bg-background-dark dark:brightness-[1.35] dark:ring-1 dark:hover:brightness-150 bg-white ring-1 ring-gray-400/30 dark:ring-gray-700/25 hover:ring-gray-400/60 dark:hover:ring-white/20 group-focus/link:border-2 group-focus/link:border-primary dark:group-focus/link:border-primary-light">
                  <svg xmlns="http://www.w3.org/2000/svg" fill="gray" height="12px" viewBox="0 0 576 512">
                    <path d="M0 256C0 167.6 71.6 96 160 96h72c13.3 0 24 10.7 24 24s-10.7 24-24 24H160C98.1 144 48 194.1 48 256s50.1 112 112 112h72c13.3 0 24 10.7 24 24s-10.7 24-24 24H160C71.6 416 0 344.4 0 256zm576 0c0 88.4-71.6 160-160 160H344c-13.3 0-24-10.7-24-24s10.7-24 24-24h72c61.9 0 112-50.1 112-112s-50.1-112-112-112H344c-13.3 0-24-10.7-24-24s10.7-24 24-24h72c88.4 0 160 71.6 160 160zM184 232H392c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24z"></path>
                  </svg>
                </div>
              </a>
            </div>
            <span className="inline-flex items-center w-fit font-medium gap-1 py-0.5 px-2 rounded-md" style={{
    lineHeight: "1rem",
    fontSize: "0.75rem",
    fontFamily: 'var(--font-jetbrains-mono), ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace',
    backgroundColor: `light-dark(${theme.light.bg}, ${theme.dark.bg})`,
    color: `light-dark(${theme.light.text}, ${theme.dark.text})`,
    borderColor: `light-dark(color-mix(in oklab, ${theme.light.text} 25%, transparent), color-mix(in oklab, ${theme.dark.text} 25%, transparent))`
  }}>
              {lifecycleText}
            </span>
          </div>
        </div>
      </div>
    </div>;
};

<ApiReleaseLifecycle releaseLifecycle="GA" />

<Scopes scopes={["read:events"]} />


## OpenAPI

````yaml ja/docs/oas/management/v2/management-api-oas.json GET /events
openapi: 3.1.0
info:
  contact:
    name: Auth0 Support
    url: https://support.auth0.com
  description: Auth0 Management API v2。
  termsOfService: https://auth0.com/web-terms/
  title: Auth0 Management API
  version: '2.0'
servers:
  - url: https://{tenantDomain}/api/v2
    variables:
      tenantDomain:
        default: '{TENANT}.auth0.com'
        description: Auth0 テナントドメイン
security:
  - bearerAuth: []
externalDocs:
  description: Auth0 Management API ドキュメント
  url: https://auth0.com/docs/api/management/v2/
paths:
  /events:
    get:
      tags:
        - events
      summary: Server-Sent Events (SSE) を使用してイベントをサブスクライブ
      description: Server-Sent Events（SSE）経由でイベントをサブスクライブする
      operationId: subscribe_events
      parameters:
        - description: ストリーム内の位置を表す不透明なトークン。指定しない場合、ストリームは最新のイベントから開始されます。
          in: query
          name: from
          schema:
            maxLength: 1024
            type: string
        - description: >-
            イベントのストリーミング開始位置を示す RFC-3339
            タイムスタンプ。これは、カーソルを利用できない可能性がある初回クエリでのみ使用してください。以降のリクエストでは、より正確なカーソル（from）を使用してください。
          in: query
          name: from_timestamp
          schema:
            maxLength: 20
            type: string
        - description: >-
            受信するイベントタイプ。複数のタイプを指定する場合は、複数回指定してください（例:
            ?event_type=user.created&event_type=user.updated）。指定しない場合は、すべてのイベントタイプがストリーミングされます。
          explode: true
          in: query
          name: event_type
          schema:
            $ref: '#/components/schemas/EventStreamSubscribeEventsEventTypeParam'
          style: form
      responses:
        '200':
          content:
            text/event-stream:
              schema:
                $ref: '#/components/schemas/EventStreamSubscribeEventsResponseContent'
          description: イベントストリームが正常に確立されました。
        '400':
          description: 無効なカーソル形式です。
          x-description-1: Unsupported event type.
          x-description-2: >-
            Invalid request query string. The message will vary depending on the
            cause.
        '401':
          description: 無効なトークンです。
          x-description-1: Invalid signature received for JSON Web Token validation.
          x-description-2: Client is not global.
        '403':
          description: イベントストリームの同時接続数が上限に達しました。既存の接続を閉じてください。
          x-description-1: 'Insufficient scope; expected any of: read:events.'
        '404':
          description: 見つかりません
        '410':
          description: カーソルが、ストリーム内ですでに利用できなくなったデータを指しています。
        '429':
          description: >-
            リクエストが多すぎます。X-RateLimit-Limit、X-RateLimit-Remaining、X-RateLimit-Reset
            ヘッダーを確認してください。
      security:
        - bearerAuth: []
        - oAuth2ClientCredentials:
            - read:events
      x-codeSamples: []
components:
  schemas:
    EventStreamSubscribeEventsEventTypeParam:
      description: >-
        リッスンするイベントタイプ。複数のタイプを指定する場合は、複数回指定します（例:
        ?event_type=user.created&event_type=user.updated）。指定しない場合は、すべてのイベントタイプがストリーミングされます。
      items:
        $ref: '#/components/schemas/EventStreamSubscribeEventsEventTypeEnum'
      type: array
    EventStreamSubscribeEventsResponseContent:
      description: >-
        各 SSE data 行で配信される JSON ペイロード。type フィールドは SDK によって SSE の event
        フィールドから挿入されます。type による判別は、イベントの場合はイベントタイプ名、エラーの場合は "error"、カーソルのみの
        heartbeat の場合は "offset-only" です。
      discriminator:
        mapping:
          error:
            $ref: '#/components/schemas/EventStreamCloudEventErrorMessage'
          group.created:
            $ref: '#/components/schemas/EventStreamCloudEventGroupCreated'
          group.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventGroupDeleted'
          group.member.added:
            $ref: '#/components/schemas/EventStreamCloudEventGroupMemberAdded'
          group.member.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventGroupMemberDeleted'
          group.role.assigned:
            $ref: '#/components/schemas/EventStreamCloudEventGroupRoleAssigned'
          group.role.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventGroupRoleDeleted'
          group.updated:
            $ref: '#/components/schemas/EventStreamCloudEventGroupUpdated'
          offset-only:
            $ref: '#/components/schemas/EventStreamCloudEventOffsetOnlyMessage'
          organization.connection.added:
            $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionAdded'
          organization.connection.removed:
            $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionRemoved'
          organization.connection.updated:
            $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionUpdated'
          organization.created:
            $ref: '#/components/schemas/EventStreamCloudEventOrgCreated'
          organization.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventOrgDeleted'
          organization.group.role.assigned:
            $ref: '#/components/schemas/EventStreamCloudEventOrgGroupRoleAssigned'
          organization.group.role.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventOrgGroupRoleDeleted'
          organization.member.added:
            $ref: '#/components/schemas/EventStreamCloudEventOrgMemberAdded'
          organization.member.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventOrgMemberDeleted'
          organization.member.role.assigned:
            $ref: '#/components/schemas/EventStreamCloudEventOrgMemberRoleAssigned'
          organization.member.role.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventOrgMemberRoleDeleted'
          organization.updated:
            $ref: '#/components/schemas/EventStreamCloudEventOrgUpdated'
          user.created:
            $ref: '#/components/schemas/EventStreamCloudEventUserCreated'
          user.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventUserDeleted'
          user.updated:
            $ref: '#/components/schemas/EventStreamCloudEventUserUpdated'
        propertyName: type
        x-discriminator-context: protocol
      oneOf:
        - $ref: '#/components/schemas/EventStreamCloudEventGroupCreated'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupMemberAdded'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupMemberDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupRoleAssigned'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupRoleDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupUpdated'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionAdded'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionRemoved'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionUpdated'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgCreated'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgGroupRoleAssigned'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgGroupRoleDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgMemberAdded'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgMemberDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgMemberRoleAssigned'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgMemberRoleDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgUpdated'
        - $ref: '#/components/schemas/EventStreamCloudEventUserCreated'
        - $ref: '#/components/schemas/EventStreamCloudEventUserDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventUserUpdated'
        - $ref: '#/components/schemas/EventStreamCloudEventErrorMessage'
        - $ref: '#/components/schemas/EventStreamCloudEventOffsetOnlyMessage'
    EventStreamSubscribeEventsEventTypeEnum:
      enum:
        - group.created
        - group.deleted
        - group.member.added
        - group.member.deleted
        - group.role.assigned
        - group.role.deleted
        - group.updated
        - organization.connection.added
        - organization.connection.removed
        - organization.connection.updated
        - organization.created
        - organization.deleted
        - organization.group.role.assigned
        - organization.group.role.deleted
        - organization.member.added
        - organization.member.deleted
        - organization.member.role.assigned
        - organization.member.role.deleted
        - organization.updated
        - user.created
        - user.deleted
        - user.updated
      type: string
    EventStreamCloudEventErrorMessage:
      additionalProperties: false
      description: SSE ストリーム経由で配信されるエラーメッセージ。このメッセージの後にストリームは閉じられます。
      properties:
        error:
          $ref: '#/components/schemas/EventStreamCloudEventErrorDetail'
        type:
          $ref: '#/components/schemas/EventStreamCloudEventErrorMessageTypeEnum'
      required:
        - type
        - error
      type: object
    EventStreamCloudEventGroupCreated:
      additionalProperties: false
      description: group.created の SSE メッセージ。
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedCloudEvent'
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventGroupDeleted:
      additionalProperties: false
      description: group.deleted の SSE メッセージ。
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedCloudEvent'
        offset:
          description: ストリーム内の位置を表す不透明なカーソルです。再開するには、`from` クエリパラメーターとして指定します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventGroupMemberAdded:
      additionalProperties: false
      description: group.member.added の SSE メッセージ。
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventGroupMemberAddedCloudEvent'
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventGroupMemberAddedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventGroupMemberDeleted:
      additionalProperties: false
      description: group.member.deleted の SSE メッセージです。
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedCloudEvent
        offset:
          description: stream 内の位置を表す不透明なカーソルです。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventGroupMemberDeletedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventGroupRoleAssigned:
      additionalProperties: false
      description: group.role.assigned の SSE メッセージ。
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedCloudEvent
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventGroupRoleAssignedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventGroupRoleDeleted:
      additionalProperties: false
      description: group.role.deleted の SSE メッセージ。
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventGroupRoleDeletedCloudEvent'
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventGroupRoleDeletedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventGroupUpdated:
      additionalProperties: false
      description: group.updated の SSE メッセージ。
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedCloudEvent'
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOffsetOnlyMessage:
      additionalProperties: false
      description: オフセットのみの heartbeat メッセージです。イベントを配信せずにカーソルを進めます。
      properties:
        offset:
          description: ストリーム内の最新位置を表す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventOffsetOnlyMessageTypeEnum'
      required:
        - type
        - offset
      type: object
    EventStreamCloudEventOrgConnectionAdded:
      additionalProperties: false
      description: organization.connection.added の SSE メッセージ。
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedCloudEvent
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionAddedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgConnectionRemoved:
      additionalProperties: false
      description: organization.connection.removed の SSE メッセージ。
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionRemovedCloudEvent
        offset:
          description: ストリーム内の位置を示す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionRemovedTypeEnum
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgConnectionUpdated:
      additionalProperties: false
      description: organization.connection.updated の SSE メッセージ。
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedCloudEvent
        offset:
          description: ストリーム内の位置を示す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedTypeEnum
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgCreated:
      additionalProperties: false
      description: organization.created の SSE メッセージ。
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventOrgCreatedCloudEvent'
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventOrgCreatedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgDeleted:
      additionalProperties: false
      description: organization.deleted の SSE メッセージ。
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventOrgDeletedCloudEvent'
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventOrgDeletedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgGroupRoleAssigned:
      additionalProperties: false
      description: organization.group.role.assigned の SSE メッセージ。
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedCloudEvent
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedTypeEnum
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgGroupRoleDeleted:
      additionalProperties: false
      description: organization.group.role.deleted の SSE メッセージ。
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedCloudEvent
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from` クエリ パラメーターとして渡します。
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedTypeEnum
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgMemberAdded:
      additionalProperties: false
      description: organization.member.added の SSE メッセージ。
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberAddedCloudEvent'
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberAddedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgMemberDeleted:
      additionalProperties: false
      description: organization.member.deleted の SSE メッセージ。
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberDeletedCloudEvent'
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberDeletedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgMemberRoleAssigned:
      additionalProperties: false
      description: organization.member.role.assigned の SSE メッセージ。
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedCloudEvent
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedTypeEnum
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgMemberRoleDeleted:
      additionalProperties: false
      description: organization.member.role.deleted の SSE メッセージ。
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedCloudEvent
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedTypeEnum
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgUpdated:
      additionalProperties: false
      description: organization.updated の SSE メッセージ。
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventOrgUpdatedCloudEvent'
        offset:
          description: ストリーム内の位置を表す不透明カーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventOrgUpdatedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventUserCreated:
      additionalProperties: false
      description: user.created の SSE メッセージ。
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventUserCreatedCloudEvent'
        offset:
          description: ストリーム内の位置を表す不透明カーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventUserCreatedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventUserDeleted:
      additionalProperties: false
      description: user.deleted の SSE メッセージ。
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventUserDeletedCloudEvent'
        offset:
          description: stream 内の位置を表す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventUserDeletedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventUserUpdated:
      additionalProperties: false
      description: user.updated の SSE メッセージ。
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventUserUpdatedCloudEvent'
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from` クエリパラメーターとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventUserUpdatedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventErrorDetail:
      additionalProperties: false
      description: エラーの詳細。
      properties:
        code:
          $ref: '#/components/schemas/EventStreamCloudEventErrorCodeEnum'
        message:
          description: 人が読めるエラーメッセージ。
          type: string
        offset:
          description: エラー発生時点のカーソル（利用可能な場合）。この位置から再開するために使用できます。
          type: string
      required:
        - code
        - message
      type: object
    EventStreamCloudEventErrorMessageTypeEnum:
      description: これがエラーメッセージであることを示します（SSE の event フィールドから挿入）。
      enum:
        - error
      type: string
    EventStreamCloudEventGroupCreatedCloudEvent:
      additionalProperties: false
      description: グループが作成されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先となった stream の Auth0 event stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: このイベントに関連付けられている Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: このイベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupCreatedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventGroupCreatedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入）。
      enum:
        - group.created
      type: string
    EventStreamCloudEventGroupDeletedCloudEvent:
      additionalProperties: false
      description: グループが削除されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: このイベントの配信先ストリームの Auth0 Event Stream ID です。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: このイベントに関連付けられている Auth0 テナント ID です。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedData'
        id:
          description: イベントの一意の識別子です。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソースです。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: このイベントで使用される CloudEvents 仕様のバージョンです。
          type: string
        time:
          description: イベントが実際に発生した時刻を示す ISO-8601 タイムスタンプです。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventGroupDeletedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから取り込まれます）。
      enum:
        - group.deleted
      type: string
    EventStreamCloudEventGroupMemberAddedCloudEvent:
      additionalProperties: false
      description: メンバーがグループに追加されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントが配信されたストリームの Auth0 Event Stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: イベントに関連付けられた Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventGroupMemberAddedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: イベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した時刻を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventGroupMemberAddedTypeEnum:
      description: イベントタイプです（SSE の event フィールドから挿入されます）。
      enum:
        - group.member.added
      type: string
    EventStreamCloudEventGroupMemberDeletedCloudEvent:
      additionalProperties: false
      description: メンバーがグループから削除されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先となった stream の Auth0 Event Stream ID です。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: このイベントに関連付けられている Auth0 テナント ID です。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventGroupMemberDeletedData'
        id:
          description: イベントの一意の識別子です。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソースです。形式は 'urn:auth0:<tenant>.<domain>' になります。
          type: string
        specversion:
          description: このイベントで使用される CloudEvents 仕様のバージョンです。
          type: string
        time:
          description: イベントが実際に発生した時刻を示す ISO-8601 タイムスタンプです。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventGroupMemberDeletedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入されます）。
      enum:
        - group.member.deleted
      type: string
    EventStreamCloudEventGroupRoleAssignedCloudEvent:
      additionalProperties: false
      description: ロールがグループに割り当てられたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先ストリームの Auth0 Event Stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: イベントに関連付けられた Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventGroupRoleAssignedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: イベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventGroupRoleAssignedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入）。
      enum:
        - group.role.assigned
      type: string
    EventStreamCloudEventGroupRoleDeletedCloudEvent:
      additionalProperties: false
      description: グループからロールが削除されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先となったストリームの Auth0 Event Stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: イベントに関連付けられた Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventGroupRoleDeletedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: イベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventGroupRoleDeletedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入）。
      enum:
        - group.role.deleted
      type: string
    EventStreamCloudEventGroupUpdatedCloudEvent:
      additionalProperties: false
      description: グループが更新されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: このイベントの配信先ストリームの Auth0 Event Stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: このイベントに関連付けられた Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' になります。
          type: string
        specversion:
          description: このイベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupUpdatedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventGroupUpdatedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入）。
      enum:
        - group.updated
      type: string
    EventStreamCloudEventOffsetOnlyMessageTypeEnum:
      description: これがオフセットのみの heartbeat メッセージであることを示します（SSE の event フィールドから挿入）。
      enum:
        - offset-only
      type: string
    EventStreamCloudEventOrgConnectionAddedCloudEvent:
      additionalProperties: false
      description: 組織に接続が追加されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: このイベントが配信されたストリームの Auth0 Event Stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: このイベントに関連付けられた Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionAddedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: このイベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgConnectionAddedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから設定されます）。
      enum:
        - organization.connection.added
      type: string
    EventStreamCloudEventOrgConnectionRemovedCloudEvent:
      additionalProperties: false
      description: 組織から接続が削除されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントが配信されたストリームの Auth0 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: イベントに関連付けられている Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionRemovedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: イベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionRemovedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgConnectionRemovedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから設定されます）。
      enum:
        - organization.connection.removed
      type: string
    EventStreamCloudEventOrgConnectionUpdatedCloudEvent:
      additionalProperties: false
      description: 組織の接続が更新されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先ストリームの Auth0 Event Stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: イベントに関連付けられている Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionUpdatedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: イベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgConnectionUpdatedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入）。
      enum:
        - organization.connection.updated
      type: string
    EventStreamCloudEventOrgCreatedCloudEvent:
      additionalProperties: false
      description: 組織が作成されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先ストリームの Auth0 Event Stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: イベントに関連付けられた Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventOrgCreatedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: イベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgCreatedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgCreatedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入されます）。
      enum:
        - organization.created
      type: string
    EventStreamCloudEventOrgDeletedCloudEvent:
      additionalProperties: false
      description: 組織が削除されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先ストリームの Auth0 Event Stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: イベントに関連付けられている Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventOrgDeletedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: イベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した時刻を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgDeletedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入されます）。
      enum:
        - organization.deleted
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedCloudEvent:
      additionalProperties: false
      description: 組織グループにロールが割り当てられたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先ストリームの Auth0 Event Stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: イベントに関連付けられている Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: イベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した時刻を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入）。
      enum:
        - organization.group.role.assigned
      type: string
    EventStreamCloudEventOrgGroupRoleDeletedCloudEvent:
      additionalProperties: false
      description: 組織グループからロールが削除されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先ストリームの Auth0 Event Stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: イベントに関連付けられた Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: イベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入）。
      enum:
        - organization.group.role.deleted
      type: string
    EventStreamCloudEventOrgMemberAddedCloudEvent:
      additionalProperties: false
      description: メンバーが組織に追加されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先ストリームの Auth0 Event Stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: イベントに関連付けられた Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberAddedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: イベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した時刻を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberAddedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgMemberAddedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入されます）。
      enum:
        - organization.member.added
      type: string
    EventStreamCloudEventOrgMemberDeletedCloudEvent:
      additionalProperties: false
      description: メンバーが組織から削除されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントが配信されたストリームの Auth0 Event Stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: イベントに関連付けられている Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberDeletedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: イベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgMemberDeletedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入されます）。
      enum:
        - organization.member.deleted
      type: string
    EventStreamCloudEventOrgMemberRoleAssignedCloudEvent:
      additionalProperties: false
      description: メンバーが組織に追加されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先ストリームの Auth0 event stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: イベントに関連付けられた Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: イベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入）。
      enum:
        - organization.member.role.assigned
      type: string
    EventStreamCloudEventOrgMemberRoleDeletedCloudEvent:
      additionalProperties: false
      description: メンバーが組織から削除されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先ストリームの Auth0 event stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: イベントに関連付けられた Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: イベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入されます）。
      enum:
        - organization.member.role.deleted
      type: string
    EventStreamCloudEventOrgUpdatedCloudEvent:
      additionalProperties: false
      description: 組織が更新されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先となったストリームの Auth0 Event Stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: イベントに関連付けられている Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventOrgUpdatedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: イベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgUpdatedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgUpdatedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入されます）。
      enum:
        - organization.updated
      type: string
    EventStreamCloudEventUserCreatedCloudEvent:
      additionalProperties: false
      description: ユーザーが作成されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントが配信されたストリームのauth0 Event Stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: イベントに関連付けられている Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventUserCreatedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: イベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventUserCreatedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入）。
      enum:
        - user.created
      type: string
    EventStreamCloudEventUserDeletedCloudEvent:
      additionalProperties: false
      description: ユーザーが削除されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先ストリームの Auth0 Event Stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: イベントに関連付けられている Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventUserDeletedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: このイベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventUserDeletedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入）。
      enum:
        - user.deleted
      type: string
    EventStreamCloudEventUserUpdatedCloudEvent:
      additionalProperties: false
      description: ユーザーが更新されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: このイベントの配信先ストリームの Auth0 Event Stream ID。
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: このイベントに関連付けられている Auth0 テナント ID。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
        data:
          $ref: '#/components/schemas/EventStreamCloudEventUserUpdatedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          description: このイベントで使用される CloudEvents 仕様のバージョン。
          type: string
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventUserUpdatedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入されます）。
      enum:
        - user.updated
      type: string
    EventStreamCloudEventErrorCodeEnum:
      description: 機械可読なエラーコード。
      enum:
        - invalid_cursor
        - cursor_expired
        - timeout
        - payload_too_large
        - processing_error
        - connection_timeout
      type: string
    EventStreamCloudEventA0PurposeEnum:
      description: >-
        このイベントの目的。このフィールドは通常、テストイベントの送信などの特殊なケースでのみ表示されます。通常のイベントでは、このフィールドは省略されます。
      enum:
        - test
      type: string
    EventStreamCloudEventGroupCreatedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedObject'
      required:
        - object
      type: object
    EventStreamCloudEventGroupCreatedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - group.created
      type: string
    EventStreamCloudEventGroupDeletedData:
      additionalProperties: false
      description: イベントのペイロードです。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedObject'
      required:
        - object
      type: object
    EventStreamCloudEventGroupDeletedCloudEventTypeEnum:
      description: 発生したイベントの種類です。
      enum:
        - group.deleted
      type: string
    EventStreamCloudEventGroupMemberAddedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupMemberAddedObject'
      required:
        - object
      type: object
    EventStreamCloudEventGroupMemberAddedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - group.member.added
      type: string
    EventStreamCloudEventGroupMemberDeletedData:
      additionalProperties: false
      description: イベントのペイロードです。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupMemberDeletedObject'
      required:
        - object
      type: object
    EventStreamCloudEventGroupMemberDeletedCloudEventTypeEnum:
      description: 発生したイベントのタイプです。
      enum:
        - group.member.deleted
      type: string
    EventStreamCloudEventGroupRoleAssignedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupRoleAssignedObject'
      required:
        - object
      type: object
    EventStreamCloudEventGroupRoleAssignedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - group.role.assigned
      type: string
    EventStreamCloudEventGroupRoleDeletedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupRoleDeletedObject'
      required:
        - object
      type: object
    EventStreamCloudEventGroupRoleDeletedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - group.role.deleted
      type: string
    EventStreamCloudEventGroupUpdatedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedObject'
      required:
        - object
      type: object
    EventStreamCloudEventGroupUpdatedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - group.updated
      type: string
    EventStreamCloudEventOrgConnectionAddedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionAddedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgConnectionAddedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - organization.connection.added
      type: string
    EventStreamCloudEventOrgConnectionRemovedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionRemovedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgConnectionRemovedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - organization.connection.removed
      type: string
    EventStreamCloudEventOrgConnectionUpdatedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionUpdatedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgConnectionUpdatedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - organization.connection.updated
      type: string
    EventStreamCloudEventOrgCreatedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgCreatedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgCreatedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - organization.created
      type: string
    EventStreamCloudEventOrgDeletedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgDeletedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgDeletedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - organization.deleted
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - organization.group.role.assigned
      type: string
    EventStreamCloudEventOrgGroupRoleDeletedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - organization.group.role.deleted
      type: string
    EventStreamCloudEventOrgMemberAddedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberAddedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgMemberAddedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - organization.member.added
      type: string
    EventStreamCloudEventOrgMemberDeletedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberDeletedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgMemberDeletedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - organization.member.deleted
      type: string
    EventStreamCloudEventOrgMemberRoleAssignedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedObject
      required:
        - object
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - organization.member.role.assigned
      type: string
    EventStreamCloudEventOrgMemberRoleDeletedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - organization.member.role.deleted
      type: string
    EventStreamCloudEventOrgUpdatedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgUpdatedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgUpdatedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - organization.updated
      type: string
    EventStreamCloudEventUserCreatedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventUserCreatedObject'
      required:
        - object
      type: object
    EventStreamCloudEventUserCreatedCloudEventTypeEnum:
      description: 発生したイベントの種類。
      enum:
        - user.created
      type: string
    EventStreamCloudEventUserDeletedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventUserDeletedObject'
      required:
        - object
      type: object
    EventStreamCloudEventUserDeletedCloudEventTypeEnum:
      description: 発生したイベントの種類。
      enum:
        - user.deleted
      type: string
    EventStreamCloudEventUserUpdatedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventUserUpdatedObject'
      required:
        - object
      type: object
    EventStreamCloudEventUserUpdatedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - user.updated
      type: string
    EventStreamCloudEventContext:
      additionalProperties: false
      description: |-
        イベントが生成されたコンテキストに関する情報です。これには、HTTPリクエストの詳細、クライアント情報、接続情報などが含まれる場合があります。

        注: このフィールドは、イベントタイプや生成時のコンテキストによっては、すべてのイベントに含まれない場合があります。
      properties:
        client:
          $ref: '#/components/schemas/EventStreamCloudEventContextClient'
        connection:
          $ref: '#/components/schemas/EventStreamCloudEventContextConnection'
        request:
          $ref: '#/components/schemas/EventStreamCloudEventContextRequest'
        tenant:
          $ref: '#/components/schemas/EventStreamCloudEventContextTenant'
      required:
        - tenant
      type: object
    EventStreamCloudEventGroupCreatedObject:
      description: イベントの内容。
      oneOf:
        - $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedObject0'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedObject1'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedObject2'
    EventStreamCloudEventGroupDeletedObject:
      description: イベントの内容です。
      oneOf:
        - $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedObject0'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedObject1'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedObject2'
    EventStreamCloudEventGroupMemberAddedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectGroup
        member:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectMember
      required:
        - group
        - member
      type: object
    EventStreamCloudEventGroupMemberDeletedObject:
      additionalProperties: false
      description: イベントの内容です。
      properties:
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectGroup
        member:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectMember
      required:
        - group
        - member
      type: object
    EventStreamCloudEventGroupRoleAssignedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        created_at:
          description: ロールがグループに割り当てられた時刻。
          format: date-time
          type: string
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectRole
      required:
        - group
        - role
        - created_at
      type: object
    EventStreamCloudEventGroupRoleDeletedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        deleted_at:
          description: グループからロールが削除された日時。
          format: date-time
          type: string
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup
        role:
          $ref: '#/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectRole'
      required:
        - group
        - role
        - deleted_at
      type: object
    EventStreamCloudEventGroupUpdatedObject:
      description: イベントの内容。
      oneOf:
        - $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedObject0'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedObject1'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedObject2'
    EventStreamCloudEventOrgConnectionAddedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        assign_membership_on_login:
          description: >-
            true の場合、この接続でログインするすべてのユーザーに組織のメンバーシップが自動的に付与されます。false
            の場合、この接続でログインする前に、ユーザーに組織のメンバーシップを付与しておく必要があります。
          type: boolean
        connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedObjectConnection
        is_signup_enabled:
          description: |-
            この組織接続で組織のサインアップを有効にするかどうかを決定します。
            データベース接続にのみ適用されます。
          type: boolean
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedObjectOrganization
        show_as_button:
          description: |-
            この組織のログインプロンプトにこの接続を表示するかどうかを決定します。
            エンタープライズ接続にのみ適用されます。
          type: boolean
      required:
        - organization
        - connection
      type: object
    EventStreamCloudEventOrgConnectionRemovedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionRemovedObjectConnection
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionRemovedObjectOrganization
      required:
        - organization
        - connection
      type: object
    EventStreamCloudEventOrgConnectionUpdatedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        assign_membership_on_login:
          description: >-
            true の場合、この接続でログインするすべてのユーザーに、その組織のメンバーシップが自動的に付与されます。false
            の場合、ユーザーがこの接続でログインするには、事前にその組織のメンバーシップを付与されている必要があります。
          type: boolean
        connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedObjectConnection
        is_signup_enabled:
          description: この組織接続で組織のサインアップを有効にするかどうかを指定します。データベース接続にのみ適用されます。
          type: boolean
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedObjectOrganization
        show_as_button:
          description: この組織のログインプロンプトに接続を表示するかどうかを指定します。エンタープライズ接続にのみ適用されます。
          type: boolean
      required:
        - organization
        - connection
      type: object
    EventStreamCloudEventOrgCreatedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        branding:
          $ref: '#/components/schemas/EventStreamCloudEventOrgCreatedObjectBranding'
        display_name:
          description: 設定されている場合、エンドユーザーとのあらゆるやり取りでこの組織に対して表示される名前。
          type: string
        id:
          description: 組織の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        metadata:
          $ref: '#/components/schemas/EventStreamCloudEventOrgCreatedObjectMetadata'
        name:
          description: アプリケーション内でエンドユーザーを該当する組織に誘導するために使用される、組織の人間が判読可能な識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgDeletedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        display_name:
          description: 設定されている場合、エンドユーザーとのあらゆるやり取りでこの組織に対して表示される名前。
          type: string
        id:
          description: 組織の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        metadata:
          $ref: '#/components/schemas/EventStreamCloudEventOrgDeletedObjectMetadata'
        name:
          description: エンドユーザーがアプリケーション内で自分の組織を指定するために使用する、組織の人間が判読可能な識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        created_at:
          description: 組織内のグループにロールが割り当てられた時刻。
          format: date-time
          type: string
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectGroup
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectOrganization
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectRole
      required:
        - organization
        - role
        - group
        - created_at
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        deleted_at:
          description: 組織内のグループからロールが削除された日時。
          format: date-time
          type: string
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObjectGroup
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObjectOrganization
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObjectRole
      required:
        - organization
        - role
        - group
        - deleted_at
      type: object
    EventStreamCloudEventOrgMemberAddedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberAddedObjectOrganization
        user:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberAddedObjectUser'
      required:
        - organization
        - user
      type: object
    EventStreamCloudEventOrgMemberDeletedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberDeletedObjectOrganization
        user:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberDeletedObjectUser'
      required:
        - organization
        - user
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedObjectOrganization
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedObjectRole
        user:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedObjectUser
      required:
        - organization
        - user
        - role
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedObjectOrganization
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedObjectRole
        user:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedObjectUser
      required:
        - organization
        - user
        - role
      type: object
    EventStreamCloudEventOrgUpdatedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        branding:
          $ref: '#/components/schemas/EventStreamCloudEventOrgUpdatedObjectBranding'
        display_name:
          description: 設定されている場合、エンドユーザーとのやり取りでこの組織に対して表示される名前。
          type: string
        id:
          description: 組織の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        metadata:
          $ref: '#/components/schemas/EventStreamCloudEventOrgUpdatedObjectMetadata'
        name:
          description: エンドユーザーをアプリケーション内の該当する組織に誘導するために使用される、組織の人が判読可能な識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventUserCreatedObject:
      additionalProperties: true
      description: イベントの内容。
      properties:
        app_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectAppMetadata
        blocked:
          description: このユーザーが管理者によってブロックされている（true）かどうか（false）。
          type: boolean
        created_at:
          description: このエンティティが作成された日時（ISO_8601形式）。
          format: date-time
          type: string
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが確認済み（true）か未確認（false）か。
          type: boolean
        family_name:
          description: このユーザーの姓。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名。
          maxLength: 150
          minLength: 1
          type: string
        identities:
          description: アカウントがリンクされている場合の、ユーザーのアイデンティティオブジェクトの配列。
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItem
          type: array
        last_ip:
          description: このユーザーが最後にログインした際のIPアドレス。
          type: string
        last_login:
          description: このユーザーが最後にログインした日時（ISO_8601形式）。
          format: date-time
          type: string
        logins_count:
          description: このユーザーの累計ログイン回数。
          type: integer
        multifactor:
          description: このユーザーが登録している多要素認証プロバイダーの一覧。
          items:
            type: string
          type: array
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        nickname:
          description: このユーザーが希望するニックネームまたは別名。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が確認済み（true）かどうか（false）。
          type: boolean
        picture:
          description: このユーザーの画像、写真、またはアバターのURL。
          format: uri
          type: string
        updated_at:
          description: このエンティティが最後に更新または変更された日時（ISO_8601形式）。
          format: date-time
          type: string
        user_id:
          description: 他のAPIとの連携時に使用できるこのユーザーのID。
          type: string
        user_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectUserMetadata
        username:
          description: このユーザーのusername。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      required:
        - user_id
        - created_at
        - updated_at
        - identities
      type: object
    EventStreamCloudEventUserDeletedObject:
      additionalProperties: true
      description: イベントの内容。
      properties:
        app_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectAppMetadata
        blocked:
          description: このユーザーが管理者によってブロックされている（true）か、されていない（false）か。
          type: boolean
        created_at:
          description: このエンティティが作成された日時（ISO_8601 形式）。
          format: date-time
          type: string
        deleted_at:
          description: このエンティティが削除された日時（ISO_8601 形式）。
          format: date-time
          type: string
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが確認済み（true）か未確認（false）か。
          type: boolean
        family_name:
          description: このユーザーの姓／ラストネーム。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名／ファーストネーム。
          maxLength: 150
          minLength: 1
          type: string
        identities:
          description: アカウントがリンクされている場合のユーザー アイデンティティオブジェクトの配列。
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItem
          type: array
        last_ip:
          description: このユーザーが最後にログインした IP アドレス。
          type: string
        last_login:
          description: このユーザーが最後にログインした日時（ISO_8601 形式）。
          format: date-time
          type: string
        logins_count:
          description: このユーザーのログイン総数。
          type: integer
        multifactor:
          description: このユーザーが登録済みの多要素認証プロバイダーの一覧。
          items:
            type: string
          type: array
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        nickname:
          description: このユーザーの推奨ニックネームまたは別名。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が確認済み（true）かどうか（false）。
          type: boolean
        picture:
          description: このユーザーの画像、写真、またはアバターの URL。
          format: uri
          type: string
        updated_at:
          description: このエンティティが最後に更新または変更された日時（ISO_8601 形式）。
          format: date-time
          type: string
        user_id:
          description: 他の API の操作時に使用できるユーザー ID。
          type: string
        user_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectUserMetadata
        username:
          description: このユーザーの username。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      required:
        - user_id
        - created_at
        - updated_at
        - identities
        - deleted_at
      type: object
    EventStreamCloudEventUserUpdatedObject:
      additionalProperties: true
      description: イベントの内容。
      properties:
        app_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectAppMetadata
        blocked:
          description: このユーザーが管理者によってブロックされている（true）かどうか（false）。
          type: boolean
        created_at:
          description: このエンティティが作成された日時（ISO_8601 形式）。
          format: date-time
          type: string
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが検証済み（true）か未検証（false）か。
          type: boolean
        family_name:
          description: このユーザーの姓／ラストネーム。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名／ファーストネーム。
          maxLength: 150
          minLength: 1
          type: string
        identities:
          description: アカウントがリンクされている場合のユーザー アイデンティティオブジェクトの配列。
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItem
          type: array
        last_ip:
          description: このユーザーが最後にログインした IP アドレス。
          type: string
        last_login:
          description: このユーザーが最後にログインした日時（ISO_8601 形式）。
          format: date-time
          type: string
        logins_count:
          description: このユーザーの総ログイン回数。
          type: integer
        multifactor:
          description: このユーザーが登録している多要素認証プロバイダーの一覧。
          items:
            type: string
          type: array
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        nickname:
          description: このユーザーの優先ニックネームまたは別名。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が検証済み（true）かどうか（false）。
          type: boolean
        picture:
          description: このユーザーの画像、写真、またはアバターの URL。
          format: uri
          type: string
        updated_at:
          description: このエンティティが最後に更新または変更された日時（ISO_8601 形式）。
          format: date-time
          type: string
        user_id:
          description: 他の API と連携するときに使用できるユーザー ID。
          type: string
        user_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectUserMetadata
        username:
          description: このユーザーの username。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      required:
        - user_id
        - created_at
        - updated_at
        - identities
      type: object
    EventStreamCloudEventContextClient:
      additionalProperties: false
      description: アクセストークンを要求または提示する OAuth クライアント。
      properties:
        id:
          description: クライアントID。
          type: string
        metadata:
          $ref: '#/components/schemas/EventStreamCloudEventContextClientMetadata'
        name:
          description: クライアント名。
          type: string
      required:
        - id
        - name
        - metadata
      type: object
    EventStreamCloudEventContextConnection:
      additionalProperties: false
      description: イベントを生成した認証トランザクションで使用された Auth0 接続。
      properties:
        id:
          description: 接続の ID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        name:
          description: 接続の名前。
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        strategy:
          description: 接続で実装されている認証ストラテジー。
          type: string
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventContextRequest:
      additionalProperties: false
      description: HTTP リクエスト。
      properties:
        custom_domain:
          description: リクエストで使用されるカスタムドメイン（存在する場合）。
          type: string
        geo:
          $ref: '#/components/schemas/EventStreamCloudEventContextRequestGeo'
        hostname:
          description: リクエスト先のホスト名。
          type: string
        ip:
          description: リクエスト送信元の IP アドレス。
          type: string
        method:
          description: リクエストに使用される HTTP メソッド。
          type: string
        user_agent:
          description: '`User-Agent` ヘッダーの値。'
          type: string
      required:
        - geo
        - hostname
        - ip
        - method
        - user_agent
      type: object
    EventStreamCloudEventContextTenant:
      additionalProperties: false
      description: イベントコンテキスト内のテナントへの参照
      properties:
        tenant_id:
          description: 機械生成された一意のテナント識別子。
          pattern: ten_[a-zA-Z0-9]{16}
          type: string
      required:
        - tenant_id
      type: object
    EventStreamCloudEventGroupCreatedObject0:
      additionalProperties: false
      description: 接続グループエンティティを表します。
      properties:
        connection_id:
          description: グループに関連付けられている接続 ID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        created_at:
          description: このエンティティが作成された日時（ISO_8601 形式）。
          format: date-time
          type: string
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: グループの名前。
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupCreatedObject0TypeEnum
      required:
        - id
        - name
        - created_at
        - type
        - connection_id
      type: object
    EventStreamCloudEventGroupCreatedObject1:
      additionalProperties: false
      description: 組織グループエンティティを表します。
      properties:
        created_at:
          description: このエンティティが作成された日時（ISO_8601 形式）。
          format: date-time
          type: string
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: グループの名前。
          type: string
        organization_id:
          description: グループに関連付けられている組織 ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupCreatedObject1TypeEnum
      required:
        - id
        - name
        - created_at
        - type
        - organization_id
      type: object
    EventStreamCloudEventGroupCreatedObject2:
      additionalProperties: false
      description: テナントグループエンティティを表します。
      properties:
        created_at:
          description: このエンティティが作成された日時（ISO_8601 形式）。
          format: date-time
          type: string
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: グループの名前。
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupCreatedObject2TypeEnum
      required:
        - id
        - name
        - created_at
        - type
      type: object
    EventStreamCloudEventGroupDeletedObject0:
      additionalProperties: false
      description: updated_at タイムスタンプを含む接続グループ
      properties:
        connection_id:
          description: グループに関連付けられた接続 ID です。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        created_at:
          description: このエンティティが作成された日時です（ISO_8601 形式）。
          format: date-time
          type: string
        external_id:
          description: グループの外部識別子です。
          type: string
        id:
          description: グループの一意の識別子です。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: グループの名前です。
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupDeletedObject0TypeEnum
        updated_at:
          description: このエンティティが最後に更新または変更された日時です（ISO_8601 形式）。
          format: date-time
          type: string
      required:
        - id
        - name
        - created_at
        - type
        - connection_id
        - updated_at
      type: object
    EventStreamCloudEventGroupDeletedObject1:
      additionalProperties: false
      description: updated_at タイムスタンプを含む組織グループ
      properties:
        created_at:
          description: このエンティティが作成された日時です（ISO_8601 形式）。
          format: date-time
          type: string
        external_id:
          description: グループの外部識別子です。
          type: string
        id:
          description: グループの一意の識別子です。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: グループの名前です。
          type: string
        organization_id:
          description: グループに関連付けられた組織 ID です。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupDeletedObject1TypeEnum
        updated_at:
          description: このエンティティが最後に更新または変更された日時です（ISO_8601 形式）。
          format: date-time
          type: string
      required:
        - id
        - name
        - created_at
        - type
        - organization_id
        - updated_at
      type: object
    EventStreamCloudEventGroupDeletedObject2:
      additionalProperties: false
      description: updated_at タイムスタンプを含むテナントグループ
      properties:
        created_at:
          description: このエンティティが作成された日時です（ISO_8601 形式）。
          format: date-time
          type: string
        external_id:
          description: グループの外部識別子です。
          type: string
        id:
          description: グループの一意の識別子です。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: グループの名前です。
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupDeletedObject2TypeEnum
        updated_at:
          description: このエンティティが最後に更新または変更された日時（ISO_8601 形式）。
          format: date-time
          type: string
      required:
        - id
        - name
        - created_at
        - type
        - updated_at
      type: object
    EventStreamCloudEventGroupMemberAddedObjectGroup:
      description: メンバーが属するグループ。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectGroup2
    EventStreamCloudEventGroupMemberAddedObjectMember:
      description: グループの一員であるメンバー。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectMember0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectMember1
    EventStreamCloudEventGroupMemberDeletedObjectGroup:
      description: メンバーが所属するグループです。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectGroup2
    EventStreamCloudEventGroupMemberDeletedObjectMember:
      description: グループの一部であるメンバー。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectMember0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectMember1
    EventStreamCloudEventGroupRoleAssignedObjectGroup:
      description: ロールの割り当て先グループ。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup2
    EventStreamCloudEventGroupRoleAssignedObjectRole:
      additionalProperties: false
      description: グループに割り当てられたロール。
      properties:
        id:
          description: ロールの ID。
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
        name:
          description: ロールの名前。
          type: string
      required:
        - id
        - name
      type: object
    EventStreamCloudEventGroupRoleDeletedObjectGroup:
      description: ロールが削除されたグループ。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup2
    EventStreamCloudEventGroupRoleDeletedObjectRole:
      additionalProperties: false
      description: グループから削除されたロール。
      properties:
        id:
          description: ロールの ID。
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventGroupUpdatedObject0:
      additionalProperties: false
      description: updated_at タイムスタンプを含む接続グループ
      properties:
        connection_id:
          description: グループに関連付けられた接続 ID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        created_at:
          description: このエンティティが作成された日時（ISO_8601 形式）。
          format: date-time
          type: string
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: グループの名前。
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupUpdatedObject0TypeEnum
        updated_at:
          description: このエンティティが最後に更新または変更された日時（ISO_8601 形式）。
          format: date-time
          type: string
      required:
        - id
        - name
        - created_at
        - type
        - connection_id
        - updated_at
      type: object
    EventStreamCloudEventGroupUpdatedObject1:
      additionalProperties: false
      description: updated_at タイムスタンプを含む組織グループ
      properties:
        created_at:
          description: このエンティティが作成された日時（ISO_8601 形式）。
          format: date-time
          type: string
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: グループの名前。
          type: string
        organization_id:
          description: グループに関連付けられた組織 ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupUpdatedObject1TypeEnum
        updated_at:
          description: このエンティティが最後に更新または変更された日時（ISO_8601 形式）。
          format: date-time
          type: string
      required:
        - id
        - name
        - created_at
        - type
        - organization_id
        - updated_at
      type: object
    EventStreamCloudEventGroupUpdatedObject2:
      additionalProperties: false
      description: updated_at タイムスタンプを含むテナントグループ
      properties:
        created_at:
          description: このエンティティが作成された日時（ISO_8601 形式）。
          format: date-time
          type: string
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: グループの名前。
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupUpdatedObject2TypeEnum
        updated_at:
          description: このエンティティが最後に更新または変更された日時（ISO_8601 形式）。
          format: date-time
          type: string
      required:
        - id
        - name
        - created_at
        - type
        - updated_at
      type: object
    EventStreamCloudEventOrgConnectionAddedObjectConnection:
      additionalProperties: false
      properties:
        id:
          description: 接続の ID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionAddedObjectOrganization:
      additionalProperties: false
      description: Auth0 組織に関する情報。
      properties:
        id:
          description: 組織の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: エンドユーザーがアプリケーション内で自分の組織を指定する際に使用する、組織の可読な識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionRemovedObjectConnection:
      additionalProperties: false
      properties:
        id:
          description: 接続の ID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionRemovedObjectOrganization:
      additionalProperties: false
      description: Auth0 組織に関する情報。
      properties:
        id:
          description: 組織の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: エンドユーザーがアプリケーション内で自分の組織を指定する際に使用する、組織の可読な識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionUpdatedObjectConnection:
      additionalProperties: false
      properties:
        id:
          description: 接続の ID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionUpdatedObjectOrganization:
      additionalProperties: false
      description: Auth0 組織に関する情報。
      properties:
        id:
          description: 組織の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: アプリケーション内でエンドユーザーを該当する組織に誘導するために使用される、組織の人間が判読可能な識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgCreatedObjectBranding:
      additionalProperties: false
      description: 組織に関連付けられたブランディング。
      properties:
        colors:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgCreatedObjectBrandingColors
        logo_url:
          description: ログインページに表示するロゴの URL。
          format: uri
          type: string
      type: object
    EventStreamCloudEventOrgCreatedObjectMetadata:
      additionalProperties: true
      description: 組織に関連付けられたメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventOrgDeletedObjectMetadata:
      additionalProperties: true
      description: 組織に関連付けられたメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup:
      description: ロールが割り当てられているグループ。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2
    EventStreamCloudEventOrgGroupRoleAssignedObjectOrganization:
      additionalProperties: false
      description: グループ ロールが割り当てられている組織。
      properties:
        id:
          description: 組織の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedObjectRole:
      additionalProperties: false
      description: 組織内でグループに割り当てられたロール。
      properties:
        id:
          description: ロールの ID。
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
        name:
          description: ロールの名前。
          type: string
      required:
        - id
        - name
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedObjectGroup:
      description: ロールが削除されたグループ。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2
    EventStreamCloudEventOrgGroupRoleDeletedObjectOrganization:
      additionalProperties: false
      description: グループからロールが削除された組織。
      properties:
        id:
          description: 組織の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedObjectRole:
      additionalProperties: false
      description: グループから削除されたロール。
      properties:
        id:
          description: ロールの ID。
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberAddedObjectOrganization:
      additionalProperties: false
      description: メンバーが属する組織。
      properties:
        id:
          description: 組織の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: アプリケーション内でエンドユーザーを自分の組織に誘導するために使用される、組織の人が判読可能な識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberAddedObjectUser:
      additionalProperties: true
      description: 組織のメンバーであるユーザー。
      properties:
        user_id:
          description: 他の API と連携する際に使用できるユーザーの ID。
          type: string
      required:
        - user_id
      type: object
    EventStreamCloudEventOrgMemberDeletedObjectOrganization:
      additionalProperties: false
      description: メンバーが属する組織。
      properties:
        id:
          description: 組織の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: アプリケーション内でエンドユーザーを自分の組織に誘導するために使用される、組織の人が判読可能な識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberDeletedObjectUser:
      additionalProperties: true
      description: 組織のメンバーであるユーザー。
      properties:
        user_id:
          description: 他の API と連携する際に使用できるユーザーの ID。
          type: string
      required:
        - user_id
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedObjectOrganization:
      additionalProperties: false
      description: メンバーが所属する組織。
      properties:
        id:
          description: 組織の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedObjectRole:
      additionalProperties: false
      description: 組織内でユーザーに割り当てられたロール。
      properties:
        id:
          description: ロールの ID。
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
        name:
          description: ロールの名前。
          type: string
      required:
        - id
        - name
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedObjectUser:
      additionalProperties: true
      description: 組織のメンバーであるユーザー。
      properties:
        user_id:
          description: 他の API と連携する際に使用できるユーザー ID。
          type: string
      required:
        - user_id
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedObjectOrganization:
      additionalProperties: false
      description: メンバーが所属する組織。
      properties:
        id:
          description: 組織の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedObjectRole:
      additionalProperties: false
      description: 組織内でユーザーに割り当てられたロール。
      properties:
        id:
          description: ロールの ID。
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
        name:
          description: ロールの名前。
          type: string
      required:
        - id
        - name
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedObjectUser:
      additionalProperties: true
      description: 組織のメンバーであるユーザー。
      properties:
        user_id:
          description: 他の API と連携する際に使用できるユーザー ID。
          type: string
      required:
        - user_id
      type: object
    EventStreamCloudEventOrgUpdatedObjectBranding:
      additionalProperties: false
      description: 組織に関連付けられたブランディング。
      properties:
        colors:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgUpdatedObjectBrandingColors
        logo_url:
          description: ログインページに表示するロゴの URL。
          format: uri
          type: string
      type: object
    EventStreamCloudEventOrgUpdatedObjectMetadata:
      additionalProperties: true
      description: 組織に関連付けられたメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventUserCreatedObjectAppMetadata:
      additionalProperties: true
      description: このユーザーが読み取り専用でアクセスできるユーザーメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItem:
      description: アカウントがリンクされている場合のアイデンティティオブジェクト。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemCustom
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabase
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterprise
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordless
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemSocial
    EventStreamCloudEventUserCreatedObjectUserMetadata:
      additionalProperties: true
      description: このユーザーが読み取り/書き込みアクセス権を持つユーザーメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventUserDeletedObjectAppMetadata:
      additionalProperties: true
      description: このユーザーが読み取り専用でアクセスできるユーザーメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItem:
      description: アカウントがリンクされている場合のアイデンティティオブジェクト。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemCustom
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabase
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterprise
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordless
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemSocial
    EventStreamCloudEventUserDeletedObjectUserMetadata:
      additionalProperties: true
      description: このユーザーが読み取り/書き込みアクセスできるユーザーメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventUserUpdatedObjectAppMetadata:
      additionalProperties: true
      description: このユーザーが読み取り専用でアクセスできるユーザーメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItem:
      description: アカウントがリンクされている場合のアイデンティティオブジェクト。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustom
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabase
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterprise
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordless
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocial
    EventStreamCloudEventUserUpdatedObjectUserMetadata:
      additionalProperties: true
      description: このユーザーが読み取り/書き込みアクセス権を持つユーザーメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventContextClientMetadata:
      additionalProperties: true
      description: クライアントメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventContextRequestGeo:
      additionalProperties: false
      description: リクエスト送信元に関する地理情報。
      properties:
        city_name:
          description: 都市名。
          type: string
        continent_code:
          description: 大陸コード。
          type: string
        country_code:
          description: 国コード。
          type: string
        country_name:
          description: 国名。
          type: string
        latitude:
          description: 緯度。
          type: number
        longitude:
          description: 経度。
          type: number
        subdivision_code:
          description: 行政区画（州／都道府県）コード。
          type: string
        subdivision_name:
          description: 行政区画（州／都道府県）名。
          type: string
        time_zone:
          description: タイムゾーン。
          type: string
      type: object
    EventStreamCloudEventGroupCreatedObject0TypeEnum:
      description: グループのタイプ。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupCreatedObject1TypeEnum:
      description: グループのタイプ。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupCreatedObject2TypeEnum:
      description: グループのタイプ。
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupDeletedObject0TypeEnum:
      description: グループの種類です。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupDeletedObject1TypeEnum:
      description: グループの種類です。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupDeletedObject2TypeEnum:
      description: グループのタイプ。
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupMemberAddedObjectGroup0:
      additionalProperties: false
      description: 接続グループへの参照
      properties:
        connection_id:
          description: グループに関連付けられた接続 ID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectGroup0TypeEnum
      required:
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventGroupMemberAddedObjectGroup1:
      additionalProperties: false
      description: 組織グループへの参照
      properties:
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: グループに関連付けられた組織 ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectGroup1TypeEnum
      required:
        - id
        - type
        - organization_id
      type: object
    EventStreamCloudEventGroupMemberAddedObjectGroup2:
      additionalProperties: false
      description: テナントグループへの参照
      properties:
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventGroupMemberAddedObjectMember0:
      additionalProperties: false
      description: member_type が user のグループメンバー
      properties:
        id:
          description: ユーザーの一意の識別子です。
          type: string
        member_type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectMember0MemberTypeEnum
      required:
        - member_type
        - id
      type: object
    EventStreamCloudEventGroupMemberAddedObjectMember1:
      additionalProperties: false
      description: member_type group のグループメンバーです。
      properties:
        connection_id:
          description: メンバーに関連付けられた接続 ID です。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        id:
          description: 接続メンバーの一意の識別子です。
          type: string
        member_type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectMember1MemberTypeEnum
        type:
          description: 接続の種類です。
          type: string
      required:
        - member_type
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventGroupMemberDeletedObjectGroup0:
      additionalProperties: false
      description: 接続グループへの参照です。
      properties:
        connection_id:
          description: グループに関連付けられた接続 ID です。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        external_id:
          description: グループの外部識別子です。
          type: string
        id:
          description: グループの一意の識別子です。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectGroup0TypeEnum
      required:
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventGroupMemberDeletedObjectGroup1:
      additionalProperties: false
      description: 組織グループへの参照です。
      properties:
        external_id:
          description: グループの外部識別子です。
          type: string
        id:
          description: グループの一意の識別子です。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: グループに関連付けられた組織 ID です。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectGroup1TypeEnum
      required:
        - id
        - type
        - organization_id
      type: object
    EventStreamCloudEventGroupMemberDeletedObjectGroup2:
      additionalProperties: false
      description: テナントグループへの参照です。
      properties:
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventGroupMemberDeletedObjectMember0:
      additionalProperties: false
      description: member_type が user のグループメンバー
      properties:
        id:
          description: ユーザーの一意の識別子
          type: string
        member_type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectMember0MemberTypeEnum
      required:
        - member_type
        - id
      type: object
    EventStreamCloudEventGroupMemberDeletedObjectMember1:
      additionalProperties: false
      description: member_type が group のグループメンバー
      properties:
        connection_id:
          description: メンバーに関連付けられた接続 ID
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        id:
          description: 接続メンバーの一意の識別子
          type: string
        member_type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectMember1MemberTypeEnum
        type:
          description: 接続のタイプ
          type: string
      required:
        - member_type
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventGroupRoleAssignedObjectGroup0:
      additionalProperties: false
      description: 接続グループへの参照
      properties:
        connection_id:
          description: グループに関連付けられた接続 ID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup0TypeEnum
      required:
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventGroupRoleAssignedObjectGroup1:
      additionalProperties: false
      description: 組織グループへの参照
      properties:
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: グループに関連付けられた組織 ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup1TypeEnum
      required:
        - id
        - type
        - organization_id
      type: object
    EventStreamCloudEventGroupRoleAssignedObjectGroup2:
      additionalProperties: false
      description: テナントグループへの参照
      properties:
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventGroupRoleDeletedObjectGroup0:
      additionalProperties: false
      description: 接続グループへの参照
      properties:
        connection_id:
          description: グループに関連付けられた接続 ID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup0TypeEnum
      required:
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventGroupRoleDeletedObjectGroup1:
      additionalProperties: false
      description: 組織グループへの参照
      properties:
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: グループに関連付けられた組織 ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup1TypeEnum
      required:
        - id
        - type
        - organization_id
      type: object
    EventStreamCloudEventGroupRoleDeletedObjectGroup2:
      additionalProperties: false
      description: テナントグループへの参照
      properties:
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventGroupUpdatedObject0TypeEnum:
      description: グループのタイプ。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupUpdatedObject1TypeEnum:
      description: グループのタイプ。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupUpdatedObject2TypeEnum:
      description: グループのタイプ。
      enum:
        - tenant
      type: string
    EventStreamCloudEventOrgCreatedObjectBrandingColors:
      additionalProperties: false
      description: ログインページのカスタマイズに使用するカラースキーム。
      properties:
        page_background:
          description: 背景に使用する 16 進カラー。
          type: string
        primary:
          description: 主要な要素に使用する 16 進カラー。
          type: string
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0:
      additionalProperties: false
      description: 接続グループへの参照
      properties:
        connection_id:
          description: グループに関連付けられた接続 ID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0TypeEnum
      required:
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1:
      additionalProperties: false
      description: 組織グループへの参照
      properties:
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: グループに関連付けられた組織 ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1TypeEnum
      required:
        - id
        - type
        - organization_id
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2:
      additionalProperties: false
      description: テナントグループへの参照
      properties:
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0:
      additionalProperties: false
      description: 接続グループへの参照
      properties:
        connection_id:
          description: グループに関連付けられた接続 ID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0TypeEnum
      required:
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1:
      additionalProperties: false
      description: 組織グループへの参照
      properties:
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: グループに関連付けられた組織 ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1TypeEnum
      required:
        - id
        - type
        - organization_id
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2:
      additionalProperties: false
      description: テナントグループへの参照
      properties:
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventOrgUpdatedObjectBrandingColors:
      additionalProperties: false
      description: ログインページのカスタマイズに使用する配色。
      properties:
        page_background:
          description: 背景の HEX カラー。
          type: string
        primary:
          description: プライマリ要素の HEX カラー。
          type: string
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemCustom:
      additionalProperties: false
      description: カスタムIDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabase:
      additionalProperties: false
      description: データベース IDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterprise:
      additionalProperties: false
      description: エンタープライズ IDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordless:
      additionalProperties: false
      description: パスワードレス IDプロバイダーのアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemSocial:
      additionalProperties: false
      description: ソーシャル IDプロバイダーのアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemCustom:
      additionalProperties: false
      description: カスタム IDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabase:
      additionalProperties: false
      description: データベース IDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterprise:
      additionalProperties: false
      description: エンタープライズ IDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordless:
      additionalProperties: false
      description: パスワードレスIDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemSocial:
      additionalProperties: false
      description: ソーシャルIDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustom:
      additionalProperties: false
      description: カスタムIDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabase:
      additionalProperties: false
      description: データベースIDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterprise:
      additionalProperties: false
      description: エンタープライズIDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordless:
      additionalProperties: false
      description: パスワードレス IDプロバイダーのアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocial:
      additionalProperties: false
      description: ソーシャル IDプロバイダーのアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventGroupMemberAddedObjectGroup0TypeEnum:
      description: グループのタイプ。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupMemberAddedObjectGroup1TypeEnum:
      description: グループのタイプ。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupMemberAddedObjectGroup2TypeEnum:
      description: グループのタイプ。
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupMemberAddedObjectMember0MemberTypeEnum:
      description: ユーザーメンバー用の型判別子です。
      enum:
        - user
      type: string
    EventStreamCloudEventGroupMemberAddedObjectMember1MemberTypeEnum:
      description: 接続メンバー用の型判別子です。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupMemberDeletedObjectGroup0TypeEnum:
      description: グループの種類です。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupMemberDeletedObjectGroup1TypeEnum:
      description: グループの種類です。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupMemberDeletedObjectGroup2TypeEnum:
      description: グループのタイプ。
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupMemberDeletedObjectMember0MemberTypeEnum:
      description: ユーザーメンバーのタイプ識別子
      enum:
        - user
      type: string
    EventStreamCloudEventGroupMemberDeletedObjectMember1MemberTypeEnum:
      description: 接続メンバーのタイプ識別子
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupRoleAssignedObjectGroup0TypeEnum:
      description: グループのタイプ。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupRoleAssignedObjectGroup1TypeEnum:
      description: グループのタイプ。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupRoleAssignedObjectGroup2TypeEnum:
      description: グループのタイプ。
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupRoleDeletedObjectGroup0TypeEnum:
      description: グループのタイプ。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupRoleDeletedObjectGroup1TypeEnum:
      description: グループのタイプ。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupRoleDeletedObjectGroup2TypeEnum:
      description: グループのタイプ。
      enum:
        - tenant
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0TypeEnum:
      description: グループのタイプ。
      enum:
        - connection
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1TypeEnum:
      description: グループのタイプ。
      enum:
        - organization
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2TypeEnum:
      description: グループのタイプ。
      enum:
        - tenant
      type: string
    EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0TypeEnum:
      description: グループのタイプ。
      enum:
        - connection
      type: string
    EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1TypeEnum:
      description: グループのタイプ。
      enum:
        - organization
      type: string
    EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2TypeEnum:
      description: グループのタイプ。
      enum:
        - tenant
      type: string
    EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProfileData:
      additionalProperties: true
      description: ユーザーのプロファイルデータ。
      properties:
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが確認済み（true）か未確認（false）か。
          type: boolean
        family_name:
          description: このユーザーの姓／ラストネーム／サーネーム。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名／ファーストネーム／フォアネーム。
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が確認済み（true）か未確認（false）か。
          type: boolean
        username:
          description: このユーザーのusername。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProviderEnum:
      description: カスタム IDプロバイダーの一覧。
      enum:
        - custom
      type: string
    EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーの IdP 固有の識別子。
    EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProfileData:
      additionalProperties: true
      description: ユーザーのプロファイルデータ。
      properties:
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが確認済み（true）か未確認（false）か。
          type: boolean
        family_name:
          description: このユーザーの姓／ラストネーム／サーネーム。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名／ファーストネーム／フォアネーム。
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が確認済み（true）か未確認（false）か。
          type: boolean
        username:
          description: このユーザーの username。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProviderEnum:
      description: データベース IDプロバイダーの一覧。
      enum:
        - auth0
      type: string
    EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーの IdP 固有の識別子。
    EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProfileData:
      additionalProperties: true
      description: ユーザーのプロファイルデータ。
      properties:
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが確認済み（true）か未確認（false）か。
          type: boolean
        family_name:
          description: このユーザーの姓／ラストネーム／サーネーム。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名／ファーストネーム／フォアネーム。
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が確認済み（true）か未確認（false）か。
          type: boolean
        username:
          description: このユーザーの username。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProviderEnum:
      description: エンタープライズ IDプロバイダーの一覧。
      enum:
        - ad
        - adfs
        - google-apps
        - ip
        - office365
        - oidc
        - okta
        - pingfederate
        - samlp
        - sharepoint
        - waad
      type: string
    EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーの IdP 固有の識別子。
    EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProfileData:
      additionalProperties: true
      description: ユーザーのプロファイルデータ。
      properties:
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが検証済み（true）か未検証（false）か。
          type: boolean
        family_name:
          description: このユーザーの姓／ラストネーム／surname。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名／ファーストネーム／forename。
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が検証済み（true）かどうか（false の場合は未検証）。
          type: boolean
        username:
          description: このユーザーのusername。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProviderEnum:
      description: パスワードレス IDプロバイダーの一覧。
      enum:
        - email
        - sms
      type: string
    EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessUserId:
      anyOf:
        - type: string
        - type: integer
      description: このユーザーの IdP 固有の識別子。
    EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialIsSocialEnum:
      enum:
        - true
      type: boolean
    EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProfileData:
      additionalProperties: true
      description: ユーザーのプロファイルデータ。
      properties:
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが検証済み（true）か未検証（false）か。
          type: boolean
        family_name:
          description: このユーザーの姓／ラストネーム／surname。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名／ファーストネーム／forename。
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が検証済み（true）かどうか（false の場合は未検証）。
          type: boolean
        username:
          description: このユーザーのusername。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProviderEnum:
      description: ソーシャル IDプロバイダーの一覧。
      enum:
        - amazon
        - apple
        - dropbox
        - bitbucket
        - auth0-oidc
        - baidu
        - bitly
        - box
        - daccount
        - dwolla
        - evernote-sandbox
        - evernote
        - exact
        - facebook
        - fitbit
        - github
        - google-oauth2
        - instagram
        - line
        - linkedin
        - oauth1
        - oauth2
        - paypal
        - paypal-sandbox
        - planningcenter
        - salesforce-community
        - salesforce-sandbox
        - salesforce
        - shopify
        - soundcloud
        - thirtysevensignals
        - twitter
        - untapped
        - vkontakte
        - weibo
        - windowslive
        - wordpress
        - yahoo
        - yandex
      type: string
    EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialUserId:
      anyOf:
        - type: string
        - type: integer
      description: このユーザーの IdP 固有の識別子。
    EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProfileData:
      additionalProperties: true
      description: ユーザーのプロファイルデータ。
      properties:
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが確認済み（true）か未確認（false）かを示します。
          type: boolean
        family_name:
          description: このユーザーの姓／ラストネーム。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名／ファーストネーム。
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が確認済み（true）か未確認（false）かを示します。
          type: boolean
        username:
          description: このユーザーのusername。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProviderEnum:
      description: カスタム IDプロバイダーの一覧。
      enum:
        - custom
      type: string
    EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomUserId:
      anyOf:
        - type: string
        - type: integer
      description: このユーザーの IdP 固有の識別子。
    EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProfileData:
      additionalProperties: true
      description: ユーザーのプロファイルデータ。
      properties:
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが確認済み（true）か未確認（false）かを示します。
          type: boolean
        family_name:
          description: このユーザーの姓／ラストネーム。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名／ファーストネーム。
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が確認済み（true）か未確認（false）かを示します。
          type: boolean
        username:
          description: このユーザーのusername。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProviderEnum:
      description: データベース IDプロバイダーの一覧。
      enum:
        - auth0
      type: string
    EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseUserId:
      anyOf:
        - type: string
        - type: integer
      description: このユーザーの IdP 固有の識別子。
    EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProfileData:
      additionalProperties: true
      description: ユーザーのプロファイルデータ。
      properties:
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが確認済み（true）か未確認（false）かを示します。
          type: boolean
        family_name:
          description: このユーザーの姓/ラストネーム/苗字。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名／ファーストネーム。
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が確認済み（true）か未確認（false）かどうか。
          type: boolean
        username:
          description: このユーザーのusername。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProviderEnum:
      description: エンタープライズIDプロバイダーの一覧。
      enum:
        - ad
        - adfs
        - google-apps
        - ip
        - office365
        - oidc
        - okta
        - pingfederate
        - samlp
        - sharepoint
        - waad
      type: string
    EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseUserId:
      anyOf:
        - type: string
        - type: integer
      description: このユーザーのIdP固有の識別子。
    EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProfileData:
      additionalProperties: true
      description: ユーザーのプロファイルデータ。
      properties:
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが確認済み（true）か未確認（false）かどうか。
          type: boolean
        family_name:
          description: このユーザーの姓/ラストネーム/苗字。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名/ファーストネーム。
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が確認済み（true）か未確認（false）かどうか。
          type: boolean
        username:
          description: このユーザーのユーザー名。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProviderEnum:
      description: パスワードレスIDプロバイダーの一覧。
      enum:
        - email
        - sms
      type: string
    EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessUserId:
      anyOf:
        - type: string
        - type: integer
      description: このユーザーのIdP固有の識別子。
    EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialIsSocialEnum:
      enum:
        - true
      type: boolean
    EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProfileData:
      additionalProperties: true
      description: ユーザーのプロファイルデータ。
      properties:
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが確認済み（true）か未確認（false）かどうか。
          type: boolean
        family_name:
          description: このユーザーの姓/ラストネーム/苗字。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名/ファーストネーム。
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が確認済み（true）か未確認（false）かどうか。
          type: boolean
        username:
          description: このユーザーのユーザー名。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProviderEnum:
      description: ソーシャルIDプロバイダーの一覧。
      enum:
        - amazon
        - apple
        - dropbox
        - bitbucket
        - auth0-oidc
        - baidu
        - bitly
        - box
        - daccount
        - dwolla
        - evernote-sandbox
        - evernote
        - exact
        - facebook
        - fitbit
        - github
        - google-oauth2
        - instagram
        - line
        - linkedin
        - oauth1
        - oauth2
        - paypal
        - paypal-sandbox
        - planningcenter
        - salesforce-community
        - salesforce-sandbox
        - salesforce
        - shopify
        - soundcloud
        - thirtysevensignals
        - twitter
        - untapped
        - vkontakte
        - weibo
        - windowslive
        - wordpress
        - yahoo
        - yandex
      type: string
    EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialUserId:
      anyOf:
        - type: string
        - type: integer
      description: このユーザーのIdP固有の識別子。
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProfileData:
      additionalProperties: true
      description: ユーザーのプロファイルデータ。
      properties:
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが確認済み（true）か未確認（false）か。
          type: boolean
        family_name:
          description: このユーザーの姓／ラストネーム。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名／ファーストネーム。
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が確認済み（true）か未確認（false）か。
          type: boolean
        username:
          description: このユーザーのユーザー名。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProviderEnum:
      description: カスタムIDプロバイダーの一覧。
      enum:
        - custom
      type: string
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーのIdP固有の識別子。
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProfileData:
      additionalProperties: true
      description: ユーザーのプロファイルデータ。
      properties:
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが確認済み（true）か未確認（false）か。
          type: boolean
        family_name:
          description: このユーザーの姓／ラストネーム。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名／ファーストネーム。
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が確認済み（true）か未確認（false）か。
          type: boolean
        username:
          description: このユーザーのユーザー名。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProviderEnum:
      description: データベースIDプロバイダーの一覧。
      enum:
        - auth0
      type: string
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーのIdP固有の識別子。
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProfileData:
      additionalProperties: true
      description: ユーザーのプロファイルデータ。
      properties:
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが確認済み（true）か未確認（false）か。
          type: boolean
        family_name:
          description: このユーザーの姓（last name/surname）。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名（first name/forename）。
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が確認済み（true）か未確認（false）か。
          type: boolean
        username:
          description: このユーザーのusername。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProviderEnum:
      description: エンタープライズ IDプロバイダーの一覧。
      enum:
        - ad
        - adfs
        - google-apps
        - ip
        - office365
        - oidc
        - okta
        - pingfederate
        - samlp
        - sharepoint
        - waad
      type: string
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseUserId:
      anyOf:
        - type: string
        - type: integer
      description: このユーザーのIdP固有の識別子。
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProfileData:
      additionalProperties: true
      description: ユーザーのプロファイルデータ。
      properties:
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが確認済み（true）か未確認（false）か。
          type: boolean
        family_name:
          description: このユーザーの姓（last name/surname）。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名（first name/forename）。
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が確認済み（true）か未確認（false）か。
          type: boolean
        username:
          description: このユーザーのusername。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProviderEnum:
      description: パスワードレス IDプロバイダーの一覧。
      enum:
        - email
        - sms
      type: string
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessUserId:
      anyOf:
        - type: string
        - type: integer
      description: このユーザーのIdP固有の識別子。
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialIsSocialEnum:
      enum:
        - true
      type: boolean
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProfileData:
      additionalProperties: true
      description: ユーザーのプロファイルデータ。
      properties:
        email:
          description: このユーザーのメールアドレス。
          format: email
          type: string
        email_verified:
          description: このメールアドレスが確認済み（true）か未確認（false）か。
          type: boolean
        family_name:
          description: このユーザーの姓（last name/surname）。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名（first name/forename）。
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: このユーザーの名前。
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: このユーザーの電話番号。
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: この電話番号が確認済み（true）かどうか（false）を示します。
          type: boolean
        username:
          description: このユーザーのusername。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProviderEnum:
      description: ソーシャル IDプロバイダーの一覧。
      enum:
        - amazon
        - apple
        - dropbox
        - bitbucket
        - auth0-oidc
        - baidu
        - bitly
        - box
        - daccount
        - dwolla
        - evernote-sandbox
        - evernote
        - exact
        - facebook
        - fitbit
        - github
        - google-oauth2
        - instagram
        - line
        - linkedin
        - oauth1
        - oauth2
        - paypal
        - paypal-sandbox
        - planningcenter
        - salesforce-community
        - salesforce-sandbox
        - salesforce
        - shopify
        - soundcloud
        - thirtysevensignals
        - twitter
        - untapped
        - vkontakte
        - weibo
        - windowslive
        - wordpress
        - yahoo
        - yandex
      type: string
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーの IDプロバイダー固有の識別子。
  securitySchemes:
    bearerAuth:
      bearerFormat: jwt
      scheme: bearer
      type: http
    oAuth2ClientCredentials:
      flows:
        clientCredentials:
          scopes:
            create:actions: Create Actions
            create:authentication_methods: Create Authentication Methods
            create:client_credentials: Create Client Credentials
            create:client_grants: Create Client Grants
            create:clients: Create Clients
            create:connection_profiles: Create Connection Profiles
            create:connections: Create Connections
            create:connections_keys: Create Connections Keys
            create:current_user_device_credentials: Create Current User Device Credentials
            create:custom_domains: Create Custom Domains
            create:custom_signing_keys: Create Custom Signing Keys
            create:directory_provisionings: Create Directory Provisionings
            create:email_provider: Create Email Provider
            create:email_templates: Create Email Templates
            create:encryption_keys: Create Encryption Keys
            create:event_streams: Create Event Streams
            create:experimentation: Create Experimentation
            create:flows: Create Flows
            create:flows_vault_connections: Create Flows Vault Connections
            create:forms: Create Forms
            create:group_roles: Create Group Roles
            create:guardian_enrollment_tickets: Create Guardian Enrollment Tickets
            create:hooks: Create Hooks
            create:log_streams: Create Log Streams
            create:network_acls: Create Network Acls
            create:organization_client_grants: Create Organization Client Grants
            create:organization_connections: Create Organization Connections
            create:organization_discovery_domains: Create Organization Discovery Domains
            create:organization_group_roles: Create Organization Group Roles
            create:organization_invitations: Create Organization Invitations
            create:organization_member_roles: Create Organization Member Roles
            create:organization_members: Create Organization Members
            create:organizations: Create Organizations
            create:phone_providers: Create Phone Providers
            create:phone_templates: Create Phone Templates
            create:rate_limit_policies: Create Rate Limit Policies
            create:resource_servers: Create Resource Servers
            create:role_members: Create Role Members
            create:roles: Create Roles
            create:rules: Create Rules
            create:scim_config: Create Scim Config
            create:scim_token: Create Scim Token
            create:self_service_profiles: Create Self Service Profiles
            create:signing_keys: Create Signing Keys
            create:sso_access_tickets: Create Sso Access Tickets
            create:token_exchange_profiles: Create Token Exchange Profiles
            create:user_attribute_profiles: Create User Attribute Profiles
            create:user_tickets: Create User Tickets
            create:users: Create Users
            create:vdcs_templates: Create Vdcs Templates
            delete:actions: Delete Actions
            delete:anomaly_blocks: Delete Anomaly Blocks
            delete:authentication_methods: Delete Authentication Methods
            delete:branding: Delete Branding
            delete:client_credentials: Delete Client Credentials
            delete:client_grants: Delete Client Grants
            delete:clients: Delete Clients
            delete:connection_profiles: Delete Connection Profiles
            delete:connections: Delete Connections
            delete:current_user: Delete Current User
            delete:current_user_device_credentials: Delete Current User Device Credentials
            delete:custom_domains: Delete Custom Domains
            delete:custom_signing_keys: Delete Custom Signing Keys
            delete:device_credentials: Delete Device Credentials
            delete:directory_provisionings: Delete Directory Provisionings
            delete:email_provider: Delete Email Provider
            delete:encryption_keys: Delete Encryption Keys
            delete:event_streams: Delete Event Streams
            delete:experimentation: Delete Experimentation
            delete:federated_connections_tokens: Delete Federated Connections Tokens
            delete:flows: Delete Flows
            delete:flows_executions: Delete Flows Executions
            delete:flows_vault_connections: Delete Flows Vault Connections
            delete:forms: Delete Forms
            delete:grants: Delete Grants
            delete:group_roles: Delete Group Roles
            delete:groups: Delete Groups
            delete:guardian_enrollments: Delete Guardian Enrollments
            delete:hooks: Delete Hooks
            delete:log_streams: Delete Log Streams
            delete:network_acls: Delete Network Acls
            delete:organization_client_grants: Delete Organization Client Grants
            delete:organization_connections: Delete Organization Connections
            delete:organization_discovery_domains: Delete Organization Discovery Domains
            delete:organization_group_roles: Delete Organization Group Roles
            delete:organization_invitations: Delete Organization Invitations
            delete:organization_member_roles: Delete Organization Member Roles
            delete:organization_members: Delete Organization Members
            delete:organizations: Delete Organizations
            delete:phone_providers: Delete Phone Providers
            delete:phone_templates: Delete Phone Templates
            delete:rate_limit_policies: Delete Rate Limit Policies
            delete:refresh_tokens: Delete Refresh Tokens
            delete:resource_servers: Delete Resource Servers
            delete:role_members: Delete Role Members
            delete:roles: Delete Roles
            delete:rules: Delete Rules
            delete:rules_configs: Delete Rules Configs
            delete:scim_config: Delete Scim Config
            delete:scim_token: Delete Scim Token
            delete:self_service_profiles: Delete Self Service Profiles
            delete:sessions: Delete Sessions
            delete:sso_access_tickets: Delete Sso Access Tickets
            delete:token_exchange_profiles: Delete Token Exchange Profiles
            delete:user_attribute_profiles: Delete User Attribute Profiles
            delete:users: Delete Users
            delete:vdcs_templates: Delete Vdcs Templates
            read:actions: Read Actions
            read:anomaly_blocks: Read Anomaly Blocks
            read:attack_protection: Read Attack Protection
            read:authentication_methods: Read Authentication Methods
            read:branding: Read Branding
            read:client_credentials: Read Client Credentials
            read:client_grants: Read Client Grants
            read:client_keys: Read Client Keys
            read:client_summary: Read Client Summary
            read:clients: Read Clients
            read:connection_profiles: Read Connection Profiles
            read:connections: Read Connections
            read:connections_keys: Read Connections Keys
            read:current_user: Read Current User
            read:custom_domains: Read Custom Domains
            read:custom_signing_keys: Read Custom Signing Keys
            read:device_credentials: Read Device Credentials
            read:directory_provisionings: Read Directory Provisionings
            read:email_provider: Read Email Provider
            read:email_templates: Read Email Templates
            read:encryption_keys: Read Encryption Keys
            read:event_deliveries: Read Event Deliveries
            read:event_streams: Read Event Streams
            read:events: Read Events
            read:experimentation: Read Experimentation
            read:federated_connections_tokens: Read Federated Connections Tokens
            read:flows: Read Flows
            read:flows_executions: Read Flows Executions
            read:flows_vault_connections: Read Flows Vault Connections
            read:forms: Read Forms
            read:grants: Read Grants
            read:group_members: Read Group Members
            read:group_roles: Read Group Roles
            read:groups: Read Groups
            read:guardian_enrollments: Read Guardian Enrollments
            read:guardian_factors: Read Guardian Factors
            read:hooks: Read Hooks
            read:log_streams: Read Log Streams
            read:logs: Read Logs
            read:logs_users: Read Logs Users
            read:mfa_policies: Read Mfa Policies
            read:network_acls: Read Network Acls
            read:organization_client_grants: Read Organization Client Grants
            read:organization_connections: Read Organization Connections
            read:organization_discovery_domains: Read Organization Discovery Domains
            read:organization_group_roles: Read Organization Group Roles
            read:organization_groups: Read Organization Groups
            read:organization_invitations: Read Organization Invitations
            read:organization_member_effective_roles: Read Organization Member Effective Roles
            read:organization_member_role_source_groups: Read Organization Member Role Source Groups
            read:organization_member_roles: Read Organization Member Roles
            read:organization_members: Read Organization Members
            read:organizations: Read Organizations
            read:organizations_summary: Read Organizations Summary
            read:phone_providers: Read Phone Providers
            read:phone_templates: Read Phone Templates
            read:prompts: Read Prompts
            read:rate_limit_policies: Read Rate Limit Policies
            read:refresh_tokens: Read Refresh Tokens
            read:resource_servers: Read Resource Servers
            read:role_members: Read Role Members
            read:roles: Read Roles
            read:rules: Read Rules
            read:rules_configs: Read Rules Configs
            read:scim_config: Read Scim Config
            read:scim_token: Read Scim Token
            read:self_service_profile_custom_texts: Read Self Service Profile Custom Texts
            read:self_service_profiles: Read Self Service Profiles
            read:sessions: Read Sessions
            read:signing_keys: Read Signing Keys
            read:stats: Read Stats
            read:tenant_settings: Read Tenant Settings
            read:token_exchange_profiles: Read Token Exchange Profiles
            read:user_attribute_profiles: Read User Attribute Profiles
            read:user_effective_permissions: Read User Effective Permissions
            read:user_effective_roles: Read User Effective Roles
            read:user_idp_tokens: Read User Idp Tokens
            read:user_permission_source_roles: Read User Permission Source Roles
            read:user_role_source_groups: Read User Role Source Groups
            read:users: Read Users
            read:vdcs_templates: Read Vdcs Templates
            update:actions: Update Actions
            update:attack_protection: Update Attack Protection
            update:authentication_methods: Update Authentication Methods
            update:branding: Update Branding
            update:client_credentials: Update Client Credentials
            update:client_grants: Update Client Grants
            update:client_keys: Update Client Keys
            update:client_token_vault_privileged_access: Update Client Token Vault Privileged Access
            update:clients: Update Clients
            update:connection_profiles: Update Connection Profiles
            update:connections: Update Connections
            update:connections_keys: Update Connections Keys
            update:current_user_identities: Update Current User Identities
            update:current_user_metadata: Update Current User Metadata
            update:custom_domains: Update Custom Domains
            update:custom_signing_keys: Update Custom Signing Keys
            update:directory_provisionings: Update Directory Provisionings
            update:email_provider: Update Email Provider
            update:email_templates: Update Email Templates
            update:encryption_keys: Update Encryption Keys
            update:event_deliveries: Update Event Deliveries
            update:event_streams: Update Event Streams
            update:experimentation: Update Experimentation
            update:flows: Update Flows
            update:flows_vault_connections: Update Flows Vault Connections
            update:forms: Update Forms
            update:guardian_factors: Update Guardian Factors
            update:hooks: Update Hooks
            update:log_streams: Update Log Streams
            update:mfa_policies: Update Mfa Policies
            update:network_acls: Update Network Acls
            update:organization_connections: Update Organization Connections
            update:organization_discovery_domains: Update Organization Discovery Domains
            update:organizations: Update Organizations
            update:phone_providers: Update Phone Providers
            update:phone_templates: Update Phone Templates
            update:prompts: Update Prompts
            update:rate_limit_policies: Update Rate Limit Policies
            update:refresh_tokens: Update Refresh Tokens
            update:resource_servers: Update Resource Servers
            update:roles: Update Roles
            update:rules: Update Rules
            update:rules_configs: Update Rules Configs
            update:scim_config: Update Scim Config
            update:self_service_profile_custom_texts: Update Self Service Profile Custom Texts
            update:self_service_profiles: Update Self Service Profiles
            update:sessions: Update Sessions
            update:signing_keys: Update Signing Keys
            update:tenant_settings: Update Tenant Settings
            update:token_exchange_profiles: Update Token Exchange Profiles
            update:user_attribute_profiles: Update User Attribute Profiles
            update:users: Update Users
            update:users_app_metadata: Update Users App Metadata
            update:vdcs_templates: Update Vdcs Templates
          tokenUrl: /oauth/token/
          x-form-parameters:
            audience: /api/v2/
      type: oauth2

````