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

# Server-Sent Events (SSE) 経由でイベントを購読

> 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">スコープ</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-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 docs/ja-jp/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 Tenant Domain
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: ストリーム内の位置を表す opaque なトークンです。指定しない場合、ストリームは最新のイベントから開始されます。
          in: query
          name: from
          schema:
            maxLength: 1024
            type: string
        - description: >-
            イベントのストリーミング開始位置を示す RFC-3339
            タイムスタンプです。これは、カーソルを利用できない可能性がある初回クエリでのみ使用してください。後続の request
            では、より正確なカーソル (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
            の headers を確認してください。
      security:
        - bearerAuth: []
        - oAuth2ClientCredentials:
            - read:events
      x-codeSamples:
        - label: Subscribe to events via Server-Sent Events (SSE)
          lang: csharp
          source: |
            using Auth0.ManagementApi;
            using System.Threading.Tasks;
            using System.Collections.Generic;

            public partial class Examples
            {
                public async Task Example() {
                    var client = new ManagementApiClient(
                        token: "<token>",
                        clientOptions: new ClientOptions { BaseUrl = "https://{YOUR_DOMAIN}/api/v2" }
                    );

                    await foreach (var item in client.Events.SubscribeAsync(
                        new SubscribeEventsRequestParameters {
                            From = "from",
                            FromTimestamp = "from_timestamp",
                            EventType = new List<EventStreamSubscribeEventsEventTypeEnum>(){
                                EventStreamSubscribeEventsEventTypeEnum.ConnectionCreated,
                            }

                        }
                    ))
                    {
                        /* consume each item */
                    }
                    ;
                }

            }
        - label: Subscribe to events via Server-Sent Events (SSE)
          lang: java
          source: >-
            package com.example.usage;


            import com.auth0.client.mgmt.ManagementApi;

            import
            com.auth0.client.mgmt.types.EventStreamSubscribeEventsEventTypeEnum;

            import com.auth0.client.mgmt.types.SubscribeEventsRequestParameters;

            import java.util.Arrays;


            public class Example {
                public static void main(String[] args) {
                    ManagementApi client = ManagementApi
                        .builder()
                        .domain("{YOUR_DOMAIN}")
                        .token("<token>")
                        .build();

                    client.events().subscribe(
                        SubscribeEventsRequestParameters
                            .builder()
                            .eventType(
                                Arrays.asList(EventStreamSubscribeEventsEventTypeEnum.CONNECTION_CREATED)
                            )
                            .from("from")
                            .fromTimestamp("from_timestamp")
                            .build()
                    );
                }
            }
        - label: Subscribe to events via Server-Sent Events (SSE)
          lang: php
          source: >
            <?php


            namespace Example;


            use Auth0\SDK\API\Management\Wrapper\ManagementClient;

            use Auth0\SDK\API\Management\Wrapper\ManagementClientOptions;

            use
            Auth0\SDK\API\Management\Events\Requests\SubscribeEventsRequestParameters;

            use
            Auth0\SDK\API\Management\Types\EventStreamSubscribeEventsEventTypeEnum;


            $client = new ManagementClient(new ManagementClientOptions(
                domain: '{YOUR_DOMAIN}',
                token: '<token>',
            ));

            $client->events->subscribe(
                new SubscribeEventsRequestParameters([
                    'from' => 'from',
                    'fromTimestamp' => 'from_timestamp',
                    'eventType' => [
                        EventStreamSubscribeEventsEventTypeEnum::ConnectionCreated->value,
                    ],
                ]),
            );
        - label: Subscribe to events via Server-Sent Events (SSE)
          lang: python
          source: |
            from auth0.management import ManagementClient

            client = ManagementClient(
                domain="{YOUR_DOMAIN}",
                token="<token>",
            )

            client.events.subscribe(
                from="from",
                from_timestamp="from_timestamp",
                event_type=[
                    "connection.created"
                ],
            )
        - label: Subscribe to events via Server-Sent Events (SSE)
          lang: ruby
          source: >
            require "auth0"


            client = Auth0::Management.new(token: "<token>", base_url:
            "https://{YOUR_DOMAIN}/api/v2")


            client.events.subscribe(
              from: "from",
              from_timestamp: "from_timestamp",
              event_type: ["connection.created"]
            )
components:
  schemas:
    EventStreamSubscribeEventsEventTypeParam:
      description: >-
        受信するイベントタイプ。複数のタイプを指定する場合は、複数回指定してください（例:
        ?event_type=user.created&event_type=user.updated）。指定しない場合は、すべてのイベントタイプがストリーム配信されます。
      items:
        $ref: '#/components/schemas/EventStreamSubscribeEventsEventTypeEnum'
      type: array
    EventStreamSubscribeEventsResponseContent:
      description: >-
        各SSEデータ行で配信されるJSON
        payload。typeフィールドは、SDKによってSSEのeventフィールドから注入されます。typeによって判別され、イベントの場合はイベントタイプ名、エラーの場合は"error"、カーソルのみのハートビートの場合は"offset-only"になります。
      discriminator:
        mapping:
          connection.created:
            $ref: '#/components/schemas/EventStreamCloudEventConnectionCreated'
          connection.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventConnectionDeleted'
          connection.updated:
            $ref: '#/components/schemas/EventStreamCloudEventConnectionUpdated'
          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/EventStreamCloudEventConnectionCreated'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionUpdated'
        - $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:
        - connection.created
        - connection.deleted
        - connection.updated
        - 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
    EventStreamCloudEventConnectionCreated:
      additionalProperties: false
      description: connection.created の SSE メッセージ。
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedCloudEvent
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from` クエリパラメータとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventConnectionCreatedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventConnectionDeleted:
      additionalProperties: false
      description: connection.deletedのSSEメッセージ。
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedCloudEvent
        offset:
          description: ストリーム内の位置を表す不透明なカーソル。再開するには、`from`クエリパラメータとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventConnectionDeletedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventConnectionUpdated:
      additionalProperties: false
      description: connection.updated の SSE メッセージ。
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedCloudEvent
        offset:
          description: ストリーム内の位置を表す不透明なカーソルです。再開するには、`from` クエリパラメータとして渡します。
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventConnectionUpdatedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    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: stream 内の位置を表す opaque カーソル。再開するには、`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: ストリーム内の位置を表す opaque なカーソル。再開するには、`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: ストリーム内の位置を表す不透明なカーソル。再開するには、`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: stream 内の位置を表す opaque なカーソル。再開するには、`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: ストリーム内の位置を表す opaque カーソル。再開するには、`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: オフセットのみのハートビートメッセージ。イベントを配信せずにカーソルを進めます。
      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: ストリーム内の位置を表す opaque カーソル。再開するには、`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: ストリーム内の位置を表す opaque カーソル。再開するには、`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: stream 内の位置を表す opaque なカーソルです。再開するには、`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: ストリーム内の位置を表す opaque なカーソル。再開するには、`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: ストリーム内の位置を表す opaque なカーソル。再開するには、`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: ストリーム内の位置を表す opaque なカーソル。再開するには、`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: ストリーム内の位置を表す opaque なカーソル。再開するには、`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: ストリーム内の位置を表す不透明なカーソル。再開するには、`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
    EventStreamCloudEventConnectionCreatedCloudEvent:
      additionalProperties: false
      description: 接続が作成されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントが配信されたストリームの Auth0 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{22}
          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/EventStreamCloudEventConnectionCreatedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        time:
          description: イベントが実際に発生した日時を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventConnectionCreatedTypeEnum:
      description: イベントタイプ（SSEイベントフィールドから挿入されます）。
      enum:
        - connection.created
      type: string
    EventStreamCloudEventConnectionDeletedCloudEvent:
      additionalProperties: false
      description: 接続が削除されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントが配信されたストリームのauth0イベントストリームID。
          pattern: est_[a-zA-Z0-9]{22}
          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/EventStreamCloudEventConnectionDeletedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{22}
          type: string
        source:
          description: イベントの発信元。'urn:auth0:<tenant>.<domain>'の形式になります。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        time:
          description: イベントが実際に発生した日時を示すISO-8601タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventConnectionDeletedTypeEnum:
      description: イベントタイプ（SSE の event フィールドから挿入されます）。
      enum:
        - connection.deleted
      type: string
    EventStreamCloudEventConnectionUpdatedCloudEvent:
      additionalProperties: false
      description: 接続が更新されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先ストリームの Auth0 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{22}
          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/EventStreamCloudEventConnectionUpdatedData'
        id:
          description: イベントの一意の識別子。
          pattern: evt_[a-zA-Z0-9]{22}
          type: string
        source:
          description: イベントのソースです。'urn:auth0:<tenant>.<domain>' の形式です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        time:
          description: イベントが実際に発生した時刻を示す ISO-8601 タイムスタンプ。
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventConnectionUpdatedTypeEnum:
      description: イベントタイプ（SSE のイベントフィールドから挿入されます）。
      enum:
        - connection.updated
      type: string
    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 イベントフィールドから設定されます）。
      enum:
        - error
      type: string
    EventStreamCloudEventGroupCreatedCloudEvent:
      additionalProperties: false
      description: グループが作成されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: このイベントが配信されたストリームの auth0 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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: このイベントの配信先となった stream の auth0 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{22}
          type: string
        a0tenant:
          description: このイベントに関連付けられた auth0 の Tenant 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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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 イベントストリームID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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: イベントの配信先となったストリームの Auth0 イベントストリームID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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: role がグループに割り当てられたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: このイベントが配信されたストリームの auth0 イベントストリームID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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: group から role が削除されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先となったストリームの Auth0 イベントストリームID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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: group が更新されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: このイベントが配信されたストリームの Auth0 イベントストリームID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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: これがオフセットのみのハートビートメッセージであることを示します（SSE の event フィールドから注入されます）。
      enum:
        - offset-only
      type: string
    EventStreamCloudEventOrgConnectionAddedCloudEvent:
      additionalProperties: false
      description: organization に接続が追加されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: このイベントが配信されたストリームの auth0 イベントストリーム ID です。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソースです。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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: organization から接続が削除されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: このイベントが配信されたストリームの auth0 イベントストリーム ID です。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソースです。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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: organization の接続が更新されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: このイベントの配信先ストリームの auth0 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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: organization が作成されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先となったストリームの Auth0 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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: organization が削除されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先となったストリームの Auth0 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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: organization の group にロールが割り当てられたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: このイベントが配信された stream の auth0 event stream ID。
          pattern: est_[a-zA-Z0-9]{22}
          type: string
        a0tenant:
          description: このイベントに関連付けられた auth0 tenant 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]{22}
          type: string
        source:
          description: イベントのソースです。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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: organization グループからロールが削除されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先となったストリームの auth0 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' になります。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' になります。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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: メンバーがorganizationに追加されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントが配信されたストリームの auth0 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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: メンバーがorganizationから削除されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先となったストリームの Auth0 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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: organization が更新されたときに発生するイベントを表します。
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: イベントの配信先となったストリームの Auth0 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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 イベントストリーム ID。
          pattern: est_[a-zA-Z0-9]{22}
          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]{22}
          type: string
        source:
          description: イベントのソース。形式は 'urn:auth0:<tenant>.<domain>' です。
          type: string
        specversion:
          $ref: '#/components/schemas/EventStreamCloudEventSpecVersionEnum'
        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
    EventStreamCloudEventA0PurposeEnum:
      description: |-
        このイベントの目的。このフィールドは通常、テストイベントの送信などの特殊な場合にのみ表示されます。
        通常のイベントでは、このフィールドは省略されます。
      enum:
        - test
      type: string
    EventStreamCloudEventConnectionCreatedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventConnectionCreatedObject'
        previous_object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject
      required:
        - object
      type: object
    EventStreamCloudEventSpecVersionEnum:
      description: イベントで使用される CloudEvents 仕様のバージョン。
      enum:
        - '1.0'
      type: string
    EventStreamCloudEventConnectionCreatedCloudEventTypeEnum:
      description: 発生したイベントの種類。
      enum:
        - connection.created
      type: string
    EventStreamCloudEventConnectionDeletedData:
      additionalProperties: false
      description: イベントペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventConnectionDeletedObject'
        previous_object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject
      required:
        - object
      type: object
    EventStreamCloudEventConnectionDeletedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - connection.deleted
      type: string
    EventStreamCloudEventConnectionUpdatedData:
      additionalProperties: false
      description: イベントペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventConnectionUpdatedObject'
        previous_object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject
      required:
        - object
      type: object
    EventStreamCloudEventConnectionUpdatedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - connection.updated
      type: string
    EventStreamCloudEventErrorCodeEnum:
      description: 機械可読なエラーコード。
      enum:
        - invalid_cursor
        - cursor_expired
        - timeout
        - payload_too_large
        - processing_error
        - connection_timeout
      type: string
    EventStreamCloudEventGroupCreatedData:
      additionalProperties: false
      description: イベントのペイロード。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedObject'
        previous_object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedPreviousObject'
      required:
        - object
      type: object
    EventStreamCloudEventGroupCreatedCloudEventTypeEnum:
      description: 発生したイベントの種類。
      enum:
        - group.created
      type: string
    EventStreamCloudEventGroupDeletedData:
      additionalProperties: false
      description: イベントの payload。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedObject'
        previous_object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedPreviousObject'
      required:
        - object
      type: object
    EventStreamCloudEventGroupDeletedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - group.deleted
      type: string
    EventStreamCloudEventGroupMemberAddedData:
      additionalProperties: false
      description: イベントのpayload。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupMemberAddedObject'
        previous_object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedPreviousObject
      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'
        previous_object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedPreviousObject
      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'
        previous_object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedPreviousObject
      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'
        previous_object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedPreviousObject
      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'
        previous_object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedPreviousObject'
      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'
        previous_object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedPreviousObject
      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'
        previous_object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionRemovedPreviousObject
      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'
        previous_object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedPreviousObject
      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'
        previous_object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgCreatedPreviousObject'
      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'
        previous_object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgDeletedPreviousObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgDeletedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - organization.deleted
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedData:
      additionalProperties: false
      description: イベントの payload。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObject'
        previous_object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedPreviousObject
      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'
        previous_object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedPreviousObject
      required:
        - object
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - organization.group.role.deleted
      type: string
    EventStreamCloudEventOrgMemberAddedData:
      additionalProperties: false
      description: イベントの payload。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberAddedObject'
        previous_object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberAddedPreviousObject
      required:
        - object
      type: object
    EventStreamCloudEventOrgMemberAddedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - organization.member.added
      type: string
    EventStreamCloudEventOrgMemberDeletedData:
      additionalProperties: false
      description: イベントの payload。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberDeletedObject'
        previous_object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberDeletedPreviousObject
      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
        previous_object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedPreviousObject
      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'
        previous_object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedPreviousObject
      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'
        previous_object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgUpdatedPreviousObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgUpdatedCloudEventTypeEnum:
      description: 発生したイベントのタイプ。
      enum:
        - organization.updated
      type: string
    EventStreamCloudEventUserCreatedData:
      additionalProperties: false
      description: イベントの payload。
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventUserCreatedObject'
        previous_object:
          $ref: '#/components/schemas/EventStreamCloudEventUserCreatedPreviousObject'
      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'
        previous_object:
          $ref: '#/components/schemas/EventStreamCloudEventUserDeletedPreviousObject'
      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'
        previous_object:
          $ref: '#/components/schemas/EventStreamCloudEventUserUpdatedPreviousObject'
      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
    EventStreamCloudEventConnectionCreatedObject:
      description: イベントの内容。
      oneOf:
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionCreatedObject0'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionCreatedObject1'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionCreatedObject2'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionCreatedObject3'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionCreatedObject4'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionCreatedObject5'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionCreatedObject6'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionCreatedObject7'
    EventStreamCloudEventConnectionCreatedPreviousObject:
      description: 該当する場合、このイベントで説明された変更前のイベント内容。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject3
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject4
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject5
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject6
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject7
    EventStreamCloudEventConnectionDeletedObject:
      description: イベントの内容。
      oneOf:
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionDeletedObject0'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionDeletedObject1'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionDeletedObject2'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionDeletedObject3'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionDeletedObject4'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionDeletedObject5'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionDeletedObject6'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionDeletedObject7'
    EventStreamCloudEventConnectionDeletedPreviousObject:
      description: 該当する場合、このイベントで説明されている変更前のイベント内容。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject3
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject4
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject5
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject6
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject7
    EventStreamCloudEventConnectionUpdatedObject:
      description: イベントの内容。
      oneOf:
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionUpdatedObject0'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionUpdatedObject1'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionUpdatedObject2'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionUpdatedObject3'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionUpdatedObject4'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionUpdatedObject5'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionUpdatedObject6'
        - $ref: '#/components/schemas/EventStreamCloudEventConnectionUpdatedObject7'
    EventStreamCloudEventConnectionUpdatedPreviousObject:
      description: 該当する場合、このイベントで説明される変更前のイベント内容。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject3
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject4
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject5
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject6
        - $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject7
    EventStreamCloudEventGroupCreatedObject:
      description: イベントの内容。
      oneOf:
        - $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedObject0'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedObject1'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedObject2'
    EventStreamCloudEventGroupCreatedPreviousObject:
      description: 該当する場合、このイベントで説明される変更前のイベント内容。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupCreatedPreviousObject0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupCreatedPreviousObject1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupCreatedPreviousObject2
    EventStreamCloudEventGroupDeletedObject:
      description: イベントの内容。
      oneOf:
        - $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedObject0'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedObject1'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedObject2'
    EventStreamCloudEventGroupDeletedPreviousObject:
      description: 該当する場合、このイベントで説明される変更前のイベント内容。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupDeletedPreviousObject0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupDeletedPreviousObject1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupDeletedPreviousObject2
    EventStreamCloudEventGroupMemberAddedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectGroup
        member:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectMember
      required:
        - group
        - member
      type: object
    EventStreamCloudEventGroupMemberAddedPreviousObject:
      additionalProperties: false
      description: 該当する場合、このイベントで説明された変更前のイベント内容。
      properties:
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedPreviousObjectGroup
        member:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedPreviousObjectMember
      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
    EventStreamCloudEventGroupMemberDeletedPreviousObject:
      additionalProperties: false
      description: 該当する場合、このイベントで説明された変更前のイベント内容。
      properties:
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedPreviousObjectGroup
        member:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedPreviousObjectMember
      required:
        - group
        - member
      type: object
    EventStreamCloudEventGroupRoleAssignedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        created_at:
          description: role が group に割り当てられた日時。
          format: date-time
          type: string
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectRole
      required:
        - group
        - role
        - created_at
      type: object
    EventStreamCloudEventGroupRoleAssignedPreviousObject:
      additionalProperties: false
      description: 該当する場合、このイベントで説明された変更前のイベント内容。
      properties:
        created_at:
          description: ロールがグループに割り当てられた日時。
          format: date-time
          type: string
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedPreviousObjectGroup
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedPreviousObjectRole
      required:
        - group
        - role
        - created_at
      type: object
    EventStreamCloudEventGroupRoleDeletedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        deleted_at:
          description: role が group から削除された時刻。
          format: date-time
          type: string
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup
        role:
          $ref: '#/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectRole'
      required:
        - group
        - role
        - deleted_at
      type: object
    EventStreamCloudEventGroupRoleDeletedPreviousObject:
      additionalProperties: false
      description: 該当する場合、このイベントで説明された変更前のイベント内容。
      properties:
        created_at:
          description: ロールがグループに割り当てられた日時。
          format: date-time
          type: string
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedPreviousObjectGroup
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedPreviousObjectRole
      required:
        - group
        - role
        - created_at
      type: object
    EventStreamCloudEventGroupUpdatedObject:
      description: イベントの内容。
      oneOf:
        - $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedObject0'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedObject1'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedObject2'
    EventStreamCloudEventGroupUpdatedPreviousObject:
      description: 該当する場合、このイベントで説明された変更前のイベント内容。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupUpdatedPreviousObject0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupUpdatedPreviousObject1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupUpdatedPreviousObject2
    EventStreamCloudEventOrgConnectionAddedObject:
      additionalProperties: false
      description: イベントの内容です。
      properties:
        assign_membership_on_login:
          description: |-
            true の場合、この接続でログインするすべてのユーザーに、その organization のメンバーシップが自動的に付与されます。
            false の場合、ユーザーがこの接続でログインする前に、その organization のメンバーシップを付与する必要があります。
          type: boolean
        connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedObjectConnection
        is_enabled:
          description: この接続をorganizationで有効にするかどうかを指定します。
          type: boolean
        is_signup_enabled:
          description: |-
            この organization 接続で organization signup を有効にするかどうかを決定します。
            データベース接続にのみ適用されます。
          type: boolean
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedObjectOrganization
        organization_access_level:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedObjectOrganizationAccessLevel
        show_as_button:
          description: |-
            この接続をこの organization のログイン画面に表示するかどうかを決定します。
            エンタープライズ接続にのみ適用されます。
          type: boolean
      required:
        - organization
        - connection
      type: object
    EventStreamCloudEventOrgConnectionAddedPreviousObject:
      additionalProperties: false
      description: 該当する場合、このイベントで説明された変更前のイベント内容。
      properties:
        assign_membership_on_login:
          description: |-
            trueの場合、この接続でログインするすべてのユーザーに、organizationのメンバーシップが自動的に付与されます。
            falseの場合、この接続でログインする前に、ユーザーにorganizationのメンバーシップを付与する必要があります。
          type: boolean
        connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedPreviousObjectConnection
        is_enabled:
          description: この接続をorganizationで有効にするかどうかを指定します。
          type: boolean
        is_signup_enabled:
          description: |-
            この組織接続で組織のサインアップを有効にするかどうかを指定します。
            データベース接続にのみ適用されます。
          type: boolean
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedPreviousObjectOrganization
        organization_access_level:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedPreviousObjectOrganizationAccessLevel
        show_as_button:
          description: |-
            このorganizationのログインプロンプトに接続を表示するかどうかを指定します。
            エンタープライズ接続にのみ適用されます。
          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
    EventStreamCloudEventOrgConnectionRemovedPreviousObject:
      additionalProperties: false
      description: 該当する場合、このイベントで説明されている変更前のイベント内容。
      properties:
        connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionRemovedPreviousObjectConnection
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionRemovedPreviousObjectOrganization
      required:
        - organization
        - connection
      type: object
    EventStreamCloudEventOrgConnectionUpdatedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        assign_membership_on_login:
          description: >-
            true の場合、この接続でログインするすべてのユーザーに、その organization のメンバーシップが自動的に付与されます。

            false の場合、ユーザーはこの接続でログインする前に、その organization
            のメンバーシップを付与されている必要があります。
          type: boolean
        connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedObjectConnection
        is_enabled:
          description: この接続をorganizationで有効にするかどうかを指定します。
          type: boolean
        is_signup_enabled:
          description: |-
            この organization 接続で organization signup を有効にするかどうかを決定します。
            データベース接続にのみ適用されます。
          type: boolean
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedObjectOrganization
        organization_access_level:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedObjectOrganizationAccessLevel
        show_as_button:
          description: |-
            この organization のログイン画面に接続を表示するかどうかを決定します。
            エンタープライズ接続にのみ適用されます。
          type: boolean
      required:
        - organization
        - connection
      type: object
    EventStreamCloudEventOrgConnectionUpdatedPreviousObject:
      additionalProperties: false
      description: 該当する場合、このイベントで説明されている変更前のイベント内容。
      properties:
        assign_membership_on_login:
          description: |-
            trueの場合、この接続でログインするすべてのユーザーにorganizationのメンバーシップが自動的に付与されます。
            falseの場合、この接続でログインする前に、ユーザーにorganizationのメンバーシップを付与する必要があります。
          type: boolean
        connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedPreviousObjectConnection
        is_enabled:
          description: この接続をorganizationで有効にするかどうかを指定します。
          type: boolean
        is_signup_enabled:
          description: |-
            この組織接続で組織のサインアップを有効にするかどうかを指定します。
            データベース接続にのみ適用されます。
          type: boolean
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedPreviousObjectOrganization
        organization_access_level:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedPreviousObjectOrganizationAccessLevel
        show_as_button:
          description: |-
            このorganizationのログインプロンプトに接続を表示するかどうかを指定します。
            エンタープライズ接続にのみ適用されます。
          type: boolean
      required:
        - organization
        - connection
      type: object
    EventStreamCloudEventOrgCreatedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        branding:
          $ref: '#/components/schemas/EventStreamCloudEventOrgCreatedObjectBranding'
        display_name:
          description: 設定されている場合、エンドユーザーとのあらゆるやり取りでこの organization に表示される名前。
          type: string
        id:
          description: organization の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        metadata:
          $ref: '#/components/schemas/EventStreamCloudEventOrgCreatedObjectMetadata'
        name:
          description: >-
            エンドユーザーがアプリケーション内で自分の organization に移動する際に使用する、organization
            の人が判読できる識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgCreatedPreviousObject:
      additionalProperties: false
      description: 該当する場合、このイベントで説明されている変更前のイベント内容。
      properties:
        branding:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgCreatedPreviousObjectBranding
        display_name:
          description: 設定されている場合、エンドユーザーとのすべてのやり取りでこのorganizationに表示される名前。
          type: string
        id:
          description: organizationのID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgCreatedPreviousObjectMetadata
        name:
          description: >-
            エンドユーザーをアプリケーション内の自身のorganizationに誘導するために使用する、organizationの人が判読可能な識別子。
          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: 設定されている場合、エンドユーザーとのあらゆるやり取りでこの organization に表示される名前。
          type: string
        id:
          description: organization の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        metadata:
          $ref: '#/components/schemas/EventStreamCloudEventOrgDeletedObjectMetadata'
        name:
          description: >-
            エンドユーザーがアプリケーション内で自分の organization に移動する際に使用する、organization
            の人が判読できる識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgDeletedPreviousObject:
      additionalProperties: false
      description: 該当する場合、このイベントで説明されている変更前のイベント内容。
      properties:
        display_name:
          description: 設定されている場合、エンドユーザーとのすべてのやり取りでこのorganizationに表示される名前。
          type: string
        id:
          description: organizationのID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgDeletedPreviousObjectMetadata
        name:
          description: >-
            エンドユーザーをアプリケーション内の自身のorganizationに誘導するために使用する、organizationの人が判読可能な識別子。
          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: organization 内の group にロールが割り当てられた時刻。
          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
    EventStreamCloudEventOrgGroupRoleAssignedPreviousObject:
      additionalProperties: false
      description: 該当する場合、このイベントで説明されている変更前のイベント内容。
      properties:
        created_at:
          description: organization内でグループにロールが割り当てられた時刻。
          format: date-time
          type: string
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectGroup
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectOrganization
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectRole
      required:
        - organization
        - role
        - group
        - created_at
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        deleted_at:
          description: organization 内のグループからロールが削除された日時。
          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
    EventStreamCloudEventOrgGroupRoleDeletedPreviousObject:
      additionalProperties: false
      description: 該当する場合、このイベントで説明されている変更前のイベント内容。
      properties:
        created_at:
          description: organization内でグループにロールが割り当てられた時刻。
          format: date-time
          type: string
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectGroup
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectOrganization
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectRole
      required:
        - organization
        - role
        - group
        - created_at
      type: object
    EventStreamCloudEventOrgMemberAddedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberAddedObjectOrganization
        user:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberAddedObjectUser'
      required:
        - organization
        - user
      type: object
    EventStreamCloudEventOrgMemberAddedPreviousObject:
      additionalProperties: false
      description: 該当する場合、このイベントで説明されている変更前のイベント内容。
      properties:
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberAddedPreviousObjectOrganization
        user:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberAddedPreviousObjectUser
      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
    EventStreamCloudEventOrgMemberDeletedPreviousObject:
      additionalProperties: false
      description: 該当する場合、このイベントで説明されている変更前のイベント内容。
      properties:
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberDeletedPreviousObjectOrganization
        user:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberDeletedPreviousObjectUser
      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
    EventStreamCloudEventOrgMemberRoleAssignedPreviousObject:
      additionalProperties: false
      description: 該当する場合、このイベントで説明されている変更前のイベント内容。
      properties:
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedPreviousObjectOrganization
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedPreviousObjectRole
        user:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedPreviousObjectUser
      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
    EventStreamCloudEventOrgMemberRoleDeletedPreviousObject:
      additionalProperties: false
      description: 該当する場合、このイベントで示される変更前のイベント内容。
      properties:
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedPreviousObjectOrganization
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedPreviousObjectRole
        user:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedPreviousObjectUser
      required:
        - organization
        - user
        - role
      type: object
    EventStreamCloudEventOrgUpdatedObject:
      additionalProperties: false
      description: イベントの内容。
      properties:
        branding:
          $ref: '#/components/schemas/EventStreamCloudEventOrgUpdatedObjectBranding'
        display_name:
          description: 設定されている場合、この organization とのやり取りでエンドユーザーに表示される名前。
          type: string
        id:
          description: organization の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        metadata:
          $ref: '#/components/schemas/EventStreamCloudEventOrgUpdatedObjectMetadata'
        name:
          description: >-
            アプリケーション内でエンドユーザーをその organization に誘導するために使用される、organization
            の人が読み取れる識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgUpdatedPreviousObject:
      additionalProperties: false
      description: 該当する場合、このイベントで示される変更前のイベント内容。
      properties:
        branding:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgUpdatedPreviousObjectBranding
        display_name:
          description: 設定した場合、このorganizationとのやり取りでエンドユーザーに表示される名前。
          type: string
        id:
          description: organizationのID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgUpdatedPreviousObjectMetadata
        name:
          description: エンドユーザーをアプリケーション内のorganizationに誘導するために使用する、organizationの人間が判読できる識別子。
          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: このユーザーの姓（family name／last name／surname）。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名（given name／first name／forename）。
          maxLength: 150
          minLength: 1
          type: string
        identities:
          description: アカウントがリンクされている場合のユーザー ID オブジェクトの配列。
          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: このユーザーのユーザー名。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      required:
        - user_id
        - created_at
        - updated_at
        - identities
      type: object
    EventStreamCloudEventUserCreatedPreviousObject:
      additionalProperties: true
      description: 該当する場合、このイベントで示される変更前のイベント内容。
      properties:
        app_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectAppMetadata
        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/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItem
          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/EventStreamCloudEventUserCreatedPreviousObjectUserMetadata
        username:
          description: このユーザーのユーザー名。
          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: このユーザーのユーザー名。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      required:
        - user_id
        - created_at
        - updated_at
        - identities
        - deleted_at
      type: object
    EventStreamCloudEventUserDeletedPreviousObject:
      additionalProperties: true
      description: 該当する場合、このイベントで説明されている変更前のイベント内容。
      properties:
        app_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectAppMetadata
        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/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItem
          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/EventStreamCloudEventUserDeletedPreviousObjectUserMetadata
        username:
          description: このユーザーのユーザー名。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      required:
        - user_id
        - created_at
        - updated_at
        - identities
      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: このユーザーのユーザー名。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      required:
        - user_id
        - created_at
        - updated_at
        - identities
      type: object
    EventStreamCloudEventUserUpdatedPreviousObject:
      additionalProperties: true
      description: 該当する場合、このイベントで説明されている変更前のイベント内容。
      properties:
        app_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectAppMetadata
        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/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItem
          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/EventStreamCloudEventUserUpdatedPreviousObjectUserMetadata
        username:
          description: このユーザーのユーザー名。
          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: access tokenを要求または提示するOAuthクライアント。
      properties:
        id:
          description: クライアント識別子。
          type: string
        metadata:
          $ref: '#/components/schemas/EventStreamCloudEventContextClientMetadata'
        name:
          description: クライアント名。
          type: string
      required:
        - id
        - name
        - metadata
      type: object
    EventStreamCloudEventContextConnection:
      additionalProperties: false
      description: イベントを生成した認証トランザクションで使用されたAuth0 Connection。
      properties:
        id:
          description: 接続のID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        name:
          description: 接続名。
          maxLength: 128
          minLength: 1
          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:
        id:
          description: ユーザーが指定したテナント識別子。
          maxLength: 63
          minLength: 3
          pattern: '[a-z0-9][-a-z0-9]{1,62}[a-z0-9]'
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventConnectionCreatedObject0:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。特定のクライアントセットに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            の場合、サードパーティアプリケーションが使用できるように、ドメインレベルの接続に昇格されます。<code>false</code>
            の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と '-' のみです。最大長は 128 です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続のボタンを表示できるようにします（新しいエクスペリエンスでのみ利用可能）。false の場合、HRD
            経由でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionCreatedObject1:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            の場合、サードパーティアプリケーションが使用できるように、接続をドメインレベルに昇格させます。<code>false</code>
            の場合、接続は昇格されないため、その接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1Metadata
        name:
          description: 接続名。先頭と末尾は英数字である必要があり、使用できる文字は英数字と '-' のみです。最大長は 128 文字です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false
            の場合、ホームレルムディスカバリーでのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionCreatedObject2:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。複数のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションで使用できるよう、接続をドメインレベルに昇格します。<code>false</code>の場合、接続は昇格されないため、その接続が有効になっているファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2Metadata
        name:
          description: 接続名。先頭と末尾は英数字にする必要があり、使用できる文字は英数字と '-' のみです。最大長は 128 です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false の場合は、HRD
            経由でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionCreatedObject3:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject3Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject3ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            の場合、サードパーティアプリケーションで使用できるよう、接続がドメインレベルに昇格されます。<code>false</code>
            の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject3Metadata
        name:
          description: 接続の名前。英数字で開始・終了する必要があり、使用できる文字は英数字と '-' のみです。最大長は 128 です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject3Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページ（新しいエクスペリエンスのみ）に、この接続のボタンを表示できるようにします。false
            の場合、ホームレルムディスカバリー（HRD）でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject3StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionCreatedObject4:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject4Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject4ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントで接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            を指定すると、サードパーティアプリケーションが使用できるよう、接続がドメインレベルに昇格されます。<code>false</code>
            を指定すると接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject4Metadata
        name:
          description: 接続名。先頭と末尾は英数字である必要があり、使用できる文字は英数字と '-' のみです。最大長は128文字
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject4Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false の場合は、HRD
            経由でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject4StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionCreatedObject5:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject5Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject5ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            にするとドメインレベルの接続に昇格し、サードパーティアプリケーションが使用できるようになります。<code>false</code>
            にすると接続は昇格されないため、接続が有効になっているファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code>。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject5Metadata
        name:
          description: 接続名。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と「-」のみです。最大長は 128 文字です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject5Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはこのプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject5StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionCreatedObject6:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject6Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject6ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。クライアントのセットに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションが使用できるよう、接続をドメインレベルに昇格します。<code>false</code>の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject6Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できるのは英数字と「-」のみです。最大長は128です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject6Options
        realms:
          description: >-
            接続を使用するレルム（例：メールドメイン）を定義します。配列が空の場合、またはこのプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。falseの場合は、HRD経由でのみ使用できます。デフォルトは`false`です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject6StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionCreatedObject7:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject7Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject7ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。クライアントのセットに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            は接続をドメインレベルの接続として昇格させ、サードパーティアプリケーションが使用できるようにします。<code>false</code>
            は接続を昇格させないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code>。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject7Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と '-' のみです。最大長は 128 です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject7Options
        realms:
          description: >-
            接続に使用するレルム（例:
            メールドメイン）を定義します。配列が空であるか、プロパティが指定されていない場合、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示することを有効にします（新しいエクスペリエンスのみ）。false の場合、HRD
            でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject7StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject0:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients endpoint を使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            の場合、サードパーティアプリケーションが使用できるよう、ドメインレベルの接続に昇格します。<code>false</code>
            の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と '-' のみです。最大長は 128 です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false の場合、HRD
            でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject1:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            はドメインレベルの接続に昇格させ、サードパーティアプリケーションが使用できるようにします。<code>false</code>
            は接続を昇格させないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code>。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と '-' のみです。最大長は 128
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示します（新しいエクスペリエンスのみ）。false の場合は、HRD
            経由でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject2:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2ConnectedAccounts
        display_name:
          description: 新しいUniversal Loginエクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。クライアントのセットに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clientsエンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションが使用できるようにドメインレベルの接続に昇格します。<code>false</code>の場合、接続は昇格されないため、接続が有効になっているファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できるのは英数字と'-'のみです。最大長は128です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。falseの場合、HRDでのみ使用できます。デフォルトは`false`です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject3:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject3Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject3ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。接続を一連のクライアントに対して有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            は接続をドメインレベルに昇格させ、サードパーティアプリケーションが使用できるようにします。<code>false</code>
            は接続を昇格させないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject3Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、英数字と '-' のみを使用できます。最大長は128文字です
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject3Options
        realms:
          description: >-
            接続を使用するレルム（例：メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false
            の場合は、ホームレルムディスカバリーでのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject3StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject4:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject4Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject4ConnectedAccounts
        display_name:
          description: 新しいUniversal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。クライアントセットに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションが使用できるよう、接続をドメインレベルに昇格させます。<code>false</code>の場合、接続は昇格されないため、その接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject4Metadata
        name:
          description: 接続の名前。先頭と末尾は英数字である必要があり、使用できる文字は英数字と'-'のみです。最大長は128です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject4Options
        realms:
          description: >-
            接続を使用するレルム（例：メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。falseの場合は、HRD経由でのみ使用できます。デフォルトは`false`です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject4StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject5:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject5Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject5ConnectedAccounts
        display_name:
          description: 新しいUniversal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。クライアントセットに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションが使用できるよう、接続をドメインレベルに昇格させます。<code>false</code>の場合、接続は昇格されないため、その接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject5Metadata
        name:
          description: 接続名。先頭と末尾は英数字である必要があり、使用できる文字は英数字と「-」のみです。最大128文字。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject5Options
        realms:
          description: >-
            この接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはこのプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject5StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject6:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject6Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject6ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            は接続をドメインレベルに昇格させ、サードパーティアプリケーションで使用できるようにします。<code>false</code>
            は接続を昇格させないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject6Metadata
        name:
          description: 接続名。先頭と末尾は英数字である必要があり、使用できる文字は英数字と「-」のみです。最大128文字。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject6Options
        realms:
          description: >-
            この接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはこのプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示するかどうかを有効にします（新しいエクスペリエンスのみ）。false の場合は、HRD
            でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject6StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject7:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject7Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject7ConnectedAccounts
        display_name:
          description: 新しいユニバーサルログインエクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            の場合、サードパーティアプリケーションで使用できるよう、ドメインレベルの接続に昇格します。<code>false</code>
            の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject7Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と '-' のみです。最大長は 128
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject7Options
        realms:
          description: >-
            接続を使用するレルム（例：メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示するかどうかを設定します（新しいエクスペリエンスのみ）。false の場合、HRD
            でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject7StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionDeletedObject0:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。特定のクライアント群に対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションで使用できるようにドメインレベルの接続へ昇格します。<code>false</code>の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみで使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0Metadata
        name:
          description: 接続名。英数字で始まり英数字で終わる必要があり、英数字と '-' のみを使用できます。最大長は128文字です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0Options
        realms:
          description: >-
            接続を使用するレルム（例：メールドメイン）を定義します。配列が空の場合、またはこのプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false の場合、HRD
            経由でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionDeletedObject1:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。複数のクライアントで接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションが使用できるよう、ドメインレベルの接続に昇格します。<code>false</code>の場合、接続は昇格されないため、その接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1Metadata
        name:
          description: 接続の名前。先頭と末尾は英数字である必要があり、使用できる文字は英数字と「-」のみです。最大長は128文字です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1Options
        realms:
          description: >-
            接続を使用するレルム（例：メールドメイン）を定義します。配列が空、またはこのプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false の場合は、HRD
            経由でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionDeletedObject2:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。クライアントのセットに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションで使用できるよう、接続がドメインレベルに昇格されます。<code>false</code>の場合、接続は昇格されないため、その接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と「-」のみです。最大長は128文字です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false の場合は、HRD
            経由でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionDeletedObject3:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject3Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject3ConnectedAccounts
        display_name:
          description: 新しいUniversal Loginエクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clientsエンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションが使用できるよう、接続をドメインレベルに昇格させます。<code>false</code>の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject3Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と'-'のみです。最大長は128です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject3Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはこのプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示します（新しいエクスペリエンスのみ）。falseの場合、HRDでのみ使用できます。デフォルトは`false`です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject3StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionDeletedObject4:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject4Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject4ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            の場合、サードパーティアプリケーションで使用できるよう、接続がドメインレベルに昇格されます。<code>false</code>
            の場合、接続は昇格されないため、この接続が有効なファーストパーティアプリケーションのみで使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject4Metadata
        name:
          description: 接続名。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と '-' のみです。最大長は 128 文字です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject4Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはこのプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示するかどうかを設定します（新しいエクスペリエンスのみ）。false の場合、HRD
            でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject4StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionDeletedObject5:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject5Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject5ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションで使用できるように、接続をドメインレベルに昇格させます。<code>false</code>の場合、接続は昇格されないため、その接続が有効になっているファーストパーティアプリケーションでのみ使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject5Metadata
        name:
          description: 接続名。先頭と末尾は英数字である必要があり、使用できる文字は英数字と「-」のみです。最大長は128文字です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject5Options
        realms:
          description: >-
            接続を使用するレルム（例：メールドメイン）を定義します。配列が空の場合、またはこのプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject5StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionDeletedObject6:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject6Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject6ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションで使用できるように、接続をドメインレベルに昇格させます。<code>false</code>の場合、接続は昇格されないため、その接続が有効になっているファーストパーティアプリケーションでのみ使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject6Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と「-」のみです。最大長は128文字です
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject6Options
        realms:
          description: >-
            接続の使用対象となるレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはこのプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示できるようにします（新しいエクスペリエンスでのみ利用可能）。false の場合、HRD
            経由でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject6StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionDeletedObject7:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject7Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject7ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            の場合、サードパーティアプリケーションが使用できるよう、ドメインレベルの接続に昇格します。<code>false</code>
            の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code>。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject7Metadata
        name:
          description: 接続名。先頭と末尾は英数字である必要があり、使用できるのは英数字と '-' のみです。最大長は 128 文字です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject7Options
        realms:
          description: >-
            この接続を使用するレルム（例：メールドメイン）を定義します。配列が空の場合、またはこのプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false の場合、HRD
            でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject7StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject0:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            の場合、サードパーティアプリケーションで使用できるよう、ドメインレベルの接続に昇格します。<code>false</code>
            の場合、接続は昇格されないため、その接続が有効になっているファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code>。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、英数字と '-' のみを使用できます。最大長は 128 文字です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはこのプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false
            の場合、ホームレルムディスカバリーでのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject1:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1ConnectedAccounts
        display_name:
          description: 新しいユニバーサルログインエクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。PATCH /v2/connections/{id}/clients
            エンドポイントを使用して、クライアントのセットに対して接続を有効にしてください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションが使用できるよう、ドメインレベルの接続に昇格します。<code>false</code>の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できるのは英数字と「-」のみです。最大長は128です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false の場合は、HRD
            でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject2:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。クライアントのセットに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションで使用できるようにドメインレベルの接続へ昇格します。<code>false</code>の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と「-」のみです。最大長は128です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。falseの場合、HRDでのみ使用できます。デフォルトは`false`です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject3:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject3Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject3ConnectedAccounts
        display_name:
          description: 新しいUniversal Loginエクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションが使用できるよう、ドメインレベルの接続に昇格します。<code>false</code>の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject3Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と'-'のみです。最大長は128です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject3Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空であるかプロパティが指定されていない場合、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。falseの場合、ホームレルムディスカバリー経由でのみ使用できます。デフォルトは`false`です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject3StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject4:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject4Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject4ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            の場合、サードパーティアプリケーションで使用できるよう、ドメインレベルの接続に昇格します。<code>false</code>
            の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code>。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject4Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できるのは英数字と '-' のみです。最大長は 128
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject4Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示するかどうかを設定します（新しいエクスペリエンスのみ）。false の場合、HRD
            でのみ使用できます。デフォルトは `false`。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject4StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject5:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject5Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject5ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。PATCH /v2/connections/{id}/clients
            エンドポイントを使用して、一連のクライアントに対して接続を有効にしてください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            を指定すると、サードパーティアプリケーションが使用できるよう、接続をドメインレベルに昇格させます。<code>false</code>
            を指定すると接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject5Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、英数字と '-' のみを含めることができます。最大長は 128
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject5Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject5StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject6:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject6Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject6ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。PATCH /v2/connections/{id}/clients
            エンドポイントを使用して、一連のクライアントに対して接続を有効にしてください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            にするとドメインレベルの接続に昇格され、サードパーティアプリケーションで使用できるようになります。<code>false</code>
            にすると接続は昇格されないため、その接続が有効なファーストパーティアプリケーションのみで使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject6Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と '-' のみです。最大長は128文字です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject6Options
        realms:
          description: >-
            接続を使用するレルム（例：メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false の場合は、HRD
            経由でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject6StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject7:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject7Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject7ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。指定したクライアント群で接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションが使用できるよう、ドメインレベルの接続に昇格します。<code>false</code>の場合、接続は昇格されないため、接続が有効になっているファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject7Metadata
        name:
          description: 接続名。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と '-' のみです。最大長は128文字です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject7Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false の場合、HRD
            経由でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject7StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionUpdatedObject0:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用される接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            の場合、サードパーティアプリケーションで使用できるよう、接続をドメインレベルに昇格します。<code>false</code>
            の場合、接続は昇格されないため、その接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と '-' のみです。最大長は 128
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0Options
        realms:
          description: >-
            接続で使用するレルム（例：メールドメイン）を定義します。配列が空の場合、またはこのプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false
            の場合、ホームレルムディスカバリーでのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionUpdatedObject1:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。クライアントのセットに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            にするとドメインレベルの接続に昇格し、サードパーティアプリケーションが使用できるようになります。<code>false</code>
            にすると接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1Metadata
        name:
          description: 接続名。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と「-」のみです。最大長は 128 です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false の場合は、HRD
            でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionUpdatedObject2:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            は接続をドメインレベルに昇格させ、サードパーティアプリケーションが使用できるようにします。<code>false</code>
            は接続を昇格させないため、接続が有効になっているファーストパーティアプリケーションのみが使用できます。（既定値は
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2Metadata
        name:
          description: 接続の名前。先頭と末尾は英数字にする必要があり、使用できる文字は英数字と「-」のみです。最大長は128文字です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2Options
        realms:
          description: >-
            この接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示できるようにします（新しいエクスペリエンスでのみ利用可能）。false
            の場合、ホームレルムディスカバリーでのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionUpdatedObject3:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject3Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject3ConnectedAccounts
        display_name:
          description: 新しいUniversal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。クライアントのセットに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clientsエンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションが使用できるように、接続をドメインレベルに昇格します。<code>false</code>の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject3Metadata
        name:
          description: 接続の名前。先頭と末尾は英数字である必要があり、使用できるのは英数字と'-'のみです。最大長は128です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject3Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示するかどうかを設定します（新しいエクスペリエンスのみ）。falseの場合、ホームレルムディスカバリーでのみ使用できます。デフォルトは`false`です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject3StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionUpdatedObject4:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject4Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject4ConnectedAccounts
        display_name:
          description: 新しいUniversal Loginエクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションが使用できるよう、接続をドメインレベルに昇格させます。<code>false</code>の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject4Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と '-' のみです。最大長は128です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject4Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはこのプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false の場合は、HRD
            でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject4StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionUpdatedObject5:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject5Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject5ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            を指定すると、サードパーティアプリケーションが使用できるよう、ドメインレベルの接続に昇格します。<code>false</code>
            を指定すると接続は昇格せず、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject5Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と '-' のみです。最大長は 128 です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject5Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはこのプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject5StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionUpdatedObject6:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject6Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject6ConnectedAccounts
        display_name:
          description: 新しいUniversal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            にすると接続がドメインレベルの接続に昇格し、サードパーティアプリケーションで使用できるようになります。<code>false</code>
            にすると接続は昇格しないため、その接続が有効になっているファーストパーティアプリケーションでのみ使用できます（デフォルトは<code>false</code>）。
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject6Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できるのは英数字と「-」のみです。最大長は128です
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject6Options
        realms:
          description: >-
            接続で使用するレルム（例：メールドメイン）を定義します。配列が空の場合、またはこのプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページにこの接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。falseの場合は、HRD経由でのみ使用できます。デフォルトは
            `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject6StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionUpdatedObject7:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject7Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject7ConnectedAccounts
        display_name:
          description: 新しいユニバーサルログインエクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。接続を一連のクライアントで有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            にすると接続がドメインレベルに昇格され、サードパーティアプリケーションで使用できるようになります。<code>false</code>
            にすると接続は昇格されないため、その接続が有効なファーストパーティアプリケーションでのみ使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject7Metadata
        name:
          description: 接続の名前。先頭と末尾は英数字である必要があり、使用できる文字は英数字と '-' のみです。最大長は128文字です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject7Options
        realms:
          description: >-
            接続を使用するレルム（例：メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false の場合は、HRD
            経由でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject7StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject0:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。クライアントのセットに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            は接続をドメインレベルの接続に昇格させ、サードパーティアプリケーションが使用できるようにします。<code>false</code>
            は接続を昇格させないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0Metadata
        name:
          description: 接続の名前。先頭と末尾は英数字である必要があり、使用できるのは英数字と '-' のみです。最大長は 128 です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false の場合、HRD
            でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject1:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。クライアントセットに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            は接続をドメインレベルに昇格させ、サードパーティアプリケーションが使用できるようにします。<code>false</code>
            は接続を昇格させないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、英数字と '-' のみを使用できます。最大長は 128 です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false の場合、HRD
            でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject2:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2ConnectedAccounts
        display_name:
          description: 新しいUniversal Loginエクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clientsエンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションが使用できるよう、ドメインレベルの接続に昇格します。<code>false</code>の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と'-'のみです。最大長は128です
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。falseの場合、HRDでのみ使用できます。デフォルトは`false`です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject3:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject3Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject3ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            にすると、サードパーティアプリケーションが使用できるようドメインレベルの接続に昇格します。<code>false</code>
            にすると接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject3Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と '-' のみです。最大長は 128 です
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject3Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空であるか、このプロパティが指定されていない場合、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。false の場合、HRD
            でのみ使用できます。デフォルトは `false` です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject3StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject4:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject4Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject4ConnectedAccounts
        display_name:
          description: 新しいUniversal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。クライアントのセットに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clientsエンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションで使用できるよう、ドメインレベルの接続に昇格します。<code>false</code>の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（既定値は<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject4Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と'-'のみです。最大長は128です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject4Options
        realms:
          description: >-
            接続を使用するレルム（例：メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。falseの場合はHRDでのみ使用できます。既定値は`false`です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject4StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject5:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject5Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject5ConnectedAccounts
        display_name:
          description: 新しい Universal Login エクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。一連のクライアントに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clients エンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>
            は、サードパーティアプリケーションが使用できるように接続をドメインレベルに昇格させます。<code>false</code>
            は接続を昇格させないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは
            <code>false</code> です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject5Metadata
        name:
          description: 接続の名前です。英数字で始まり英数字で終わる必要があり、使用できるのは英数字と '-' のみです。最大長は128です。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject5Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空、またはプロパティが指定されていない場合、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject5StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject6:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject6Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject6ConnectedAccounts
        display_name:
          description: 新しいユニバーサルログインエクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。クライアントのセットに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clientsエンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションで使用できるよう、ドメインレベルの接続に昇格します。<code>false</code>の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject6Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できるのは英数字と'-'のみです。最大長は128
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject6Options
        realms:
          description: >-
            接続を使用するレルム（例：メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示できるようにします（新しいエクスペリエンスのみ）。falseの場合、HRDでのみ使用できます。デフォルトは`false`です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject6StrategyEnum
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject7:
      additionalProperties: false
      properties:
        authentication:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject7Authentication
        connected_accounts:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject7ConnectedAccounts
        display_name:
          description: 新しいユニバーサルログインエクスペリエンスで使用する接続名
          maxLength: 128
          minLength: 1
          type: string
        enabled_clients:
          description: >-
            このプロパティの使用は推奨されません。クライアントセットに対して接続を有効にするには、PATCH
            /v2/connections/{id}/clientsエンドポイントを使用してください。
          items:
            type: string
          type: array
        id:
          description: 接続の識別子
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        is_domain_connection:
          description: >-
            <code>true</code>の場合、サードパーティアプリケーションが使用できるよう、ドメインレベルの接続に昇格します。<code>false</code>の場合、接続は昇格されないため、接続が有効なファーストパーティアプリケーションのみが使用できます。（デフォルトは<code>false</code>です。）
          type: boolean
        metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject7Metadata
        name:
          description: 接続の名前。英数字で始まり英数字で終わる必要があり、使用できる文字は英数字と'-'のみです。最大長は128です
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        options:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject7Options
        realms:
          description: >-
            接続を使用するレルム（例:
            メールドメイン）を定義します。配列が空の場合、またはプロパティが指定されていない場合は、接続名がレルムとして追加されます。
          items:
            type: string
          minItems: 0
          type: array
        show_as_button:
          description: >-
            ログインページに接続用のボタンを表示するかどうかを設定します（新しいエクスペリエンスのみ）。falseの場合、HRD経由でのみ使用できます。デフォルトは`false`です。
          type: boolean
        strategy:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject7StrategyEnum
      required:
        - id
        - name
        - strategy
      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: organization グループエンティティを表します。
      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
    EventStreamCloudEventGroupCreatedPreviousObject0:
      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/EventStreamCloudEventGroupCreatedPreviousObject0TypeEnum
      required:
        - id
        - name
        - created_at
        - type
        - connection_id
      type: object
    EventStreamCloudEventGroupCreatedPreviousObject1:
      additionalProperties: false
      description: organizationグループエンティティを表します。
      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/EventStreamCloudEventGroupCreatedPreviousObject1TypeEnum
      required:
        - id
        - name
        - created_at
        - type
        - organization_id
      type: object
    EventStreamCloudEventGroupCreatedPreviousObject2:
      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/EventStreamCloudEventGroupCreatedPreviousObject2TypeEnum
      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
    EventStreamCloudEventGroupDeletedPreviousObject0:
      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/EventStreamCloudEventGroupDeletedPreviousObject0TypeEnum
        updated_at:
          description: このエンティティの最終更新日時（ISO_8601形式）。
          format: date-time
          type: string
      required:
        - id
        - name
        - created_at
        - type
        - connection_id
        - updated_at
      type: object
    EventStreamCloudEventGroupDeletedPreviousObject1:
      additionalProperties: false
      description: updated_atタイムスタンプを持つorganizationグループ
      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/EventStreamCloudEventGroupDeletedPreviousObject1TypeEnum
        updated_at:
          description: このエンティティの最終更新日時（ISO_8601形式）。
          format: date-time
          type: string
      required:
        - id
        - name
        - created_at
        - type
        - organization_id
        - updated_at
      type: object
    EventStreamCloudEventGroupDeletedPreviousObject2:
      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/EventStreamCloudEventGroupDeletedPreviousObject2TypeEnum
        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
    EventStreamCloudEventGroupMemberAddedPreviousObjectGroup:
      description: メンバーが属するグループ。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedPreviousObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedPreviousObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedPreviousObjectGroup2
    EventStreamCloudEventGroupMemberAddedPreviousObjectMember:
      description: グループに属するメンバー。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedPreviousObjectMember0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedPreviousObjectMember1
    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
    EventStreamCloudEventGroupMemberDeletedPreviousObjectGroup:
      description: メンバーが属するグループ。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedPreviousObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedPreviousObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedPreviousObjectGroup2
    EventStreamCloudEventGroupMemberDeletedPreviousObjectMember:
      description: グループに属するメンバー。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedPreviousObjectMember0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedPreviousObjectMember1
    EventStreamCloudEventGroupRoleAssignedObjectGroup:
      description: role が割り当てられている group。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup2
    EventStreamCloudEventGroupRoleAssignedObjectRole:
      additionalProperties: false
      description: group に割り当てられている role。
      properties:
        id:
          description: role の ID。
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
        name:
          description: role の名前。
          type: string
      required:
        - id
        - name
      type: object
    EventStreamCloudEventGroupRoleAssignedPreviousObjectGroup:
      description: ロールが割り当てられたグループ。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedPreviousObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedPreviousObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedPreviousObjectGroup2
    EventStreamCloudEventGroupRoleAssignedPreviousObjectRole:
      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: role が削除された group。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup2
    EventStreamCloudEventGroupRoleDeletedObjectRole:
      additionalProperties: false
      description: group から削除された role。
      properties:
        id:
          description: role の ID。
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventGroupRoleDeletedPreviousObjectGroup:
      description: ロールが割り当てられたグループ。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedPreviousObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedPreviousObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedPreviousObjectGroup2
    EventStreamCloudEventGroupRoleDeletedPreviousObjectRole:
      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
    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 タイムスタンプを含む organization グループ
      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
    EventStreamCloudEventGroupUpdatedPreviousObject0:
      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/EventStreamCloudEventGroupUpdatedPreviousObject0TypeEnum
        updated_at:
          description: このエンティティの最終更新日時（ISO_8601形式）。
          format: date-time
          type: string
      required:
        - id
        - name
        - created_at
        - type
        - connection_id
        - updated_at
      type: object
    EventStreamCloudEventGroupUpdatedPreviousObject1:
      additionalProperties: false
      description: updated_atタイムスタンプを含むorganizationグループ
      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: グループに関連付けられたorganization ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupUpdatedPreviousObject1TypeEnum
        updated_at:
          description: このエンティティの最終更新日時（ISO_8601形式）。
          format: date-time
          type: string
      required:
        - id
        - name
        - created_at
        - type
        - organization_id
        - updated_at
      type: object
    EventStreamCloudEventGroupUpdatedPreviousObject2:
      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/EventStreamCloudEventGroupUpdatedPreviousObject2TypeEnum
        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 Organization に関する情報です。
      properties:
        id:
          description: organization の ID です。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: >-
            アプリケーション内でエンドユーザーを自身の organization に誘導するために使用される、organization
            の人が判読できる識別子です。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionAddedObjectOrganizationAccessLevel:
      description: organization内の接続に付与されるアクセスレベル。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedObjectOrganizationAccessLevel0Enum
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedObjectOrganizationAccessLevel1Enum
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedObjectOrganizationAccessLevel2Enum
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedObjectOrganizationAccessLevel3Enum
    EventStreamCloudEventOrgConnectionAddedPreviousObjectConnection:
      additionalProperties: false
      properties:
        id:
          description: 接続のID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionAddedPreviousObjectOrganization:
      additionalProperties: false
      description: Auth0 Organizationに関する情報。
      properties:
        id:
          description: organizationのID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: >-
            エンドユーザーをアプリケーション内の自身のorganizationに誘導するために使用する、organizationの人が判読可能な識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionAddedPreviousObjectOrganizationAccessLevel:
      description: organizationに対して接続に付与されるアクセスレベル。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedPreviousObjectOrganizationAccessLevel0Enum
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedPreviousObjectOrganizationAccessLevel1Enum
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedPreviousObjectOrganizationAccessLevel2Enum
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedPreviousObjectOrganizationAccessLevel3Enum
    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 Organization に関する情報。
      properties:
        id:
          description: organization の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: アプリケーション内でエンドユーザーが自分の organization に移動する際に使用する、人が読める識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionRemovedPreviousObjectConnection:
      additionalProperties: false
      properties:
        id:
          description: 接続のID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionRemovedPreviousObjectOrganization:
      additionalProperties: false
      description: Auth0 Organizationに関する情報。
      properties:
        id:
          description: organizationのID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: >-
            エンドユーザーをアプリケーション内の自身のorganizationに誘導するために使用する、organizationの人が判読可能な識別子。
          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 Organization に関する情報。
      properties:
        id:
          description: organization の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: アプリケーション内でエンドユーザーが自分の organization に移動する際に使用する、人が読める識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionUpdatedObjectOrganizationAccessLevel:
      description: organizationに対して接続に付与されるアクセスレベル。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedObjectOrganizationAccessLevel0Enum
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedObjectOrganizationAccessLevel1Enum
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedObjectOrganizationAccessLevel2Enum
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedObjectOrganizationAccessLevel3Enum
    EventStreamCloudEventOrgConnectionUpdatedPreviousObjectConnection:
      additionalProperties: false
      properties:
        id:
          description: 接続のID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionUpdatedPreviousObjectOrganization:
      additionalProperties: false
      description: Auth0 Organizationに関する情報。
      properties:
        id:
          description: organizationのID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: >-
            エンドユーザーをアプリケーション内の自身のorganizationに誘導するために使用する、organizationの人が判読可能な識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionUpdatedPreviousObjectOrganizationAccessLevel:
      description: organizationに対して接続に付与されるアクセスレベル。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedPreviousObjectOrganizationAccessLevel0Enum
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedPreviousObjectOrganizationAccessLevel1Enum
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedPreviousObjectOrganizationAccessLevel2Enum
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedPreviousObjectOrganizationAccessLevel3Enum
    EventStreamCloudEventOrgCreatedObjectBranding:
      additionalProperties: false
      description: organization に関連付けられたブランディング。
      properties:
        colors:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgCreatedObjectBrandingColors
        logo_url:
          description: ログインページに表示するロゴの URL。
          format: uri
          type: string
      type: object
    EventStreamCloudEventOrgCreatedObjectMetadata:
      additionalProperties: true
      description: organization に関連付けられたメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventOrgCreatedPreviousObjectBranding:
      additionalProperties: false
      description: organizationに関連付けられたブランディング。
      properties:
        colors:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgCreatedPreviousObjectBrandingColors
        logo_url:
          description: ログインページに表示するロゴのURL。
          format: uri
          type: string
      type: object
    EventStreamCloudEventOrgCreatedPreviousObjectMetadata:
      additionalProperties: true
      description: organizationに関連付けられたメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventOrgDeletedObjectMetadata:
      additionalProperties: true
      description: organization に関連付けられたメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventOrgDeletedPreviousObjectMetadata:
      additionalProperties: true
      description: organizationに関連付けられたメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup:
      description: ロールの割り当て先の group。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2
    EventStreamCloudEventOrgGroupRoleAssignedObjectOrganization:
      additionalProperties: false
      description: group ロールが割り当てられている organization。
      properties:
        id:
          description: organization の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedObjectRole:
      additionalProperties: false
      description: organization 内で group に割り当てられたロール。
      properties:
        id:
          description: ロールの ID。
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
        name:
          description: ロールの名前。
          type: string
      required:
        - id
        - name
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectGroup:
      description: ロールが割り当てられているグループ。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectGroup2
    EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectOrganization:
      additionalProperties: false
      description: グループロールが割り当てられているorganization。
      properties:
        id:
          description: organizationのID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectRole:
      additionalProperties: false
      description: organization内でグループに割り当てられたロール。
      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
    EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectGroup:
      description: ロールが割り当てられているグループ。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectGroup2
    EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectOrganization:
      additionalProperties: false
      description: グループロールが割り当てられているorganization。
      properties:
        id:
          description: organizationのID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectRole:
      additionalProperties: false
      description: organization内でグループに割り当てられたロール。
      properties:
        id:
          description: ロールのID。
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
        name:
          description: ロールの名前。
          type: string
      required:
        - id
        - name
      type: object
    EventStreamCloudEventOrgMemberAddedObjectOrganization:
      additionalProperties: false
      description: メンバーが所属する組織。
      properties:
        id:
          description: organization の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: アプリケーション内でエンドユーザーをその組織に誘導するために使用される、organization の人が判読可能な識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberAddedObjectUser:
      additionalProperties: true
      description: organization のメンバーであるユーザー。
      properties:
        user_id:
          description: 他の API と連携するときに使用できるユーザー ID。
          type: string
      required:
        - user_id
      type: object
    EventStreamCloudEventOrgMemberAddedPreviousObjectOrganization:
      additionalProperties: false
      description: メンバーが所属するorganization。
      properties:
        id:
          description: organizationのID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: >-
            エンドユーザーをアプリケーション内の自身のorganizationに誘導するために使用する、organizationの人が判読可能な識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberAddedPreviousObjectUser:
      additionalProperties: true
      description: organizationに所属するユーザー。
      properties:
        user_id:
          description: 他のAPIとの連携時に使用できるユーザーID。
          type: string
      required:
        - user_id
      type: object
    EventStreamCloudEventOrgMemberDeletedObjectOrganization:
      additionalProperties: false
      description: メンバーが属するorganization。
      properties:
        id:
          description: organizationのID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: >-
            アプリケーション内でエンドユーザーを該当するorganizationに誘導するために使用される、organizationの人間が読み取れる識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberDeletedObjectUser:
      additionalProperties: true
      description: organizationのメンバーであるユーザー。
      properties:
        user_id:
          description: 他のAPIとの連携時に使用できるユーザーID。
          type: string
      required:
        - user_id
      type: object
    EventStreamCloudEventOrgMemberDeletedPreviousObjectOrganization:
      additionalProperties: false
      description: メンバーが所属するorganization。
      properties:
        id:
          description: organizationのID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: >-
            エンドユーザーをアプリケーション内の自身のorganizationに誘導するために使用する、organizationの人が判読可能な識別子。
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberDeletedPreviousObjectUser:
      additionalProperties: true
      description: organizationに所属するユーザー。
      properties:
        user_id:
          description: 他のAPIとの連携時に使用できるユーザーID。
          type: string
      required:
        - user_id
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedObjectOrganization:
      additionalProperties: false
      description: メンバーが属するorganization。
      properties:
        id:
          description: organizationのID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedObjectRole:
      additionalProperties: false
      description: organization内でユーザーに割り当てられたロール。
      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: organizationのメンバーであるユーザー。
      properties:
        user_id:
          description: 他のAPIとの連携時に使用できるユーザーID。
          type: string
      required:
        - user_id
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedPreviousObjectOrganization:
      additionalProperties: false
      description: メンバーが所属するorganization。
      properties:
        id:
          description: organizationのID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedPreviousObjectRole:
      additionalProperties: false
      description: organization内でユーザーに割り当てられた役割。
      properties:
        id:
          description: 役割のID。
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
        name:
          description: 役割の名前。
          type: string
      required:
        - id
        - name
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedPreviousObjectUser:
      additionalProperties: true
      description: organizationのメンバーであるユーザー。
      properties:
        user_id:
          description: 他のAPIとのやり取りに使用できるユーザーのID。
          type: string
      required:
        - user_id
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedObjectOrganization:
      additionalProperties: false
      description: メンバーが所属する organization。
      properties:
        id:
          description: organization の ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedObjectRole:
      additionalProperties: false
      description: organization 内でユーザーに割り当てられたロール。
      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: organization のメンバーであるユーザー。
      properties:
        user_id:
          description: 他の API を利用する際に使用できるユーザー ID。
          type: string
      required:
        - user_id
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedPreviousObjectOrganization:
      additionalProperties: false
      description: メンバーが所属するorganization。
      properties:
        id:
          description: organizationのID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedPreviousObjectRole:
      additionalProperties: false
      description: organization内でユーザーに割り当てられた役割。
      properties:
        id:
          description: 役割のID。
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
        name:
          description: 役割の名前。
          type: string
      required:
        - id
        - name
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedPreviousObjectUser:
      additionalProperties: true
      description: organizationのメンバーであるユーザー。
      properties:
        user_id:
          description: 他のAPIとのやり取りに使用できるユーザーのID。
          type: string
      required:
        - user_id
      type: object
    EventStreamCloudEventOrgUpdatedObjectBranding:
      additionalProperties: false
      description: organization に関連付けられたブランディング。
      properties:
        colors:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgUpdatedObjectBrandingColors
        logo_url:
          description: ログインページに表示するロゴの URL。
          format: uri
          type: string
      type: object
    EventStreamCloudEventOrgUpdatedObjectMetadata:
      additionalProperties: true
      description: organization に関連付けられたメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventOrgUpdatedPreviousObjectBranding:
      additionalProperties: false
      description: organizationに関連付けられたブランディング。
      properties:
        colors:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgUpdatedPreviousObjectBrandingColors
        logo_url:
          description: ログインページに表示するロゴのURL。
          format: uri
          type: string
      type: object
    EventStreamCloudEventOrgUpdatedPreviousObjectMetadata:
      additionalProperties: true
      description: organizationに関連付けられたメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventUserCreatedObjectAppMetadata:
      additionalProperties: true
      description: このユーザーが読み取り専用でアクセスできるユーザー メタデータ。
      properties: {}
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItem:
      description: アカウントがリンクされている場合の identity オブジェクト。
      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
    EventStreamCloudEventUserCreatedPreviousObjectAppMetadata:
      additionalProperties: true
      description: このユーザーが読み取り専用でアクセスできるユーザーメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItem:
      description: アカウントがリンクされている場合のアイデンティティオブジェクト。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemCustom
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemDatabase
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemEnterprise
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemPasswordless
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemSocial
    EventStreamCloudEventUserCreatedPreviousObjectUserMetadata:
      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
    EventStreamCloudEventUserDeletedPreviousObjectAppMetadata:
      additionalProperties: true
      description: このユーザーが読み取り専用アクセス権を持つユーザーメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItem:
      description: アカウントがリンクされている場合のアイデンティティオブジェクト。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemCustom
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemDatabase
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemEnterprise
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemPasswordless
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemSocial
    EventStreamCloudEventUserDeletedPreviousObjectUserMetadata:
      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
    EventStreamCloudEventUserUpdatedPreviousObjectAppMetadata:
      additionalProperties: true
      description: このユーザーが読み取り専用でアクセスできるユーザーメタデータ。
      properties: {}
      type: object
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItem:
      description: アカウントがリンクされている場合のアイデンティティオブジェクト。
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemCustom
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemDatabase
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemEnterprise
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemPasswordless
        - $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemSocial
    EventStreamCloudEventUserUpdatedPreviousObjectUserMetadata:
      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
    EventStreamCloudEventConnectionCreatedObject0Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject0ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
        cross_app_access:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject0Metadata:
      additionalProperties: false
      description: 接続に関連付けられた、文字列値を持つオブジェクト形式のメタデータ（最大 255 文字）。メタデータプロパティは最大 10 個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject0Options:
      additionalProperties: false
      description: '''oidc'' 接続のオプション'
      properties:
        attribute_map:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0OptionsAttributeMap
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされる IDプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な HTTPS
            URL である必要があります。このエンドポイントは OAuth 2.0 認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        client_id:
          description: >-
            アプリケーション登録時に IDプロバイダーから発行される OAuth 2.0 クライアント識別子。この値は Auth0 の接続を
            IDプロバイダーに識別させます。
          maxLength: 255
          minLength: 0
          type: string
        connection_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0OptionsConnectionSettings
        discovery_url:
          description: >-
            アイデンティティプロバイダーの OIDC
            ディスカバリーエンドポイント（/.well-known/openid-configuration）の URL。この URL
            が指定され、oidc_metadata が空の場合、Auth0
            はエンドポイントやサポートされている機能を含むプロバイダーの設定を自動的に取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかに一致すると、認証時にこの接続へ自動的にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        dpop_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0OptionsDpopSigningAlgEnum
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0OptionsFederatedConnectionsAccessTokens
        icon_url:
          description: 表示するアイコンの HTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        id_token_session_expiry_supported:
          description: >-
            IDプロバイダーが id_token を使用したセッションの有効期限切れをサポートしているかどうかを示します。true
            の場合、システムは id_token 内の session_expiry クレームを使用してセッションの有効期限を判断します。
          type: boolean
        id_token_signed_response_algs:
          description: ID トークンの検証に使用できるアルゴリズムのリスト。strategy=oidc または okta の場合に適用されます。
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventConnectionCreatedObject0OptionsIdTokenSignedResponseAlgsItemEnum
          type: array
        issuer:
          description: >-
            IDプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。IDプロバイダーから発行された ID トークン内の 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む IDプロバイダーの JSON Web Key Set（JWKS）エンドポイントの URL。Auth0
            はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0OptionsOidcMetadata
        schema_version:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0OptionsSchemaVersionEnum
        scope:
          description: >-
            認可時にリクエストする、スペース区切りの OAuth 2.0 スコープのリスト。'openid'（OIDC
            仕様で必須）を含める必要があります。一般的な値: 'openid profile email'。追加のスコープは
            IDプロバイダーによって異なります。
          maxLength: 255
          minLength: 6
          type: string
        send_back_channel_nonce:
          description: >-
            true で type が 'back_channel' の場合、リプレイ攻撃を防ぐために認可リクエストに暗号学的 nonce
            を含めます。IDプロバイダーは検証のため、この nonce を ID トークンに含める必要があります。
          type: boolean
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: Tenant Domain
          maxLength: 255
          minLength: 1
          type: string
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換する IDプロバイダーの OAuth 2.0 トークンエンドポイントの URL。有効な HTTPS
            URL である必要があります。認可コードフローでは必須ですが、Implicit Flow では任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_method:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0OptionsTokenEndpointAuthMethodEnum
        token_endpoint_auth_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0OptionsTokenEndpointAuthSigningAlgEnum
        token_endpoint_jwtca_aud_format:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0OptionsTokenEndpointJwtcaAudFormatEnum
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0OptionsTypeEnum
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0OptionsUpstreamParams
        useOauthSpecScope:
          description: >-
            trueの場合、アイデンティティプロバイダーの認可エンドポイントを呼び出す際に、カンマ区切りではなくスペース区切りのスコープ（OAuth
            2.0仕様準拠）を使用します。`connection_scope`パラメータ使用時のみ関連します。https://auth0.com/docs/authenticate/identity-providers/adding-scopes-for-an-external-idp#pass-scopes-to-authorize-endpoint
            を参照してください。
          type: boolean
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの任意の URL。属性マッピングと併せて設定すると、Auth0
            はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionCreatedObject0StrategyEnum:
      description: 接続の方式。
      enum:
        - oidc
      type: string
    EventStreamCloudEventConnectionCreatedObject1Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject1ConnectedAccounts:
      additionalProperties: false
      description: Connected Accounts および Token Vault で使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject1Metadata:
      additionalProperties: false
      description: 文字列値を持つオブジェクト形式の、接続に関連付けられたメタデータ（最大 255 文字）。指定できるメタデータプロパティは最大 10 個です。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject1Options:
      additionalProperties: false
      description: '''okta'' 接続のオプション'
      properties:
        attribute_map:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1OptionsAttributeMap
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされる、アイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントは OAuth 2.0 認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        client_id:
          description: >-
            アプリケーション登録時にアイデンティティプロバイダーから発行される OAuth 2.0
            クライアント識別子。この値により、アイデンティティプロバイダー側で Auth0 接続が識別されます。
          maxLength: 255
          minLength: 0
          type: string
        connection_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1OptionsConnectionSettings
        domain:
          description: >-
            Okta組織のドメイン（例:
            dev-123456.okta.com）。スキームや末尾のバックスラッシュは含めず、Oktaサーバーのドメインのみを指定してください。ディスカバリーは、connection.options.oidc_metadataが空でドメインが指定されている場合にのみ実行されます
          maxLength: 255
          minLength: 4
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかに一致すると、認証時に自動的にこの接続にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        dpop_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1OptionsDpopSigningAlgEnum
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1OptionsFederatedConnectionsAccessTokens
        icon_url:
          description: 表示するアイコンの HTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        id_token_session_expiry_supported:
          description: >-
            アイデンティティプロバイダーが id_token によるセッション有効期限の設定をサポートしているかどうかを示します。true
            の場合、システムは id_token 内の session_expiry クレームを使用してセッションの有効期限を判断します。
          type: boolean
        id_token_signed_response_algs:
          description: ID トークンの検証に使用できるアルゴリズムのリスト。strategy=oidc または okta の場合に適用されます。
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventConnectionCreatedObject1OptionsIdTokenSignedResponseAlgsItemEnum
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーから発行される ID トークン内の 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1OptionsOidcMetadata
        schema_version:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1OptionsSchemaVersionEnum
        scope:
          description: >-
            認可時にリクエストする、スペース区切りの OAuth 2.0 スコープのリスト。'openid'（OIDC
            仕様で必須）を含める必要があります。一般的な値: 'openid profile
            email'。追加のスコープはアイデンティティプロバイダーによって異なります。
          maxLength: 255
          minLength: 6
          type: string
        send_back_channel_nonce:
          description: >-
            true で、type が 'back_channel' の場合、リプレイ攻撃を防ぐために認可リクエストに暗号学的 nonce
            を含めます。アイデンティティプロバイダーは、検証のためにこの nonce を ID トークンに含める必要があります。
          type: boolean
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: テナントドメイン
          maxLength: 255
          minLength: 1
          type: string
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換する、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL。有効な
            HTTPS URL である必要があります。認可コードフローでは必須ですが、暗黙的フローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_method:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1OptionsTokenEndpointAuthMethodEnum
        token_endpoint_auth_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1OptionsTokenEndpointAuthSigningAlgEnum
        token_endpoint_jwtca_aud_format:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1OptionsTokenEndpointJwtcaAudFormatEnum
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1OptionsTypeEnum
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1OptionsUpstreamParams
        useOauthSpecScope:
          description: >-
            trueの場合、アイデンティティプロバイダーの認可エンドポイントを呼び出す際に、カンマ区切りではなくスペース区切りのスコープ（OAuth
            2.0仕様準拠）を使用します。`connection_scope`パラメータ使用時のみ関連します。https://auth0.com/docs/authenticate/identity-providers/adding-scopes-for-an-external-idp#pass-scopes-to-authorize-endpoint
            を参照してください。
          type: boolean
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの URL（任意）。属性マッピングとともに設定すると、Auth0
            はアクセストークンを使用して追加のユーザープロファイルクレームを取得するためにこのエンドポイントを呼び出します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionCreatedObject1StrategyEnum:
      description: 接続の方式。
      enum:
        - okta
      type: string
    EventStreamCloudEventConnectionCreatedObject2Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject2ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault で使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject2Metadata:
      additionalProperties: false
      description: >-
        文字列値を持つオブジェクト形式で指定する、接続に関連付けられたメタデータ（最大 255 文字）。指定できるメタデータプロパティは最大 10
        個です。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject2Options:
      additionalProperties: false
      description: '''samlp'' 接続のオプション'
      properties:
        assertion_decryption_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2OptionsAssertionDecryptionSettings
        cert:
          description: >-
            .der 形式のアイデンティティプロバイダーの X.509 署名証明書。SAML
            レスポンスおよびアサーションの署名を検証するために使用します。signingCert
            の代替として後方互換性のために維持されています。代わりに signingCert を使用してください。
          maxLength: 10240
          minLength: 1
          type: string
        cert_rollover_notification:
          description: 有効期限が近い証明書に関する最終通知のタイムスタンプ。
          format: date-time
          type: string
        debug:
          description: >-
            true の場合、SAML リクエストとレスポンスの詳細を含む 'w'（警告）イベントをテナントログに記録し、詳細な SAML
            デバッグを有効にします。警告:
            機密性の高いユーザー情報（PII、認証情報）が露出する可能性があるため、デバッグ時にのみ一時的に有効にしてください。
          type: boolean
        deflate:
          description: >-
            true の場合、HTTP-Redirect バインディング経由で送信される SAML リクエストに対して DEFLATE
            圧縮を有効にします。
          type: boolean
        destinationUrl:
          description: >-
            Auth0 が SAML 認証リクエストを送信する URL（アイデンティティプロバイダーの SSO URL）。有効な HTTPS URL
            である必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        digestAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2OptionsDigestAlgorithmEnum
        disableFieldsMapFix:
          description: >-
            trueの場合、SAML属性をユーザープロファイルフィールドに適切にマッピングするためのfieldsMap設定の自動修正を無効にします。デフォルトはfalse（fieldsMap修正が有効）です。
          type: boolean
        disableSignout:
          description: >-
            true の場合、ユーザーのサインアウト時にアイデンティティプロバイダーへ SAML
            ログアウトリクエスト（SingleLogoutService）を送信しません。ユーザーは Auth0
            からはログアウトしますが、アイデンティティプロバイダーにはログインしたままとなります。デフォルトは
            false（フェデレーションログアウトが有効）です。
          type: boolean
        discovery_url:
          description: >-
            アイデンティティプロバイダーのOIDC
            ディスカバリーエンドポイント（/.well-known/openid-configuration）のURL。指定され、かつoidc_metadataが空の場合、Auth0はエンドポイントやサポート機能を含むプロバイダー設定を自動的に取得します。Cross
            App Accessで使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        domain_aliases:
          description: 接続のドメインエイリアス
          items:
            description: ホームレルムディスカバリーで使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            SAML サービスプロバイダーのエンティティ識別子（発行者）。指定しない場合、デフォルトは
            'urn:auth0:{tenant}:{connection}' です。この値は、アイデンティティプロバイダーに送信される SAML
            AuthnRequest メッセージに含まれます。
          maxLength: 128
          minLength: 1
          type: string
        expires:
          description: アイデンティティプロバイダーの署名証明書の有効期限を示す ISO 8601 形式の日時。
          format: date-time
          type: string
        fieldsMap:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2OptionsFieldsMap
        fieldsMapJsonRaw:
          description: fieldsMap 構成の生の JSON 文字列表現。fieldsMap オブジェクトの保存と取得に内部的に使用されます。
          maxLength: 8192
          minLength: 0
          type: string
        global_token_revocation_jwt_iss:
          description: >-
            アイデンティティプロバイダーからの Global Token Revocation リクエスト内の JWT に期待される
            'iss'（発行者）クレーム値。設定すると、Auth0 はトークン失効を処理する前に、JWT
            の発行者がこの値と一致することを検証します。global_token_revocation_jwt_sub と併用する必要があります。
          maxLength: 1024
          minLength: 1
          type: string
        global_token_revocation_jwt_sub:
          description: >-
            アイデンティティプロバイダーからの Global Token Revocation リクエスト内の JWT に期待される
            'sub'（サブジェクト）クレーム値。設定すると、Auth0 はトークン失効を処理する前に、JWT
            のサブジェクトがこの値と一致することを検証します。global_token_revocation_jwt_iss
            と併用する必要があります。
          maxLength: 1024
          minLength: 1
          type: string
        icon_url:
          description: >-
            Auth0 ログインページに表示する接続アイコンの URL。HTTPS URL
            を指定できます。認証フローにおける視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        idpinitiated:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2OptionsIdpinitiated
        metadataUrl:
          description: >-
            アイデンティティプロバイダーの SAML メタデータドキュメントの HTTPS URL。指定すると、Auth0
            はメタデータを自動的に取得・解析し、signInEndpoint、signOutEndpoint、signingCert、signSAMLRequest、protocolBinding
            を抽出します。metadataUrl と metadataXml の両方は使用せず、いずれか一方を使用してください。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2OptionsOidcMetadata
        protocolBinding:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2OptionsProtocolBindingEnum
        recipientUrl:
          description: >-
            Auth0 が SAML 認証リクエストを送信する URL（IDプロバイダーの SSO URL）。有効な HTTPS URL
            である必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        requestTemplate:
          description: >-
            SAML 認証リクエスト用のカスタム XML テンプレート。@@variableName@@
            構文による変数置換をサポートします。指定しない場合は、デフォルトの SAML AuthnRequest
            テンプレートを使用します。https://auth0.com/docs/authenticate/protocols/saml/saml-sso-integrations/configure-auth0-saml-service-provider#customize-the-request-template
            を参照してください。
          maxLength: 10240
          minLength: 1
          type: string
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: >-
            Auth0 が SAML 認証リクエストを送信する、アイデンティティプロバイダーの SAML SingleSignOnService
            エンドポイント URL。SAML 接続の主要なログイン URL です。metadataUrl または metadataXml
            を使用する場合を除き、必須です。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signOutEndpoint:
          description: >-
            フェデレーションサインアウト時に Auth0 がログアウトリクエストを送信する、アイデンティティプロバイダーの SAML
            SingleLogoutService エンドポイント URL。指定しない場合は signInEndpoint
            がデフォルトとして使用されます。disableSignout が false の場合にのみ使用されます。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signSAMLRequest:
          description: >-
            true の場合、Auth0 は接続の署名キーを使用して SAML
            認証リクエストに署名します。署名にはリクエストのダイジェストが含まれ、アイデンティティプロバイダーによって検証されます。デフォルトは
            false（署名なしのリクエスト）です。
          type: boolean
        signatureAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2OptionsSignatureAlgorithmEnum
        signingCert:
          description: >-
            SAML レスポンスおよびアサーションの署名検証に使用する、アイデンティティプロバイダーの Base64 エンコード済み X.509
            証明書。証明書はデコードされ、暗号学的署名の検証に使用されます。
          maxLength: 10240
          minLength: 1
          type: string
        subject:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2OptionsSubject
        tenant_domain:
          description: >-
            SAML 接続でログイン エンドポイント URL
            を構築する際に使用するテナントドメイン。シングルテナントでは文字列、マルチテナントの検証では文字列の配列を指定できます。
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            アイデンティティプロバイダーの署名証明書の SHA-1 サムプリント（フィンガープリント）。接続の作成時に signingCert
            から自動的に計算されます。各サムプリントは 40 文字の 16 進数文字列である必要があります。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2OptionsUpstreamParams
        user_id_attribute:
          description: >-
            一意のユーザー識別子として使用するカスタム SAML アサーション属性。指定すると、この属性が最優先でデフォルトの user_id
            マッピングリストの先頭に追加されます。文字列（単一の SAML 属性名）を受け付けます。
          maxLength: 2396
          minLength: 1
          type: string
      type: object
    EventStreamCloudEventConnectionCreatedObject2StrategyEnum:
      description: 接続の方式。
      enum:
        - samlp
      type: string
    EventStreamCloudEventConnectionCreatedObject3Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject3ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault で使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject3Metadata:
      additionalProperties: false
      description: 接続に関連付ける、文字列値を持つオブジェクト形式のメタデータ（各値は最大 255 文字）。メタデータプロパティは最大 10 個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject3Options:
      additionalProperties: false
      description: '''pingfederate'' 接続のオプション'
      properties:
        assertion_decryption_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject3OptionsAssertionDecryptionSettings
        cert:
          description: >-
            .der 形式のアイデンティティプロバイダーの X.509 署名証明書。SAML Response および Assertion
            の署名検証に使用します。signingCert の代替として後方互換性のために維持されています。代わりに signingCert
            を使用することをお勧めします。
          maxLength: 10240
          minLength: 1
          type: string
        cert_rollover_notification:
          description: 直近の証明書有効期限切れ間近の通知のタイムスタンプ。
          format: date-time
          type: string
        digestAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject3OptionsDigestAlgorithmEnum
        domain_aliases:
          description: 接続のドメインエイリアス
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            SAML サービスプロバイダーのエンティティ識別子（Issuer）。指定しない場合、デフォルトは
            'urn:auth0:{tenant}:{connection}' です。この値は、アイデンティティプロバイダーに送信される SAML
            AuthnRequest メッセージに含まれます。
          maxLength: 128
          minLength: 1
          type: string
        expires:
          description: アイデンティティプロバイダーの署名証明書の有効期限を示す ISO 8601 形式の日時。
          format: date-time
          type: string
        icon_url:
          description: >-
            Auth0 ログインページに表示する接続アイコンの URL。HTTPS URL
            を指定できます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        idpinitiated:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject3OptionsIdpinitiated
        non_persistent_attrs:
          description: >-
            Auth0 データベースに保存しないユーザーフィールドの配列
            (https://auth0.com/docs/security/data-security/denylist)
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        pingFederateBaseUrl:
          description: 接続の作成に使用する情報を返す、PingFederate 提供の URL
          format: uri
          maxLength: 256
          minLength: 8
          type: string
        protocolBinding:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject3OptionsProtocolBindingEnum
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject3OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: >-
            Auth0 が SAML認証リクエストを送信するアイデンティティプロバイダーの SAML SingleSignOnService
            エンドポイント URL。SAML 接続の主要なログイン URL です。metadataUrl または metadataXml
            を使用する場合を除き、必須です。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signSAMLRequest:
          description: >-
            true の場合、Auth0 は接続の署名鍵を使用して
            SAML認証リクエストに署名します。署名にはリクエストのダイジェストが含まれ、アイデンティティプロバイダーによって検証されます。デフォルトは
            false（署名なしのリクエスト）です。
          type: boolean
        signatureAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject3OptionsSignatureAlgorithmEnum
        signingCert:
          description: >-
            SAML Response および Assertion の署名検証に使用する、アイデンティティプロバイダーの Base64
            エンコード済み X.509 証明書。証明書はデコードされ、暗号署名の検証に使用されます。
          maxLength: 10240
          minLength: 1
          type: string
        subject:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject3OptionsSubject
        tenant_domain:
          description: >-
            SAML 接続でログイン エンドポイント URL
            の構築に使用するテナントドメイン。単一テナントの場合は文字列、マルチテナントの検証では文字列の配列を指定できます。
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            アイデンティティプロバイダーの署名証明書の SHA-1 サムプリント（フィンガープリント）。接続の作成時に signingCert
            から自動的に計算されます。各サムプリントは 40 文字の 16 進数文字列である必要があります。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject3OptionsUpstreamParams
      required:
        - pingFederateBaseUrl
      type: object
    EventStreamCloudEventConnectionCreatedObject3StrategyEnum:
      description: 接続の方式。
      enum:
        - pingfederate
      type: string
    EventStreamCloudEventConnectionCreatedObject4Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject4ConnectedAccounts:
      additionalProperties: false
      description: Connected Accounts および Token Vault で使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject4Metadata:
      additionalProperties: false
      description: 文字列値（最大255文字）を持つオブジェクト形式の、接続に関連付けられたメタデータ。メタデータプロパティは最大10件まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject4Options:
      additionalProperties: false
      description: '''adfs'' 接続のオプション'
      properties:
        adfs_server:
          description: >-
            WS-Fed エンドポイントおよび証明書の検出に使用する、ADFS フェデレーションメタデータのホストまたは XML
            URL。adfs_server と fedMetadataXml の両方が存在しない場合はエラーになります。
          maxLength: 2048
          minLength: 0
          type: string
        cert_rollover_notification:
          description: まもなく期限切れとなる証明書に関する最終通知のタイムスタンプ。
          format: date-time
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかに一致すると、認証時に自動的にこの接続にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            ADFS サービスプロバイダーのエンティティ識別子（Issuer）。指定しない場合、デフォルトは
            'urn:auth0:{tenant}:{connection}' です。
          maxLength: 128
          minLength: 1
          type: string
        fedMetadataXml:
          description: '''adfs_server'' の代替となるインライン XML。''adfs_server'' と同時に設定することはできません。'
          maxLength: 102400
          minLength: 1
          type: string
        icon_url:
          description: >-
            Auth0 のログインページに表示される接続アイコンの URL。HTTPS URL
            を指定できます。認証フローで視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        prev_thumbprints:
          description: >-
            SAML 署名の検証に使用する証明書サムプリント（SHA-128/SHA-256/SHA-512
            の16進ハッシュ）の配列。WS-Federation
            プロトコルで使用します。サムプリントは最大20個です。各サムプリントは16進数文字列である必要があります。
          items:
            description: ADFS および Azure AD 接続用の証明書サムプリント。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject4OptionsSetUserRootAttributesEnum
        should_trust_email_verified_connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject4OptionsShouldTrustEmailVerifiedConnectionEnum
        signInEndpoint:
          description: メタデータから検出された、または明示的に指定された Passive Requestor（WS-Fed）サインインエンドポイント。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        tenant_domain:
          description: Tenant Domain
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            SAML 署名の検証に使用する証明書サムプリント（SHA-128/SHA-256/SHA-512
            の16進ハッシュ）の配列。WS-Federation
            プロトコルで使用します。サムプリントは最大20個です。各サムプリントは16進数文字列である必要があります。
          items:
            description: ADFS および Azure AD 接続用の証明書サムプリント。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject4OptionsUpstreamParams
        user_id_attribute:
          description: >-
            一意のユーザー識別子として使用するカスタム ADFS クレーム。指定した場合、この属性は最優先でデフォルトの user_id
            マッピングリストの先頭に追加されます。文字列（単一の ADFS クレーム名）を指定できます。
          maxLength: 128
          minLength: 1
          type: string
      type: object
    EventStreamCloudEventConnectionCreatedObject4StrategyEnum:
      description: 接続の方式。
      enum:
        - adfs
      type: string
    EventStreamCloudEventConnectionCreatedObject5Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の用途を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject5ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault で使用する接続の用途を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject5Metadata:
      additionalProperties: false
      description: 文字列値（最大 255 文字）を持つオブジェクト形式の、接続に関連付けられたメタデータ。指定できるメタデータプロパティは最大 10 個です。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject5Options:
      additionalProperties: false
      description: 「ad」接続のオプション
      properties:
        agentIP:
          description: >-
            Kerberos 認証において、認証リクエストが企業ネットワークから送信されたことを検証するために使用する AD Connector
            エージェントの IP アドレス（AD Connector エージェントによって管理）。
          maxLength: 39
          minLength: 2
          type: string
        agentMode:
          description: >-
            有効にすると、WS-Federation プロトコルの代わりに、AD Connector
            エージェントを介した直接的なユーザー名/パスワード認証が可能になります（AD Connector エージェントによって管理）。
          type: boolean
        agentVersion:
          description: >-
            インストールされている AD Connector エージェントソフトウェアのバージョン識別子（AD Connector
            エージェントによって管理）。
          maxLength: 12
          minLength: 5
          type: string
        brute_force_protection:
          description: >-
            クレデンシャルスタッフィング攻撃を防ぐために Auth0
            のブルートフォース対策を有効にします。有効にすると、失敗が繰り返された後、特定の IP
            アドレスからの不審なログイン試行をブロックします。
          type: boolean
        certAuth:
          description: AD Connector のクライアント SSL 証明書認証を有効にし、サインインエンドポイントで HTTPS を必須にします。
          type: boolean
        certs:
          description: >-
            AD アイデンティティプロバイダーからの SAML 署名を検証するために使用する PEM 形式の X.509 証明書の配列（AD
            Connector エージェントによって管理）。
          items:
            maxLength: 3072
            minLength: 256
            type: string
          minItems: 0
          type: array
        disable_cache:
          description: 有効にすると、ディレクトリに対するリアルタイム検証を確実にするため、AD Connector の認証結果のキャッシュを無効にします。
          type: boolean
        disable_self_service_change_password:
          description: >-
            有効にすると、ユーザーによるセルフサービスのパスワードリセット開始を防ぐため、ログインページの「パスワードをお忘れですか？」リンクを非表示にします。
          type: boolean
        domain_aliases:
          description: >-
            識別子優先の認証フローでユーザーをこの AD 接続にルーティングするために使用できるドメイン名のリスト。各ドメインは、256
            文字以内の有効な DNS 名である必要があります。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        icon_url:
          description: 表示するアイコンの HTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        ips:
          description: >-
            Kerberos 認証または証明書認証において、認証リクエストが企業ネットワークから送信されたかどうかを判断するために使用する、CIDR
            表記の IP アドレス範囲の配列。
          items:
            maxLength: 39
            minLength: 2
            type: string
          minItems: 0
          type: array
        kerberos:
          description: >-
            ユーザーが企業ネットワークの IP アドレス範囲内から認証する際にシームレスな SSO を実現する、Windows
            統合認証（Kerberos）を有効にします。
          type: boolean
        kerberos_only:
          description: true の場合、接続を Kerberos のみの認証に制限し、ユーザー名とパスワードへのフォールバックを許可しません。
          type: boolean
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject5OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: AD-LDAP Connector エージェントのサインインエンドポイントの種類（AD Connector エージェントによって管理）。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        tenant_domain:
          description: HRD およびディスカバリーに使用するプライマリ AD ドメインヒント。
          format: hostname
          maxLength: 512
          minLength: 1
          type: string
        thumbprints:
          description: >-
            署名の検証に使用する証明書の SHA-1 サムプリントの配列。AD Connector エージェントを使用する場合は Auth0
            によって管理されます。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject5OptionsUpstreamParams
      type: object
    EventStreamCloudEventConnectionCreatedObject5StrategyEnum:
      description: 接続戦略。
      enum:
        - ad
      type: string
    EventStreamCloudEventConnectionCreatedObject6Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続のPurposeを設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject6ConnectedAccounts:
      additionalProperties: false
      description: Connected AccountsおよびToken Vaultで使用する接続のPurposeを設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject6Metadata:
      additionalProperties: false
      description: 文字列値を持つオブジェクト形式で接続に関連付けるメタデータ（最大255文字）。指定できるメタデータプロパティは最大10個です。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject6Options:
      additionalProperties: false
      description: 「google-apps」接続のオプション
      properties:
        admin_access_token_expiresin:
          description: >-
            ISO
            8601形式の`admin_access_token`の有効期限タイムスタンプ。Auth0はこの値を使用して、トークンを更新するタイミングを判断します。
          format: date-time
          type: string
        allow_setting_login_scopes:
          description: >-
            trueの場合、ユーザーログイン時に要求するOAuthスコープをカスタマイズできます。カスタムスコープは、必須のemailスコープとprofileスコープに追加されます。falseの場合、または省略した場合は、デフォルトのemailスコープとprofileスコープのみが使用されます。このプロパティは、Token
            VaultまたはConnected Accounts機能が有効になると自動的に有効になります。
          type: boolean
        api_enable_groups:
          description: >-
            グループ向けのGoogle Workspace Admin SDK Directory
            APIとの連携を有効にします。trueの場合、Auth0はグループとグループメンバーシップを同期でき、グループのインバウンドディレクトリプロビジョニングをサポートします。デフォルトはfalseです。
          type: boolean
        api_enable_users:
          description: >-
            Google Workspace Admin SDK Directory
            APIとの連携を有効にします。trueの場合、Auth0は拡張ユーザー属性（管理者ステータス、停止ステータス、グループメンバーシップ）を取得でき、インバウンドディレクトリプロビジョニング（SCIM）をサポートします。デフォルトはtrueです。
          type: boolean
        client_id:
          description: >-
            Google OAuth 2.0 クライアント ID。[Google Cloud
            Console](https://console.cloud.google.com/apis/credentials) の「OAuth
            2.0 Client IDs」セクションで確認できます。
          maxLength: 128
          minLength: 1
          type: string
        domain:
          description: ユーザーが所属する必要があるプライマリGoogle Workspaceドメイン名。
          maxLength: 1024
          minLength: 1
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかに一致すると、認証時に自動的にこの接続にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        email:
          description: OAuthフローで`email`スコープを要求するかどうか。
          type: boolean
        ext_agreed_terms:
          description: Google Directoryのプロファイルから`agreedToTerms`フラグを取得します。
          type: boolean
        ext_groups:
          description: Googleグループメンバーシップ情報の付加を有効にします（`ext_groups_extended`に必要）。
          type: boolean
        ext_groups_extended:
          description: >-
            拡張されたグループエントリに`id`、`email`、`name`を含めるか（true）、グループ名のみを含めるか（false）を制御します。`ext_groups`がtrueの場合にのみ設定できます。
          type: boolean
        ext_is_admin:
          description: サインインするユーザーのGoogle Directoryの管理者フラグを取得します。
          type: boolean
        ext_is_suspended:
          description: サインインするユーザーのGoogle Directoryの停止フラグを取得します。
          type: boolean
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject6OptionsFederatedConnectionsAccessTokens
        handle_login_from_social:
          description: >-
            有効にすると、ソーシャルログインでGoogleアカウントを使用してサインインするユーザーは、メールドメインが設定済みのtenant_domainまたはdomain_aliasesに一致する場合、このGoogle
            Workspace接続に自動的にルーティングされます。これにより、エンタープライズユーザーは汎用的なGoogleソーシャルログインではなく、組織のGoogle
            Workspaceアイデンティティプロバイダーを通じて認証されます。その結果、ディレクトリベースの属性にアクセスでき、組織のセキュリティポリシーを適用できます。新しい接続ではデフォルトでtrueです。
          type: boolean
        icon_url:
          description: >-
            Auth0のログインページに表示される接続アイコンのURL。HTTPS
            URLを指定できます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        map_user_id_to_id:
          description: >-
            Auth0がGoogle
            Workspaceユーザーのuser_idを生成する方法を決定します。false（デフォルト）の場合は、ユーザーのメールアドレスが使用されます。trueの場合は、ユーザーのメールアドレスが変更されても維持される、Googleの安定した数値ユーザーIDが代わりに使用されます。この設定は接続の作成時にのみ構成でき、後から変更することはできません。
          type: boolean
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        profile:
          description: OAuthフローで`profile`スコープを要求するかどうか。
          type: boolean
        scope:
          description: >-
            デフォルトの `email profile` スコープに加えて要求する OAuth
            の追加スコープ。`allow_setting_login_scopes` が true でない限り無視されます。
          items:
            maxLength: 255
            minLength: 1
            type: string
          minItems: 1
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject6OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: 認証時に組織を識別するために使用する Google Workspace のプライマリドメイン。
          maxLength: 255
          minLength: 1
          type: string
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject6OptionsUpstreamParams
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionCreatedObject6StrategyEnum:
      description: 接続戦略。
      enum:
        - google-apps
      type: string
    EventStreamCloudEventConnectionCreatedObject7Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject7ConnectedAccounts:
      additionalProperties: false
      description: 連携アカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject7Metadata:
      additionalProperties: false
      description: 文字列値を持つオブジェクト形式の、接続に関連付けられたメタデータ（最大 255 文字）。メタデータプロパティは最大 10 個まで使用できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject7Options:
      additionalProperties: false
      description: '''waad'' 接続のオプション'
      properties:
        api_enable_users:
          description: Users API を有効にします
          type: boolean
        app_domain:
          description: >-
            Azure AD アプリケーションのドメイン（例: 'contoso.onmicrosoft.com'）。主に
            WS-Federation プロトコルおよび Azure AD v1 エンドポイントで使用されます。
          maxLength: 255
          minLength: 0
          type: string
        app_id:
          description: >-
            Azure AD アプリケーションの Application ID URI（App ID URI）。Resource Owner
            Password Flow で Azure AD v1 を使用する場合に必要です。OAuth
            トークンリクエストで要求されるリソースを識別するために使用します。
          maxLength: 500
          minLength: 0
          type: string
        basic_profile:
          description: >-
            Azure AD
            から基本的なユーザープロファイル情報（name、email、given_name、family_name）を取得します。常に有効で必須であり、認証時に取得される最小限のプロファイルデータを表します。
          type: boolean
        cert_rollover_notification:
          description: まもなく期限切れとなる証明書に関する通知の最終送信日時。
          format: date-time
          type: string
        client_id:
          description: >-
            アプリケーション登録時にアイデンティティプロバイダーから発行される OAuth 2.0
            クライアント識別子。この値は、アイデンティティプロバイダーに対する Auth0 接続を識別します。
          maxLength: 100
          minLength: 0
          type: string
        domain:
          description: >-
            プライマリ Azure AD テナントドメイン（例: 'contoso.onmicrosoft.com' または
            'contoso.com'）。
          maxLength: 512
          minLength: 0
          type: string
        domain_aliases:
          description: >-
            この Azure AD
            テナントに関連付けられた代替ドメイン名。複数の検証済みドメインのユーザーがこの接続を通じて認証できるようにします。ドメイン文字列の配列を指定できます。
          items:
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        ext_groups:
          description: >-
            有効（true）の場合、ユーザーの Azure AD セキュリティグループメンバーシップを取得して保存します。Microsoft
            Graph API の権限（Directory.Read.All）が必要です。max_groups_to_retrieve
            を設定できます。
          type: boolean
        ext_nested_groups:
          description: >-
            true
            の場合、推移的なグループメンバーシップ（グループ内のグループ）を含め、ユーザーが所属するすべてのグループを保存します。false（デフォルト）の場合、直接のグループメンバーシップのみが含まれます。
          type: boolean
        ext_profile:
          description: >-
            有効（true）の場合、Microsoft Graph API を介して Azure AD
            から拡張プロファイル属性（役職、部署、オフィスの所在地など）を取得します。Graph API の権限が必要です。Azure AD
            v1、または v2 で明示的に有効化されている場合にのみ使用できます。
          type: boolean
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject7OptionsFederatedConnectionsAccessTokens
        granted:
          description: >-
            必要な Azure AD 権限に対する管理者の同意が付与されているかどうかを示します。OAuth 認可フロー中に Auth0
            によって管理される読み取り専用のステータスフィールドです。
          type: boolean
        icon_url:
          description: >-
            Auth0 のログインページに表示される接続アイコンの URL。HTTPS URL
            を受け付けます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        identity_api:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject7OptionsIdentityApiEnum
        max_groups_to_retrieve:
          description: >-
            認証時にユーザーごとに取得する Azure AD
            グループの最大数。多数のグループに所属するユーザーでのパフォーマンス問題を防ぐのに役立ちます。ext_groups
            が有効な場合にのみ適用されます。空のままにすると、プラットフォームのデフォルトが使用されます。
          maxLength: 10
          minLength: 0
          type: string
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存してはならないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0データベースに保存してはならないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        scope:
          description: >-
            認証時にAzure ADにリクエストするOAuth
            2.0スコープ。各スコープは権限を表します（例：'User.Read'、'Group.Read.All'）。Microsoft
            Identity Platform v2.0でのみ適用されます。使用可能なスコープについては、Microsoft Graph
            のアクセス許可リファレンスを参照してください。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject7OptionsSetUserRootAttributesEnum
        should_trust_email_verified_connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject7OptionsShouldTrustEmailVerifiedConnectionEnum
        tenantId:
          description: >-
            UUID形式のAzure ADテナントID。Azure AD
            organizationの一意の識別子です。有効な36文字のUUIDである必要があります。
          format: uuid
          maxLength: 36
          minLength: 36
          type: string
        tenant_domain:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject7OptionsTenantDomain
        thumbprints:
          description: >-
            SAML署名の検証に使用する証明書サムプリント（SHA-128/SHA-256/SHA-512の16進ハッシュ）の配列。WS-Federationプロトコルで使用します。サムプリントは最大20個まで指定できます。各サムプリントは16進数文字列である必要があります。
          items:
            description: ADFSおよびAzure AD接続用の証明書サムプリント。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject7OptionsUpstreamParams
        useCommonEndpoint:
          description: >-
            有効（true）の場合、マルチテナント認証にAzure ADのcommonエンドポイントを使用します。任意のAzure AD
            organizationのユーザーがサインインできます。userid_attributeは'oid'ではなく'sub'に設定する必要があります。SCIMプロビジョニングとは併用できません。デフォルトはfalseです。
          type: boolean
        use_wsfed:
          description: >-
            WS-Federationプロトコルを使用するかどうかを示します。trueの場合はWS-Federationを、falseの場合はOpenID
            Connectを使用します。
          type: boolean
        userid_attribute:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject7OptionsUseridAttributeEnum
        waad_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject7OptionsWaadProtocolEnum
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionCreatedObject7StrategyEnum:
      description: 接続の方式。
      enum:
        - waad
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject0Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を構成します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject0ConnectedAccounts:
      additionalProperties: false
      description: 連携アカウントおよびToken Vaultで使用する接続の用途を設定します。
      properties:
        active:
          type: boolean
        cross_app_access:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject0Metadata:
      additionalProperties: false
      description: 文字列値（最大255文字）を持つオブジェクト形式で指定する、接続に関連付けられたメタデータ。メタデータプロパティは最大10個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject0Options:
      additionalProperties: false
      description: '''oidc'' 接続のオプション'
      properties:
        attribute_map:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0OptionsAttributeMap
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされる、アイデンティティプロバイダーのOAuth 2.0認可エンドポイントのURL。有効なHTTPS
            URLである必要があります。このエンドポイントはOAuth 2.0認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        client_id:
          description: >-
            アプリケーションの登録時にアイデンティティプロバイダーから発行されるOAuth
            2.0クライアント識別子。この値は、アイデンティティプロバイダーに対するAuth0接続を識別します。
          maxLength: 255
          minLength: 0
          type: string
        connection_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0OptionsConnectionSettings
        discovery_url:
          description: >-
            アイデンティティプロバイダーのOIDCディスカバリーエンドポイント（/.well-known/openid-configuration）のURL。指定され、oidc_metadataが空の場合、Auth0はエンドポイントやサポートされる機能を含むプロバイダー設定を自動的に取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けるメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかに一致すると、認証時に自動的にこの接続へルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        dpop_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0OptionsDpopSigningAlgEnum
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0OptionsFederatedConnectionsAccessTokens
        icon_url:
          description: 表示するアイコンのHTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        id_token_session_expiry_supported:
          description: >-
            アイデンティティプロバイダーがid_tokenによるセッション有効期限の設定をサポートするかどうかを示します。trueの場合、システムはid_token内のsession_expiryクレームを使用してセッション有効期限を判定します。
          type: boolean
        id_token_signed_response_algs:
          description: ID トークンの検証に使用できるアルゴリズムのリスト。strategy=oidcまたはoktaの場合に適用されます。
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0OptionsIdTokenSignedResponseAlgsItemEnum
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーからのID
            トークン内の'iss'クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーのJSON Web Key
            Set（JWKS）エンドポイントのURL。Auth0はこれらのキーを取得してID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0OptionsOidcMetadata
        schema_version:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0OptionsSchemaVersionEnum
        scope:
          description: >-
            認可時に要求するOAuth
            2.0スコープのスペース区切りリスト。'openid'（OIDC仕様で必須）を含める必要があります。一般的な値: 'openid
            profile email'。追加のスコープはアイデンティティプロバイダーによって異なります。
          maxLength: 255
          minLength: 6
          type: string
        send_back_channel_nonce:
          description: >-
            trueで、typeが'back_channel'の場合、リプレイ攻撃を防ぐために認可リクエストに暗号学的nonceを含めます。アイデンティティプロバイダーは、検証用にこのnonceをID
            トークンに含める必要があります。
          type: boolean
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: テナントドメイン
          maxLength: 255
          minLength: 1
          type: string
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換する、アイデンティティプロバイダーのOAuth 2.0トークンエンドポイントのURL。有効なHTTPS
            URLである必要があります。認可コードフローでは必須ですが、インプリシットフローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_method:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0OptionsTokenEndpointAuthMethodEnum
        token_endpoint_auth_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0OptionsTokenEndpointAuthSigningAlgEnum
        token_endpoint_jwtca_aud_format:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0OptionsTokenEndpointJwtcaAudFormatEnum
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0OptionsTypeEnum
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0OptionsUpstreamParams
        useOauthSpecScope:
          description: >-
            trueの場合、アイデンティティプロバイダーの認可エンドポイントの呼び出し時に、カンマ区切りではなくOAuth
            2.0仕様に準拠したスペース区切りのスコープを使用します。connection_scopeパラメータを使用する場合にのみ関係します。https://auth0.com/docs/authenticate/identity-providers/adding-scopes-for-an-external-idp#pass-scopes-to-authorize-endpoint
            を参照してください。
          type: boolean
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーのUserInfoエンドポイントの任意のURL。属性マッピングとともに設定すると、Auth0はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject0StrategyEnum:
      description: 接続戦略。
      enum:
        - oidc
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject1Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject1ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject1Metadata:
      additionalProperties: false
      description: 文字列値を持つオブジェクト形式の、接続に関連付けられたメタデータ（最大 255 文字）。指定できるメタデータプロパティは最大 10 個です。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject1Options:
      additionalProperties: false
      description: '''okta'' 接続のオプション'
      properties:
        attribute_map:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1OptionsAttributeMap
        authorization_endpoint:
          description: >-
            ユーザーが認証のためにリダイレクトされるアイデンティティプロバイダーのOAuth 2.0認可エンドポイントのURL。有効なHTTPS
            URLである必要があります。このエンドポイントはOAuth 2.0認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        client_id:
          description: >-
            アプリケーション登録時にアイデンティティプロバイダーから発行されるOAuth
            2.0クライアント識別子。この値は、アイデンティティプロバイダーに対するAuth0の接続を識別します。
          maxLength: 255
          minLength: 0
          type: string
        connection_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1OptionsConnectionSettings
        domain:
          description: >-
            Okta組織のドメイン（例:
            dev-123456.okta.com）。スキームや末尾のバックスラッシュを含めず、Oktaサーバーのドメインのみを指定してください。ディスカバリーは、connection.options.oidc_metadataが空でドメインが指定されている場合にのみ実行されます。
          maxLength: 255
          minLength: 4
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかと一致すると、認証時にこの接続へ自動的にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        dpop_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1OptionsDpopSigningAlgEnum
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1OptionsFederatedConnectionsAccessTokens
        icon_url:
          description: 表示するアイコンのHTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        id_token_session_expiry_supported:
          description: >-
            アイデンティティプロバイダーがid_tokenによるセッション有効期限をサポートするかどうかを示します。trueの場合、システムはid_token内のsession_expiryクレームを使用してセッション有効期限を判定します。
          type: boolean
        id_token_signed_response_algs:
          description: ID トークンの検証に使用できるアルゴリズムのリスト。strategy=oidcまたはoktaの場合に適用されます。
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1OptionsIdTokenSignedResponseAlgsItemEnum
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダー固有の発行者識別子URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーが発行するID
            トークンの「iss」クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーのJSON Web Key
            Set（JWKS）エンドポイントのURL。Auth0はこれらのキーを取得してID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1OptionsOidcMetadata
        schema_version:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1OptionsSchemaVersionEnum
        scope:
          description: >-
            認可時に要求する、スペース区切りのOAuth
            2.0スコープのリスト。「openid」（OIDC仕様で必須）を含める必要があります。一般的な値: 「openid profile
            email」。追加のスコープはアイデンティティプロバイダーによって異なります。
          maxLength: 255
          minLength: 6
          type: string
        send_back_channel_nonce:
          description: >-
            trueかつtypeが「back_channel」の場合、リプレイ攻撃を防ぐために認可リクエストに暗号学的nonceを含めます。アイデンティティプロバイダーは、検証のためにこのnonceをID
            トークンに含める必要があります。
          type: boolean
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: テナントドメイン
          maxLength: 255
          minLength: 1
          type: string
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換するアイデンティティプロバイダーのOAuth 2.0トークンエンドポイントのURL。有効なHTTPS
            URLである必要があります。認可コードフローでは必須ですが、インプリシットフローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_method:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1OptionsTokenEndpointAuthMethodEnum
        token_endpoint_auth_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1OptionsTokenEndpointAuthSigningAlgEnum
        token_endpoint_jwtca_aud_format:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1OptionsTokenEndpointJwtcaAudFormatEnum
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1OptionsTypeEnum
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1OptionsUpstreamParams
        useOauthSpecScope:
          description: >-
            trueの場合、アイデンティティプロバイダーの認可エンドポイント呼び出し時に、カンマ区切りではなくスペース区切りのスコープ（OAuth
            2.0仕様に準拠）を使用します。connection_scopeパラメータを使用する場合にのみ関連します。https://auth0.com/docs/authenticate/identity-providers/adding-scopes-for-an-external-idp#pass-scopes-to-authorize-endpoint
            を参照してください
          type: boolean
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーのUserInfoエンドポイントの任意のURL。属性マッピングとともに設定すると、Auth0はアクセストークンを使用して追加のユーザープロファイルクレームを取得するためにこのエンドポイントを呼び出します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject1StrategyEnum:
      description: 接続戦略。
      enum:
        - okta
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject2Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject2ConnectedAccounts:
      additionalProperties: false
      description: 連携アカウントおよびToken Vaultで使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject2Metadata:
      additionalProperties: false
      description: 文字列値（最大255文字）を持つオブジェクト形式の、接続に関連付けられたメタデータ。メタデータプロパティは最大10個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject2Options:
      additionalProperties: false
      description: '''samlp''接続のオプション'
      properties:
        assertion_decryption_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2OptionsAssertionDecryptionSettings
        cert:
          description: >-
            .der形式のアイデンティティプロバイダーのX.509署名証明書。SAMLレスポンスおよびアサーションの署名を検証するために使用します。signingCertの代替であり、後方互換性のために維持されています。代わりにsigningCertを使用してください。
          maxLength: 10240
          minLength: 1
          type: string
        cert_rollover_notification:
          description: 有効期限が近い証明書に関する最後の通知のタイムスタンプ。
          format: date-time
          type: string
        debug:
          description: >-
            trueの場合、SAMLリクエスト／レスポンスの詳細を含む'w'（警告）イベントをテナントログに出力し、詳細なSAMLデバッグを有効にします。警告：機密性の高いユーザー情報（PII、認証情報）が露出する可能性があるため、デバッグ目的で一時的にのみ有効にしてください。
          type: boolean
        deflate:
          description: trueの場合、HTTP-Redirectバインディング経由で送信されるSAMLリクエストのDEFLATE圧縮を有効にします。
          type: boolean
        destinationUrl:
          description: Auth0がSAML認証リクエストを送信するURL（IDプロバイダーのSSO URL）。有効なHTTPS URLである必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        digestAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2OptionsDigestAlgorithmEnum
        disableFieldsMapFix:
          description: >-
            trueの場合、SAML属性をユーザープロファイルフィールドに適切にマッピングするためのfieldsMap設定の自動修正を無効にします。デフォルトはfalse（fieldsMapの修正が有効）です。
          type: boolean
        disableSignout:
          description: >-
            trueの場合、ユーザーのサインアウト時にアイデンティティプロバイダーへSAMLログアウトリクエスト（SingleLogoutService）を送信しないようにします。ユーザーはAuth0からログアウトされますが、アイデンティティプロバイダーにはログインしたままになります。デフォルトはfalse（フェデレーテッドログアウトが有効）です。
          type: boolean
        discovery_url:
          description: >-
            アイデンティティプロバイダーのOIDC
            ディスカバリーエンドポイント（/.well-known/openid-configuration）のURL。指定され、oidc_metadataが空の場合、Auth0はエンドポイントやサポートされる機能を含むプロバイダー設定を自動的に取得します。Cross
            App Accessで使用します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        domain_aliases:
          description: 接続のドメインエイリアス
          items:
            description: Home Realm Discoveryに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            SAMLサービスプロバイダーのエンティティ識別子（発行者）。指定しない場合、デフォルトは'urn:auth0:{tenant}:{connection}'です。この値は、アイデンティティプロバイダーに送信されるSAML
            AuthnRequestメッセージに含まれます。
          maxLength: 128
          minLength: 1
          type: string
        expires:
          description: アイデンティティプロバイダーの署名証明書の有効期限を示すISO 8601形式の日時。
          format: date-time
          type: string
        fieldsMap:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2OptionsFieldsMap
        fieldsMapJsonRaw:
          description: fieldsMap設定の生のJSON文字列表現。fieldsMapオブジェクトの保存と取得に内部的に使用されます。
          maxLength: 8192
          minLength: 0
          type: string
        global_token_revocation_jwt_iss:
          description: >-
            アイデンティティプロバイダーからのグローバルトークン失効リクエスト内のJWTトークンに期待される'iss'（発行者）クレーム値。設定すると、Auth0はトークン失効を処理する前にJWTの発行者がこの値と一致することを検証します。global_token_revocation_jwt_subと併用する必要があります。
          maxLength: 1024
          minLength: 1
          type: string
        global_token_revocation_jwt_sub:
          description: >-
            アイデンティティプロバイダーからのグローバルトークン失効リクエスト内のJWTトークンに期待される'sub'（サブジェクト）クレーム値。設定すると、Auth0はトークン失効を処理する前にJWTのサブジェクトがこの値と一致することを検証します。global_token_revocation_jwt_issと併用する必要があります。
          maxLength: 1024
          minLength: 1
          type: string
        icon_url:
          description: >-
            Auth0ログインページに表示する接続アイコンのURL。HTTPS
            URLを指定できます。認証フローで視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        idpinitiated:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2OptionsIdpinitiated
        metadataUrl:
          description: >-
            アイデンティティプロバイダーのSAMLメタデータドキュメントのHTTPS
            URL。指定すると、Auth0はメタデータを自動的に取得・解析し、signInEndpoint、signOutEndpoint、signingCert、signSAMLRequest、protocolBindingを抽出します。metadataUrlまたはmetadataXmlのいずれか一方を使用し、両方は使用しないでください。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2OptionsOidcMetadata
        protocolBinding:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2OptionsProtocolBindingEnum
        recipientUrl:
          description: Auth0がSAML認証リクエストを送信するURL（IDプロバイダーのSSO URL）。有効なHTTPS URLである必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        requestTemplate:
          description: >-
            SAML認証リクエスト用のカスタムXMLテンプレート。@@variableName@@構文による変数置換をサポートします。指定しない場合は、デフォルトのSAML
            AuthnRequestテンプレートを使用します。https://auth0.com/docs/authenticate/protocols/saml/saml-sso-integrations/configure-auth0-saml-service-provider#customize-the-request-template
            を参照してください。
          maxLength: 10240
          minLength: 1
          type: string
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: >-
            Auth0がSAML認証リクエストを送信するアイデンティティプロバイダーのSAML
            SingleSignOnServiceエンドポイントURL。SAML接続の主要なログインURLです。metadataUrlまたはmetadataXmlを使用する場合を除き、必須です。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signOutEndpoint:
          description: >-
            Auth0がフェデレーテッドログアウトのログアウトリクエストを送信するアイデンティティプロバイダーのSAML
            SingleLogoutServiceエンドポイントURL。指定しない場合、デフォルトはsignInEndpointです。disableSignoutがfalseの場合にのみ使用されます。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signSAMLRequest:
          description: >-
            trueの場合、Auth0は接続の署名鍵を使用してSAML認証リクエストに署名します。署名にはリクエストのダイジェストが含まれ、アイデンティティプロバイダーで検証されます。デフォルトはfalse（未署名のリクエスト）です。
          type: boolean
        signatureAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2OptionsSignatureAlgorithmEnum
        signingCert:
          description: >-
            SAMLレスポンスおよびアサーションの署名検証に使用する、アイデンティティプロバイダーのBase64エンコード済みX.509証明書。証明書はデコードされ、暗号学的署名の検証に使用されます。
          maxLength: 10240
          minLength: 1
          type: string
        subject:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2OptionsSubject
        tenant_domain:
          description: >-
            SAML接続でログイン
            エンドポイントURLの構築に使用するテナントドメイン。シングルテナントの場合は文字列、マルチテナントの検証では文字列の配列を指定できます。
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            アイデンティティプロバイダーの署名証明書のSHA-1サムプリント（フィンガープリント）。接続の作成時にsigningCertから自動的に計算されます。各サムプリントは40文字の16進数文字列である必要があります。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2OptionsUpstreamParams
        user_id_attribute:
          description: >-
            一意のユーザー識別子として使用するカスタムSAMLアサーション属性。指定すると、この属性が最優先でデフォルトのuser_idマッピングリストの先頭に追加されます。文字列（単一のSAML属性名）を指定できます。
          maxLength: 2396
          minLength: 1
          type: string
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject2StrategyEnum:
      description: 接続のストラテジー。
      enum:
        - samlp
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject3Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject3ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault で使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject3Metadata:
      additionalProperties: false
      description: 文字列値（最大255文字）を持つオブジェクト形式で接続に関連付けられたメタデータ。指定できるメタデータプロパティは最大10個です。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject3Options:
      additionalProperties: false
      description: '''pingfederate'' 接続のオプション'
      properties:
        assertion_decryption_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject3OptionsAssertionDecryptionSettings
        cert:
          description: >-
            アイデンティティプロバイダーの .der 形式の X.509 署名証明書。SAML
            レスポンスおよびアサーションの署名を検証するために使用します。これは signingCert
            の代替であり、後方互換性のために保持されています。代わりに signingCert を使用してください。
          maxLength: 10240
          minLength: 1
          type: string
        cert_rollover_notification:
          description: 有効期限が近い証明書に関する最後の通知のタイムスタンプ。
          format: date-time
          type: string
        digestAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject3OptionsDigestAlgorithmEnum
        domain_aliases:
          description: 接続のドメインエイリアス
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            SAML サービスプロバイダーのエンティティ識別子（Issuer）。指定しない場合、デフォルトは
            'urn:auth0:{tenant}:{connection}' です。この値はアイデンティティプロバイダーに送信される SAML
            AuthnRequest メッセージに含まれます。
          maxLength: 128
          minLength: 1
          type: string
        expires:
          description: アイデンティティプロバイダーの署名証明書の有効期限を示す ISO 8601 形式の日時。
          format: date-time
          type: string
        icon_url:
          description: >-
            Auth0 のログインページに表示される接続アイコンの URL。HTTPS URL
            を受け付けます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        idpinitiated:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject3OptionsIdpinitiated
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        pingFederateBaseUrl:
          description: 接続の作成に使用する情報を返す、PingFederate が提供する URL
          format: uri
          maxLength: 256
          minLength: 8
          type: string
        protocolBinding:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject3OptionsProtocolBindingEnum
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject3OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: >-
            Auth0 が SAML 認証リクエストを送信するアイデンティティプロバイダーの SAML SingleSignOnService
            エンドポイント URL。この SAML 接続の主要なログイン URL です。metadataUrl または metadataXml
            を使用する場合を除き、必須です。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signSAMLRequest:
          description: >-
            true の場合、Auth0 は接続の署名鍵を使用して SAML
            認証リクエストに署名します。署名にはリクエストのダイジェストが含まれ、アイデンティティプロバイダーによって検証されます。デフォルトは
            false（署名なしのリクエスト）です。
          type: boolean
        signatureAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject3OptionsSignatureAlgorithmEnum
        signingCert:
          description: >-
            SAML レスポンスおよびアサーションの署名検証に使用する、アイデンティティプロバイダーの Base64 エンコード済み X.509
            証明書。証明書はデコードされ、暗号学的な署名検証に使用されます。
          maxLength: 10240
          minLength: 1
          type: string
        subject:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject3OptionsSubject
        tenant_domain:
          description: >-
            SAML 接続でログインエンドポイント URL
            の構築に使用するテナントドメイン。シングルテナントの場合は文字列、マルチテナント検証の場合は文字列の配列を指定できます。
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            アイデンティティプロバイダーの署名証明書の SHA-1 サムプリント（フィンガープリント）。接続の作成時に signingCert
            から自動的に計算されます。各サムプリントは40文字の16進数文字列である必要があります。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject3OptionsUpstreamParams
      required:
        - pingFederateBaseUrl
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject3StrategyEnum:
      description: 接続の方式。
      enum:
        - pingfederate
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject4Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject4ConnectedAccounts:
      additionalProperties: false
      description: 連携アカウントおよびToken Vaultに使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject4Metadata:
      additionalProperties: false
      description: 接続に関連付けられた、文字列値（最大255文字）を持つオブジェクト形式のメタデータ。メタデータプロパティは最大10個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject4Options:
      additionalProperties: false
      description: '''adfs''接続のオプション'
      properties:
        adfs_server:
          description: >-
            WS-Fedエンドポイントおよび証明書の検出に使用する、ADFSフェデレーションメタデータのホストまたはXML
            URL。adfs_serverとfedMetadataXmlの両方がない場合はエラーになります。
          maxLength: 2048
          minLength: 0
          type: string
        cert_rollover_notification:
          description: 有効期限が近い証明書に関する直近の通知のタイムスタンプ。
          format: date-time
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかと一致すると、認証時に自動的にこの接続へルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            ADFSサービスプロバイダーのエンティティ識別子（Issuer）。指定されない場合、デフォルトは'urn:auth0:{tenant}:{connection}'です。
          maxLength: 128
          minLength: 1
          type: string
        fedMetadataXml:
          description: '''adfs_server''の代替となるインラインXML。''adfs_server''と同時に設定することはできません。'
          maxLength: 102400
          minLength: 1
          type: string
        icon_url:
          description: >-
            Auth0ログインページに表示される接続アイコンのURL。HTTPS
            URLを使用できます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        prev_thumbprints:
          description: >-
            SAML署名を検証するための証明書サムプリント（SHA-128/SHA-256/SHA-512の16進ハッシュ）の配列。WS-Federationプロトコルで使用します。サムプリントは最大20個です。各サムプリントは16進数文字列である必要があります。
          items:
            description: ADFSおよびAzure AD接続用の証明書サムプリント。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject4OptionsSetUserRootAttributesEnum
        should_trust_email_verified_connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject4OptionsShouldTrustEmailVerifiedConnectionEnum
        signInEndpoint:
          description: メタデータから検出された、または明示的に指定されたPassive Requestor（WS-Fed）のサインインエンドポイント。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        tenant_domain:
          description: テナントドメイン
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            SAML署名を検証するための証明書サムプリント（SHA-128/SHA-256/SHA-512の16進ハッシュ）の配列。WS-Federationプロトコルで使用します。サムプリントは最大20個です。各サムプリントは16進数文字列である必要があります。
          items:
            description: ADFSおよびAzure AD接続用の証明書サムプリント。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject4OptionsUpstreamParams
        user_id_attribute:
          description: >-
            一意のユーザー識別子として使用するカスタムADFSクレーム。指定すると、この属性は最優先でデフォルトのuser_idマッピングリストの先頭に追加されます。文字列（単一のADFSクレーム名）を指定できます。
          maxLength: 128
          minLength: 1
          type: string
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject4StrategyEnum:
      description: 接続の方式。
      enum:
        - adfs
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject5Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject5ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject5Metadata:
      additionalProperties: false
      description: 接続に関連付ける、文字列値（最大255文字）を持つオブジェクト形式のメタデータ。メタデータプロパティは最大10個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject5Options:
      additionalProperties: false
      description: '''ad'' 接続のオプション'
      properties:
        agentIP:
          description: >-
            Kerberos 認証の認証リクエストが企業ネットワークから発信されていることを検証するために使用する AD Connector
            エージェントの IP アドレス（AD Connector エージェントによって管理）。
          maxLength: 39
          minLength: 2
          type: string
        agentMode:
          description: >-
            有効にすると、WS-Federation プロトコルの代わりに、AD Connector
            エージェントを介した直接のユーザー名/パスワード認証を許可します（AD Connector エージェントによって管理）。
          type: boolean
        agentVersion:
          description: >-
            インストール済みの AD Connector エージェントソフトウェアのバージョン識別子（AD Connector
            エージェントによって管理）。
          maxLength: 12
          minLength: 5
          type: string
        brute_force_protection:
          description: >-
            クレデンシャルスタッフィング攻撃を防ぐため、Auth0 のブルートフォース対策を有効にします。有効にすると、失敗が繰り返された後、特定の
            IP アドレスからの不審なログイン試行をブロックします。
          type: boolean
        certAuth:
          description: AD Connector のクライアント SSL 証明書認証を有効にし、サインインエンドポイントで HTTPS を必須にします
          type: boolean
        certs:
          description: >-
            AD アイデンティティプロバイダーからの SAML 署名を検証するために使用する PEM 形式の X.509 証明書の配列（AD
            Connector エージェントによって管理）。
          items:
            maxLength: 3072
            minLength: 256
            type: string
          minItems: 0
          type: array
        disable_cache:
          description: 有効にすると、ディレクトリに対するリアルタイム検証を確実に行うため、AD Connector の認証結果のキャッシュを無効にします
          type: boolean
        disable_self_service_change_password:
          description: >-
            有効にすると、ユーザーによるセルフサービスのパスワードリセット開始を防ぐため、ログインページの「パスワードをお忘れですか？」リンクを非表示にします
          type: boolean
        domain_aliases:
          description: >-
            識別子優先の認証フローでユーザーをこの AD
            接続にルーティングするために使用できるドメイン名のリスト。各ドメインは256文字以内の有効な DNS 名である必要があります
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        icon_url:
          description: 表示するアイコンの HTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        ips:
          description: >-
            Kerberos または証明書認証の認証リクエストが企業ネットワークから発信されているかどうかを判定するために使用する、CIDR 表記の
            IP アドレス範囲の配列。
          items:
            maxLength: 39
            minLength: 2
            type: string
          minItems: 0
          type: array
        kerberos:
          description: >-
            ユーザーが企業ネットワークの IP アドレス範囲内から認証する際に、シームレスな SSO を実現する Windows
            統合認証（Kerberos）を有効にします
          type: boolean
        kerberos_only:
          description: true の場合、接続を Kerberos 認証のみに制限し、ユーザー名/パスワードへのフォールバックを許可しません。
          type: boolean
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject5OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: AD-LDAP Connector エージェントのサインインエンドポイントの種類（AD Connector エージェントによって管理）。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        tenant_domain:
          description: HRD およびディスカバリーに使用するプライマリ AD ドメインヒント。
          format: hostname
          maxLength: 512
          minLength: 1
          type: string
        thumbprints:
          description: >-
            署名の検証に使用する証明書 SHA-1 サムプリントの配列。AD Connector エージェントを使用する場合は Auth0
            によって管理されます。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject5OptionsUpstreamParams
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject5StrategyEnum:
      description: 接続戦略。
      enum:
        - ad
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject6Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject6ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject6Metadata:
      additionalProperties: false
      description: 接続に関連付ける、文字列値（最大255文字）を持つオブジェクト形式のメタデータ。メタデータプロパティは最大10個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject6Options:
      additionalProperties: false
      description: '''google-apps'' 接続のオプション'
      properties:
        admin_access_token_expiresin:
          description: >-
            ISO 8601 形式の `admin_access_token` の有効期限タイムスタンプ。Auth0
            はこの値を使用してトークンを更新するタイミングを決定します。
          format: date-time
          type: string
        allow_setting_login_scopes:
          description: >-
            true の場合、ユーザーログイン時にリクエストする OAuth スコープをカスタマイズできます。カスタムスコープは必須の email
            スコープおよび profile スコープに追加されます。false の場合、または省略した場合は、デフォルトの email
            スコープおよび profile スコープのみが使用されます。Token Vault または Connected Accounts
            機能が有効になると、このプロパティは自動的に有効になります。
          type: boolean
        api_enable_groups:
          description: >-
            グループ向け Google Workspace Admin SDK Directory API との連携を有効にします。true
            の場合、Auth0
            はグループとグループメンバーシップを同期でき、グループのインバウンドディレクトリプロビジョニングをサポートします。デフォルトは
            false です。
          type: boolean
        api_enable_users:
          description: >-
            Google Workspace Admin SDK Directory API との連携を有効にします。true の場合、Auth0
            は拡張ユーザー属性（管理者ステータス、停止ステータス、グループメンバーシップ）を取得でき、インバウンドディレクトリプロビジョニング（SCIM）をサポートします。デフォルトは
            true です。
          type: boolean
        client_id:
          description: >-
            Google OAuth 2.0 クライアント ID。[Google Cloud
            Console](https://console.cloud.google.com/apis/credentials) の OAuth
            2.0 Client IDs セクションで確認できます。
          maxLength: 128
          minLength: 1
          type: string
        domain:
          description: ユーザーが所属している必要がある Google Workspace のプライマリドメイン名。
          maxLength: 1024
          minLength: 1
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかに一致すると、認証時にこの接続へ自動的にルーティングされます。
          items:
            description: ホームレルムディスカバリー用のドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        email:
          description: OAuth フローで `email` スコープをリクエストするかどうか。
          type: boolean
        ext_agreed_terms:
          description: Google Directory プロファイルから `agreedToTerms` フラグを取得します。
          type: boolean
        ext_groups:
          description: Google グループメンバーシップ情報による拡張を有効にします（`ext_groups_extended` に必要）。
          type: boolean
        ext_groups_extended:
          description: >-
            拡張グループエントリに `id`、`email`、`name`
            を含めるか（true）、グループ名のみとするか（false）を制御します。`ext_groups` が true
            の場合にのみ設定できます。
          type: boolean
        ext_is_admin:
          description: サインインしているユーザーの Google Directory 管理者フラグを取得します。
          type: boolean
        ext_is_suspended:
          description: サインインしているユーザーの Google Directory 停止フラグを取得します。
          type: boolean
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject6OptionsFederatedConnectionsAccessTokens
        handle_login_from_social:
          description: >-
            有効にすると、ソーシャルログインで Google アカウントを使用してサインインするユーザーのメールドメインが設定済みの
            tenant_domain または domain_aliases と一致する場合、そのユーザーはこの Google Workspace
            接続に自動的にルーティングされます。これにより、エンタープライズユーザーは汎用的な Google ソーシャルログインではなく、組織の
            Google Workspace
            アイデンティティプロバイダーを通じて認証されます。その結果、ディレクトリベースの属性にアクセスでき、組織のセキュリティポリシーを適用できます。新しい接続のデフォルトは
            true です。
          type: boolean
        icon_url:
          description: >-
            Auth0 のログインページに表示する接続アイコンの URL。HTTPS URL
            を指定できます。認証フローにおける視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        map_user_id_to_id:
          description: >-
            Auth0 が Google Workspace ユーザーの user_id
            を生成する方法を決定します。false（デフォルト）の場合はユーザーのメールアドレスが使用されます。true
            の場合は、メールアドレスが変更されても変わらない Google の固定数値ユーザー ID
            が代わりに使用されます。この設定は接続の作成時にのみ構成でき、その後は変更できません。
          type: boolean
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        profile:
          description: OAuth フローで `profile` スコープをリクエストするかどうか。
          type: boolean
        scope:
          description: >-
            デフォルトの `email profile` スコープに加えてリクエストする OAuth
            スコープ。`allow_setting_login_scopes` が true でない限り無視されます。
          items:
            maxLength: 255
            minLength: 1
            type: string
          minItems: 1
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject6OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: 認証時に組織を識別するために使用する Google Workspace のプライマリドメイン。
          maxLength: 255
          minLength: 1
          type: string
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject6OptionsUpstreamParams
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject6StrategyEnum:
      description: 接続戦略。
      enum:
        - google-apps
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject7Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject7ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject7Metadata:
      additionalProperties: false
      description: >-
        文字列値を持つオブジェクト形式で指定する、接続に関連付けられたメタデータ（最大 255 文字）。指定できるメタデータプロパティは最大 10
        個です。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject7Options:
      additionalProperties: false
      description: '''waad'' 接続のオプション'
      properties:
        api_enable_users:
          description: ユーザー API を有効にする
          type: boolean
        app_domain:
          description: >-
            Azure AD アプリケーションドメイン（例：'contoso.onmicrosoft.com'）。主に WS-Federation
            プロトコルおよび Azure AD v1 エンドポイントで使用されます。
          maxLength: 255
          minLength: 0
          type: string
        app_id:
          description: >-
            Azure ADアプリケーションのアプリケーションID URI（App ID URI）。Resource Owner
            PasswordフローでAzure AD
            v1を使用する場合に必要です。OAuthトークンリクエストで要求されるリソースを識別するために使用します。
          maxLength: 500
          minLength: 0
          type: string
        basic_profile:
          description: >-
            Azure
            ADから基本的なユーザープロファイル情報（name、email、given_name、family_name）を取得します。常に有効であり、必須です。認証時に取得される最小限のプロファイルデータを表します。
          type: boolean
        cert_rollover_notification:
          description: 有効期限が近づいている証明書に関する直近の通知のタイムスタンプ。
          format: date-time
          type: string
        client_id:
          description: >-
            アプリケーション登録時にアイデンティティプロバイダーから発行されるOAuth
            2.0クライアント識別子。この値は、アイデンティティプロバイダーに対するAuth0接続を識別します。
          maxLength: 100
          minLength: 0
          type: string
        domain:
          description: >-
            プライマリAzure ADテナントドメイン（例: 'contoso.onmicrosoft.com' または
            'contoso.com'）。
          maxLength: 512
          minLength: 0
          type: string
        domain_aliases:
          description: >-
            このAzure
            ADテナントに関連付けられた代替ドメイン名。複数の確認済みドメインのユーザーがこの接続を通じて認証できるようにします。ドメイン文字列の配列を指定できます。
          items:
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        ext_groups:
          description: >-
            有効（true）の場合、ユーザーのAzure ADセキュリティグループのメンバーシップを取得して保存します。Microsoft
            Graph APIの権限（Directory.Read.All）が必要です。max_groups_to_retrieveを設定できます。
          type: boolean
        ext_nested_groups:
          description: >-
            trueの場合、推移的なグループメンバーシップ（グループ内のグループ）を含め、ユーザーが所属するすべてのグループを保存します。false（デフォルト）の場合、直接のグループメンバーシップのみを含めます。
          type: boolean
        ext_profile:
          description: >-
            有効（true）の場合、Microsoft Graph APIを通じてAzure
            ADから拡張プロファイル属性（役職、部署、オフィスの所在地など）を取得します。Graph APIの権限が必要です。Azure AD
            v1、またはv2で明示的に有効化されている場合にのみ使用できます。
          type: boolean
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject7OptionsFederatedConnectionsAccessTokens
        granted:
          description: >-
            必要なAzure
            AD権限に対する管理者同意が付与されているかどうかを示します。OAuth認可フロー中にAuth0が管理する読み取り専用のステータスフィールドです。
          type: boolean
        icon_url:
          description: >-
            Auth0のログインページに表示する接続アイコンのURL。HTTPS
            URLを指定できます。認証フローにおける視覚的なブランディングに使用します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        identity_api:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject7OptionsIdentityApiEnum
        max_groups_to_retrieve:
          description: >-
            認証中にユーザーごとに取得するAzure
            ADグループの最大数。多数のグループに所属するユーザーでのパフォーマンス上の問題を防ぐのに役立ちます。ext_groupsが有効な場合にのみ適用されます。空欄のままにすると、プラットフォームのデフォルトが使用されます。
          maxLength: 10
          minLength: 0
          type: string
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        scope:
          description: >-
            認証中にAzure ADへ要求するOAuth 2.0スコープ。各スコープは権限を表します（例:
            'User.Read'、'Group.Read.All'）。Microsoft Identity Platform
            v2.0でのみ適用されます。利用可能なスコープについては、Microsoft Graph permissions
            referenceを参照してください。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject7OptionsSetUserRootAttributesEnum
        should_trust_email_verified_connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject7OptionsShouldTrustEmailVerifiedConnectionEnum
        tenantId:
          description: >-
            UUID形式のAzure ADテナントID。Azure AD
            organizationの一意の識別子です。有効な36文字のUUIDである必要があります。
          format: uuid
          maxLength: 36
          minLength: 36
          type: string
        tenant_domain:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject7OptionsTenantDomain
        thumbprints:
          description: >-
            SAML署名の検証に使用する証明書サムプリント（SHA-128/SHA-256/SHA-512の16進数ハッシュ）の配列。WS-Federationプロトコルで使用されます。サムプリントは最大20個です。各サムプリントは16進数文字列である必要があります。
          items:
            description: ADFSおよびAzure AD接続用の証明書サムプリント。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject7OptionsUpstreamParams
        useCommonEndpoint:
          description: >-
            有効（true）の場合、マルチテナント認証にAzure AD共通エンドポイントを使用します。任意のAzure AD
            organizationのユーザーがサインインできます。userid_attributeは'oid'ではなく'sub'に設定する必要があります。SCIMプロビジョニングでは使用できません。デフォルトはfalseです。
          type: boolean
        use_wsfed:
          description: >-
            WS-Federationプロトコルを使用するかどうかを示します。trueの場合はWS-Federationを使用し、falseの場合はOpenID
            Connectを使用します。
          type: boolean
        userid_attribute:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject7OptionsUseridAttributeEnum
        waad_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject7OptionsWaadProtocolEnum
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject7StrategyEnum:
      description: 接続の方式。
      enum:
        - waad
      type: string
    EventStreamCloudEventConnectionDeletedObject0Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject0ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault で使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
        cross_app_access:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject0Metadata:
      additionalProperties: false
      description: 接続に関連付ける、値が文字列（最大255文字）のオブジェクト形式のメタデータ。メタデータプロパティは最大10個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject0Options:
      additionalProperties: false
      description: '''oidc'' 接続のオプション'
      properties:
        attribute_map:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0OptionsAttributeMap
        authorization_endpoint:
          description: >-
            ユーザーが認証のためにリダイレクトされる、アイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントで OAuth 2.0 認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        client_id:
          description: >-
            アプリケーションの登録時にアイデンティティプロバイダーから発行される OAuth 2.0
            クライアント識別子。この値は、アイデンティティプロバイダーに対する Auth0 接続を識別します。
          maxLength: 255
          minLength: 0
          type: string
        connection_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0OptionsConnectionSettings
        discovery_url:
          description: >-
            アイデンティティプロバイダーの OIDC
            ディスカバリーエンドポイント（/.well-known/openid-configuration）の
            URL。指定され、oidc_metadata が空の場合、Auth0
            はエンドポイントやサポートされる機能を含むプロバイダー設定を自動的に取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかに一致すると、認証時にこの接続へ自動的にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        dpop_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0OptionsDpopSigningAlgEnum
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0OptionsFederatedConnectionsAccessTokens
        icon_url:
          description: 表示するアイコンの HTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        id_token_session_expiry_supported:
          description: >-
            アイデンティティプロバイダーが id_token によるセッション有効期限の設定をサポートしているかどうかを示します。true
            の場合、システムは id_token の session_expiry クレームを使用してセッションの有効期限を判断します。
          type: boolean
        id_token_signed_response_algs:
          description: ID トークンの検証に使用できるアルゴリズムのリスト。strategy=oidc または okta の場合に適用されます。
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventConnectionDeletedObject0OptionsIdTokenSignedResponseAlgsItemEnum
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子
            URL（例：https://accounts.google.com）。アイデンティティプロバイダーから発行された ID トークンの
            'iss' クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存してはならないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存してはならないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0OptionsOidcMetadata
        schema_version:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0OptionsSchemaVersionEnum
        scope:
          description: >-
            認可時に要求する、スペース区切りの OAuth 2.0 スコープのリスト。'openid'（OIDC
            仕様で必須）を含める必要があります。一般的な値：'openid profile
            email'。追加のスコープはアイデンティティプロバイダーによって異なります。
          maxLength: 255
          minLength: 6
          type: string
        send_back_channel_nonce:
          description: >-
            true かつ type が 'back_channel' の場合、リプレイ攻撃を防ぐために認可リクエストに暗号学的 nonce
            を含めます。アイデンティティプロバイダーは、検証のためにこの nonce を ID トークンに含める必要があります。
          type: boolean
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: テナントドメイン
          maxLength: 255
          minLength: 1
          type: string
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換する、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL。有効な
            HTTPS URL である必要があります。認可コードフローでは必須ですが、インプリシットフローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_method:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0OptionsTokenEndpointAuthMethodEnum
        token_endpoint_auth_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0OptionsTokenEndpointAuthSigningAlgEnum
        token_endpoint_jwtca_aud_format:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0OptionsTokenEndpointJwtcaAudFormatEnum
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0OptionsTypeEnum
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0OptionsUpstreamParams
        useOauthSpecScope:
          description: >-
            true
            の場合、アイデンティティプロバイダーの認可エンドポイントの呼び出し時に、カンマ区切りではなくスペース区切りのスコープ（OAuth 2.0
            仕様準拠）を使用します。connection_scope
            パラメータ使用時にのみ該当します。https://auth0.com/docs/authenticate/identity-providers/adding-scopes-for-an-external-idp#pass-scopes-to-authorize-endpoint
            を参照してください。
          type: boolean
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの任意の URL。属性マッピングとともに設定すると、Auth0
            はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionDeletedObject0StrategyEnum:
      description: 接続の方式。
      enum:
        - oidc
      type: string
    EventStreamCloudEventConnectionDeletedObject1Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject1ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject1Metadata:
      additionalProperties: false
      description: 文字列値（最大255文字）を持つオブジェクト形式で、接続に関連付けるメタデータ。メタデータプロパティは最大10個まで使用できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject1Options:
      additionalProperties: false
      description: '''okta'' 接続のオプション'
      properties:
        attribute_map:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1OptionsAttributeMap
        authorization_endpoint:
          description: >-
            ユーザーが認証のためにリダイレクトされる、アイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントは OAuth 2.0 認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        client_id:
          description: >-
            アプリケーション登録時にアイデンティティプロバイダーから発行される OAuth 2.0
            クライアント識別子。この値は、アイデンティティプロバイダーに対する Auth0 接続を識別します。
          maxLength: 255
          minLength: 0
          type: string
        connection_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1OptionsConnectionSettings
        domain:
          description: >-
            Okta 組織のドメイン（例：dev-123456.okta.com）。スキームや末尾のバックスラッシュを含めず、Okta
            サーバーのドメインのみを指定してください。ディスカバリーは、connection.options.oidc_metadata
            が空で、ドメインが指定されている場合にのみ実行されます。
          maxLength: 255
          minLength: 4
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかに一致すると、認証時にこの接続へ自動的にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        dpop_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1OptionsDpopSigningAlgEnum
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1OptionsFederatedConnectionsAccessTokens
        icon_url:
          description: 表示するアイコンの HTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        id_token_session_expiry_supported:
          description: >-
            アイデンティティプロバイダーが id_token によるセッション有効期限の管理をサポートしているかどうかを示します。true
            の場合、システムは id_token 内の session_expiry クレームを使用してセッションの有効期限を判定します。
          type: boolean
        id_token_signed_response_algs:
          description: ID トークンの検証に使用できるアルゴリズムの一覧。strategy=oidc または okta の場合に適用されます。
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventConnectionDeletedObject1OptionsIdTokenSignedResponseAlgsItemEnum
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子
            URL（例：https://accounts.google.com）。アイデンティティプロバイダーからの ID トークン内の 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1OptionsOidcMetadata
        schema_version:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1OptionsSchemaVersionEnum
        scope:
          description: >-
            認可時にリクエストする、スペース区切りの OAuth 2.0 スコープ一覧。'openid'（OIDC
            仕様で必須）を含める必要があります。一般的な値：'openid profile
            email'。追加のスコープはアイデンティティプロバイダーによって異なります。
          maxLength: 255
          minLength: 6
          type: string
        send_back_channel_nonce:
          description: >-
            true で、type が 'back_channel' の場合、リプレイ攻撃を防ぐために認可リクエストに暗号学的 nonce
            を含めます。アイデンティティプロバイダーは、検証のためにこの nonce を ID トークンに含める必要があります。
          type: boolean
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: テナントドメイン
          maxLength: 255
          minLength: 1
          type: string
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換する、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL。有効な
            HTTPS URL である必要があります。認可コードフローでは必須ですが、インプリシットフローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_method:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1OptionsTokenEndpointAuthMethodEnum
        token_endpoint_auth_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1OptionsTokenEndpointAuthSigningAlgEnum
        token_endpoint_jwtca_aud_format:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1OptionsTokenEndpointJwtcaAudFormatEnum
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1OptionsTypeEnum
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1OptionsUpstreamParams
        useOauthSpecScope:
          description: >-
            true
            の場合、アイデンティティプロバイダーの認可エンドポイントの呼び出し時に、カンマ区切りではなくスペース区切りのスコープ（OAuth 2.0
            仕様準拠）を使用します。connection_scope
            パラメータ使用時にのみ該当します。https://auth0.com/docs/authenticate/identity-providers/adding-scopes-for-an-external-idp#pass-scopes-to-authorize-endpoint
            を参照してください。
          type: boolean
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの任意の URL。属性マッピングとともに設定すると、Auth0
            はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionDeletedObject1StrategyEnum:
      description: 接続の方式。
      enum:
        - okta
      type: string
    EventStreamCloudEventConnectionDeletedObject2Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject2ConnectedAccounts:
      additionalProperties: false
      description: Connected Accounts および Token Vault で使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject2Metadata:
      additionalProperties: false
      description: 接続に関連付けられた、文字列値を持つオブジェクト形式のメタデータ（各値は最大255文字）。メタデータプロパティは最大10個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject2Options:
      additionalProperties: false
      description: '''samlp'' 接続のオプション'
      properties:
        assertion_decryption_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2OptionsAssertionDecryptionSettings
        cert:
          description: >-
            アイデンティティプロバイダーの .der 形式の X.509 署名証明書。SAML
            レスポンスおよびアサーションの署名検証に使用されます。signingCert の代替として後方互換性のために保持されています。代わりに
            signingCert を使用することをお勧めします。
          maxLength: 10240
          minLength: 1
          type: string
        cert_rollover_notification:
          description: 証明書の有効期限切れが近いことを最後に通知した日時。
          format: date-time
          type: string
        debug:
          description: >-
            true の場合、SAML リクエスト／レスポンスの詳細を含む 'w'（警告）イベントをテナントログに出力し、詳細な SAML
            デバッグを有効にします。警告:
            機密性の高いユーザー情報（PII、認証情報）が公開される可能性があるため、デバッグ目的で一時的にのみ有効にしてください。
          type: boolean
        deflate:
          description: >-
            true の場合、HTTP-Redirect バインディング経由で送信される SAML リクエストの DEFLATE
            圧縮を有効にします。
          type: boolean
        destinationUrl:
          description: >-
            Auth0 が SAML 認証リクエストを送信する URL（アイデンティティプロバイダーの SSO URL）。有効な HTTPS URL
            である必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        digestAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2OptionsDigestAlgorithmEnum
        disableFieldsMapFix:
          description: >-
            true の場合、SAML 属性をユーザープロファイルのフィールドに正しくマッピングするための fieldsMap
            設定の自動修正を無効にします。デフォルトは false（fieldsMap の修正は有効）です。
          type: boolean
        disableSignout:
          description: >-
            true の場合、ユーザーのサインアウト時にアイデンティティプロバイダーへ SAML
            ログアウトリクエスト（SingleLogoutService）を送信しないようにします。ユーザーは Auth0
            からログアウトされますが、アイデンティティプロバイダーにはログインしたままです。デフォルトは
            false（フェデレーテッドログアウトが有効）です。
          type: boolean
        discovery_url:
          description: >-
            アイデンティティプロバイダーの OIDC
            ディスカバリーエンドポイント（/.well-known/openid-configuration）の
            URL。指定され、oidc_metadata が空の場合、Auth0
            はエンドポイントやサポート機能を含むプロバイダー設定を自動的に取得します。Cross App Access で使用します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        domain_aliases:
          description: 接続のドメインエイリアス
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            SAML サービスプロバイダーのエンティティ識別子（発行者）。指定しない場合、デフォルトは
            'urn:auth0:{tenant}:{connection}' です。この値は、アイデンティティプロバイダーに送信される SAML
            AuthnRequest メッセージに含まれます。
          maxLength: 128
          minLength: 1
          type: string
        expires:
          description: アイデンティティプロバイダーの署名証明書の有効期限を示す ISO 8601 形式の日時。
          format: date-time
          type: string
        fieldsMap:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2OptionsFieldsMap
        fieldsMapJsonRaw:
          description: fieldsMap 設定の生の JSON 文字列表現。fieldsMap オブジェクトの保存および取得に内部的に使用します。
          maxLength: 8192
          minLength: 0
          type: string
        global_token_revocation_jwt_iss:
          description: >-
            アイデンティティプロバイダーからのグローバルトークン失効リクエストに含まれる JWT の
            'iss'（発行者）クレームに期待される値。設定すると、Auth0 はトークン失効を処理する前に、JWT
            の発行者がこの値と一致することを検証します。global_token_revocation_jwt_sub と併用する必要があります。
          maxLength: 1024
          minLength: 1
          type: string
        global_token_revocation_jwt_sub:
          description: >-
            アイデンティティプロバイダーからのグローバルトークン失効リクエストに含まれる JWT の
            'sub'（サブジェクト）クレームに期待される値。設定すると、Auth0 はトークン失効を処理する前に、JWT
            のサブジェクトがこの値と一致することを検証します。global_token_revocation_jwt_iss
            と併用する必要があります。
          maxLength: 1024
          minLength: 1
          type: string
        icon_url:
          description: >-
            Auth0 ログインページに表示する接続アイコンの URL。HTTPS URL
            のみ指定できます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        idpinitiated:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2OptionsIdpinitiated
        metadataUrl:
          description: >-
            アイデンティティプロバイダーのSAMLメタデータドキュメントのHTTPS
            URL。指定すると、Auth0はメタデータを自動的に取得・解析し、signInEndpoint、signOutEndpoint、signingCert、signSAMLRequest、protocolBindingを抽出します。metadataUrlとmetadataXmlは併用せず、いずれか一方を使用してください。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2OptionsOidcMetadata
        protocolBinding:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2OptionsProtocolBindingEnum
        recipientUrl:
          description: >-
            Auth0がSAML認証リクエストを送信するURL（アイデンティティプロバイダーのSSO URL）。有効なHTTPS
            URLである必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        requestTemplate:
          description: >-
            SAML認証リクエスト用のカスタムXMLテンプレート。@@variableName@@構文による変数置換をサポートします。指定しない場合は、デフォルトのSAML
            AuthnRequestテンプレートを使用します。https://auth0.com/docs/authenticate/protocols/saml/saml-sso-integrations/configure-auth0-saml-service-provider#customize-the-request-template
            を参照してください。
          maxLength: 10240
          minLength: 1
          type: string
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: >-
            Auth0 が SAML 認証リクエストを送信するアイデンティティプロバイダーの SAML SingleSignOnService
            エンドポイント URL。この SAML 接続の主要なログイン URL です。metadataUrl または metadataXml
            を使用する場合を除き、必須です。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signOutEndpoint:
          description: >-
            フェデレーションログアウトのログアウトリクエストをAuth0が送信する、アイデンティティプロバイダーのSAML
            SingleLogoutServiceエンドポイントURL。指定しない場合はsignInEndpointが使用されます。disableSignoutがfalseの場合にのみ使用されます。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signSAMLRequest:
          description: >-
            true の場合、Auth0 は接続の署名鍵を使用して SAML
            認証リクエストに署名します。署名にはリクエストのダイジェストが含まれ、アイデンティティプロバイダーによって検証されます。デフォルトは
            false（署名なしのリクエスト）です。
          type: boolean
        signatureAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2OptionsSignatureAlgorithmEnum
        signingCert:
          description: >-
            SAML レスポンスおよびアサーションの署名検証に使用する、アイデンティティプロバイダーの Base64 エンコード済み X.509
            証明書。証明書はデコードされ、暗号学的な署名検証に使用されます。
          maxLength: 10240
          minLength: 1
          type: string
        subject:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2OptionsSubject
        tenant_domain:
          description: >-
            SAML 接続でログインエンドポイント URL
            の構築に使用するテナントドメイン。単一テナントの場合は文字列、マルチテナントの検証の場合は文字列の配列を指定できます。
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            アイデンティティプロバイダーの署名証明書の SHA-1 サムプリント（フィンガープリント）。接続の作成時に signingCert
            から自動的に計算されます。各サムプリントは40文字の16進数文字列である必要があります。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2OptionsUpstreamParams
        user_id_attribute:
          description: >-
            一意のユーザー識別子として使用するカスタムSAMLアサーション属性。指定すると、この属性が最優先でデフォルトのuser_idマッピングリストの先頭に追加されます。文字列（単一のSAML属性名）を指定できます。
          maxLength: 2396
          minLength: 1
          type: string
      type: object
    EventStreamCloudEventConnectionDeletedObject2StrategyEnum:
      description: 接続の方式。
      enum:
        - samlp
      type: string
    EventStreamCloudEventConnectionDeletedObject3Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject3ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよびToken Vaultに使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject3Metadata:
      additionalProperties: false
      description: 接続に関連付けるメタデータ。各値が文字列（最大255文字）のオブジェクトとして指定します。メタデータプロパティは最大10個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject3Options:
      additionalProperties: false
      description: '''pingfederate''接続のオプション'
      properties:
        assertion_decryption_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject3OptionsAssertionDecryptionSettings
        cert:
          description: >-
            アイデンティティプロバイダーの .der 形式の X.509
            署名証明書。SAMLレスポンスおよびアサーションの署名検証に使用します。signingCert
            の代替として後方互換性のために維持されています。代わりに signingCert を使用してください。
          maxLength: 10240
          minLength: 1
          type: string
        cert_rollover_notification:
          description: まもなく有効期限が切れる証明書に関する最後の通知のタイムスタンプ。
          format: date-time
          type: string
        digestAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject3OptionsDigestAlgorithmEnum
        domain_aliases:
          description: 接続のドメインエイリアス
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            SAMLサービスプロバイダーのエンティティ識別子（Issuer）。指定しない場合のデフォルトは
            'urn:auth0:{tenant}:{connection}' です。この値は、アイデンティティプロバイダーに送信する SAML
            AuthnRequest メッセージに含まれます。
          maxLength: 128
          minLength: 1
          type: string
        expires:
          description: アイデンティティプロバイダーの署名証明書の有効期限を示す ISO 8601 形式の日時。
          format: date-time
          type: string
        icon_url:
          description: >-
            Auth0ログインページに表示する接続アイコンの URL。HTTPS URL
            を指定できます。認証フローにおける視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        idpinitiated:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject3OptionsIdpinitiated
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存しないユーザーフィールドの配列
            (https://auth0.com/docs/security/data-security/denylist)
          items:
            description: Auth0データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        pingFederateBaseUrl:
          description: 接続の作成に使用する情報を返す、PingFederate 提供の URL
          format: uri
          maxLength: 256
          minLength: 8
          type: string
        protocolBinding:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject3OptionsProtocolBindingEnum
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject3OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: >-
            Auth0 が SAML認証リクエストを送信するアイデンティティプロバイダーの SAML SingleSignOnService
            エンドポイント URL。SAML接続の主要なログイン URL です。metadataUrl または metadataXml
            を使用する場合を除き、必須です。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signSAMLRequest:
          description: >-
            true の場合、Auth0 は接続の署名鍵を使用して
            SAML認証リクエストに署名します。署名にはリクエストのダイジェストが含まれ、アイデンティティプロバイダーによって検証されます。デフォルトは
            false（署名なしのリクエスト）です。
          type: boolean
        signatureAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject3OptionsSignatureAlgorithmEnum
        signingCert:
          description: >-
            SAMLレスポンスおよびアサーションの署名検証に使用する、アイデンティティプロバイダーの Base64 エンコード済み X.509
            証明書。証明書はデコードされ、暗号学的な署名検証に使用されます。
          maxLength: 10240
          minLength: 1
          type: string
        subject:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject3OptionsSubject
        tenant_domain:
          description: >-
            SAML接続でログイン エンドポイント URL
            の構築に使用するテナントドメイン。シングルテナントでは文字列、マルチテナントの検証では文字列の配列を指定できます。
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            アイデンティティプロバイダーの署名証明書の SHA-1 サムプリント（フィンガープリント）。接続の作成時に signingCert
            から自動的に計算されます。各サムプリントは 40 文字の16進数文字列である必要があります。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject3OptionsUpstreamParams
      required:
        - pingFederateBaseUrl
      type: object
    EventStreamCloudEventConnectionDeletedObject3StrategyEnum:
      description: 接続の方式。
      enum:
        - pingfederate
      type: string
    EventStreamCloudEventConnectionDeletedObject4Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の用途を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject4ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault で使用する接続の用途を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject4Metadata:
      additionalProperties: false
      description: 接続に関連付ける、文字列値（最大 255 文字）を持つオブジェクト形式のメタデータ。指定できるメタデータプロパティは最大 10 個です。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject4Options:
      additionalProperties: false
      description: '''adfs'' 接続のオプション'
      properties:
        adfs_server:
          description: >-
            WS-Fed エンドポイントと証明書の検出に使用する、ADFS フェデレーションメタデータのホストまたは XML
            URL。adfs_server と fedMetadataXml のいずれも指定されていない場合はエラーになります。
          maxLength: 2048
          minLength: 0
          type: string
        cert_rollover_notification:
          description: まもなく有効期限が切れる証明書に関する最終通知のタイムスタンプ。
          format: date-time
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかに一致すると、認証時にこの接続へ自動的にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            ADFS サービスプロバイダーのエンティティ識別子（Issuer）。指定しない場合、デフォルトは
            'urn:auth0:{tenant}:{connection}' です。
          maxLength: 128
          minLength: 1
          type: string
        fedMetadataXml:
          description: '''adfs_server'' の代替として使用するインライン XML。''adfs_server'' と同時に設定することはできません。'
          maxLength: 102400
          minLength: 1
          type: string
        icon_url:
          description: >-
            Auth0 ログインページに表示される接続アイコンの URL。HTTPS URL
            を指定できます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        prev_thumbprints:
          description: >-
            SAML 署名の検証に使用する証明書サムプリント（SHA-128/SHA-256/SHA-512 の 16
            進ハッシュ）の配列。WS-Federation プロトコルで使用します。サムプリントは最大 20 個まで指定できます。各サムプリントは
            16 進数文字列である必要があります。
          items:
            description: ADFS および Azure AD 接続用の証明書サムプリント。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject4OptionsSetUserRootAttributesEnum
        should_trust_email_verified_connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject4OptionsShouldTrustEmailVerifiedConnectionEnum
        signInEndpoint:
          description: メタデータから検出された、または明示的に指定された Passive Requestor（WS-Fed）のサインインエンドポイント。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        tenant_domain:
          description: Tenant Domain
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            SAML 署名の検証に使用する証明書サムプリント（SHA-128/SHA-256/SHA-512 の 16
            進ハッシュ）の配列。WS-Federation プロトコルで使用します。サムプリントは最大 20 個まで指定できます。各サムプリントは
            16 進数文字列である必要があります。
          items:
            description: ADFS および Azure AD 接続用の証明書サムプリント。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject4OptionsUpstreamParams
        user_id_attribute:
          description: >-
            一意のユーザー識別子として使用するカスタム ADFS クレーム。指定すると、この属性が最優先でデフォルトの user_id
            マッピングリストの先頭に追加されます。文字列（単一の ADFS クレーム名）を指定できます。
          maxLength: 128
          minLength: 1
          type: string
      type: object
    EventStreamCloudEventConnectionDeletedObject4StrategyEnum:
      description: 接続の方式。
      enum:
        - adfs
      type: string
    EventStreamCloudEventConnectionDeletedObject5Authentication:
      additionalProperties: false
      description: ログイン時の認証で使用する接続の用途を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject5ConnectedAccounts:
      additionalProperties: false
      description: Connected Accounts および Token Vault で使用する接続の用途を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject5Metadata:
      additionalProperties: false
      description: 接続に関連付ける、文字列値（最大255文字）を持つオブジェクト形式のメタデータ。指定できるメタデータプロパティは最大10件です。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject5Options:
      additionalProperties: false
      description: 「ad」接続のオプション
      properties:
        agentIP:
          description: >-
            Kerberos 認証の認証リクエストが企業ネットワークから送信されていることを検証するために使用する AD Connector
            エージェントの IP アドレス（AD Connector エージェントによって管理）。
          maxLength: 39
          minLength: 2
          type: string
        agentMode:
          description: >-
            有効にすると、WS-Federation プロトコルではなく、AD Connector
            エージェント経由で直接ユーザー名とパスワードによる認証を行えるようになります（AD Connector エージェントによって管理）。
          type: boolean
        agentVersion:
          description: >-
            インストールされている AD Connector エージェントソフトウェアのバージョン識別子（AD Connector
            エージェントによって管理）。
          maxLength: 12
          minLength: 5
          type: string
        brute_force_protection:
          description: >-
            クレデンシャルスタッフィング攻撃を防止するため、Auth0
            のブルートフォース対策を有効にします。有効にすると、失敗が繰り返された後に特定の IP
            アドレスから行われる不審なログイン試行をブロックします。
          type: boolean
        certAuth:
          description: AD Connector のクライアント SSL 証明書認証を有効にし、サインインエンドポイントで HTTPS を必須にします
          type: boolean
        certs:
          description: >-
            AD アイデンティティプロバイダーからの SAML 署名の検証に使用する PEM 形式の X.509 証明書の配列（AD
            Connector エージェントによって管理）。
          items:
            maxLength: 3072
            minLength: 256
            type: string
          minItems: 0
          type: array
        disable_cache:
          description: 有効にすると、ディレクトリに対するリアルタイム検証を確実にするため、AD Connector の認証結果をキャッシュしません
          type: boolean
        disable_self_service_change_password:
          description: >-
            有効にすると、ユーザーによるセルフサービスのパスワードリセット開始を防ぐため、ログインページの「パスワードを忘れた場合」リンクを非表示にします
          type: boolean
        domain_aliases:
          description: >-
            識別子優先の認証フローでユーザーをこの AD
            接続にルーティングするために使用できるドメイン名のリスト。各ドメインは、256文字以内の有効な DNS 名である必要があります
          items:
            description: ホームレルムディスカバリーで使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        icon_url:
          description: 表示するアイコンの HTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        ips:
          description: >-
            Kerberos 認証または証明書認証の認証リクエストが企業ネットワークから送信されているかどうかを判定するために使用する、CIDR
            表記の IP アドレス範囲の配列。
          items:
            maxLength: 39
            minLength: 2
            type: string
          minItems: 0
          type: array
        kerberos:
          description: >-
            ユーザーが企業ネットワークの IP アドレス範囲内から認証する際に、シームレスな SSO を実現する Windows
            統合認証（Kerberos）を有効にします
          type: boolean
        kerberos_only:
          description: true の場合、接続で使用する認証を Kerberos のみに制限し、ユーザー名/パスワードへのフォールバックを無効にします。
          type: boolean
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject5OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: AD-LDAP Connector エージェントのサインインエンドポイントの種類（AD Connector エージェントによって管理）。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        tenant_domain:
          description: HRD およびディスカバリーで使用するプライマリ AD ドメインヒント。
          format: hostname
          maxLength: 512
          minLength: 1
          type: string
        thumbprints:
          description: >-
            署名の検証に使用する証明書の SHA-1 サムプリントの配列。AD Connector エージェントを使用する場合は Auth0
            によって管理されます。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject5OptionsUpstreamParams
      type: object
    EventStreamCloudEventConnectionDeletedObject5StrategyEnum:
      description: 接続の方式。
      enum:
        - ad
      type: string
    EventStreamCloudEventConnectionDeletedObject6Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject6ConnectedAccounts:
      additionalProperties: false
      description: Connected Accounts および Token Vault で使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject6Metadata:
      additionalProperties: false
      description: 接続に関連付ける、文字列値を持つオブジェクト形式のメタデータです（最大255文字）。指定できるメタデータプロパティは最大10個です。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject6Options:
      additionalProperties: false
      description: 「google-apps」接続のオプション
      properties:
        admin_access_token_expiresin:
          description: >-
            ISO 8601 形式の `admin_access_token` の有効期限を示すタイムスタンプ。Auth0
            はこの値を使用して、トークンを更新するタイミングを判断します。
          format: date-time
          type: string
        allow_setting_login_scopes:
          description: >-
            true の場合、ユーザーのログイン時に要求する OAuth スコープをカスタマイズできます。カスタムスコープは、必須の email
            スコープおよび profile スコープに追加されます。false または未指定の場合は、デフォルトの email スコープおよび
            profile スコープのみが使用されます。Token Vault または Connected Accounts
            機能を有効にすると、このプロパティも自動的に有効になります。
          type: boolean
        api_enable_groups:
          description: >-
            グループ向けの Google Workspace Admin SDK Directory API との連携を有効にします。true
            の場合、Auth0
            はグループとグループメンバーシップを同期でき、グループのインバウンドディレクトリプロビジョニングをサポートします。デフォルトは
            false です。
          type: boolean
        api_enable_users:
          description: >-
            Google Workspace Admin SDK Directory API との連携を有効にします。true の場合、Auth0
            は拡張ユーザー属性（管理者ステータス、一時停止ステータス、グループメンバーシップ）を取得でき、インバウンドディレクトリプロビジョニング（SCIM）をサポートします。デフォルトは
            true です。
          type: boolean
        client_id:
          description: >-
            Google OAuth 2.0 クライアント ID。[Google Cloud
            Console](https://console.cloud.google.com/apis/credentials) の OAuth
            2.0 Client IDs セクションで確認できます。
          maxLength: 128
          minLength: 1
          type: string
        domain:
          description: ユーザーが所属している必要がある Google Workspace のプライマリドメイン名。
          maxLength: 1024
          minLength: 1
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）でこの接続に関連付けるメールドメインです。ユーザーのメールアドレスがこれらのドメインのいずれかに一致すると、認証時にこの接続へ自動的にルーティングされます。
          items:
            description: ホームレルムディスカバリーで使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        email:
          description: OAuth フローで `email` スコープを要求するかどうか。
          type: boolean
        ext_agreed_terms:
          description: Google Directory のプロファイルから `agreedToTerms` フラグを取得します。
          type: boolean
        ext_groups:
          description: Google グループメンバーシップによる属性拡張を有効にします（`ext_groups_extended` に必要）。
          type: boolean
        ext_groups_extended:
          description: >-
            拡張されたグループエントリに `id`、`email`、`name`
            を含めるか（true）、グループ名のみを含めるか（false）を制御します。`ext_groups` が true
            の場合にのみ設定できます。
          type: boolean
        ext_is_admin:
          description: サインインするユーザーの Google Directory にある管理者フラグを取得します。
          type: boolean
        ext_is_suspended:
          description: サインインするユーザーの Google Directory にある一時停止フラグを取得します。
          type: boolean
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject6OptionsFederatedConnectionsAccessTokens
        handle_login_from_social:
          description: >-
            有効にすると、ソーシャルログインで Google アカウントを使用してサインインするユーザーのメールドメインが設定済みの
            tenant_domain または domain_aliases に一致する場合、そのユーザーはこの Google Workspace
            接続に自動的にルーティングされます。これにより、企業ユーザーは汎用的な Google ソーシャルログインではなく、組織の Google
            Workspace
            アイデンティティプロバイダーを通じて認証されます。ディレクトリベースの属性にアクセスできるほか、組織のセキュリティポリシーを適用できます。新しい接続のデフォルトは
            true です。
          type: boolean
        icon_url:
          description: >-
            Auth0 のログインページに表示される接続アイコンの URL。HTTPS URL
            を指定できます。認証フローで視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        map_user_id_to_id:
          description: >-
            Auth0 が Google Workspace ユーザーの user_id
            を生成する方法を決定します。false（デフォルト）の場合はユーザーのメールアドレスが使用されます。true
            の場合は、メールアドレスが変更されても変わらない Google の固定数値ユーザー ID
            が代わりに使用されます。この設定は接続の作成時にのみ指定でき、後から変更することはできません。
          type: boolean
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        profile:
          description: OAuth フローで `profile` スコープを要求するかどうか。
          type: boolean
        scope:
          description: >-
            デフォルトの `email profile` スコープに加えて要求する OAuth
            スコープ。`allow_setting_login_scopes` が true でない限り無視されます。
          items:
            maxLength: 255
            minLength: 1
            type: string
          minItems: 1
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject6OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: 認証時に組織を識別するために使用する Google Workspace のプライマリドメイン。
          maxLength: 255
          minLength: 1
          type: string
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject6OptionsUpstreamParams
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionDeletedObject6StrategyEnum:
      description: 接続の方式。
      enum:
        - google-apps
      type: string
    EventStreamCloudEventConnectionDeletedObject7Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject7ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject7Metadata:
      additionalProperties: false
      description: >-
        文字列値を持つオブジェクト形式で指定する、接続に関連付けられたメタデータ（各値は最大 255 文字）。メタデータプロパティは最大 10
        個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject7Options:
      additionalProperties: false
      description: '''waad'' 接続のオプション'
      properties:
        api_enable_users:
          description: Users API を有効にする
          type: boolean
        app_domain:
          description: >-
            Azure AD アプリケーションのドメイン（例：'contoso.onmicrosoft.com'）。主に WS-Federation
            プロトコルおよび Azure AD v1 エンドポイントで使用されます。
          maxLength: 255
          minLength: 0
          type: string
        app_id:
          description: >-
            Azure AD アプリケーションの Application ID URI（App ID URI）。Resource Owner
            Password フローで Azure AD v1 を使用する場合に必要です。OAuth
            トークンリクエストで要求するリソースを識別するために使用されます。
          maxLength: 500
          minLength: 0
          type: string
        basic_profile:
          description: >-
            Azure AD
            から基本的なユーザープロファイル情報（name、email、given_name、family_name）を取得します。常に有効かつ必須であり、認証時に取得される最小限のプロファイルデータを表します。
          type: boolean
        cert_rollover_notification:
          description: 有効期限が近い証明書に関する最終通知のタイムスタンプ。
          format: date-time
          type: string
        client_id:
          description: >-
            アプリケーション登録時にアイデンティティプロバイダーから発行される OAuth 2.0
            クライアント識別子。この値は、アイデンティティプロバイダーに対する Auth0 接続を識別します。
          maxLength: 100
          minLength: 0
          type: string
        domain:
          description: >-
            プライマリ Azure AD テナントドメイン（例：'contoso.onmicrosoft.com' または
            'contoso.com'）。
          maxLength: 512
          minLength: 0
          type: string
        domain_aliases:
          description: >-
            この Azure AD
            テナントに関連付けられた代替ドメイン名。複数の検証済みドメインのユーザーがこの接続を介して認証できるようにします。ドメイン文字列の配列を指定できます。
          items:
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        ext_groups:
          description: >-
            有効（true）の場合、ユーザーの Azure AD セキュリティグループメンバーシップを取得して保存します。Microsoft
            Graph API の権限（Directory.Read.All）が必要です。max_groups_to_retrieve
            を設定できます。
          type: boolean
        ext_nested_groups:
          description: >-
            true
            の場合、推移的なグループメンバーシップ（グループに含まれるグループ）を含め、ユーザーが所属するすべてのグループを保存します。false（デフォルト）の場合、直接のグループメンバーシップのみが含まれます。
          type: boolean
        ext_profile:
          description: >-
            有効（true）の場合、Microsoft Graph API を介して Azure AD
            から拡張プロファイル属性（役職、部署、オフィスの所在地など）を取得します。Graph API の権限が必要です。Azure AD
            v1、または v2 で明示的に有効化されている場合にのみ使用できます。
          type: boolean
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject7OptionsFederatedConnectionsAccessTokens
        granted:
          description: >-
            必要な Azure AD 権限に対する管理者の同意が付与されているかどうかを示します。OAuth 認可フロー中に Auth0
            が管理する読み取り専用のステータスフィールドです。
          type: boolean
        icon_url:
          description: >-
            Auth0 のログインページに表示される接続アイコンの URL。HTTPS URL
            を指定できます。認証フローで視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        identity_api:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject7OptionsIdentityApiEnum
        max_groups_to_retrieve:
          description: >-
            認証時にユーザーごとに取得する Azure AD
            グループの最大数。多数のグループに所属するユーザーでのパフォーマンス上の問題を防ぐのに役立ちます。ext_groups
            が有効な場合にのみ適用されます。空欄のままにすると、プラットフォームのデフォルトが使用されます。
          maxLength: 10
          minLength: 0
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        scope:
          description: >-
            認証時に Azure AD に要求する OAuth 2.0
            スコープ。各スコープは権限を表します（例：'User.Read'、'Group.Read.All'）。Microsoft
            Identity Platform v2.0 でのみ適用されます。使用可能なスコープについては、Microsoft Graph
            の権限リファレンスを参照してください。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject7OptionsSetUserRootAttributesEnum
        should_trust_email_verified_connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject7OptionsShouldTrustEmailVerifiedConnectionEnum
        tenantId:
          description: >-
            UUID 形式の Azure AD テナント ID。Azure AD 組織の一意の識別子です。有効な 36 文字の UUID
            である必要があります。
          format: uuid
          maxLength: 36
          minLength: 36
          type: string
        tenant_domain:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject7OptionsTenantDomain
        thumbprints:
          description: >-
            SAML 署名の検証に使用する証明書サムプリント（SHA-128/SHA-256/SHA-512 の 16
            進ハッシュ）の配列。WS-Federation プロトコルで使用されます。サムプリントは最大 20 個まで指定できます。各サムプリントは
            16 進文字列である必要があります。
          items:
            description: ADFS および Azure AD 接続用の証明書サムプリント。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject7OptionsUpstreamParams
        useCommonEndpoint:
          description: >-
            有効（true）の場合、マルチテナント認証に Azure AD の共通エンドポイントを使用します。任意の Azure AD
            organization のユーザーがサインインできます。userid_attribute は 'oid' ではなく 'sub'
            に設定する必要があります。SCIM プロビジョニングとは併用できません。デフォルトは false です。
          type: boolean
        use_wsfed:
          description: >-
            WS-Federation プロトコルを使用するかどうかを示します。true の場合は WS-Federation、false の場合は
            OpenID Connect を使用します。
          type: boolean
        userid_attribute:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject7OptionsUseridAttributeEnum
        waad_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject7OptionsWaadProtocolEnum
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionDeletedObject7StrategyEnum:
      description: 接続の方式。
      enum:
        - waad
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject0Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject0ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
        cross_app_access:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject0Metadata:
      additionalProperties: false
      description: >-
        文字列値（最大 255 文字）を持つオブジェクト形式で指定する、接続に関連付けられたメタデータ。メタデータプロパティは最大 10
        個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject0Options:
      additionalProperties: false
      description: '''oidc'' 接続のオプション'
      properties:
        attribute_map:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0OptionsAttributeMap
        authorization_endpoint:
          description: >-
            認証のためにユーザーをリダイレクトする、アイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントで OAuth 2.0 認可コードフローが開始されます。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        client_id:
          description: >-
            アプリケーション登録時にアイデンティティプロバイダーから発行される OAuth 2.0
            クライアント識別子。この値は、アイデンティティプロバイダーに対する Auth0 接続を識別します。
          maxLength: 255
          minLength: 0
          type: string
        connection_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0OptionsConnectionSettings
        discovery_url:
          description: >-
            アイデンティティプロバイダーの OIDC Discovery
            エンドポイント（/.well-known/openid-configuration）の URL。指定され、oidc_metadata
            が空の場合、Auth0 はエンドポイントやサポートされる機能を含むプロバイダー設定を自動的に取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかに一致すると、認証時に自動的にこの接続へルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        dpop_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0OptionsDpopSigningAlgEnum
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0OptionsFederatedConnectionsAccessTokens
        icon_url:
          description: 表示するアイコンの HTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        id_token_session_expiry_supported:
          description: >-
            アイデンティティプロバイダーが id_token を使用したセッション有効期限をサポートしているかどうかを示します。true
            の場合、システムは id_token の session_expiry クレームを使用してセッション有効期限を判断します。
          type: boolean
        id_token_signed_response_algs:
          description: ID トークンの検証に使用できるアルゴリズムのリスト。strategy=oidc または okta の場合に適用されます。
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0OptionsIdTokenSignedResponseAlgsItemEnum
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーが発行する ID トークンの 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0OptionsOidcMetadata
        schema_version:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0OptionsSchemaVersionEnum
        scope:
          description: >-
            認可時に要求する、スペース区切りの OAuth 2.0 スコープのリスト。'openid'（OIDC
            仕様で必須）を含める必要があります。一般的な値: 'openid profile
            email'。追加のスコープはアイデンティティプロバイダーによって異なります。
          maxLength: 255
          minLength: 6
          type: string
        send_back_channel_nonce:
          description: >-
            true で type が 'back_channel' の場合、リプレイ攻撃を防ぐために認可リクエストに暗号学的 nonce
            を含めます。アイデンティティプロバイダーは、検証のためにこの nonce を ID トークンに含める必要があります。
          type: boolean
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: テナントドメイン
          maxLength: 255
          minLength: 1
          type: string
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換する、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL。有効な
            HTTPS URL である必要があります。認可コードフローでは必須ですが、インプリシットフローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_method:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0OptionsTokenEndpointAuthMethodEnum
        token_endpoint_auth_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0OptionsTokenEndpointAuthSigningAlgEnum
        token_endpoint_jwtca_aud_format:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0OptionsTokenEndpointJwtcaAudFormatEnum
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0OptionsTypeEnum
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0OptionsUpstreamParams
        useOauthSpecScope:
          description: >-
            true
            の場合、アイデンティティプロバイダーの認可エンドポイントの呼び出し時に、カンマ区切りではなくスペース区切りのスコープ（OAuth 2.0
            仕様準拠）を使用します。connection_scope
            パラメーターを使用する場合にのみ該当します。https://auth0.com/docs/authenticate/identity-providers/adding-scopes-for-an-external-idp#pass-scopes-to-authorize-endpoint
            を参照してください。
          type: boolean
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの任意の URL。属性マッピングとともに設定すると、Auth0
            はこのエンドポイントを呼び出し、アクセストークンを使用して追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject0StrategyEnum:
      description: 接続のストラテジー。
      enum:
        - oidc
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject1Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject1ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject1Metadata:
      additionalProperties: false
      description: 文字列値（最大255文字）を持つオブジェクト形式の、接続に関連付けられたメタデータ。メタデータプロパティは最大10個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject1Options:
      additionalProperties: false
      description: '''okta'' 接続のオプション'
      properties:
        attribute_map:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1OptionsAttributeMap
        authorization_endpoint:
          description: >-
            認証のためにユーザーをリダイレクトする、アイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントで OAuth 2.0 認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        client_id:
          description: >-
            アプリケーション登録時にアイデンティティプロバイダーから発行される OAuth 2.0
            クライアント識別子。この値により、アイデンティティプロバイダー側で Auth0 接続が識別されます。
          maxLength: 255
          minLength: 0
          type: string
        connection_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1OptionsConnectionSettings
        domain:
          description: >-
            Okta 組織のドメイン（例: dev-123456.okta.com）。スキームや末尾のバックスラッシュを含めず、Okta
            サーバーのドメインのみを指定してください。ディスカバリーは、connection.options.oidc_metadata
            が空でドメインが指定されている場合にのみ実行されます。
          maxLength: 255
          minLength: 4
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかと一致すると、認証時にこの接続へ自動的にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        dpop_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1OptionsDpopSigningAlgEnum
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1OptionsFederatedConnectionsAccessTokens
        icon_url:
          description: 表示するアイコンの HTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        id_token_session_expiry_supported:
          description: >-
            アイデンティティプロバイダーが id_token によるセッション有効期限をサポートするかどうかを示します。true の場合、システムは
            id_token 内の session_expiry クレームを使用してセッション有効期限を判断します。
          type: boolean
        id_token_signed_response_algs:
          description: ID トークンの検証に使用できるアルゴリズムのリスト。strategy=oidc または okta の場合に適用されます。
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1OptionsIdTokenSignedResponseAlgsItemEnum
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーから発行された ID トークン内の 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1OptionsOidcMetadata
        schema_version:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1OptionsSchemaVersionEnum
        scope:
          description: >-
            認可時に要求する、空白区切りの OAuth 2.0 スコープのリスト。'openid'（OIDC
            仕様で必須）を含める必要があります。一般的な値: 'openid profile
            email'。追加のスコープはアイデンティティプロバイダーによって異なります。
          maxLength: 255
          minLength: 6
          type: string
        send_back_channel_nonce:
          description: >-
            true かつ type が 'back_channel' の場合、リプレイ攻撃を防ぐために認可リクエストに暗号学的 nonce
            を含めます。アイデンティティプロバイダーは検証のため、この nonce を ID トークンに含める必要があります。
          type: boolean
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: テナントドメイン
          maxLength: 255
          minLength: 1
          type: string
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換する、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL。有効な
            HTTPS URL である必要があります。認可コードフローでは必須ですが、インプリシットフローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_method:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1OptionsTokenEndpointAuthMethodEnum
        token_endpoint_auth_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1OptionsTokenEndpointAuthSigningAlgEnum
        token_endpoint_jwtca_aud_format:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1OptionsTokenEndpointJwtcaAudFormatEnum
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1OptionsTypeEnum
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1OptionsUpstreamParams
        useOauthSpecScope:
          description: >-
            true の場合、アイデンティティプロバイダーの認可エンドポイントを呼び出す際に、カンマ区切りではなく OAuth 2.0
            仕様に準拠した空白区切りのスコープを使用します。connection_scope
            パラメータを使用する場合にのみ該当します。https://auth0.com/docs/authenticate/identity-providers/adding-scopes-for-an-external-idp#pass-scopes-to-authorize-endpoint
            を参照してください。
          type: boolean
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの任意の URL。属性マッピングとともに設定すると、Auth0
            はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject1StrategyEnum:
      description: 接続の戦略。
      enum:
        - okta
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject2Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject2ConnectedAccounts:
      additionalProperties: false
      description: 連携アカウントおよびToken Vaultで使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject2Metadata:
      additionalProperties: false
      description: 文字列値（最大255文字）を持つオブジェクト形式で接続に関連付けられたメタデータ。メタデータプロパティは最大10個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject2Options:
      additionalProperties: false
      description: '''samlp'' 接続のオプション'
      properties:
        assertion_decryption_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2OptionsAssertionDecryptionSettings
        cert:
          description: >-
            アイデンティティプロバイダーの .der
            形式のX.509署名証明書。SAMLレスポンスおよびアサーションの署名検証に使用します。signingCertの代替であり、後方互換性のために維持されています。代わりにsigningCertを使用してください。
          maxLength: 10240
          minLength: 1
          type: string
        cert_rollover_notification:
          description: 証明書の有効期限切れが近いことを最後に通知した日時のタイムスタンプ。
          format: date-time
          type: string
        debug:
          description: >-
            trueの場合、SAMLリクエストおよびレスポンスの詳細を含む'w'（警告）イベントをテナントログに出力し、詳細なSAMLデバッグを有効にします。警告:
            機密性の高いユーザー情報（PII、認証情報）が露出する可能性があるため、デバッグ目的で一時的にのみ有効にしてください。
          type: boolean
        deflate:
          description: trueの場合、HTTP-Redirectバインディング経由で送信されるSAMLリクエストに対するDEFLATE圧縮を有効にします。
          type: boolean
        destinationUrl:
          description: >-
            Auth0がSAML認証リクエストを送信するURL（アイデンティティプロバイダーのSSO URL）。有効なHTTPS
            URLである必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        digestAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2OptionsDigestAlgorithmEnum
        disableFieldsMapFix:
          description: >-
            trueの場合、SAML属性をユーザープロファイルフィールドに適切にマッピングするためのfieldsMap設定の自動修正を無効にします。デフォルトはfalse（fieldsMapの修正が有効）です。
          type: boolean
        disableSignout:
          description: >-
            trueの場合、ユーザーのサインアウト時にアイデンティティプロバイダーへSAMLログアウトリクエスト（SingleLogoutService）を送信しないようにします。ユーザーはAuth0からログアウトしますが、アイデンティティプロバイダーにはログインしたままとなります。デフォルトはfalse（フェデレーションログアウトが有効）です。
          type: boolean
        discovery_url:
          description: >-
            アイデンティティプロバイダーのOIDCディスカバリーエンドポイント（/.well-known/openid-configuration）のURL。指定され、oidc_metadataが空の場合、Auth0はエンドポイントやサポートされる機能を含むプロバイダー設定を自動的に取得します。Cross
            App Accessで使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        domain_aliases:
          description: 接続のドメインエイリアス
          items:
            description: Home Realm Discoveryで使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            SAMLサービスプロバイダーのエンティティ識別子（発行者）。指定しない場合、デフォルトは'urn:auth0:{tenant}:{connection}'です。この値は、アイデンティティプロバイダーに送信されるSAML認証リクエストメッセージに含まれます。
          maxLength: 128
          minLength: 1
          type: string
        expires:
          description: アイデンティティプロバイダーの署名証明書の有効期限を示すISO 8601形式の日時。
          format: date-time
          type: string
        fieldsMap:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2OptionsFieldsMap
        fieldsMapJsonRaw:
          description: fieldsMap設定の生のJSON文字列表現。fieldsMapオブジェクトの保存と取得に内部的に使用されます。
          maxLength: 8192
          minLength: 0
          type: string
        global_token_revocation_jwt_iss:
          description: >-
            アイデンティティプロバイダーからのグローバルトークン失効リクエストに含まれるJWTの想定される'iss'（発行者）クレーム値。設定すると、Auth0はトークンの取り消しを処理する前に、JWTの発行者がこの値と一致することを検証します。global_token_revocation_jwt_subと併用する必要があります。
          maxLength: 1024
          minLength: 1
          type: string
        global_token_revocation_jwt_sub:
          description: >-
            アイデンティティプロバイダーからのグローバルトークン失効リクエストに含まれるJWTの想定される'sub'（Subject）クレーム値。設定すると、Auth0はトークンの取り消しを処理する前に、JWTのサブジェクトがこの値と一致することを検証します。global_token_revocation_jwt_issと併用する必要があります。
          maxLength: 1024
          minLength: 1
          type: string
        icon_url:
          description: >-
            Auth0ログインページに表示する接続アイコンのURL。HTTPS
            URLを指定できます。認証フローにおける視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        idpinitiated:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2OptionsIdpinitiated
        metadataUrl:
          description: >-
            アイデンティティプロバイダーの SAML メタデータドキュメントの HTTPS URL。指定すると、Auth0
            はメタデータを自動的に取得・解析し、signInEndpoint、signOutEndpoint、signingCert、signSAMLRequest、protocolBinding
            を抽出します。metadataUrl または metadataXml のいずれか一方のみを使用してください。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2OptionsOidcMetadata
        protocolBinding:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2OptionsProtocolBindingEnum
        recipientUrl:
          description: >-
            Auth0 が SAML認証リクエストを送信する URL（IDプロバイダーの SSO URL）。有効な HTTPS URL
            である必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        requestTemplate:
          description: >-
            SAML認証リクエスト用のカスタム XML テンプレート。@@variableName@@
            構文による変数置換をサポートします。指定しない場合は、デフォルトの SAML AuthnRequest
            テンプレートを使用します。https://auth0.com/docs/authenticate/protocols/saml/saml-sso-integrations/configure-auth0-saml-service-provider#customize-the-request-template
            を参照してください。
          maxLength: 10240
          minLength: 1
          type: string
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: >-
            Auth0がSAML認証リクエストを送信する、アイデンティティプロバイダーのSAML
            SingleSignOnServiceエンドポイントURL。SAML接続の主要なログインURLです。metadataUrlまたはmetadataXmlを使用する場合を除き、必須です。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signOutEndpoint:
          description: >-
            フェデレーションログアウト時に Auth0 がログアウトリクエストを送信する、アイデンティティプロバイダーの SAML
            SingleLogoutService エンドポイント URL。指定しない場合は signInEndpoint
            が使用されます。disableSignout が false の場合にのみ使用されます。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signSAMLRequest:
          description: >-
            trueの場合、Auth0は接続の署名鍵を使用してSAML認証リクエストに署名します。署名にはリクエストのダイジェストが含まれ、アイデンティティプロバイダーによって検証されます。デフォルトはfalse（未署名のリクエスト）です。
          type: boolean
        signatureAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2OptionsSignatureAlgorithmEnum
        signingCert:
          description: >-
            SAMLレスポンスおよびアサーションの署名検証に使用する、アイデンティティプロバイダーのBase64エンコード済みX.509証明書。証明書はデコードされ、暗号学的署名の検証に使用されます。
          maxLength: 10240
          minLength: 1
          type: string
        subject:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2OptionsSubject
        tenant_domain:
          description: >-
            SAML接続の場合、ログインエンドポイントURLの構築に使用するテナントドメイン。シングルテナントの場合は文字列、マルチテナント検証の場合は文字列の配列を指定できます。
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            アイデンティティプロバイダーの署名証明書のSHA-1サムプリント（フィンガープリント）。接続の作成時にsigningCertから自動的に計算されます。各サムプリントは40文字の16進数文字列である必要があります。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2OptionsUpstreamParams
        user_id_attribute:
          description: >-
            一意のユーザー識別子として使用するカスタム SAMLアサーション属性。指定すると、この属性は最優先でデフォルトの user_id
            マッピングリストの先頭に追加されます。文字列（単一の SAML 属性名）を指定できます。
          maxLength: 2396
          minLength: 1
          type: string
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject2StrategyEnum:
      description: 接続の戦略。
      enum:
        - samlp
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject3Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject3ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよびToken Vaultに使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject3Metadata:
      additionalProperties: false
      description: 文字列値（最大255文字）を持つオブジェクト形式の、接続に関連付けられたメタデータ。指定できるメタデータプロパティは最大10個です。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject3Options:
      additionalProperties: false
      description: '''pingfederate''接続のオプション'
      properties:
        assertion_decryption_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject3OptionsAssertionDecryptionSettings
        cert:
          description: >-
            アイデンティティプロバイダーの.der形式のX.509署名証明書。SAMLレスポンスおよびアサーションの署名検証に使用します。これはsigningCertの代替であり、後方互換性のために維持されています。代わりにsigningCertを使用してください。
          maxLength: 10240
          minLength: 1
          type: string
        cert_rollover_notification:
          description: 証明書の有効期限切れが近いことを示す最後の通知のタイムスタンプ。
          format: date-time
          type: string
        digestAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject3OptionsDigestAlgorithmEnum
        domain_aliases:
          description: 接続のドメインエイリアス
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            SAMLサービスプロバイダーのエンティティ識別子（Issuer）。指定しない場合、デフォルトは'urn:auth0:{tenant}:{connection}'です。この値はアイデンティティプロバイダーに送信されるSAML
            AuthnRequestメッセージに含まれます。
          maxLength: 128
          minLength: 1
          type: string
        expires:
          description: アイデンティティプロバイダーの署名証明書の有効期限を示すISO 8601形式の日時。
          format: date-time
          type: string
        icon_url:
          description: >-
            Auth0ログインページに表示される接続アイコンのURL。HTTPS
            URLを受け付けます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        idpinitiated:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject3OptionsIdpinitiated
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        pingFederateBaseUrl:
          description: 接続の作成に必要な情報を返す、PingFederate が提供する URL
          format: uri
          maxLength: 256
          minLength: 8
          type: string
        protocolBinding:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject3OptionsProtocolBindingEnum
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject3OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: >-
            Auth0がSAML認証リクエストを送信する、アイデンティティプロバイダーのSAML
            SingleSignOnServiceエンドポイントURL。これはSAML接続の主要なログインURLです。metadataUrlまたはmetadataXmlを使用する場合を除き必須です。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signSAMLRequest:
          description: >-
            trueの場合、Auth0は接続の署名鍵を使用してSAML認証リクエストに署名します。署名にはリクエストのダイジェストが含まれ、アイデンティティプロバイダーによって検証されます。デフォルトはfalse（署名なしのリクエスト）です。
          type: boolean
        signatureAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject3OptionsSignatureAlgorithmEnum
        signingCert:
          description: >-
            SAMLレスポンスおよびアサーションの署名検証に使用する、アイデンティティプロバイダーのBase64エンコードされたX.509証明書。証明書はデコードされ、暗号学的な署名検証に使用されます。
          maxLength: 10240
          minLength: 1
          type: string
        subject:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject3OptionsSubject
        tenant_domain:
          description: >-
            SAML接続の場合、ログインエンドポイントURLの構築に使用するテナントドメイン。シングルテナントの場合は文字列、マルチテナント検証の場合は文字列の配列を指定できます。
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            アイデンティティプロバイダーの署名証明書のSHA-1サムプリント（フィンガープリント）。接続の作成時にsigningCertから自動的に計算されます。各サムプリントは40文字の16進数文字列である必要があります。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject3OptionsUpstreamParams
      required:
        - pingFederateBaseUrl
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject3StrategyEnum:
      description: 接続戦略。
      enum:
        - pingfederate
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject4Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject4ConnectedAccounts:
      additionalProperties: false
      description: リンク済みアカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject4Metadata:
      additionalProperties: false
      description: 文字列値（最大 255 文字）を持つオブジェクト形式の、接続に関連付けられたメタデータ。メタデータプロパティは最大 10 個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject4Options:
      additionalProperties: false
      description: '''adfs'' 接続のオプション'
      properties:
        adfs_server:
          description: >-
            WS-Fed エンドポイントおよび証明書の検出に使用する ADFS フェデレーションメタデータホストまたは XML
            URL。adfs_server と fedMetadataXml の両方がない場合はエラーになります。
          maxLength: 2048
          minLength: 0
          type: string
        cert_rollover_notification:
          description: 証明書の有効期限が近いことを知らせる最後の通知のタイムスタンプ。
          format: date-time
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかに一致すると、認証時にこの接続へ自動的にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            ADFS サービスプロバイダーのエンティティ識別子（Issuer）。指定しない場合、デフォルトは
            'urn:auth0:{tenant}:{connection}' です。
          maxLength: 128
          minLength: 1
          type: string
        fedMetadataXml:
          description: '''adfs_server'' の代替となるインライン XML。''adfs_server'' と同時に設定することはできません。'
          maxLength: 102400
          minLength: 1
          type: string
        icon_url:
          description: >-
            Auth0 ログインページに表示される接続アイコンの URL。HTTPS URL
            を受け付けます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        prev_thumbprints:
          description: >-
            SAML 署名の検証に使用する証明書サムプリント（SHA-128/SHA-256/SHA-512 の 16
            進ハッシュ）の配列。WS-Federation プロトコルで使用します。サムプリントは最大 20 個です。各サムプリントは 16
            進数文字列である必要があります。
          items:
            description: ADFS および Azure AD 接続用の証明書サムプリント。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject4OptionsSetUserRootAttributesEnum
        should_trust_email_verified_connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject4OptionsShouldTrustEmailVerifiedConnectionEnum
        signInEndpoint:
          description: メタデータから検出されるか、明示的に指定される Passive Requestor（WS-Fed）のサインインエンドポイント。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        tenant_domain:
          description: テナントドメイン
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            SAML 署名の検証に使用する証明書サムプリント（SHA-128/SHA-256/SHA-512 の 16
            進ハッシュ）の配列。WS-Federation プロトコルで使用します。サムプリントは最大 20 個です。各サムプリントは 16
            進数文字列である必要があります。
          items:
            description: ADFS および Azure AD 接続用の証明書サムプリント。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject4OptionsUpstreamParams
        user_id_attribute:
          description: >-
            一意のユーザー識別子として使用するカスタム ADFS クレーム。指定した場合、この属性は最優先でデフォルトの user_id
            マッピングリストの先頭に追加されます。文字列（単一の ADFS クレーム名）を受け付けます。
          maxLength: 128
          minLength: 1
          type: string
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject4StrategyEnum:
      description: 接続の方式。
      enum:
        - adfs
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject5Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject5ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject5Metadata:
      additionalProperties: false
      description: 文字列値（最大 255 文字）を持つオブジェクト形式で、接続に関連付けられたメタデータ。メタデータプロパティは最大 10 個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject5Options:
      additionalProperties: false
      description: '''ad'' 接続のオプション'
      properties:
        agentIP:
          description: >-
            Kerberos 認証の認証リクエストが社内ネットワークから送信されたことを検証するために使用する AD Connector
            エージェントの IP アドレス（AD Connector エージェントにより管理）。
          maxLength: 39
          minLength: 2
          type: string
        agentMode:
          description: >-
            有効にすると、WS-Federation プロトコルの代わりに AD Connector
            エージェントを介した直接のユーザー名/パスワード認証を許可します（AD Connector エージェントにより管理）。
          type: boolean
        agentVersion:
          description: >-
            インストールされている AD Connector エージェントソフトウェアのバージョン識別子（AD Connector
            エージェントにより管理）。
          maxLength: 12
          minLength: 5
          type: string
        brute_force_protection:
          description: >-
            認証情報詰め込み攻撃を防ぐため、Auth0 のブルートフォース保護を有効にします。有効にすると、繰り返し失敗した後、特定の IP
            アドレスからの不審なログイン試行をブロックします。
          type: boolean
        certAuth:
          description: AD Connector のクライアント SSL 証明書認証を有効にし、サインインエンドポイントで HTTPS を必須にします
          type: boolean
        certs:
          description: >-
            AD アイデンティティプロバイダーからの SAML 署名の検証に使用する PEM 形式の X.509 証明書の配列（AD
            Connector エージェントにより管理）。
          items:
            maxLength: 3072
            minLength: 256
            type: string
          minItems: 0
          type: array
        disable_cache:
          description: 有効にすると、ディレクトリに対するリアルタイム検証を確実にするため、AD Connector の認証結果のキャッシュを無効にします
          type: boolean
        disable_self_service_change_password:
          description: >-
            有効にすると、ユーザーによるセルフサービスのパスワードリセット開始を防ぐため、ログインページの 'Forgot Password'
            リンクを非表示にします
          type: boolean
        domain_aliases:
          description: >-
            識別子優先の認証フローでユーザーをこの AD 接続にルーティングするために使用できるドメイン名のリスト。各ドメインは 256
            文字以下の有効な DNS 名である必要があります
          items:
            description: Home Realm Discovery に使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        icon_url:
          description: 表示するアイコンの HTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        ips:
          description: >-
            Kerberos または証明書認証の認証リクエストが社内ネットワークから送信されたかどうかを判定するために使用する、CIDR 表記の
            IP アドレス範囲の配列。
          items:
            maxLength: 39
            minLength: 2
            type: string
          minItems: 0
          type: array
        kerberos:
          description: >-
            ユーザーが社内ネットワークの IP 範囲内から認証する場合に、シームレスな SSO のための Windows
            統合認証（Kerberos）を有効にします
          type: boolean
        kerberos_only:
          description: true の場合、接続を Kerberos のみの認証に制限し、ユーザー名/パスワードへのフォールバックを許可しません。
          type: boolean
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject5OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: AD-LDAP Connector エージェントのサインインエンドポイントタイプ（AD Connector エージェントにより管理）。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        tenant_domain:
          description: HRD およびディスカバリーに使用するプライマリ AD ドメインヒント。
          format: hostname
          maxLength: 512
          minLength: 1
          type: string
        thumbprints:
          description: 署名の検証に使用する証明書 SHA-1 拇印の配列。AD Connector エージェント使用時は Auth0 により管理されます。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject5OptionsUpstreamParams
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject5StrategyEnum:
      description: 接続の方式。
      enum:
        - ad
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject6Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject6ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault で使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject6Metadata:
      additionalProperties: false
      description: 文字列値を持つオブジェクト形式で指定する、接続に関連付けられたメタデータ（最大255文字）。メタデータプロパティは最大10個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject6Options:
      additionalProperties: false
      description: '''google-apps'' 接続のオプション'
      properties:
        admin_access_token_expiresin:
          description: >-
            ISO 8601形式の `admin_access_token` の有効期限タイムスタンプ。Auth0
            はこの値を使用して、トークンを更新するタイミングを判断します。
          format: date-time
          type: string
        allow_setting_login_scopes:
          description: >-
            true の場合、ユーザーログイン時に要求する OAuth スコープをカスタマイズできます。カスタムスコープは必須の email
            スコープおよび profile スコープに追加されます。false または省略した場合は、デフォルトの email スコープおよび
            profile スコープのみが使用されます。このプロパティは、Token Vault または Connected Accounts
            機能を有効にすると自動的に有効になります。
          type: boolean
        api_enable_groups:
          description: >-
            グループ向けの Google Workspace Admin SDK Directory API との連携を有効にします。true
            の場合、Auth0
            はグループとグループメンバーシップを同期でき、グループのインバウンドディレクトリプロビジョニングをサポートします。デフォルトは
            false です。
          type: boolean
        api_enable_users:
          description: >-
            Google Workspace Admin SDK Directory API との連携を有効にします。true の場合、Auth0
            は拡張ユーザー属性（管理者ステータス、停止ステータス、グループメンバーシップ）を取得でき、インバウンドディレクトリプロビジョニング（SCIM）をサポートします。デフォルトは
            true です。
          type: boolean
        client_id:
          description: >-
            Google OAuth 2.0 クライアント ID。[Google Cloud
            Console](https://console.cloud.google.com/apis/credentials) の OAuth
            2.0 Client IDs セクションで確認できます。
          maxLength: 128
          minLength: 1
          type: string
        domain:
          description: ユーザーが所属している必要がある Google Workspace のプライマリドメイン名。
          maxLength: 1024
          minLength: 1
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかに一致すると、認証時に自動的にこの接続にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        email:
          description: OAuth フローで `email` スコープを要求するかどうか。
          type: boolean
        ext_agreed_terms:
          description: Google Directory のプロファイルから `agreedToTerms` フラグを取得します。
          type: boolean
        ext_groups:
          description: Google グループメンバーシップによる情報の拡充を有効にします（`ext_groups_extended` に必要です）。
          type: boolean
        ext_groups_extended:
          description: >-
            拡充されたグループエントリに `id`、`email`、`name`
            を含めるか（true）、グループ名のみを含めるか（false）を制御します。`ext_groups` が true
            の場合にのみ設定できます。
          type: boolean
        ext_is_admin:
          description: ログインするユーザーの Google Directory における管理者フラグを取得します。
          type: boolean
        ext_is_suspended:
          description: ログインするユーザーの Google Directory における停止フラグを取得します。
          type: boolean
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject6OptionsFederatedConnectionsAccessTokens
        handle_login_from_social:
          description: >-
            有効にすると、ソーシャルログインを通じて Google アカウントでログインするユーザーのメールドメインが設定済みの
            tenant_domain または domain_aliases と一致する場合、そのユーザーはこの Google Workspace
            接続に自動的にルーティングされます。これにより、エンタープライズユーザーは汎用的な Google ソーシャルログインではなく、組織の
            Google Workspace
            アイデンティティプロバイダーを介して認証されるため、ディレクトリベースの属性にアクセスでき、組織のセキュリティポリシーを適用できます。新しい接続ではデフォルトで
            true です。
          type: boolean
        icon_url:
          description: >-
            Auth0 のログインページに表示する接続アイコンの URL。HTTPS URL
            を指定できます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        map_user_id_to_id:
          description: >-
            Auth0 が Google Workspace ユーザーの user_id
            を生成する方法を決定します。false（デフォルト）の場合はユーザーのメールアドレスが使用されます。true
            の場合は、メールアドレスが変更されても変わらない Google の安定した数値ユーザー ID
            が代わりに使用されます。この設定は接続の作成時にのみ構成でき、後から変更することはできません。
          type: boolean
        non_persistent_attrs:
          description: >-
            Auth0 データベースに保存しないユーザーフィールドの配列
            (https://auth0.com/docs/security/data-security/denylist)
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        profile:
          description: OAuth フローで `profile` スコープを要求するかどうか。
          type: boolean
        scope:
          description: >-
            デフォルトの `email profile` スコープに加えて要求する OAuth
            スコープ。`allow_setting_login_scopes` が true でない限り無視されます。
          items:
            maxLength: 255
            minLength: 1
            type: string
          minItems: 1
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject6OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: 認証時に組織を識別するために使用する Google Workspace のプライマリドメイン。
          maxLength: 255
          minLength: 1
          type: string
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject6OptionsUpstreamParams
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject6StrategyEnum:
      description: 接続戦略。
      enum:
        - google-apps
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject7Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject7ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject7Metadata:
      additionalProperties: false
      description: 文字列値（最大255文字）を持つオブジェクト形式で、接続に関連付けるメタデータ。指定できるメタデータプロパティは最大10個です。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject7Options:
      additionalProperties: false
      description: '''waad'' 接続のオプション'
      properties:
        api_enable_users:
          description: Users API を有効にする
          type: boolean
        app_domain:
          description: >-
            Azure AD アプリケーションのドメイン（例: 'contoso.onmicrosoft.com'）。主に
            WS-Federation プロトコルおよび Azure AD v1 エンドポイントで使用します。
          maxLength: 255
          minLength: 0
          type: string
        app_id:
          description: >-
            Azure AD アプリケーションの Application ID URI（App ID URI）。Resource Owner
            Password Flow で Azure AD v1 を使用する場合に必要です。OAuth
            トークンリクエストで要求するリソースを識別するために使用します。
          maxLength: 500
          minLength: 0
          type: string
        basic_profile:
          description: >-
            Azure AD
            から基本的なユーザープロファイル情報（name、email、given_name、family_name）を取得します。常に有効であり必須です。認証時に取得される最小限のプロファイルデータを表します。
          type: boolean
        cert_rollover_notification:
          description: 証明書の有効期限が間もなく切れることを知らせる直近の通知のタイムスタンプ。
          format: date-time
          type: string
        client_id:
          description: >-
            アプリケーション登録時にアイデンティティプロバイダーから発行される OAuth 2.0
            クライアント識別子。この値は、アイデンティティプロバイダーに対する Auth0 接続を識別します。
          maxLength: 100
          minLength: 0
          type: string
        domain:
          description: >-
            プライマリ Azure AD テナントドメイン（例: 'contoso.onmicrosoft.com' または
            'contoso.com'）。
          maxLength: 512
          minLength: 0
          type: string
        domain_aliases:
          description: >-
            この Azure AD
            テナントに関連付けられた代替ドメイン名。複数の検証済みドメインのユーザーがこの接続を通じて認証できるようにします。ドメイン文字列の配列を指定できます。
          items:
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        ext_groups:
          description: >-
            有効（true）にすると、ユーザーの Azure AD セキュリティグループのメンバーシップを取得して保存します。Microsoft
            Graph API の権限（Directory.Read.All）が必要です。max_groups_to_retrieve
            を設定できます。
          type: boolean
        ext_nested_groups:
          description: >-
            true
            の場合、推移的なグループメンバーシップ（グループ内のグループ）を含め、ユーザーが所属するすべてのグループを保存します。false（デフォルト）の場合、直接のグループメンバーシップのみを含めます。
          type: boolean
        ext_profile:
          description: >-
            有効（true）にすると、Microsoft Graph API を介して Azure AD
            から拡張プロファイル属性（役職、部署、オフィス所在地など）を取得します。Graph API の権限が必要です。Azure AD
            v1、または v2 で明示的に有効化されている場合にのみ利用できます。
          type: boolean
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject7OptionsFederatedConnectionsAccessTokens
        granted:
          description: >-
            必要な Azure AD 権限に対する管理者の同意が付与されているかどうかを示します。OAuth 認可フロー中に Auth0
            によって管理される読み取り専用のステータスフィールドです。
          type: boolean
        icon_url:
          description: >-
            Auth0 のログインページに表示する接続アイコンの URL。HTTPS URL
            を指定できます。認証フローでの視覚的なブランディングに使用します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        identity_api:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject7OptionsIdentityApiEnum
        max_groups_to_retrieve:
          description: >-
            認証時にユーザーごとに取得する Azure AD
            グループの最大数。多数のグループに所属するユーザーでのパフォーマンス上の問題を防ぐのに役立ちます。ext_groups
            が有効な場合にのみ適用されます。プラットフォームのデフォルトを使用するには空のままにします。
          maxLength: 10
          minLength: 0
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        scope:
          description: >-
            認証時に Azure AD に要求する OAuth 2.0 スコープ。各スコープは権限を表します（例:
            'User.Read'、'Group.Read.All'）。Microsoft Identity Platform v2.0
            でのみ適用されます。利用可能なスコープについては、Microsoft Graph の権限リファレンスを参照してください。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject7OptionsSetUserRootAttributesEnum
        should_trust_email_verified_connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject7OptionsShouldTrustEmailVerifiedConnectionEnum
        tenantId:
          description: >-
            UUID 形式の Azure AD テナント ID。Azure AD organization の一意の識別子です。有効な36文字の
            UUID である必要があります。
          format: uuid
          maxLength: 36
          minLength: 36
          type: string
        tenant_domain:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject7OptionsTenantDomain
        thumbprints:
          description: >-
            SAML 署名の検証に使用する証明書サムプリント（SHA-128/SHA-256/SHA-512
            の16進ハッシュ）の配列。WS-Federation
            プロトコルで使用します。サムプリントは最大20個です。各サムプリントは16進数文字列である必要があります。
          items:
            description: ADFS および Azure AD 接続用の証明書サムプリント。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject7OptionsUpstreamParams
        useCommonEndpoint:
          description: >-
            有効（true）にすると、マルチテナント認証に Azure AD の共通エンドポイントを使用します。任意の Azure AD
            organization のユーザーがサインインできるようになります。userid_attribute を 'sub'（'oid'
            ではなく）に設定する必要があります。SCIM プロビジョニングとは併用できません。デフォルトは false です。
          type: boolean
        use_wsfed:
          description: >-
            WS-Federation プロトコルを使用するかどうかを示します。true の場合は WS-Federation を使用し、false
            の場合は OpenID Connect を使用します。
          type: boolean
        userid_attribute:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject7OptionsUseridAttributeEnum
        waad_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject7OptionsWaadProtocolEnum
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject7StrategyEnum:
      description: 接続の方式。
      enum:
        - waad
      type: string
    EventStreamCloudEventConnectionUpdatedObject0Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject0ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault で使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
        cross_app_access:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject0Metadata:
      additionalProperties: false
      description: 接続に関連付けられた、文字列値を持つオブジェクト形式のメタデータ（最大 255 文字）。メタデータプロパティは最大 10 個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject0Options:
      additionalProperties: false
      description: '''oidc'' 接続のオプション'
      properties:
        attribute_map:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0OptionsAttributeMap
        authorization_endpoint:
          description: >-
            ユーザーが認証のためにリダイレクトされる、アイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントで OAuth 2.0 認可コードフローが開始されます。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        client_id:
          description: >-
            アプリケーションの登録時にアイデンティティプロバイダーから発行される OAuth 2.0
            クライアント識別子。この値によって、アイデンティティプロバイダーに対する Auth0 接続が識別されます。
          maxLength: 255
          minLength: 0
          type: string
        connection_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0OptionsConnectionSettings
        discovery_url:
          description: >-
            アイデンティティプロバイダーの OIDC Discovery
            エンドポイント（/.well-known/openid-configuration）の URL。指定され、oidc_metadata
            が空の場合、Auth0 はエンドポイントやサポート機能を含むプロバイダーの設定を自動的に取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）のためにこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかに一致すると、認証時に自動的にこの接続にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        dpop_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0OptionsDpopSigningAlgEnum
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0OptionsFederatedConnectionsAccessTokens
        icon_url:
          description: 表示するアイコンの HTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        id_token_session_expiry_supported:
          description: >-
            アイデンティティプロバイダーが id_token を使用したセッション有効期限をサポートしているかどうかを示します。true
            の場合、システムは id_token 内の session_expiry クレームを使用してセッションの有効期限を判定します。
          type: boolean
        id_token_signed_response_algs:
          description: ID トークンの検証に使用可能なアルゴリズムのリスト。strategy=oidc または okta の場合に適用されます。
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0OptionsIdTokenSignedResponseAlgsItemEnum
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子
            URL（例：https://accounts.google.com）。アイデンティティプロバイダーから発行された ID トークンの
            'iss' クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0OptionsOidcMetadata
        schema_version:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0OptionsSchemaVersionEnum
        scope:
          description: >-
            認可時に要求する、スペース区切りの OAuth 2.0 スコープのリスト。'openid'（OIDC
            仕様で必須）を含める必要があります。一般的な値：'openid profile
            email'。追加のスコープはアイデンティティプロバイダーによって異なります。
          maxLength: 255
          minLength: 6
          type: string
        send_back_channel_nonce:
          description: >-
            true かつ type が 'back_channel' の場合、リプレイ攻撃を防ぐため、認可リクエストに暗号学的 nonce
            を含めます。アイデンティティプロバイダーは、検証のためにこの nonce を ID トークンに含める必要があります。
          type: boolean
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: テナントドメイン
          maxLength: 255
          minLength: 1
          type: string
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換する、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL。有効な
            HTTPS URL である必要があります。認可コードフローでは必須ですが、インプリシットフローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_method:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0OptionsTokenEndpointAuthMethodEnum
        token_endpoint_auth_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0OptionsTokenEndpointAuthSigningAlgEnum
        token_endpoint_jwtca_aud_format:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0OptionsTokenEndpointJwtcaAudFormatEnum
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0OptionsTypeEnum
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0OptionsUpstreamParams
        useOauthSpecScope:
          description: >-
            true
            の場合、アイデンティティプロバイダーの認可エンドポイントの呼び出し時に、カンマ区切りではなくスペース区切りのスコープ（OAuth 2.0
            仕様準拠）を使用します。connection_scope
            パラメータを使用する場合にのみ該当します。https://auth0.com/docs/authenticate/identity-providers/adding-scopes-for-an-external-idp#pass-scopes-to-authorize-endpoint
            を参照してください。
          type: boolean
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの任意の URL。属性マッピングとともに設定すると、Auth0
            はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionUpdatedObject0StrategyEnum:
      description: 接続の方式です。
      enum:
        - oidc
      type: string
    EventStreamCloudEventConnectionUpdatedObject1Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject1ConnectedAccounts:
      additionalProperties: false
      description: Connected Accounts および Token Vault で使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject1Metadata:
      additionalProperties: false
      description: 接続に関連付ける、文字列値（最大 255 文字）を持つオブジェクト形式のメタデータです。メタデータプロパティは最大 10 個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject1Options:
      additionalProperties: false
      description: 「okta」接続のオプション
      properties:
        attribute_map:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1OptionsAttributeMap
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされる、アイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントで OAuth 2.0 認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        client_id:
          description: >-
            アプリケーションの登録時にアイデンティティプロバイダーから発行される OAuth 2.0
            クライアント識別子。この値は、アイデンティティプロバイダーに対して Auth0 接続を識別します。
          maxLength: 255
          minLength: 0
          type: string
        connection_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1OptionsConnectionSettings
        domain:
          description: >-
            Okta 組織のドメイン（例: dev-123456.okta.com）。スキームや末尾のバックスラッシュを含めず、Okta
            サーバーのドメインのみを指定する必要があります。ディスカバリーは、connection.options.oidc_metadata
            が空で、ドメインが指定されている場合にのみ実行されます。
          maxLength: 255
          minLength: 4
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかに一致すると、認証時に自動的にこの接続にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        dpop_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1OptionsDpopSigningAlgEnum
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1OptionsFederatedConnectionsAccessTokens
        icon_url:
          description: 表示するアイコンの HTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        id_token_session_expiry_supported:
          description: >-
            アイデンティティプロバイダーが id_token を使用したセッションの有効期限をサポートしているかどうかを示します。true
            の場合、システムは id_token の session_expiry クレームを使用してセッションの有効期限を判断します。
          type: boolean
        id_token_signed_response_algs:
          description: ID トークンの検証に使用できるアルゴリズムのリスト。strategy=oidc または okta の場合に適用されます。
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1OptionsIdTokenSignedResponseAlgsItemEnum
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダー固有の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーから発行された ID
            トークンの「iss」クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1OptionsOidcMetadata
        schema_version:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1OptionsSchemaVersionEnum
        scope:
          description: >-
            認可時に要求する、空白区切りの OAuth 2.0 スコープのリスト。「openid」（OIDC
            仕様で必須）を含める必要があります。一般的な値: 「openid profile
            email」。追加のスコープはアイデンティティプロバイダーによって異なります。
          maxLength: 255
          minLength: 6
          type: string
        send_back_channel_nonce:
          description: >-
            true かつ type が「back_channel」の場合、リプレイ攻撃を防ぐために認可リクエストに暗号学的 nonce
            を含めます。アイデンティティプロバイダーは、検証のためにこの nonce を ID トークンに含める必要があります。
          type: boolean
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: テナントドメイン
          maxLength: 255
          minLength: 1
          type: string
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換する、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL。有効な
            HTTPS URL である必要があります。認可コードフローでは必須ですが、インプリシットフローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_method:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1OptionsTokenEndpointAuthMethodEnum
        token_endpoint_auth_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1OptionsTokenEndpointAuthSigningAlgEnum
        token_endpoint_jwtca_aud_format:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1OptionsTokenEndpointJwtcaAudFormatEnum
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1OptionsTypeEnum
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1OptionsUpstreamParams
        useOauthSpecScope:
          description: >-
            true
            の場合、アイデンティティプロバイダーの認可エンドポイントの呼び出し時に、カンマ区切りではなくスペース区切りのスコープ（OAuth 2.0
            仕様準拠）を使用します。connection_scope
            パラメータを使用する場合にのみ該当します。https://auth0.com/docs/authenticate/identity-providers/adding-scopes-for-an-external-idp#pass-scopes-to-authorize-endpoint
            を参照してください。
          type: boolean
        userinfo_endpoint:
          description: >-
            任意のアイデンティティプロバイダー UserInfo エンドポイント URL。属性マッピングとともに設定すると、Auth0
            はアクセストークンを使用して追加のユーザープロファイルクレームを取得するために、このエンドポイントを呼び出します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionUpdatedObject1StrategyEnum:
      description: 接続の方式です。
      enum:
        - okta
      type: string
    EventStreamCloudEventConnectionUpdatedObject2Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の用途を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject2ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault で使用する接続の用途を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject2Metadata:
      additionalProperties: false
      description: 接続に関連付けるメタデータ。文字列値（最大255文字）を持つオブジェクト形式で指定します。指定できるメタデータプロパティは最大10個です。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject2Options:
      additionalProperties: false
      description: '''samlp'' 接続のオプション'
      properties:
        assertion_decryption_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2OptionsAssertionDecryptionSettings
        cert:
          description: >-
            アイデンティティプロバイダーの .der 形式の X.509 署名証明書。SAML Response
            およびアサーションの署名を検証するために使用します。signingCert の代替として後方互換性のために保持されています。代わりに
            signingCert を使用することを推奨します。
          maxLength: 10240
          minLength: 1
          type: string
        cert_rollover_notification:
          description: まもなく有効期限が切れる証明書に関する最終通知のタイムスタンプ。
          format: date-time
          type: string
        debug:
          description: >-
            true の場合、SAML リクエスト／レスポンスの詳細を含む「w」（警告）イベントをテナントログに記録し、詳細な SAML
            デバッグを有効にします。警告:
            機密性の高いユーザー情報（PII、資格情報）が公開される可能性があるため、デバッグ目的で一時的にのみ有効にしてください。
          type: boolean
        deflate:
          description: >-
            true の場合、HTTP-Redirect バインディングを介して送信される SAML リクエストの DEFLATE
            圧縮を有効にします。
          type: boolean
        destinationUrl:
          description: >-
            Auth0 が SAML認証リクエストを送信する URL（IDプロバイダーの SSO URL）。有効な HTTPS URL
            である必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        digestAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2OptionsDigestAlgorithmEnum
        disableFieldsMapFix:
          description: >-
            true の場合、SAML 属性をユーザープロファイルのフィールドに正しくマッピングするための fieldsMap
            設定の自動修正を無効にします。既定値は false（fieldsMap の修正は有効）です。
          type: boolean
        disableSignout:
          description: >-
            true の場合、ユーザーのサインアウト時にアイデンティティプロバイダーへ SAML logout
            リクエスト（SingleLogoutService）を送信しないようにします。ユーザーは Auth0
            からログアウトされますが、アイデンティティプロバイダーにはログインしたままとなります。デフォルトは
            false（フェデレーテッドログアウトが有効）です。
          type: boolean
        discovery_url:
          description: >-
            アイデンティティプロバイダーの OIDC
            ディスカバリーエンドポイント（/.well-known/openid-configuration）の URL。指定され、かつ
            oidc_metadata が空の場合、Auth0 はエンドポイントやサポート機能を含むプロバイダー設定を自動的に取得します。Cross
            App Access で使用します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        domain_aliases:
          description: 接続のドメインエイリアス
          items:
            description: ホームレルムディスカバリーで使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            SAML Service Provider のエンティティ識別子（発行者）。指定しない場合のデフォルトは
            'urn:auth0:{tenant}:{connection}' です。この値は、アイデンティティプロバイダーに送信される SAML
            AuthnRequest メッセージに含まれます。
          maxLength: 128
          minLength: 1
          type: string
        expires:
          description: アイデンティティプロバイダーの署名証明書の有効期限を示す ISO 8601 形式の日時。
          format: date-time
          type: string
        fieldsMap:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2OptionsFieldsMap
        fieldsMapJsonRaw:
          description: fieldsMap 設定の生の JSON 文字列表現。fieldsMap オブジェクトの保存および取得のために内部的に使用されます。
          maxLength: 8192
          minLength: 0
          type: string
        global_token_revocation_jwt_iss:
          description: >-
            アイデンティティプロバイダーからの Global Token Revocation リクエストに含まれる JWT トークンの、想定される
            'iss'（発行者）クレーム値。設定すると、Auth0 はトークンの取り消しを処理する前に、JWT
            の発行者がこの値と一致することを検証します。global_token_revocation_jwt_sub と併用する必要があります。
          maxLength: 1024
          minLength: 1
          type: string
        global_token_revocation_jwt_sub:
          description: >-
            アイデンティティプロバイダーからの Global Token Revocation リクエストに含まれる JWT トークンの、想定される
            'sub'（Subject）クレーム値。設定すると、Auth0 はトークンの取り消しを処理する前に、JWT
            のサブジェクトがこの値と一致することを検証します。global_token_revocation_jwt_iss
            と併用する必要があります。
          maxLength: 1024
          minLength: 1
          type: string
        icon_url:
          description: >-
            Auth0 ログインページに表示する接続アイコンの URL。HTTPS URL
            を指定できます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        idpinitiated:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2OptionsIdpinitiated
        metadataUrl:
          description: >-
            アイデンティティプロバイダーの SAML メタデータドキュメントの HTTPS URL。指定すると、Auth0
            はメタデータを自動的に取得・解析し、signInEndpoint、signOutEndpoint、signingCert、signSAMLRequest、protocolBinding
            を抽出します。metadataUrl と metadataXml を同時に使用せず、いずれか一方を使用してください。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2OptionsOidcMetadata
        protocolBinding:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2OptionsProtocolBindingEnum
        recipientUrl:
          description: >-
            Auth0 が SAML認証リクエストを送信する URL（IDプロバイダーの SSO URL）。有効な HTTPS URL
            である必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        requestTemplate:
          description: >-
            SAML認証リクエスト用のカスタム XML テンプレート。@@variableName@@
            構文を使用した変数置換をサポートします。指定しない場合は、デフォルトの SAML AuthnRequest
            テンプレートを使用します。https://auth0.com/docs/authenticate/protocols/saml/saml-sso-integrations/configure-auth0-saml-service-provider#customize-the-request-template
            を参照してください。
          maxLength: 10240
          minLength: 1
          type: string
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: >-
            Auth0 が SAML認証リクエストを送信する、アイデンティティプロバイダーの SAML SingleSignOnService
            エンドポイント URL。この SAML 接続の主要なログイン URL です。metadataUrl または metadataXml
            を使用する場合を除き、必須です。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signOutEndpoint:
          description: >-
            Auth0 がフェデレーテッドログアウトの logout リクエストを送信する、アイデンティティプロバイダーの SAML
            SingleLogoutService エンドポイント URL。指定しない場合、デフォルトは signInEndpoint
            です。disableSignout が false の場合にのみ使用されます。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signSAMLRequest:
          description: >-
            true の場合、Auth0 は接続の署名鍵を使用して
            SAML認証リクエストに署名します。署名にはリクエストのダイジェストが含まれ、アイデンティティプロバイダーによって検証されます。デフォルトは
            false（署名なしのリクエスト）です。
          type: boolean
        signatureAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2OptionsSignatureAlgorithmEnum
        signingCert:
          description: >-
            SAML Response およびアサーションの署名検証に使用する、アイデンティティプロバイダーの Base64 エンコードされた
            X.509 証明書。証明書はデコードされ、暗号学的な署名検証に使用されます。
          maxLength: 10240
          minLength: 1
          type: string
        subject:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2OptionsSubject
        tenant_domain:
          description: >-
            SAML 接続でログイン エンドポイント URL
            の構築に使用するテナントドメイン。単一テナントでは文字列、マルチテナントの検証では文字列の配列を指定できます。
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            アイデンティティプロバイダーの署名証明書の SHA-1 サムプリント（フィンガープリント）。接続の作成時に signingCert
            から自動的に計算されます。各サムプリントは40文字の16進数文字列である必要があります。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2OptionsUpstreamParams
        user_id_attribute:
          description: >-
            一意のユーザー識別子として使用するカスタムSAMLアサーション属性。指定すると、この属性が最優先でデフォルトのuser_idマッピングリストの先頭に追加されます。文字列（単一のSAML属性名）を受け取ります。
          maxLength: 2396
          minLength: 1
          type: string
      type: object
    EventStreamCloudEventConnectionUpdatedObject2StrategyEnum:
      description: 接続の方式。
      enum:
        - samlp
      type: string
    EventStreamCloudEventConnectionUpdatedObject3Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject3ConnectedAccounts:
      additionalProperties: false
      description: Connected AccountsおよびToken Vaultに使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject3Metadata:
      additionalProperties: false
      description: 文字列値（最大255文字）を持つオブジェクト形式で、接続に関連付けられたメタデータ。メタデータプロパティは最大10個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject3Options:
      additionalProperties: false
      description: '''pingfederate''接続のオプション'
      properties:
        assertion_decryption_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject3OptionsAssertionDecryptionSettings
        cert:
          description: >-
            アイデンティティプロバイダーの.der形式のX.509署名証明書。SAMLレスポンスおよびアサーションの署名を検証するために使用します。これはsigningCertの代替で、後方互換性のために維持されています。代わりにsigningCertを使用することを推奨します。
          maxLength: 10240
          minLength: 1
          type: string
        cert_rollover_notification:
          description: 証明書の有効期限が近いことを知らせる最後の通知のタイムスタンプ。
          format: date-time
          type: string
        digestAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject3OptionsDigestAlgorithmEnum
        domain_aliases:
          description: 接続のドメインエイリアス
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            SAMLサービスプロバイダーのエンティティ識別子（Issuer）。指定されない場合、デフォルトは
            'urn:auth0:{tenant}:{connection}' です。この値は、アイデンティティプロバイダーに送信するSAML
            AuthnRequestメッセージに含まれます。
          maxLength: 128
          minLength: 1
          type: string
        expires:
          description: アイデンティティプロバイダーの署名証明書の有効期限を示すISO 8601形式の日時。
          format: date-time
          type: string
        icon_url:
          description: >-
            Auth0のログインページに表示される接続アイコンのURL。HTTPS
            URLを指定できます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        idpinitiated:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject3OptionsIdpinitiated
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存しないユーザーフィールドの配列
            (https://auth0.com/docs/security/data-security/denylist)
          items:
            description: Auth0データベースに保存しないユーザーフィールドの名前。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        pingFederateBaseUrl:
          description: 接続の作成に使用する情報を返す、PingFederate提供のURL
          format: uri
          maxLength: 256
          minLength: 8
          type: string
        protocolBinding:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject3OptionsProtocolBindingEnum
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject3OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: >-
            Auth0がSAML認証リクエストを送信するアイデンティティプロバイダーのSAML
            SingleSignOnServiceエンドポイントURL。SAML接続の主要なログインURLです。metadataUrlまたはmetadataXmlを使用する場合を除き、必須です。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signSAMLRequest:
          description: >-
            trueの場合、Auth0は接続の署名鍵を使用してSAML認証リクエストに署名します。署名にはリクエストのダイジェストが含まれ、アイデンティティプロバイダーによって検証されます。デフォルトはfalse（署名なしのリクエスト）です。
          type: boolean
        signatureAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject3OptionsSignatureAlgorithmEnum
        signingCert:
          description: >-
            SAMLレスポンスおよびアサーションの署名検証に使用する、アイデンティティプロバイダーのBase64エンコード済みX.509証明書。証明書はデコードされ、暗号学的な署名検証に使用されます。
          maxLength: 10240
          minLength: 1
          type: string
        subject:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject3OptionsSubject
        tenant_domain:
          description: >-
            SAML接続のログインエンドポイントURLの構築に使用するテナントドメイン。単一テナントの場合は文字列、マルチテナントの検証の場合は文字列の配列を指定できます。
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            アイデンティティプロバイダーの署名証明書のSHA-1サムプリント（フィンガープリント）。接続の作成時にsigningCertから自動的に算出されます。各サムプリントは40文字の16進数文字列である必要があります。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject3OptionsUpstreamParams
      required:
        - pingFederateBaseUrl
      type: object
    EventStreamCloudEventConnectionUpdatedObject3StrategyEnum:
      description: 接続の方式。
      enum:
        - pingfederate
      type: string
    EventStreamCloudEventConnectionUpdatedObject4Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject4ConnectedAccounts:
      additionalProperties: false
      description: Connected Accounts および Token Vault で使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject4Metadata:
      additionalProperties: false
      description: >-
        接続に関連付けられたメタデータです。文字列値を持つオブジェクト形式で指定します（最大 255 文字）。メタデータプロパティは最大 10
        個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject4Options:
      additionalProperties: false
      description: '''adfs'' 接続のオプション'
      properties:
        adfs_server:
          description: >-
            WS-Fed エンドポイントおよび証明書の検出に使用する、ADFS フェデレーションメタデータのホストまたは XML
            URL。adfs_server と fedMetadataXml がどちらも指定されていない場合はエラーになります。
          maxLength: 2048
          minLength: 0
          type: string
        cert_rollover_notification:
          description: 証明書の有効期限が近いことを最後に通知した日時。
          format: date-time
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメインです。ユーザーのメールアドレスがこれらのドメインのいずれかに一致する場合、認証時にこの接続へ自動的にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            ADFS サービスプロバイダーのエンティティ識別子（Issuer）。指定しない場合、デフォルトは
            'urn:auth0:{tenant}:{connection}' です。
          maxLength: 128
          minLength: 1
          type: string
        fedMetadataXml:
          description: '''adfs_server'' の代わりに指定するインライン XML。''adfs_server'' と同時に設定することはできません。'
          maxLength: 102400
          minLength: 1
          type: string
        icon_url:
          description: >-
            Auth0 のログインページに表示される接続アイコンの URL。HTTPS URL
            を指定できます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        prev_thumbprints:
          description: >-
            SAML 署名の検証に使用する証明書サムプリント（SHA-128/SHA-256/SHA-512 の 16
            進数ハッシュ）の配列。WS-Federation プロトコルで使用します。サムプリントは最大 20 個まで指定できます。各サムプリントは
            16 進数文字列である必要があります。
          items:
            description: ADFS および Azure AD 接続用の証明書サムプリント。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject4OptionsSetUserRootAttributesEnum
        should_trust_email_verified_connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject4OptionsShouldTrustEmailVerifiedConnectionEnum
        signInEndpoint:
          description: メタデータから検出するか明示的に指定する、Passive Requestor（WS-Fed）のサインインエンドポイント。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        tenant_domain:
          description: Tenant Domain
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            SAML 署名の検証に使用する証明書サムプリント（SHA-128/SHA-256/SHA-512 の 16
            進数ハッシュ）の配列。WS-Federation プロトコルで使用します。サムプリントは最大 20 個まで指定できます。各サムプリントは
            16 進数文字列である必要があります。
          items:
            description: ADFS および Azure AD 接続用の証明書サムプリント。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject4OptionsUpstreamParams
        user_id_attribute:
          description: >-
            一意のユーザー識別子として使用するカスタム ADFS クレーム。指定した場合、この属性は最優先でデフォルトの user_id
            マッピングリストの先頭に追加されます。文字列（単一の ADFS クレーム名）を指定できます。
          maxLength: 128
          minLength: 1
          type: string
      type: object
    EventStreamCloudEventConnectionUpdatedObject4StrategyEnum:
      description: 接続の方式。
      enum:
        - adfs
      type: string
    EventStreamCloudEventConnectionUpdatedObject5Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject5ConnectedAccounts:
      additionalProperties: false
      description: Connected AccountsおよびToken Vaultで使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject5Metadata:
      additionalProperties: false
      description: 接続に関連付けるメタデータ。文字列値を持つオブジェクト形式で指定します（最大255文字）。指定できるメタデータプロパティは最大10個です。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject5Options:
      additionalProperties: false
      description: 「ad」接続のオプション
      properties:
        agentIP:
          description: >-
            認証リクエストがKerberos 認証のために企業ネットワークから送信されていることを検証するために使用する、AD
            ConnectorエージェントのIPアドレス（AD Connectorエージェントにより管理）。
          maxLength: 39
          minLength: 2
          type: string
        agentMode:
          description: >-
            有効にすると、WS-Federationプロトコルではなく、AD
            Connectorエージェントを介した直接のユーザー名／パスワード認証を許可します（AD Connectorエージェントにより管理）。
          type: boolean
        agentVersion:
          description: インストール済みのAD Connectorエージェントソフトウェアのバージョン識別子（AD Connectorエージェントにより管理）。
          maxLength: 12
          minLength: 5
          type: string
        brute_force_protection:
          description: >-
            クレデンシャルスタッフィング攻撃を防ぐため、Auth0のブルートフォース対策を有効にします。有効にすると、繰り返し失敗した特定のIPアドレスからの疑わしいログイン試行をブロックします。
          type: boolean
        certAuth:
          description: AD ConnectorのクライアントSSL証明書認証を有効にし、サインインエンドポイントでHTTPSを必須にします
          type: boolean
        certs:
          description: >-
            AD IDプロバイダーからのSAML署名を検証するために使用するPEM形式のX.509証明書の配列（AD
            Connectorエージェントにより管理）。
          items:
            maxLength: 3072
            minLength: 256
            type: string
          minItems: 0
          type: array
        disable_cache:
          description: 有効にすると、ディレクトリに対してリアルタイムで検証できるよう、AD Connectorの認証結果をキャッシュしません
          type: boolean
        disable_self_service_change_password:
          description: >-
            有効にすると、ユーザーがセルフサービスでパスワードリセットを開始できないよう、ログインページの「Forgot
            Password」リンクを非表示にします
          type: boolean
        domain_aliases:
          description: >-
            識別子優先の認証フローでユーザーをこのAD接続にルーティングするために使用できるドメイン名のリスト。各ドメインは、256文字以下の有効なDNS名である必要があります
          items:
            description: ホームレルムディスカバリーで使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        icon_url:
          description: 表示するアイコンのHTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        ips:
          description: >-
            認証リクエストがKerberos認証または証明書認証のために企業ネットワークから送信されているかどうかを判定するために使用する、CIDR表記のIPアドレス範囲の配列。
          items:
            maxLength: 39
            minLength: 2
            type: string
          minItems: 0
          type: array
        kerberos:
          description: >-
            ユーザーが企業ネットワークのIPアドレス範囲内から認証する場合に、シームレスなSSOのためのWindows統合認証（Kerberos）を有効にします
          type: boolean
        kerberos_only:
          description: true の場合、接続を Kerberos のみの認証に制限し、ユーザー名とパスワードによるフォールバックを許可しません。
          type: boolean
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject5OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: AD-LDAP Connectorエージェントのサインインエンドポイントの種類（AD Connectorエージェントにより管理）。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        tenant_domain:
          description: HRDおよびディスカバリーに使用するプライマリADドメインヒント。
          format: hostname
          maxLength: 512
          minLength: 1
          type: string
        thumbprints:
          description: >-
            署名の検証に使用する証明書SHA-1サムプリントの配列。AD
            Connectorエージェントを使用する場合は、Auth0により管理されます。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject5OptionsUpstreamParams
      type: object
    EventStreamCloudEventConnectionUpdatedObject5StrategyEnum:
      description: 接続の方式。
      enum:
        - ad
      type: string
    EventStreamCloudEventConnectionUpdatedObject6Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject6ConnectedAccounts:
      additionalProperties: false
      description: Connected Accounts と Token Vault で使用する接続の用途を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject6Metadata:
      additionalProperties: false
      description: 文字列値（最大255文字）を持つオブジェクト形式で、接続に関連付けるメタデータ。メタデータプロパティは最大10件まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject6Options:
      additionalProperties: false
      description: '''google-apps'' 接続のオプション'
      properties:
        admin_access_token_expiresin:
          description: >-
            ISO 8601形式の `admin_access_token` の有効期限タイムスタンプ。Auth0
            はこの値を使用して、トークンを更新するタイミングを判断します。
          format: date-time
          type: string
        allow_setting_login_scopes:
          description: >-
            true の場合、ユーザーログイン時に要求する OAuth スコープをカスタマイズできます。カスタムスコープは、必須の email
            スコープと profile スコープに追加されます。false の場合、または省略した場合は、デフォルトの email スコープと
            profile スコープのみが使用されます。Token Vault または Connected Accounts
            機能を有効にすると、このプロパティも自動的に有効になります。
          type: boolean
        api_enable_groups:
          description: >-
            グループ向けの Google Workspace Admin SDK Directory API との連携を有効にします。true
            の場合、Auth0
            はグループとグループメンバーシップを同期でき、グループのインバウンドディレクトリプロビジョニングをサポートします。デフォルトは
            false です。
          type: boolean
        api_enable_users:
          description: >-
            Google Workspace Admin SDK Directory API との連携を有効にします。true の場合、Auth0
            は拡張ユーザー属性（管理者ステータス、停止ステータス、グループメンバーシップ）を取得でき、インバウンドディレクトリプロビジョニング（SCIM）をサポートします。デフォルトは
            true です。
          type: boolean
        client_id:
          description: >-
            Google OAuth 2.0 クライアント ID。[Google Cloud
            Console](https://console.cloud.google.com/apis/credentials) の OAuth
            2.0 Client IDs セクションで確認できます。
          maxLength: 128
          minLength: 1
          type: string
        domain:
          description: ユーザーが所属している必要がある Google Workspace のプライマリドメイン名。
          maxLength: 1024
          minLength: 1
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けるメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかと一致すると、認証時にこの接続へ自動的にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        email:
          description: OAuth フローで `email` スコープを要求するかどうか。
          type: boolean
        ext_agreed_terms:
          description: Google Directory プロファイルから `agreedToTerms` フラグを取得します。
          type: boolean
        ext_groups:
          description: Google グループメンバーシップによる情報拡充を有効にします（`ext_groups_extended` に必要）。
          type: boolean
        ext_groups_extended:
          description: >-
            拡充されたグループエントリに `id`、`email`、`name`
            を含めるか（true）、グループ名のみを含めるか（false）を制御します。`ext_groups` が true
            の場合にのみ設定できます。
          type: boolean
        ext_is_admin:
          description: ログインするユーザーの Google Directory の管理者フラグを取得します。
          type: boolean
        ext_is_suspended:
          description: ログインするユーザーの Google Directory の停止フラグを取得します。
          type: boolean
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject6OptionsFederatedConnectionsAccessTokens
        handle_login_from_social:
          description: >-
            有効にすると、ソーシャルログインで Google アカウントを使用してログインするユーザーのメールドメインが、設定済みの
            tenant_domain または domain_aliases と一致した場合、そのユーザーはこの Google Workspace
            接続に自動的にルーティングされます。これにより、企業ユーザーは汎用的な Google ソーシャルログインではなく、組織の Google
            Workspace
            アイデンティティプロバイダーを介して認証されます。その結果、ディレクトリベースの属性にアクセスでき、組織のセキュリティポリシーを適用できます。新しい接続ではデフォルトで
            true です。
          type: boolean
        icon_url:
          description: >-
            Auth0 のログインページに表示される接続アイコンの URL。HTTPS URL
            を指定できます。認証フローで視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        map_user_id_to_id:
          description: >-
            Auth0 が Google Workspace ユーザーの user_id
            を生成する方法を決定します。false（デフォルト）の場合は、ユーザーのメールアドレスが使用されます。true
            の場合は、ユーザーのメールアドレスが変更されても維持される Google の固定数値ユーザー ID
            が代わりに使用されます。この設定は接続の作成時にのみ構成でき、その後は変更できません。
          type: boolean
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        profile:
          description: OAuth フローで `profile` スコープを要求するかどうか。
          type: boolean
        scope:
          description: >-
            デフォルトの `email profile` スコープに加えて要求する OAuth
            スコープ。`allow_setting_login_scopes` が true でない限り無視されます。
          items:
            maxLength: 255
            minLength: 1
            type: string
          minItems: 1
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject6OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: 認証時に organization を識別するために使用する Google Workspace のプライマリドメイン。
          maxLength: 255
          minLength: 1
          type: string
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject6OptionsUpstreamParams
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionUpdatedObject6StrategyEnum:
      description: 接続戦略。
      enum:
        - google-apps
      type: string
    EventStreamCloudEventConnectionUpdatedObject7Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject7ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault で使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject7Metadata:
      additionalProperties: false
      description: 文字列値（最大255文字）を持つオブジェクト形式で、接続に関連付けられたメタデータ。指定できるメタデータプロパティは最大10個です。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject7Options:
      additionalProperties: false
      description: '''waad'' 接続のオプション'
      properties:
        api_enable_users:
          description: Users API を有効にする
          type: boolean
        app_domain:
          description: >-
            Azure AD アプリケーションのドメイン（例：'contoso.onmicrosoft.com'）。主に WS-Federation
            プロトコルおよび Azure AD v1 エンドポイントで使用されます。
          maxLength: 255
          minLength: 0
          type: string
        app_id:
          description: >-
            Azure AD アプリケーションの Application ID URI（App ID URI）。Resource Owner
            Password フローで Azure AD v1 を使用する場合に必須です。OAuth
            トークンリクエストで要求するリソースを識別するために使用されます。
          maxLength: 500
          minLength: 0
          type: string
        basic_profile:
          description: >-
            Azure AD
            から基本的なユーザープロファイル情報（name、email、given_name、family_name）を取得します。常に有効で必須であり、認証時に取得される最小限のプロファイルデータを表します。
          type: boolean
        cert_rollover_notification:
          description: 証明書の有効期限切れが近いことを最後に通知した日時。
          format: date-time
          type: string
        client_id:
          description: >-
            アプリケーション登録時にアイデンティティプロバイダーから発行される OAuth 2.0
            クライアント識別子。この値は、アイデンティティプロバイダーに対する Auth0 接続を識別します。
          maxLength: 100
          minLength: 0
          type: string
        domain:
          description: >-
            プライマリ Azure AD テナントドメイン（例：'contoso.onmicrosoft.com' または
            'contoso.com'）。
          maxLength: 512
          minLength: 0
          type: string
        domain_aliases:
          description: >-
            この Azure AD
            テナントに関連付けられた代替ドメイン名。複数の検証済みドメインのユーザーが、この接続を通じて認証できるようにします。ドメイン文字列の配列を指定できます。
          items:
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        ext_groups:
          description: >-
            有効（true）にすると、ユーザーの Azure AD セキュリティグループのメンバーシップを取得して保存します。Microsoft
            Graph API の権限（Directory.Read.All）が必要です。max_groups_to_retrieve
            を設定できます。
          type: boolean
        ext_nested_groups:
          description: >-
            true
            の場合、推移的なグループメンバーシップ（グループに含まれるグループ）を含め、ユーザーが所属するすべてのグループを保存します。false（デフォルト）の場合は、直接のグループメンバーシップのみが含まれます。
          type: boolean
        ext_profile:
          description: >-
            有効（true）にすると、Microsoft Graph API を介して Azure AD
            から拡張プロファイル属性（役職、部署、オフィスの所在地など）を取得します。Graph API の権限が必要です。Azure AD v1
            を使用する場合、または v2 で明示的に有効化した場合にのみ使用できます。
          type: boolean
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject7OptionsFederatedConnectionsAccessTokens
        granted:
          description: >-
            必要な Azure AD 権限に対する管理者の同意が付与されているかどうかを示します。OAuth 認可フロー中に Auth0
            が管理する読み取り専用のステータスフィールドです。
          type: boolean
        icon_url:
          description: >-
            Auth0 Login Page に表示される接続アイコンの URL。HTTPS URL
            を指定できます。認証フローでのビジュアルブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        identity_api:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject7OptionsIdentityApiEnum
        max_groups_to_retrieve:
          description: >-
            認証時にユーザーごとに取得する Azure AD
            グループの最大数。多数のグループに所属するユーザーでのパフォーマンス問題を防ぐのに役立ちます。ext_groups
            が有効な場合にのみ適用されます。プラットフォームのデフォルトを使用するには空のままにしてください。
          maxLength: 10
          minLength: 0
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        scope:
          description: >-
            認証時に Azure AD に要求する OAuth 2.0
            スコープ。各スコープは権限を表します（例：'User.Read'、'Group.Read.All'）。Microsoft
            Identity Platform v2.0 でのみ適用されます。使用可能なスコープについては、Microsoft Graph
            の権限リファレンスを参照してください。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject7OptionsSetUserRootAttributesEnum
        should_trust_email_verified_connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject7OptionsShouldTrustEmailVerifiedConnectionEnum
        tenantId:
          description: >-
            UUID 形式の Azure AD テナント ID。Azure AD organization の一意の識別子です。有効な36文字の
            UUID である必要があります。
          format: uuid
          maxLength: 36
          minLength: 36
          type: string
        tenant_domain:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject7OptionsTenantDomain
        thumbprints:
          description: >-
            SAML 署名の検証に使用する証明書サムプリント（SHA-128/SHA-256/SHA-512
            の16進ハッシュ）の配列。WS-Federation
            プロトコルで使用されます。サムプリントは最大20個まで指定できます。各サムプリントは16進数文字列である必要があります。
          items:
            description: ADFS および Azure AD 接続用の証明書サムプリント。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject7OptionsUpstreamParams
        useCommonEndpoint:
          description: >-
            有効（true）にすると、マルチテナント認証に Azure AD の共通エンドポイントを使用します。任意の Azure AD
            organization のユーザーがサインインできるようになります。userid_attribute を 'sub'（'oid'
            ではなく）に設定する必要があります。SCIM プロビジョニングとは併用できません。デフォルトは false です。
          type: boolean
        use_wsfed:
          description: >-
            WS-Federation プロトコルを使用するかどうかを示します。true の場合は WS-Federation を使用し、false
            の場合は OpenID Connect を使用します。
          type: boolean
        userid_attribute:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject7OptionsUseridAttributeEnum
        waad_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject7OptionsWaadProtocolEnum
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionUpdatedObject7StrategyEnum:
      description: 接続の方式。
      enum:
        - waad
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject0Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject0ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
        cross_app_access:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject0Metadata:
      additionalProperties: false
      description: >-
        文字列値を持つオブジェクト形式で指定する、接続に関連付けられたメタデータ（最大 255 文字）。メタデータプロパティは最大 10
        個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject0Options:
      additionalProperties: false
      description: '''oidc'' 接続のオプション'
      properties:
        attribute_map:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsAttributeMap
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされる、アイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントは OAuth 2.0 認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        client_id:
          description: >-
            アプリケーション登録時にアイデンティティプロバイダーから発行される OAuth 2.0
            クライアント識別子。この値は、アイデンティティプロバイダーに対する Auth0 接続を識別します。
          maxLength: 255
          minLength: 0
          type: string
        connection_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsConnectionSettings
        discovery_url:
          description: >-
            アイデンティティプロバイダーの OIDC
            ディスカバリーエンドポイント（/.well-known/openid-configuration）の
            URL。指定され、oidc_metadata が空の場合、Auth0
            はエンドポイントやサポート機能を含むプロバイダーの設定を自動的に取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかと一致すると、認証時にこの接続へ自動的にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        dpop_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsDpopSigningAlgEnum
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsFederatedConnectionsAccessTokens
        icon_url:
          description: 表示するアイコンの HTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        id_token_session_expiry_supported:
          description: >-
            アイデンティティプロバイダーが id_token を介したセッション有効期限をサポートしているかどうかを示します。true
            の場合、システムは id_token 内の session_expiry クレームを使用してセッション有効期限を判断します。
          type: boolean
        id_token_signed_response_algs:
          description: ID トークンの検証に使用できるアルゴリズムのリスト。strategy=oidc または okta の場合に適用されます。
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsIdTokenSignedResponseAlgsItemEnum
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーから発行される ID トークン内の 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsOidcMetadata
        schema_version:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsSchemaVersionEnum
        scope:
          description: >-
            認可時に要求する、スペース区切りの OAuth 2.0 スコープのリスト。'openid'（OIDC
            仕様で必須）を含める必要があります。一般的な値: 'openid profile
            email'。追加のスコープはアイデンティティプロバイダーによって異なります。
          maxLength: 255
          minLength: 6
          type: string
        send_back_channel_nonce:
          description: >-
            true で、type が 'back_channel' の場合、リプレイ攻撃を防ぐため、認可リクエストに暗号学的 nonce
            を含めます。アイデンティティプロバイダーは、検証用にこの nonce を ID トークンに含める必要があります。
          type: boolean
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: テナントドメイン
          maxLength: 255
          minLength: 1
          type: string
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換するためのアイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL。有効な
            HTTPS URL である必要があります。認可コードフローでは必須ですが、Implicit フローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_method:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsTokenEndpointAuthMethodEnum
        token_endpoint_auth_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsTokenEndpointAuthSigningAlgEnum
        token_endpoint_jwtca_aud_format:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsTokenEndpointJwtcaAudFormatEnum
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsTypeEnum
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsUpstreamParams
        useOauthSpecScope:
          description: >-
            true の場合、アイデンティティプロバイダーの認可エンドポイントの呼び出し時に、カンマ区切りではなく OAuth 2.0
            仕様に準拠したスペース区切りのスコープを使用します。connection_scope
            パラメータを使用する場合にのみ関係します。https://auth0.com/docs/authenticate/identity-providers/adding-scopes-for-an-external-idp#pass-scopes-to-authorize-endpoint
            を参照してください。
          type: boolean
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの任意の URL。属性マッピングとともに設定すると、Auth0
            はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject0StrategyEnum:
      description: 接続戦略。
      enum:
        - oidc
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject1Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject1ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject1Metadata:
      additionalProperties: false
      description: 文字列値（最大 255 文字）を持つオブジェクト形式の、接続に関連付けられたメタデータ。メタデータプロパティは最大 10 個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject1Options:
      additionalProperties: false
      description: '''okta'' 接続のオプション'
      properties:
        attribute_map:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsAttributeMap
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされる、アイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントは OAuth 2.0 認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        client_id:
          description: >-
            アプリケーション登録時にアイデンティティプロバイダーから発行される OAuth 2.0
            クライアント識別子。この値は、アイデンティティプロバイダーに対する Auth0 接続を識別します。
          maxLength: 255
          minLength: 0
          type: string
        connection_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsConnectionSettings
        domain:
          description: >-
            Okta組織のドメイン（例:
            dev-123456.okta.com）。スキームや末尾のスラッシュを含めず、Oktaサーバーのドメインのみを指定してください。ディスカバリーは、connection.options.oidc_metadataが空でドメインが指定されている場合にのみ実行されます。
          maxLength: 255
          minLength: 4
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかと一致すると、認証時にこの接続へ自動的にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        dpop_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsDpopSigningAlgEnum
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsFederatedConnectionsAccessTokens
        icon_url:
          description: 表示するアイコンの HTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        id_token_session_expiry_supported:
          description: >-
            アイデンティティプロバイダーが id_token によるセッション有効期限をサポートしているかどうかを示します。true
            の場合、システムは id_token 内の session_expiry クレームを使用してセッション有効期限を判断します。
          type: boolean
        id_token_signed_response_algs:
          description: ID トークンの検証に使用できるアルゴリズムのリスト。strategy=oidc または okta の場合に適用されます。
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsIdTokenSignedResponseAlgsItemEnum
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーからの ID トークン内の 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0
            データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsOidcMetadata
        schema_version:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsSchemaVersionEnum
        scope:
          description: >-
            認可時に要求する、スペース区切りの OAuth 2.0 スコープのリスト。'openid'（OIDC
            仕様で必須）を含める必要があります。一般的な値: 'openid profile
            email'。追加のスコープはアイデンティティプロバイダーによって異なります。
          maxLength: 255
          minLength: 6
          type: string
        send_back_channel_nonce:
          description: >-
            true かつ type が 'back_channel' の場合、リプレイ攻撃を防ぐために認可リクエストに暗号学的 nonce
            を含めます。アイデンティティプロバイダーは、検証のためにこの nonce を ID トークンに含める必要があります。
          type: boolean
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: テナントドメイン
          maxLength: 255
          minLength: 1
          type: string
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換するアイデンティティプロバイダーのOAuth 2.0トークンエンドポイントのURL。有効なHTTPS
            URLである必要があります。認可コードフローでは必須ですが、インプリシットフローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_method:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsTokenEndpointAuthMethodEnum
        token_endpoint_auth_signing_alg:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsTokenEndpointAuthSigningAlgEnum
        token_endpoint_jwtca_aud_format:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsTokenEndpointJwtcaAudFormatEnum
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsTypeEnum
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsUpstreamParams
        useOauthSpecScope:
          description: >-
            trueの場合、アイデンティティプロバイダーの認可エンドポイントの呼び出し時に、カンマ区切りではなくOAuth
            2.0仕様に準拠したスペース区切りのスコープを使用します。connection_scopeパラメータを使用する場合にのみ該当します。https://auth0.com/docs/authenticate/identity-providers/adding-scopes-for-an-external-idp#pass-scopes-to-authorize-endpoint
            を参照してください。
          type: boolean
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーのUserInfoエンドポイントの任意のURL。属性マッピングとともに設定すると、Auth0はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject1StrategyEnum:
      description: 接続戦略。
      enum:
        - okta
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject2Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject2ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよびToken Vaultで使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject2Metadata:
      additionalProperties: false
      description: 文字列値（最大255文字）を持つオブジェクト形式で指定する、接続に関連付けられたメタデータ。メタデータプロパティは最大10個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject2Options:
      additionalProperties: false
      description: '''samlp''接続のオプション'
      properties:
        assertion_decryption_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsAssertionDecryptionSettings
        cert:
          description: >-
            .der形式のアイデンティティプロバイダーのX.509署名証明書。SAMLレスポンスおよびアサーションの署名検証に使用されます。signingCertの代替として後方互換性のために保持されています。代わりにsigningCertを使用してください。
          maxLength: 10240
          minLength: 1
          type: string
        cert_rollover_notification:
          description: 証明書の有効期限が近いことを知らせる最新の通知のタイムスタンプ。
          format: date-time
          type: string
        debug:
          description: >-
            trueの場合、SAMLリクエスト／レスポンスの詳細を含む'w'（警告）イベントをテナントログに記録し、詳細なSAMLデバッグを有効にします。警告:
            機密性の高いユーザー情報（PII、資格情報）が公開される可能性があるため、デバッグ目的で一時的にのみ有効にしてください。
          type: boolean
        deflate:
          description: trueの場合、HTTP-Redirect Bindingを介して送信されるSAMLリクエストのDEFLATE圧縮を有効にします。
          type: boolean
        destinationUrl:
          description: Auth0がSAML認証リクエストを送信するURL（IDプロバイダーのSSO URL）。有効なHTTPS URLである必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        digestAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsDigestAlgorithmEnum
        disableFieldsMapFix:
          description: >-
            trueの場合、SAML属性をユーザープロファイルのフィールドに適切にマッピングするためのfieldsMap設定の自動修正を無効にします。デフォルトはfalse（fieldsMapの修正は有効）です。
          type: boolean
        disableSignout:
          description: >-
            trueの場合、ユーザーのサインアウト時にIDプロバイダーへのSAMLログアウトリクエスト（SingleLogoutService）の送信を無効にします。ユーザーはAuth0からログアウトされますが、IDプロバイダーにはログインしたままです。デフォルトはfalse（フェデレーションログアウトは有効）です。
          type: boolean
        discovery_url:
          description: >-
            IDプロバイダーのOIDC
            Discoveryエンドポイント（/.well-known/openid-configuration）のURL。指定され、oidc_metadataが空の場合、Auth0はエンドポイントやサポート対象の機能を含むプロバイダー設定を自動的に取得します。Cross
            App Accessで使用します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        domain_aliases:
          description: 接続のドメインエイリアス
          items:
            description: Home Realm Discoveryに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            SAMLサービスプロバイダーのエンティティ識別子（発行者）。指定しない場合、デフォルトは'urn:auth0:{tenant}:{connection}'です。この値はアイデンティティプロバイダーに送信されるSAML
            AuthnRequestメッセージに含まれます。
          maxLength: 128
          minLength: 1
          type: string
        expires:
          description: アイデンティティプロバイダーの署名証明書の有効期限を示すISO 8601形式の日時。
          format: date-time
          type: string
        fieldsMap:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsFieldsMap
        fieldsMapJsonRaw:
          description: fieldsMap設定の生のJSON文字列表現。fieldsMapオブジェクトの保存と取得のために内部で使用されます。
          maxLength: 8192
          minLength: 0
          type: string
        global_token_revocation_jwt_iss:
          description: >-
            IDプロバイダーからのGlobal Token
            Revocationリクエスト内のJWTトークンで想定される'iss'（発行者）クレーム値。設定されている場合、Auth0はトークンの取り消しを処理する前に、JWTの発行者がこの値と一致することを検証します。global_token_revocation_jwt_subとともに使用する必要があります。
          maxLength: 1024
          minLength: 1
          type: string
        global_token_revocation_jwt_sub:
          description: >-
            IDプロバイダーからのGlobal Token
            Revocationリクエスト内のJWTトークンで想定される'sub'（Subject）クレーム値。設定されている場合、Auth0はトークンの取り消しを処理する前に、JWTのサブジェクトがこの値と一致することを検証します。global_token_revocation_jwt_issとともに使用する必要があります。
          maxLength: 1024
          minLength: 1
          type: string
        icon_url:
          description: >-
            Auth0ログインページに表示される接続アイコンのURL。HTTPS
            URLを指定できます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        idpinitiated:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsIdpinitiated
        metadataUrl:
          description: >-
            IDプロバイダーのSAMLメタデータドキュメントのHTTPS
            URL。指定されている場合、Auth0はメタデータを自動的に取得・解析し、signInEndpoint、signOutEndpoint、signingCert、signSAMLRequest、protocolBindingを抽出します。metadataUrlまたはmetadataXmlのいずれか一方のみを使用してください。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        oidc_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsOidcMetadata
        protocolBinding:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsProtocolBindingEnum
        recipientUrl:
          description: Auth0がSAML認証リクエストを送信するURL（IDプロバイダーのSSO URL）。有効なHTTPS URLである必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        requestTemplate:
          description: >-
            SAML認証リクエスト用のカスタムXMLテンプレート。@@variableName@@構文による変数置換をサポートします。指定されていない場合は、デフォルトのSAML
            AuthnRequestテンプレートを使用します。https://auth0.com/docs/authenticate/protocols/saml/saml-sso-integrations/configure-auth0-saml-service-provider#customize-the-request-template
            を参照してください。
          maxLength: 10240
          minLength: 1
          type: string
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: >-
            Auth0がSAML認証リクエストを送信するアイデンティティプロバイダーのSAML
            SingleSignOnServiceエンドポイントURL。SAML接続の主要なログインURLです。metadataUrlまたはmetadataXmlを使用する場合を除き必須です。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signOutEndpoint:
          description: >-
            フェデレーションサインアウト時にAuth0がログアウトリクエストを送信するIDプロバイダーのSAML
            SingleLogoutServiceエンドポイントURL。指定されていない場合は、signInEndpointがデフォルトで使用されます。disableSignoutがfalseの場合にのみ使用されます。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signSAMLRequest:
          description: >-
            trueの場合、Auth0は接続の署名キーを使用してSAML認証リクエストに署名します。署名にはリクエストのダイジェストが含まれ、アイデンティティプロバイダーによって検証されます。デフォルトはfalse（署名なしのリクエスト）です。
          type: boolean
        signatureAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsSignatureAlgorithmEnum
        signingCert:
          description: >-
            SAMLレスポンスおよびアサーションの署名検証に使用する、アイデンティティプロバイダーのBase64エンコードされたX.509証明書。証明書はデコードされ、暗号学的な署名検証に使用されます。
          maxLength: 10240
          minLength: 1
          type: string
        subject:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsSubject
        tenant_domain:
          description: >-
            SAML接続でログインエンドポイントURLの構築に使用するテナントドメイン。シングルテナントの場合は文字列、マルチテナントの検証の場合は文字列の配列を指定できます。
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            アイデンティティプロバイダーの署名証明書のSHA-1サムプリント（フィンガープリント）。接続の作成時にsigningCertから自動的に算出されます。各サムプリントは40文字の16進数文字列である必要があります。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsUpstreamParams
        user_id_attribute:
          description: >-
            一意のユーザー識別子として使用するカスタムSAMLアサーション属性。指定されている場合、この属性は最高優先度でデフォルトのuser_idマッピングリストの先頭に追加されます。文字列（単一のSAML属性名）を指定できます。
          maxLength: 2396
          minLength: 1
          type: string
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject2StrategyEnum:
      description: 接続ストラテジー。
      enum:
        - samlp
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject3Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject3ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject3Metadata:
      additionalProperties: false
      description: 文字列値（最大 255 文字）を持つオブジェクト形式で、接続に関連付けられたメタデータ。メタデータプロパティは最大 10 個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject3Options:
      additionalProperties: false
      description: '''pingfederate'' 接続のオプション'
      properties:
        assertion_decryption_settings:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsAssertionDecryptionSettings
        cert:
          description: >-
            .der 形式のアイデンティティプロバイダーの X.509 署名証明書。SAML
            レスポンスおよびアサーションの署名を検証するために使用します。これは signingCert
            の代替であり、後方互換性のために保持されています。代わりに signingCert を使用してください。
          maxLength: 10240
          minLength: 1
          type: string
        cert_rollover_notification:
          description: 最後に送信された、まもなく有効期限が切れる証明書に関する通知のタイムスタンプ。
          format: date-time
          type: string
        digestAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsDigestAlgorithmEnum
        domain_aliases:
          description: 接続のドメインエイリアス
          items:
            description: Home Realm Discovery に使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            SAMLサービスプロバイダーのエンティティ識別子（Issuer）。指定しない場合、既定値は'urn:auth0:{tenant}:{connection}'です。この値は、アイデンティティプロバイダーに送信されるSAML
            AuthnRequestメッセージに含まれます。
          maxLength: 128
          minLength: 1
          type: string
        expires:
          description: アイデンティティプロバイダーの署名証明書の有効期限を示すISO 8601形式の日時。
          format: date-time
          type: string
        icon_url:
          description: >-
            Auth0のログインページに表示される接続アイコンのURL。HTTPS
            URLを指定できます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        idpinitiated:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsIdpinitiated
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        pingFederateBaseUrl:
          description: 接続の作成に使用する情報を返す、PingFederateが提供するURL
          format: uri
          maxLength: 256
          minLength: 8
          type: string
        protocolBinding:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsProtocolBindingEnum
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: >-
            Auth0がSAML認証リクエストを送信するアイデンティティプロバイダーのSAML
            SingleSignOnServiceエンドポイントURL。このSAML接続の主要なログインURLです。metadataUrlまたはmetadataXmlを使用する場合を除き、必須です。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        signSAMLRequest:
          description: >-
            trueの場合、Auth0は接続の署名鍵を使用してSAML認証リクエストに署名します。署名にはリクエストのダイジェストが含まれ、アイデンティティプロバイダーによって検証されます。既定値はfalse（署名なしのリクエスト）です。
          type: boolean
        signatureAlgorithm:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsSignatureAlgorithmEnum
        signingCert:
          description: >-
            SAMLレスポンスおよびアサーションの署名検証に使用する、アイデンティティプロバイダーのBase64エンコードされたX.509証明書。証明書はデコードされ、暗号学的な署名検証に使用されます。
          maxLength: 10240
          minLength: 1
          type: string
        subject:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsSubject
        tenant_domain:
          description: >-
            SAML接続のログインエンドポイントURLの構築に使用するテナントドメイン。シングルテナントの場合は文字列、マルチテナントの検証の場合は文字列の配列を指定できます。
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            アイデンティティプロバイダーの署名証明書のSHA-1サムプリント（フィンガープリント）。接続の作成時にsigningCertから自動的に算出されます。各サムプリントは40文字の16進数文字列である必要があります。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsUpstreamParams
      required:
        - pingFederateBaseUrl
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject3StrategyEnum:
      description: 接続の戦略。
      enum:
        - pingfederate
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject4Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject4ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントおよびToken Vaultで使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject4Metadata:
      additionalProperties: false
      description: 文字列値（最大255文字）を持つオブジェクト形式の、接続に関連付けられたメタデータ。指定できるメタデータプロパティは最大10個です。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject4Options:
      additionalProperties: false
      description: '''adfs''接続のオプション'
      properties:
        adfs_server:
          description: >-
            WS-Fedエンドポイントおよび証明書の検出に使用する、ADFSフェデレーションメタデータのホストまたはXML
            URL。adfs_serverとfedMetadataXmlの両方がない場合はエラーになります。
          maxLength: 2048
          minLength: 0
          type: string
        cert_rollover_notification:
          description: 有効期限が近づいている証明書に関する最終通知のタイムスタンプ。
          format: date-time
          type: string
        domain_aliases:
          description: >-
            この接続に関連付けられた、ホームレルムディスカバリー（HRD）用のメールドメインです。ユーザーのメールアドレスがこれらのドメインのいずれかと一致すると、認証時に自動的にこの接続にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアスです。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        entityId:
          description: >-
            ADFS サービスプロバイダーのエンティティ識別子（Issuer）です。指定しない場合、デフォルトは
            'urn:auth0:{tenant}:{connection}' です。
          maxLength: 128
          minLength: 1
          type: string
        fedMetadataXml:
          description: '''adfs_server'' の代わりに使用するインライン XML です。''adfs_server'' と同時に設定することはできません。'
          maxLength: 102400
          minLength: 1
          type: string
        icon_url:
          description: >-
            Auth0 のログインページに表示される接続アイコンの URL です。HTTPS URL
            を指定できます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        non_persistent_attrs:
          description: >-
            Auth0 データベースに保存しないユーザーフィールドの配列です
            (https://auth0.com/docs/security/data-security/denylist)
          items:
            description: Auth0 データベースに保存しないユーザーフィールド名です。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        prev_thumbprints:
          description: >-
            SAML 署名の検証に使用する証明書サムプリント（SHA-128/SHA-256/SHA-512
            の16進数ハッシュ）の配列です。WS-Federation
            プロトコルで使用されます。最大20個のサムプリントを指定できます。各サムプリントは16進数文字列である必要があります。
          items:
            description: ADFS および Azure AD 接続用の証明書サムプリントです。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject4OptionsSetUserRootAttributesEnum
        should_trust_email_verified_connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject4OptionsShouldTrustEmailVerifiedConnectionEnum
        signInEndpoint:
          description: メタデータから検出された、または明示的に指定された Passive Requestor（WS-Fed）のサインインエンドポイントです。
          format: uri
          maxLength: 2048
          minLength: 8
          type: string
        tenant_domain:
          description: テナントドメイン
          maxLength: 255
          minLength: 1
          type: string
        thumbprints:
          description: >-
            SAML 署名の検証に使用する証明書サムプリント（SHA-128/SHA-256/SHA-512
            の16進数ハッシュ）の配列です。WS-Federation
            プロトコルで使用されます。最大20個のサムプリントを指定できます。各サムプリントは16進数文字列である必要があります。
          items:
            description: ADFS および Azure AD 接続用の証明書サムプリントです。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject4OptionsUpstreamParams
        user_id_attribute:
          description: >-
            一意のユーザー識別子として使用するカスタム ADFS クレームです。指定した場合、この属性は最優先でデフォルトの user_id
            マッピングリストの先頭に追加されます。文字列（単一の ADFS クレーム名）を指定できます。
          maxLength: 128
          minLength: 1
          type: string
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject4StrategyEnum:
      description: 接続戦略です。
      enum:
        - adfs
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject5Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject5ConnectedAccounts:
      additionalProperties: false
      description: 連携アカウントおよび Token Vault に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject5Metadata:
      additionalProperties: false
      description: 文字列値（最大255文字）を持つオブジェクト形式で、接続に関連付けられたメタデータです。メタデータプロパティは最大10個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject5Options:
      additionalProperties: false
      description: '''ad'' 接続のオプション'
      properties:
        agentIP:
          description: >-
            Kerberos 認証で、認証リクエストが企業ネットワークから発信されていることを検証するために使用する AD Connector
            エージェントの IP アドレスです（AD Connector エージェントにより管理）。
          maxLength: 39
          minLength: 2
          type: string
        agentMode:
          description: >-
            有効にすると、WS-Federation プロトコルではなく AD Connector
            エージェントを介した直接のユーザー名/パスワード認証を許可します（AD Connector エージェントにより管理）。
          type: boolean
        agentVersion:
          description: >-
            インストールされている AD Connector エージェントソフトウェアのバージョン識別子です（AD Connector
            エージェントにより管理）。
          maxLength: 12
          minLength: 5
          type: string
        brute_force_protection:
          description: >-
            認証情報詰め込み攻撃を防止するために Auth0 のブルートフォース対策を有効にします。有効にすると、失敗が繰り返された後、特定の IP
            アドレスからの不審なログイン試行をブロックします。
          type: boolean
        certAuth:
          description: AD Connector のクライアント SSL 証明書認証を有効にし、サインインエンドポイントで HTTPS を必須にします
          type: boolean
        certs:
          description: >-
            AD アイデンティティプロバイダーからの SAML 署名の検証に使用する PEM 形式の X.509 証明書の配列です（AD
            Connector エージェントにより管理）。
          items:
            maxLength: 3072
            minLength: 256
            type: string
          minItems: 0
          type: array
        disable_cache:
          description: 有効にすると、ディレクトリに対するリアルタイム検証を確実にするため、AD Connector の認証結果をキャッシュしません
          type: boolean
        disable_self_service_change_password:
          description: >-
            有効にすると、ユーザーがセルフサービスでパスワードをリセットできないよう、ログインページの「パスワードをお忘れですか？」リンクを非表示にします
          type: boolean
        domain_aliases:
          description: >-
            識別子優先の認証フローでユーザーをこの AD
            接続にルーティングするために使用できるドメイン名のリストです。各ドメインは256文字以内の有効な DNS 名である必要があります
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアスです。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        icon_url:
          description: 表示するアイコンの HTTPS URL
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        ips:
          description: >-
            認証リクエストが Kerberos または証明書認証のために企業ネットワークから発信されているかどうかを判断するために使用する、CIDR
            表記の IP アドレス範囲の配列です。
          items:
            maxLength: 39
            minLength: 2
            type: string
          minItems: 0
          type: array
        kerberos:
          description: >-
            ユーザーが企業ネットワークの IP アドレス範囲内から認証する際に、シームレスな SSO を実現する Windows
            統合認証（Kerberos）を有効にします
          type: boolean
        kerberos_only:
          description: true の場合、接続を Kerberos のみの認証に制限し、ユーザー名/パスワードへのフォールバックを許可しません。
          type: boolean
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject5OptionsSetUserRootAttributesEnum
        signInEndpoint:
          description: AD-LDAPコネクターエージェント（AD Connectorエージェントが管理）のサインインエンドポイントタイプ。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        tenant_domain:
          description: HRDおよびディスカバリーに使用するプライマリADドメインヒント。
          format: hostname
          maxLength: 512
          minLength: 1
          type: string
        thumbprints:
          description: 署名の検証に使用する証明書SHA-1サムプリントの配列。AD Connectorエージェントの使用時はAuth0が管理します。
          items:
            maxLength: 40
            minLength: 40
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject5OptionsUpstreamParams
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject5StrategyEnum:
      description: 接続戦略。
      enum:
        - ad
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject6Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続のPurposeを設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject6ConnectedAccounts:
      additionalProperties: false
      description: Connected AccountsおよびToken Vaultに使用する接続のPurposeを設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject6Metadata:
      additionalProperties: false
      description: 文字列値（最大255文字）を持つオブジェクト形式で、接続に関連付けられたメタデータ。メタデータプロパティは最大10個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject6Options:
      additionalProperties: false
      description: '''google-apps''接続のオプション'
      properties:
        admin_access_token_expiresin:
          description: >-
            ISO
            8601形式の`admin_access_token`の有効期限タイムスタンプ。Auth0はこの値を使用して、トークンを更新するタイミングを判断します。
          format: date-time
          type: string
        allow_setting_login_scopes:
          description: >-
            trueの場合、ユーザーログイン時にリクエストするOAuthスコープをカスタマイズできます。カスタムスコープは必須のemailおよびprofileスコープに追加されます。falseまたは省略した場合は、デフォルトのemailおよびprofileスコープのみが使用されます。このプロパティは、Token
            VaultまたはConnected Accounts機能を有効にすると自動的に有効になります。
          type: boolean
        api_enable_groups:
          description: >-
            グループ用のGoogle Workspace Admin SDK Directory
            APIとの連携を有効にします。trueの場合、Auth0はグループとグループメンバーシップを同期でき、グループのインバウンドディレクトリプロビジョニングをサポートします。デフォルトはfalseです。
          type: boolean
        api_enable_users:
          description: >-
            Google Workspace Admin SDK Directory
            APIとの連携を有効にします。trueの場合、Auth0は拡張ユーザー属性（管理者ステータス、停止ステータス、グループメンバーシップ）を取得でき、インバウンドディレクトリプロビジョニング（SCIM）をサポートします。デフォルトはtrueです。
          type: boolean
        client_id:
          description: >-
            Google OAuth 2.0クライアントID。[Google Cloud
            Console](https://console.cloud.google.com/apis/credentials) のOAuth
            2.0 Client IDsセクションで確認できます。
          maxLength: 128
          minLength: 1
          type: string
        domain:
          description: ユーザーが所属する必要があるプライマリGoogle Workspaceドメイン名。
          maxLength: 1024
          minLength: 1
          type: string
        domain_aliases:
          description: >-
            ホームレルムディスカバリー（HRD）用にこの接続に関連付けられたメールドメイン。ユーザーのメールアドレスがこれらのドメインのいずれかと一致すると、認証時に自動的にこの接続にルーティングされます。
          items:
            description: ホームレルムディスカバリーに使用するドメインエイリアス。
            maxLength: 255
            minLength: 1
            type: string
          minItems: 0
          type: array
        email:
          description: OAuthフローで`email`スコープをリクエストするかどうか。
          type: boolean
        ext_agreed_terms:
          description: Google Directoryプロファイルから`agreedToTerms`フラグを取得します。
          type: boolean
        ext_groups:
          description: Googleグループメンバーシップによる拡張を有効にします（`ext_groups_extended`に必要）。
          type: boolean
        ext_groups_extended:
          description: >-
            拡張されたグループエントリに`id`、`email`、`name`を含めるか（true）、グループ名のみを含めるか（false）を制御します。`ext_groups`がtrueの場合にのみ設定できます。
          type: boolean
        ext_is_admin:
          description: サインインするユーザーのGoogle Directoryの管理者フラグを取得します。
          type: boolean
        ext_is_suspended:
          description: サインインするユーザーのGoogle Directoryの停止フラグを取得します。
          type: boolean
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject6OptionsFederatedConnectionsAccessTokens
        handle_login_from_social:
          description: >-
            有効にすると、ソーシャルログインでGoogleアカウントを使用してサインインするユーザーは、メールドメインが設定済みのtenant_domainまたはdomain_aliasesと一致する場合、このGoogle
            Workspace接続に自動的にルーティングされます。これにより、企業ユーザーは汎用的なGoogleソーシャルログインではなく、組織のGoogle
            Workspaceアイデンティティプロバイダーを通じて認証されます。その結果、ディレクトリベースの属性にアクセスでき、組織のセキュリティポリシーを適用できます。新しい接続ではデフォルトでtrueです。
          type: boolean
        icon_url:
          description: >-
            Auth0ログインページに表示される接続アイコンのURL。HTTPS
            URLを指定できます。認証フローでの視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        map_user_id_to_id:
          description: >-
            Auth0がGoogle
            Workspaceユーザーのuser_idを生成する方法を決定します。false（デフォルト）の場合はユーザーのメールアドレスが使用されます。trueの場合は、メールアドレスが変更されても変わらないGoogleの固定数値ユーザーIDが代わりに使用されます。この設定は接続の作成時にのみ構成でき、その後は変更できません。
          type: boolean
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        profile:
          description: OAuthフローで`profile`スコープを要求するかどうか。
          type: boolean
        scope:
          description: >-
            デフォルトの`email
            profile`スコープに加えて要求するOAuthスコープ。`allow_setting_login_scopes`がtrueでない限り無視されます。
          items:
            maxLength: 255
            minLength: 1
            type: string
          minItems: 1
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject6OptionsSetUserRootAttributesEnum
        tenant_domain:
          description: 認証時に組織を識別するために使用するGoogle Workspaceのプライマリドメイン。
          maxLength: 255
          minLength: 1
          type: string
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject6OptionsUpstreamParams
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject6StrategyEnum:
      description: 接続の戦略。
      enum:
        - google-apps
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject7Authentication:
      additionalProperties: false
      description: ログイン時の認証に使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject7ConnectedAccounts:
      additionalProperties: false
      description: 接続済みアカウントとToken Vaultで使用する接続の目的を設定します。
      properties:
        active:
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject7Metadata:
      additionalProperties: false
      description: 文字列値を持つオブジェクト形式で接続に関連付けるメタデータ（最大255文字）。メタデータプロパティは最大10個まで指定できます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject7Options:
      additionalProperties: false
      description: '''waad''接続のオプション'
      properties:
        api_enable_users:
          description: Users APIを有効にする
          type: boolean
        app_domain:
          description: >-
            Azure ADアプリケーションのドメイン（例:
            'contoso.onmicrosoft.com'）。主にWS-FederationプロトコルおよびAzure AD
            v1エンドポイントで使用されます。
          maxLength: 255
          minLength: 0
          type: string
        app_id:
          description: >-
            Azure ADアプリケーションのApplication ID URI（App ID URI）。Resource Owner
            PasswordフローでAzure AD
            v1を使用する場合に必要です。OAuthトークンリクエストで要求されるリソースを識別するために使用されます。
          maxLength: 500
          minLength: 0
          type: string
        basic_profile:
          description: >-
            Azure
            ADから基本的なユーザープロファイル情報（name、email、given_name、family_name）を取得します。常に有効かつ必須であり、認証時に取得される最小限のプロファイルデータを表します。
          type: boolean
        cert_rollover_notification:
          description: まもなく有効期限が切れる証明書に関する最後の通知のタイムスタンプ。
          format: date-time
          type: string
        client_id:
          description: >-
            アプリケーション登録時にアイデンティティプロバイダーから発行されるOAuth
            2.0クライアント識別子。この値により、アイデンティティプロバイダーに対するAuth0接続が識別されます。
          maxLength: 100
          minLength: 0
          type: string
        domain:
          description: 'プライマリAzure ADテナントドメイン（例: ''contoso.onmicrosoft.com''または''contoso.com''）。'
          maxLength: 512
          minLength: 0
          type: string
        domain_aliases:
          description: >-
            このAzure
            ADテナントに関連付けられた代替ドメイン名。複数の検証済みドメインのユーザーがこの接続を通じて認証できるようにします。ドメイン文字列の配列を指定できます。
          items:
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        ext_groups:
          description: >-
            有効（true）の場合、ユーザーのAzure ADセキュリティグループメンバーシップを取得して保存します。Microsoft Graph
            APIの権限（Directory.Read.All）が必要です。max_groups_to_retrieveを設定できます。
          type: boolean
        ext_nested_groups:
          description: >-
            trueの場合、推移的なグループメンバーシップ（グループ内のグループ）を含め、ユーザーが所属するすべてのグループを保存します。false（デフォルト）の場合、直接のグループメンバーシップのみが含まれます。
          type: boolean
        ext_profile:
          description: >-
            有効（true）の場合、Microsoft Graph APIを介してAzure
            ADから拡張プロファイル属性（役職、部署、オフィス所在地など）を取得します。Graph APIの権限が必要です。Azure AD
            v1、またはv2で明示的に有効にした場合にのみ使用できます。
          type: boolean
        federated_connections_access_tokens:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject7OptionsFederatedConnectionsAccessTokens
        granted:
          description: >-
            必要なAzure
            AD権限に対する管理者同意が付与されているかどうかを示します。OAuth認可フロー中にAuth0が管理する読み取り専用のステータスフィールドです。
          type: boolean
        icon_url:
          description: >-
            Auth0ログインページに表示される接続アイコンのURL。HTTPS
            URLを指定できます。認証フローにおける視覚的なブランディングに使用されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        identity_api:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject7OptionsIdentityApiEnum
        max_groups_to_retrieve:
          description: >-
            認証中にユーザーごとに取得するAzure
            ADグループの最大数。多数のグループに所属するユーザーでのパフォーマンスの問題を防ぐのに役立ちます。ext_groupsが有効な場合にのみ適用されます。空のままにするとプラットフォームのデフォルトが使用されます。
          maxLength: 10
          minLength: 0
          type: string
        non_persistent_attrs:
          description: >-
            Auth0データベースに保存しないユーザーフィールドの配列（https://auth0.com/docs/security/data-security/denylist）
          items:
            description: Auth0データベースに保存しないユーザーフィールド名。
            maxLength: 255
            minLength: 0
            type: string
          minItems: 0
          type: array
        scope:
          description: >-
            認証時にAzure AD に要求するOAuth 2.0スコープ。各スコープは権限を表します（例:
            'User.Read'、'Group.Read.All'）。Microsoft Identity Platform
            v2.0でのみ適用されます。利用可能なスコープについては、Microsoft Graph のアクセス許可リファレンスを参照してください。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        set_user_root_attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject7OptionsSetUserRootAttributesEnum
        should_trust_email_verified_connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject7OptionsShouldTrustEmailVerifiedConnectionEnum
        tenantId:
          description: >-
            UUID形式のAzure AD テナントID。Azure AD
            organizationの一意の識別子です。有効な36文字のUUIDである必要があります。
          format: uuid
          maxLength: 36
          minLength: 36
          type: string
        tenant_domain:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject7OptionsTenantDomain
        thumbprints:
          description: >-
            SAML署名の検証に使用する証明書サムプリント（SHA-128/SHA-256/SHA-512の16進数ハッシュ）の配列。WS-Federationプロトコルで使用します。指定できるサムプリントは最大20個です。各サムプリントは16進数文字列である必要があります。
          items:
            description: ADFSおよびAzure AD 接続用の証明書サムプリント。
            maxLength: 64
            minLength: 0
            type: string
          minItems: 0
          type: array
        upstream_params:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject7OptionsUpstreamParams
        useCommonEndpoint:
          description: >-
            有効（true）にすると、マルチテナント認証にAzure AD の共通エンドポイントを使用します。任意のAzure AD
            organizationのユーザーがサインインできます。userid_attributeは'oid'ではなく'sub'に設定する必要があります。SCIMプロビジョニングとは併用できません。デフォルトはfalseです。
          type: boolean
        use_wsfed:
          description: >-
            WS-Federationプロトコルを使用するかどうかを示します。trueの場合はWS-Federationを、falseの場合はOpenID
            Connectを使用します。
          type: boolean
        userid_attribute:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject7OptionsUseridAttributeEnum
        waad_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject7OptionsWaadProtocolEnum
      required:
        - client_id
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject7StrategyEnum:
      description: 接続の方式。
      enum:
        - waad
      type: string
    EventStreamCloudEventGroupCreatedObject0TypeEnum:
      description: グループの種類。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupCreatedObject1TypeEnum:
      description: グループのタイプ。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupCreatedObject2TypeEnum:
      description: グループのタイプ。
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupCreatedPreviousObject0TypeEnum:
      description: グループのタイプ。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupCreatedPreviousObject1TypeEnum:
      description: グループのタイプ。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupCreatedPreviousObject2TypeEnum:
      description: グループのタイプ。
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupDeletedObject0TypeEnum:
      description: グループのタイプ。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupDeletedObject1TypeEnum:
      description: グループの種類。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupDeletedObject2TypeEnum:
      description: グループの種類。
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupDeletedPreviousObject0TypeEnum:
      description: グループのタイプ。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupDeletedPreviousObject1TypeEnum:
      description: グループのタイプ。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupDeletedPreviousObject2TypeEnum:
      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: organization グループへの参照
      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
    EventStreamCloudEventGroupMemberAddedPreviousObjectGroup0:
      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/EventStreamCloudEventGroupMemberAddedPreviousObjectGroup0TypeEnum
      required:
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventGroupMemberAddedPreviousObjectGroup1:
      additionalProperties: false
      description: organizationグループへの参照
      properties:
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: グループに関連付けられたorganization ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedPreviousObjectGroup1TypeEnum
      required:
        - id
        - type
        - organization_id
      type: object
    EventStreamCloudEventGroupMemberAddedPreviousObjectGroup2:
      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/EventStreamCloudEventGroupMemberAddedPreviousObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventGroupMemberAddedPreviousObjectMember0:
      additionalProperties: false
      description: member_typeがuserであるグループメンバー
      properties:
        id:
          description: ユーザーの一意の識別子
          type: string
        member_type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedPreviousObjectMember0MemberTypeEnum
      required:
        - member_type
        - id
      type: object
    EventStreamCloudEventGroupMemberAddedPreviousObjectMember1:
      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/EventStreamCloudEventGroupMemberAddedPreviousObjectMember1MemberTypeEnum
        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: organizationグループへの参照
      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: tenantグループへの参照
      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
    EventStreamCloudEventGroupMemberDeletedPreviousObjectGroup0:
      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/EventStreamCloudEventGroupMemberDeletedPreviousObjectGroup0TypeEnum
      required:
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventGroupMemberDeletedPreviousObjectGroup1:
      additionalProperties: false
      description: organizationグループへの参照
      properties:
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: グループに関連付けられたorganization ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedPreviousObjectGroup1TypeEnum
      required:
        - id
        - type
        - organization_id
      type: object
    EventStreamCloudEventGroupMemberDeletedPreviousObjectGroup2:
      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/EventStreamCloudEventGroupMemberDeletedPreviousObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventGroupMemberDeletedPreviousObjectMember0:
      additionalProperties: false
      description: member_typeがuserであるグループメンバー
      properties:
        id:
          description: ユーザーの一意の識別子
          type: string
        member_type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedPreviousObjectMember0MemberTypeEnum
      required:
        - member_type
        - id
      type: object
    EventStreamCloudEventGroupMemberDeletedPreviousObjectMember1:
      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/EventStreamCloudEventGroupMemberDeletedPreviousObjectMember1MemberTypeEnum
        type:
          description: 接続の種類
          type: string
      required:
        - member_type
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventGroupRoleAssignedObjectGroup0:
      additionalProperties: false
      description: 接続グループへの参照
      properties:
        connection_id:
          description: group に関連付けられている接続ID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        external_id:
          description: group の外部識別子。
          type: string
        id:
          description: group の一意の識別子。
          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: organization group への参照
      properties:
        external_id:
          description: group の外部識別子。
          type: string
        id:
          description: group の一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: group に関連付けられている組織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: tenant group への参照
      properties:
        external_id:
          description: group の外部識別子。
          type: string
        id:
          description: group の一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventGroupRoleAssignedPreviousObjectGroup0:
      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/EventStreamCloudEventGroupRoleAssignedPreviousObjectGroup0TypeEnum
      required:
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventGroupRoleAssignedPreviousObjectGroup1:
      additionalProperties: false
      description: organizationグループへの参照
      properties:
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: グループに関連付けられたorganization ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedPreviousObjectGroup1TypeEnum
      required:
        - id
        - type
        - organization_id
      type: object
    EventStreamCloudEventGroupRoleAssignedPreviousObjectGroup2:
      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/EventStreamCloudEventGroupRoleAssignedPreviousObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventGroupRoleDeletedObjectGroup0:
      additionalProperties: false
      description: 接続 group への参照
      properties:
        connection_id:
          description: group に関連付けられている接続 ID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        external_id:
          description: group の外部識別子。
          type: string
        id:
          description: group の一意の識別子。
          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: organization group への参照
      properties:
        external_id:
          description: group の外部識別子。
          type: string
        id:
          description: group の一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: group に関連付けられている組織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: tenant group への参照
      properties:
        external_id:
          description: group の外部識別子。
          type: string
        id:
          description: group の一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventGroupRoleDeletedPreviousObjectGroup0:
      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/EventStreamCloudEventGroupRoleDeletedPreviousObjectGroup0TypeEnum
      required:
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventGroupRoleDeletedPreviousObjectGroup1:
      additionalProperties: false
      description: organizationグループへの参照
      properties:
        external_id:
          description: グループの外部識別子。
          type: string
        id:
          description: グループの一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: グループに関連付けられたorganization ID。
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedPreviousObjectGroup1TypeEnum
      required:
        - id
        - type
        - organization_id
      type: object
    EventStreamCloudEventGroupRoleDeletedPreviousObjectGroup2:
      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/EventStreamCloudEventGroupRoleDeletedPreviousObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventGroupUpdatedObject0TypeEnum:
      description: グループのタイプ。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupUpdatedObject1TypeEnum:
      description: グループのタイプ。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupUpdatedObject2TypeEnum:
      description: グループのタイプ。
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupUpdatedPreviousObject0TypeEnum:
      description: グループの種類。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupUpdatedPreviousObject1TypeEnum:
      description: グループの種類。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupUpdatedPreviousObject2TypeEnum:
      description: グループの種類。
      enum:
        - tenant
      type: string
    EventStreamCloudEventOrgConnectionAddedObjectOrganizationAccessLevel0Enum:
      enum:
        - none
      type: string
    EventStreamCloudEventOrgConnectionAddedObjectOrganizationAccessLevel1Enum:
      enum:
        - readonly
      type: string
    EventStreamCloudEventOrgConnectionAddedObjectOrganizationAccessLevel2Enum:
      enum:
        - limited
      type: string
    EventStreamCloudEventOrgConnectionAddedObjectOrganizationAccessLevel3Enum:
      enum:
        - full
      type: string
    EventStreamCloudEventOrgConnectionAddedPreviousObjectOrganizationAccessLevel0Enum:
      enum:
        - none
      type: string
    EventStreamCloudEventOrgConnectionAddedPreviousObjectOrganizationAccessLevel1Enum:
      enum:
        - readonly
      type: string
    EventStreamCloudEventOrgConnectionAddedPreviousObjectOrganizationAccessLevel2Enum:
      enum:
        - limited
      type: string
    EventStreamCloudEventOrgConnectionAddedPreviousObjectOrganizationAccessLevel3Enum:
      enum:
        - full
      type: string
    EventStreamCloudEventOrgConnectionUpdatedObjectOrganizationAccessLevel0Enum:
      enum:
        - none
      type: string
    EventStreamCloudEventOrgConnectionUpdatedObjectOrganizationAccessLevel1Enum:
      enum:
        - readonly
      type: string
    EventStreamCloudEventOrgConnectionUpdatedObjectOrganizationAccessLevel2Enum:
      enum:
        - limited
      type: string
    EventStreamCloudEventOrgConnectionUpdatedObjectOrganizationAccessLevel3Enum:
      enum:
        - full
      type: string
    EventStreamCloudEventOrgConnectionUpdatedPreviousObjectOrganizationAccessLevel0Enum:
      enum:
        - none
      type: string
    EventStreamCloudEventOrgConnectionUpdatedPreviousObjectOrganizationAccessLevel1Enum:
      enum:
        - readonly
      type: string
    EventStreamCloudEventOrgConnectionUpdatedPreviousObjectOrganizationAccessLevel2Enum:
      enum:
        - limited
      type: string
    EventStreamCloudEventOrgConnectionUpdatedPreviousObjectOrganizationAccessLevel3Enum:
      enum:
        - full
      type: string
    EventStreamCloudEventOrgCreatedObjectBrandingColors:
      additionalProperties: false
      description: ログインページをカスタマイズするために使用する配色。
      properties:
        page_background:
          description: 背景に使用する HEX カラー。
          type: string
        primary:
          description: 主要な要素に使用する HEX カラー。
          type: string
      type: object
    EventStreamCloudEventOrgCreatedPreviousObjectBrandingColors:
      additionalProperties: false
      description: ログインページのカスタマイズに使用する配色。
      properties:
        page_background:
          description: 背景のHEXカラー。
          type: string
        primary:
          description: 主要要素のHEXカラー。
          type: string
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0:
      additionalProperties: false
      description: 接続 group への参照
      properties:
        connection_id:
          description: group に関連付けられた接続 ID。
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        external_id:
          description: group の外部識別子。
          type: string
        id:
          description: group の一意の識別子。
          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: organization group への参照
      properties:
        external_id:
          description: group の外部識別子。
          type: string
        id:
          description: group の一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: group に関連付けられた組織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: tenant group への参照
      properties:
        external_id:
          description: group の外部識別子。
          type: string
        id:
          description: group の一意の識別子。
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectGroup0:
      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/EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectGroup0TypeEnum
      required:
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectGroup1:
      additionalProperties: false
      description: organizationグループへの参照
      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/EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectGroup1TypeEnum
      required:
        - id
        - type
        - organization_id
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectGroup2:
      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/EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectGroup2TypeEnum
      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: organization グループへの参照
      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: tenant グループへの参照
      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
    EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectGroup0:
      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/EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectGroup0TypeEnum
      required:
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectGroup1:
      additionalProperties: false
      description: organizationグループへの参照
      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/EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectGroup1TypeEnum
      required:
        - id
        - type
        - organization_id
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectGroup2:
      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/EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventOrgUpdatedObjectBrandingColors:
      additionalProperties: false
      description: ログインページのカスタマイズに使用する配色。
      properties:
        page_background:
          description: 背景に使用する HEX カラー。
          type: string
        primary:
          description: 主要な要素に使用する HEX カラー。
          type: string
      type: object
    EventStreamCloudEventOrgUpdatedPreviousObjectBrandingColors:
      additionalProperties: false
      description: ログインページのカスタマイズに使用する配色。
      properties:
        page_background:
          description: 背景のHEXカラー。
          type: string
        primary:
          description: 主要要素のHEXカラー。
          type: string
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemCustom:
      additionalProperties: false
      description: カスタム IDプロバイダーの identity オブジェクト。
      properties:
        connection:
          description: この identity を含む接続の名前。
          maxLength: 128
          minLength: 1
          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: Database アイデンティティプロバイダーの identity オブジェクト。
      properties:
        connection:
          description: この identity を含む接続の名前。
          maxLength: 128
          minLength: 1
          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: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          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: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          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: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          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
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemCustom:
      additionalProperties: false
      description: カスタムアイデンティティプロバイダーのアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemCustomIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemCustomProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemCustomProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemCustomUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemDatabase:
      additionalProperties: false
      description: データベースアイデンティティプロバイダーのアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemDatabaseIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemDatabaseProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemDatabaseProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemDatabaseUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemEnterprise:
      additionalProperties: false
      description: エンタープライズアイデンティティプロバイダーのアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemEnterpriseIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemEnterpriseProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemEnterpriseProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemEnterpriseUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemPasswordless:
      additionalProperties: false
      description: パスワードレスアイデンティティプロバイダーのアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemPasswordlessIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemPasswordlessProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemPasswordlessProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemPasswordlessUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemSocial:
      additionalProperties: false
      description: ソーシャルアイデンティティプロバイダーのアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemSocialIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemSocialProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemSocialProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemSocialUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemCustom:
      additionalProperties: false
      description: カスタムIDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          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: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          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: エンタープライズ アイデンティティプロバイダー用のidentityオブジェクト。
      properties:
        connection:
          description: このidentityを含む接続の名前。
          maxLength: 128
          minLength: 1
          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: パスワードレス アイデンティティプロバイダー用のidentityオブジェクト。
      properties:
        connection:
          description: このidentityを含む接続の名前。
          maxLength: 128
          minLength: 1
          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: ソーシャル アイデンティティプロバイダー用のidentityオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          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
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemCustom:
      additionalProperties: false
      description: カスタムアイデンティティプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemCustomIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemCustomProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemCustomProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemCustomUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemDatabase:
      additionalProperties: false
      description: データベースアイデンティティプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemDatabaseIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemDatabaseProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemDatabaseProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemDatabaseUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemEnterprise:
      additionalProperties: false
      description: エンタープライズアイデンティティプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemEnterpriseIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemEnterpriseProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemEnterpriseProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemEnterpriseUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemPasswordless:
      additionalProperties: false
      description: パスワードレスアイデンティティプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemPasswordlessIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemPasswordlessProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemPasswordlessProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemPasswordlessUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemSocial:
      additionalProperties: false
      description: ソーシャルアイデンティティプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemSocialIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemSocialProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemSocialProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemSocialUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustom:
      additionalProperties: false
      description: カスタムIDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          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: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          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: エンタープライズ アイデンティティプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          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: パスワードレス アイデンティティプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          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: ソーシャルアイデンティティプロバイダー用のidentityオブジェクト。
      properties:
        connection:
          description: このidentityを含む接続の名前。
          maxLength: 128
          minLength: 1
          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
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemCustom:
      additionalProperties: false
      description: カスタムIDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemCustomIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemCustomProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemCustomProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemCustomUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemDatabase:
      additionalProperties: false
      description: データベースIDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemDatabaseIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemDatabaseProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemDatabaseProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemDatabaseUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemEnterprise:
      additionalProperties: false
      description: エンタープライズIDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemEnterpriseIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemEnterpriseProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemEnterpriseProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemEnterpriseUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemPasswordless:
      additionalProperties: false
      description: パスワードレスIDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemPasswordlessIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemPasswordlessProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemPasswordlessProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemPasswordlessUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemSocial:
      additionalProperties: false
      description: ソーシャルIDプロバイダー用のアイデンティティオブジェクト。
      properties:
        connection:
          description: このアイデンティティを含む接続の名前。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemSocialIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemSocialProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemSocialProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemSocialUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventConnectionCreatedObject0OptionsAttributeMap:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのクレームを Auth0 のユーザープロファイル属性にマッピングするための設定。どの IdP
        クレームをユーザーフィールドに設定するか、およびその変換方法をカスタマイズできます。
      properties:
        attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0OptionsAttributeMapAttributes
        mapping_mode:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0OptionsAttributeMapMappingModeEnum
        userinfo_scope:
          description: IdP の UserInfo エンドポイントに送信するスコープ
          maxLength: 255
          minLength: 0
          type: string
      type: object
    EventStreamCloudEventConnectionCreatedObject0OptionsConnectionSettings:
      additionalProperties: false
      description: >-
        OAuth 2.0 PKCE（Proof Key for Code Exchange）の設定。PKCE
        は認可コードの傍受攻撃を防ぐことで、パブリッククライアントのセキュリティを強化します。'auto'（推奨）は、IdP
        がサポートする中で最も強力な方式を使用します。
      properties:
        pkce:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject0OptionsConnectionSettingsPkceEnum
      type: object
    EventStreamCloudEventConnectionCreatedObject0OptionsDpopSigningAlgEnum:
      description: DPoP proof JWT の署名に使用するアルゴリズム。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - ES512
        - Ed25519
      type: string
    EventStreamCloudEventConnectionCreatedObject0OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンを Auth0 の Token Vault に保存するための設定。有効にすると、Auth0
        はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済み API
        呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject0OptionsIdTokenSignedResponseAlgsItemEnum:
      description: ID トークンの検証に使用できるアルゴリズム。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionCreatedObject0OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠した OpenID Connect プロバイダーのメタデータ
      properties:
        acr_values_supported:
          description: この OP がサポートする認証コンテキストクラス参照のリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされるアイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントで OAuth 2.0 認可コードフローが開始されます。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenID Provider がサポートするクレームタイプのリストを含む JSON 配列。これらのクレームタイプは、OpenID
            Connect Core 1.0 [OpenID.Core] のセクション 5.6
            で説明されています。省略した場合、実装でサポートされるのは通常のクレームのみです。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるクレーム値でサポートされる言語および文字体系。BCP47 [RFC5646] の言語タグ値の JSON
            配列として表されます。すべてのクレーム値について、すべての言語および文字体系が必ずしもサポートされるわけではありません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OP が claims パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        claims_supported:
          description: >-
            OpenID Provider が値を提供できる可能性があるクレームのクレーム名のリストを含む JSON
            配列。プライバシー上またはその他の理由により、網羅的なリストではない場合があります。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636で定義されている、このOPでサポートされるProof Key for Code
            Exchange（PKCE）のコードチャレンジ方式（例：S256、plain）のリストを含むJSON配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法でトークンエンドポイントにおいてクライアントを認証するため、JWT [JWT]
            の署名に使用される、トークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列。サーバーは RS256 をサポートする必要があります。値 none は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWT の署名でサポートされる JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーのログアウト／セッション終了エンドポイントの URL。静的 URL として設定すると、ユーザーは Auth0
            からログアウトした後にこの URL へリダイレクトされます。HTTPS スキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 グラントタイプ値のリスト。動的 OpenID Provider は
            authorization_code および implicit
            のグラントタイプ値をサポートする必要があり、他のグラントタイプをサポートしてもかまいません。省略した場合、デフォルト値は
            ["authorization_code", "implicit"] です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: >-
            JWT 内のクレームを暗号化するために ID トークンで OP がサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む
            JSON 配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームを暗号化するために ID トークンで OP がサポートする JWE 暗号化アルゴリズム（enc
            値）のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードするために ID トークンで OP がサポートする JWS 署名アルゴリズム（alg
            値）のリスト。アルゴリズム RS256 を含める必要があります。値 none
            はサポートしてもかまいませんが、使用するレスポンスタイプで認可エンドポイントから ID
            トークンが返されない場合（認可コードフローを使用する場合など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: ID トークンの署名について IdP がサポートする JWS 署名アルゴリズム（OIDC ディスカバリーのメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーが発行する ID トークンの 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する、OP が提供するデータを Relying Party
            がどのように使用できるかに関する OP の要件を確認するための URL。指定されている場合、登録プロセスではこの URL
            をクライアントの登録者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する、OpenID Provider の利用規約を確認するための
            URL。指定されている場合、登録プロセスではこの URL をクライアントの登録者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OP の Dynamic Client Registration Endpoint の
            URL。推奨ですが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            OP が Request Object 用にサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値で渡す場合と参照で渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            OP が Request Object 用にサポートする JWE 暗号化アルゴリズム（enc 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値で渡す場合と参照で渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            OpenID Connect Core 1.0 [OpenID.Core] のセクション 6.1 で説明されている、OP が
            Request Object 用にサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値で渡す場合（request
            パラメータを使用）と参照で渡す場合（request_uri パラメータを使用）の両方で使用されます。サーバーは none と RS256
            をサポートすることが推奨されます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OP が request パラメータの使用をサポートするかどうかを指定する Boolean 値。true
            はサポートを示します。省略した場合、デフォルト値は false です。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OP が request_uri パラメータの使用をサポートするかどうかを指定する Boolean 値。true
            はサポートを示します。省略した場合、デフォルト値は false です。
          type: boolean
        require_request_uri_registration:
          description: >-
            OP が request_uri パラメータの使用を必須とするかどうかを指定する Boolean 値。省略した場合、デフォルト値は
            false です。
          type: boolean
        response_modes_supported:
          description: >-
            この OP がサポートする OAuth 2.0 の response_mode 値のリスト。省略した場合、Dynamic OpenID
            Providers のデフォルト値は ["query", "fragment"] です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 の response_type 値のリスト。Dynamic OpenID
            Providers は、code、id_token、token id_token の Response Type
            値をサポートする必要があります。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートする OAuth 2.0 [RFC6749] の scope 値のリスト。サーバーは openid scope
            値をサポートする必要があります。このパラメータを使用する場合でも、サーバーはサポートする一部の scope
            値を公開しないことを選択できます。ただし、[OpenID.Core]
            で定義されている値は、サポートしている場合、一覧に記載することが推奨されます。推奨ですが、必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者が OpenID Provider を使用する際に知る必要がある、または知りたいと考える人間が判読可能な情報を含むページの
            URL。特に、OpenID Provider が Dynamic Client Registration
            をサポートしていない場合は、Clients の登録方法に関する情報をこのドキュメントで提供する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: >-
            この OP がサポートする Subject Identifier タイプのリスト。有効なタイプには pairwise および
            public があります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換するアイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL。有効な
            HTTPS URL である必要があります。認可コードフローでは必須ですが、Implicit Flow では任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            この Token Endpoint がサポートするクライアント認証方法のリストを含む JSON 配列。OpenID Connect
            Core 1.0 [OpenID.Core] のセクション 9 で説明されているとおり、選択肢は
            client_secret_post、client_secret_basic、client_secret_jwt、private_key_jwt
            です。その他の認証方法は拡張機能によって定義される場合があります。省略した場合、デフォルトは
            client_secret_basic、すなわち OAuth 2.0 [RFC6749] のセクション 2.3.1 で規定されている
            HTTP Basic Authentication Scheme です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt 認証方法で Token Endpoint
            においてクライアントを認証するために使用される JWT [JWT] の署名用として、Token Endpoint がサポートする JWS
            署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは RS256 をサポートすることが推奨されます。none
            値を使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: >-
            ユーザーインターフェースでサポートされる言語および文字体系。BCP47 [RFC5646] の言語タグ値の JSON
            配列として表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWE [JWE]
            暗号化アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWE
            暗号化アルゴリズム（enc 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo endpoint の任意の URL。属性マッピングが設定されている場合、Auth0
            はアクセストークンを使用して追加のユーザープロファイルクレームを取得するためにこのエンドポイントを呼び出します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWS [JWS]
            署名アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。none 値を含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionCreatedObject0OptionsSchemaVersionEnum:
      description: 接続オプションの内部スキーマバージョン。
      enum:
        - openid-1.0.0
        - oidc-v4
      type: string
    EventStreamCloudEventConnectionCreatedObject0OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login': 初回 Login
        時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        からは同期せず、ローカルで設定された値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionCreatedObject0OptionsTokenEndpointAuthMethodEnum:
      description: >-
        アイデンティティプロバイダーのトークンエンドポイントで使用する認証方法。'client_secret_post'
        は資格情報をリクエスト本文で送信します。'private_key_jwt' は、セキュリティを強化するために署名付き JWT
        アサーションを使用します。strategy=oidc または okta の場合に適用されます。
      enum:
        - client_secret_post
        - private_key_jwt
      type: string
    EventStreamCloudEventConnectionCreatedObject0OptionsTokenEndpointAuthSigningAlgEnum:
      description: client_assertions の署名に使用するアルゴリズム。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionCreatedObject0OptionsTokenEndpointJwtcaAudFormatEnum:
      description: >-
        トークンエンドポイントでのクライアント認証に使用する JWT に含まれる
        aud（オーディエンス）クレームの形式を指定します。指定可能な値は、'issuer'（aud クレームを OIDC 発行者 URL
        に設定）または 'token_endpoint'（aud クレームをトークンエンドポイント URL に設定）です。
      enum:
        - issuer
        - token_endpoint
      type: string
    EventStreamCloudEventConnectionCreatedObject0OptionsTypeEnum:
      description: >-
        OIDC
        通信チャネルのタイプ。'back_channel'（機密クライアント）は、セキュリティを強化するためにサーバー側でトークンを交換します。'front_channel'
        はブラウザーで応答を処理します。
      enum:
        - back_channel
        - front_channel
      type: string
    EventStreamCloudEventConnectionCreatedObject0OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject1OptionsAttributeMap:
      additionalProperties: false
      description: アイデンティティプロバイダー（IdP）から受信したクレームのマッピング
      properties:
        attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1OptionsAttributeMapAttributes
        mapping_mode:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1OptionsAttributeMapMappingModeEnum
        userinfo_scope:
          description: IdPのUserInfoエンドポイントに送信するスコープ
          maxLength: 255
          minLength: 0
          type: string
      type: object
    EventStreamCloudEventConnectionCreatedObject1OptionsConnectionSettings:
      additionalProperties: false
      description: >-
        OAuth 2.0 PKCE（Proof Key for Code
        Exchange）の設定。PKCEは認可コード傍受攻撃を防止することで、パブリッククライアントのセキュリティを強化します。'auto'（推奨）は、IdPでサポートされている最も強力な方式を使用します。
      properties:
        pkce:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject1OptionsConnectionSettingsPkceEnum
      type: object
    EventStreamCloudEventConnectionCreatedObject1OptionsDpopSigningAlgEnum:
      description: DPoP proof JWTの署名に使用するアルゴリズム。strategy=oidcまたはoktaの場合に適用されます。
      enum:
        - ES256
        - ES384
        - ES512
        - Ed25519
      type: string
    EventStreamCloudEventConnectionCreatedObject1OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンをAuth0のToken
        Vaultに保存するための設定。有効にすると、Auth0はフェデレーションログインによるアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済みのAPI呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject1OptionsIdTokenSignedResponseAlgsItemEnum:
      description: ID トークンの検証に使用できるアルゴリズム。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionCreatedObject1OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠したOpenID Connectプロバイダーのメタデータ
      properties:
        acr_values_supported:
          description: このOPがサポートする認証コンテキストクラス参照のリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされる、アイデンティティプロバイダーのOAuth 2.0認可エンドポイントのURL。有効なHTTPS
            URLである必要があります。このエンドポイントでOAuth 2.0認可コードフローが開始されます。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenIDプロバイダーがサポートするクレームタイプのリストを含むJSON配列。これらのクレームタイプは、OpenID Connect
            Core 1.0
            [OpenID.Core]のセクション5.6で説明されています。省略した場合、実装でサポートされるのは通常のクレームのみです。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるクレームの値でサポートされる言語およびスクリプト。BCP47
            [RFC5646]の言語タグ値のJSON配列で表されます。すべてのクレーム値ですべての言語およびスクリプトがサポートされるとは限りません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OPがclaimsパラメーターの使用をサポートするかどうかを指定するブール値。trueはサポートされていることを示します。省略した場合、デフォルト値はfalseです。
          type: boolean
        claims_supported:
          description: >-
            OpenIDプロバイダーが値を提供できる可能性があるクレームのクレーム名のリストを含むJSON配列。プライバシーなどの理由により、これは網羅的なリストではない場合があります。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636で定義されている、このOPでサポートされるProof Key for Code
            Exchange（PKCE）のコードチャレンジ方式（例：S256、plain）のリストを含むJSON配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwtおよびclient_secret_jwt認証方法でトークンエンドポイントにおいてクライアントを認証するために使用されるJWT
            [JWT]の署名用として、トークンエンドポイントがサポートするJWS署名アルゴリズム（alg値）のリストを含むJSON配列。サーバーはRS256をサポートする必要があります。none値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWTの署名でサポートされるJWS署名アルゴリズム（alg値）のリストを含むJSON配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーのログアウト／セッション終了エンドポイントのURL。静的URLとして設定した場合、ユーザーはAuth0からログアウトした後、ここにリダイレクトされます。HTTPSスキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            このOPがサポートするOAuth
            2.0グラントタイプ値のリスト。動的OpenIDプロバイダーはauthorization_codeおよびimplicitグラントタイプ値をサポートする必要があり、他のグラントタイプをサポートしてもかまいません。省略した場合、デフォルト値は["authorization_code",
            "implicit"]です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: JWT内のクレームをエンコードするためにID トークンでOPがサポートするJWE暗号化アルゴリズム（alg値）のリストを含むJSON配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT]内のクレームをエンコードするためにID
            トークンでOPがサポートするJWE暗号化アルゴリズム（enc値）のリストを含むJSON配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT内のクレームをエンコードするためにID
            トークンでOPがサポートするJWS署名アルゴリズム（alg値）のリスト。RS256アルゴリズムを含める必要があります。none値はサポートしてもかまいませんが、使用するレスポンスタイプが認可エンドポイントからID
            トークンを返さない場合（認可コードフローを使用する場合など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: ID トークンの署名用としてIdPがサポートするJWS署名アルゴリズム（OIDCディスカバリーメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーから発行されたID
            トークンの'iss'クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーのJSON Web Key
            Set（JWKS）エンドポイントのURL。Auth0はこれらのキーを取得してID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenIDプロバイダーがクライアントの登録者に提供するURL。リライングパーティがOPから提供されたデータをどのように使用できるかに関するOPの要件を確認するために使用します。指定されている場合、登録プロセスではこのURLをクライアントの登録者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenIDプロバイダーがクライアントの登録者に提供する、OpenIDプロバイダーの利用規約を確認するためのURL。指定されている場合、登録プロセスではこのURLをクライアントの登録者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OPのDynamic Client
            RegistrationエンドポイントのURL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            Request Object 用に OP がサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            Request Object 用に OP がサポートする JWE 暗号化アルゴリズム（enc 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            OpenID Connect Core 1.0 [OpenID.Core] のセクション 6.1 で説明されている、Request
            Object 用に OP がサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合（request
            パラメータを使用）と、参照として渡す場合（request_uri パラメータを使用）の両方で使用されます。サーバーは none と
            RS256 をサポートすることが推奨されます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OP が request パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OP が request_uri パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        require_request_uri_registration:
          description: >-
            OP が request_uri パラメータの使用を必須とするかどうかを指定するブール値。省略した場合、デフォルト値は false
            です。
          type: boolean
        response_modes_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_mode 値のリスト。省略した場合、Dynamic OpenID
            Providers のデフォルト値は ["query", "fragment"] です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_type 値のリスト。Dynamic OpenID Providers
            は、code、id_token、token id_token の Response Type 値をサポートしなければなりません。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートする OAuth 2.0 [RFC6749] の scope 値のリスト。サーバーは openid scope
            値をサポートしなければなりません。このパラメータを使用する場合でも、サーバーはサポートする scope
            値の一部を通知しないことを選択できます。ただし、[OpenID.Core]
            で定義されている値は、サポートされている場合は一覧に含めることが推奨されます。推奨されますが必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者が OpenID Provider を使用する際に知っておく必要がある、または知りたいと思う人間が判読可能な情報を掲載したページの
            URL。特に、OpenID Provider が Dynamic Client Registration
            をサポートしていない場合は、このドキュメントでクライアントの登録方法に関する情報を提供する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: >-
            この OP がサポートする Subject Identifier タイプのリスト。有効なタイプには pairwise と public
            があります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換するための、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの
            URL。有効な HTTPS URL である必要があります。認可コードフローでは必須ですが、Implicit Flow では任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            この Token Endpoint がサポートするクライアント認証方法のリストを含む JSON 配列。OpenID Connect
            Core 1.0 [OpenID.Core] のセクション 9 で説明されているように、選択肢は
            client_secret_post、client_secret_basic、client_secret_jwt、private_key_jwt
            です。その他の認証方法は extensions によって定義される場合があります。省略した場合、デフォルトは
            client_secret_basic、つまり OAuth 2.0 [RFC6749] のセクション 2.3.1 で規定されている
            HTTP Basic Authentication Scheme です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt 認証方法で Token Endpoint
            においてクライアントを認証する際に使用する JWT [JWT] の署名について、Token Endpoint がサポートする JWS
            署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは RS256 をサポートすることが推奨されます。none
            の値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: >-
            ユーザーインターフェースでサポートされる言語および文字体系。BCP47 [RFC5646] の言語タグ値による JSON
            配列として表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームを暗号化するために UserInfo Endpoint がサポートする JWE [JWE]
            暗号化アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームを暗号化するために UserInfo Endpoint がサポートする JWE
            暗号化アルゴリズム（enc 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの任意の URL。属性マッピングを設定すると、Auth0
            はアクセストークンを使用して追加のユーザープロファイルクレームを取得するためにこのエンドポイントを呼び出します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWS [JWS]
            署名アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。none の値を含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionCreatedObject1OptionsSchemaVersionEnum:
      description: 接続オプションの内部スキーマバージョン。
      enum:
        - openid-1.0.0
        - oidc-v4
      type: string
    EventStreamCloudEventConnectionCreatedObject1OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        からは同期せず、ローカルで設定された値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionCreatedObject1OptionsTokenEndpointAuthMethodEnum:
      description: >-
        アイデンティティプロバイダーのトークンエンドポイントで使用する認証方法。'client_secret_post'
        はリクエスト本文で資格情報を送信し、'private_key_jwt' はセキュリティを強化するために署名付き JWT
        アサーションを使用します。strategy=oidc または okta の場合に適用されます。
      enum:
        - client_secret_post
        - private_key_jwt
      type: string
    EventStreamCloudEventConnectionCreatedObject1OptionsTokenEndpointAuthSigningAlgEnum:
      description: client_assertions の署名に使用するアルゴリズム。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionCreatedObject1OptionsTokenEndpointJwtcaAudFormatEnum:
      description: >-
        トークン エンドポイントでクライアント認証に使用する JWT に含まれる
        aud（オーディエンス）クレームの形式を指定します。指定可能な値は、'issuer'（aud クレームを OIDC 発行者 URL
        に設定）または 'token_endpoint'（aud クレームをトークン エンドポイント URL に設定）です。
      enum:
        - issuer
        - token_endpoint
      type: string
    EventStreamCloudEventConnectionCreatedObject1OptionsTypeEnum:
      description: 接続タイプ
      enum:
        - back_channel
      type: string
    EventStreamCloudEventConnectionCreatedObject1OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject2OptionsAssertionDecryptionSettings:
      additionalProperties: false
      description: SAML アサーションの復号に関する設定。
      properties:
        algorithm_exceptions:
          description: SAML アサーションの復号で許可する安全でないアルゴリズムのリスト。
          items:
            maxLength: 100
            minLength: 1
            type: string
          type: array
        algorithm_profile:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum
      required:
        - algorithm_profile
      type: object
    EventStreamCloudEventConnectionCreatedObject2OptionsDigestAlgorithmEnum:
      description: SAML リクエストおよびログアウトリクエストへの署名時にダイジェスト値の計算に使用するアルゴリズム。デフォルトは 'sha256' です。
      enum:
        - sha1
        - sha256
      type: string
    EventStreamCloudEventConnectionCreatedObject2OptionsFieldsMap:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーの SAML アサーション属性を Auth0 ユーザープロファイル属性にマッピングします。形式: {
        'auth0_field': 'saml_attribute' }、またはフォールバック用には { 'auth0_field':
        ['saml_attr1', 'saml_attr2'] }。email、name、given_name、family_name、groups
        のデフォルトマッピングとマージされます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject2OptionsIdpinitiated:
      additionalProperties: false
      description: >-
        IdP-Initiated SAML シングルサインオンの設定。有効にすると、ユーザーは最初に Auth0 にアクセスしなくても、SAML
        アイデンティティプロバイダーから直接ログインできます。IdP は post-back URL（Assertion Consumer
        Service URL）に connection パラメータを含める必要があります。
      properties:
        client_authorizequery:
          description: デフォルトアプリケーションに送信されるクエリ文字列
          maxLength: 2048
          minLength: 1
          type: string
        client_id:
          description: IdP 起点のログインリクエストに使用するクライアント ID。
          maxLength: 256
          minLength: 1
          type: string
        client_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject2OptionsIdpinitiatedClientProtocolEnum
        enabled:
          description: >-
            true の場合、この SAML 接続で IdP 起点ログインが有効になります。ユーザーは最初に Auth0
            にアクセスしなくても、アイデンティティプロバイダーから直接ログインできます。
          type: boolean
      type: object
    EventStreamCloudEventConnectionCreatedObject2OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠した OpenID Connect Provider Metadata。Cross App Access で使用されます。
      properties:
        acr_values_supported:
          description: この OP がサポートする認証コンテキストクラス参照のリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされるアイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントで OAuth 2.0 認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenID Provider がサポートするクレームタイプのリストを含む JSON 配列。これらのクレームタイプは、OpenID
            Connect Core 1.0 [OpenID.Core] のセクション 5.6
            で説明されています。省略した場合、実装でサポートされるのは通常のクレームのみです。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるクレームの値でサポートされる言語および文字体系。BCP47 [RFC5646] の言語タグ値からなる JSON
            配列で表されます。すべてのクレーム値で、すべての言語および文字体系がサポートされるとは限りません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OP が claims パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートを示します。省略した場合のデフォルト値は false です。
          type: boolean
        claims_supported:
          description: >-
            OpenID Provider が値を提供できる可能性のあるクレームのクレーム名のリストを含む JSON
            配列。プライバシーなどの理由により、網羅的なリストではない場合があります。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636 で定義されている、この OP がサポートする Proof Key for Code
            Exchange（PKCE）のコードチャレンジメソッド（例: S256、plain）のリストを含む JSON 配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法でトークンエンドポイントにおいてクライアントを認証する際に使用される JWT [JWT]
            の署名について、トークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは
            RS256 をサポートすることが推奨されます。none 値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWT の署名でサポートされる JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーのログアウト／セッション終了エンドポイントの URL。静的 URL として構成されている場合、ユーザーは
            Auth0 からログアウト後にここへリダイレクトされます。HTTPS スキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 グラントタイプ値のリスト。動的 OpenID Provider は
            authorization_code および implicit
            グラントタイプ値をサポートしなければならず、他のグラントタイプをサポートしてもかまいません。省略した場合のデフォルト値は
            ["authorization_code", "implicit"] です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードするために OP が ID トークン用としてサポートする JWE 暗号化アルゴリズム（alg
            値）のリストを含む JSON 配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために OP が ID トークン用としてサポートする JWE 暗号化アルゴリズム（enc
            値）のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードするために OP が ID トークン用としてサポートする JWS 署名アルゴリズム（alg
            値）のリスト。アルゴリズム RS256 を含める必要があります。none
            値はサポートしてもかまいませんが、使用するレスポンスタイプで認可エンドポイントから ID
            トークンが返されない場合（認可コードフロー使用時など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: ID トークンの署名で IdP がサポートする JWS 署名アルゴリズム（OIDC ディスカバリーメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーが発行する ID トークンの 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開鍵を含むアイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの URL。Auth0
            はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する URL。登録者は、この URL で、Relying Party が
            OP から提供されたデータを使用する際の OP の要件を確認できます。URL
            が指定されている場合、登録プロセスでクライアントの登録者にこの URL を表示することが推奨されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する URL。登録者は、この URL で OpenID Provider
            の利用規約を確認できます。URL が指定されている場合、登録プロセスでクライアントの登録者にこの URL を表示することが推奨されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OP の Dynamic Client Registration Endpoint の
            URL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            OP がリクエストオブジェクト用にサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、リクエストオブジェクトを値で渡す場合と参照で渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            OP がリクエストオブジェクト用にサポートする JWE 暗号化アルゴリズム（enc 値）のリストを含む JSON
            配列。これらのアルゴリズムは、リクエストオブジェクトを値で渡す場合と参照で渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            Request Object 用に OP がサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列。Request Object については、OpenID Connect Core 1.0 [OpenID.Core] のセクション
            6.1 で説明されています。これらのアルゴリズムは、Request Object を値として渡す場合（request
            パラメータを使用）と、参照として渡す場合（request_uri パラメータを使用）の両方で使用されます。サーバーは none と
            RS256 をサポートすべきです。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OP が request パラメータの使用をサポートするかどうかを指定する Boolean 値。true
            はサポートしていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OP が request_uri パラメータの使用をサポートするかどうかを指定する Boolean 値。true
            はサポートしていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        require_request_uri_registration:
          description: >-
            OP が request_uri パラメータの使用を必須とするかどうかを指定する Boolean 値。省略した場合、デフォルト値は
            false です。
          type: boolean
        response_modes_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_mode 値のリスト。省略した場合、Dynamic OpenID
            Providers のデフォルトは ["query", "fragment"] です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_type 値のリスト。Dynamic OpenID Providers
            は code、id_token、token id_token の Response Type 値をサポートする必要があります。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートする OAuth 2.0 [RFC6749] scope 値のリスト。サーバーは openid scope
            値をサポートする必要があります。このパラメータを使用する場合でも、サーバーはサポートしている一部の scope
            値を公開しないことを選択できますが、[OpenID.Core]
            で定義されているものは、サポートされている場合はリストに記載すべきです。推奨ですが必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者が OpenID Provider の使用時に知っておく必要がある、または知りたい人間が判読可能な情報を含むページの
            URL。特に、OpenID Provider が Dynamic Client Registration
            をサポートしていない場合は、このドキュメントでクライアントの登録方法に関する情報を提供する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: >-
            この OP がサポートする Subject Identifier タイプのリスト。有効なタイプには pairwise と public
            があります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換する、アイデンティティプロバイダーの OAuth 2.0 token endpoint の
            URL。有効な HTTPS URL である必要があります。認可コードフローでは必須ですが、Implicit Flow では任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            この Token endpoint がサポートするクライアント認証方式のリストを含む JSON 配列。OpenID Connect
            Core 1.0 [OpenID.Core] のセクション 9 で説明されているように、オプションは
            client_secret_post、client_secret_basic、client_secret_jwt、private_key_jwt
            です。その他の認証方式は拡張機能で定義される場合があります。省略した場合、デフォルトは client_secret_basic、つまり
            OAuth 2.0 [RFC6749] のセクション 2.3.1 で規定されている HTTP Basic 認証方式です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt 認証方式で、Token endpoint
            においてクライアントを認証するために使用される JWT [JWT] の署名について、Token endpoint がサポートする JWS
            署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは RS256 をサポートすべきです。none
            値は使用してはいけません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: >-
            ユーザーインターフェイスでサポートされる言語およびスクリプト。BCP47 [RFC5646] 言語タグ値の JSON
            配列として表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームを暗号化するために UserInfo Endpoint がサポートする JWE [JWE]
            暗号化アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームを暗号化するために UserInfo Endpoint がサポートする JWE
            暗号化アルゴリズム（enc 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo endpoint の任意の URL。属性マッピングが構成されている場合、Auth0
            はアクセストークンを使用して追加のユーザープロファイルクレームを取得するためにこの endpoint を呼び出します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWS [JWS]
            署名アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。none 値を含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionCreatedObject2OptionsProtocolBindingEnum:
      description: アイデンティティプロバイダーに認証リクエストを送信するための SAML プロトコルバインディング。
      enum:
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect
      type: string
    EventStreamCloudEventConnectionCreatedObject2OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新可能。'never_on_login': IdP
        から同期せず、ローカルで設定された値を保持。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionCreatedObject2OptionsSignatureAlgorithmEnum:
      description: >-
        接続の署名鍵を使用して SAML 認証リクエストおよびログアウトリクエストに署名するアルゴリズム。一般的な値:
        'rsa-sha256'（SHA-256 ダイジェストを使用した RSA 署名）または 'rsa-sha1'。デフォルトは
        'rsa-sha256' です。
      enum:
        - rsa-sha1
        - rsa-sha256
      type: string
    EventStreamCloudEventConnectionCreatedObject2OptionsSubject:
      additionalProperties: false
      description: アイデンティティプロバイダーの署名証明書から抽出された証明書サブジェクト識別名（DN）。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject2OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、またはプロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject3OptionsAssertionDecryptionSettings:
      additionalProperties: false
      description: SAML Assertion の復号に関する設定。
      properties:
        algorithm_exceptions:
          description: SAML Assertion の復号で許可する安全でないアルゴリズムのリスト。
          items:
            maxLength: 100
            minLength: 1
            type: string
          type: array
        algorithm_profile:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum
      required:
        - algorithm_profile
      type: object
    EventStreamCloudEventConnectionCreatedObject3OptionsDigestAlgorithmEnum:
      description: SAML リクエストおよびログアウトリクエストへの署名時にダイジェスト値の計算に使用するアルゴリズム。デフォルトは 'sha256' です。
      enum:
        - sha1
        - sha256
      type: string
    EventStreamCloudEventConnectionCreatedObject3OptionsIdpinitiated:
      additionalProperties: false
      description: >-
        IdP 起点の SAML シングルサインオンの設定。有効にすると、ユーザーはまず Auth0 にアクセスしなくても、SAML
        アイデンティティプロバイダーから直接ログインを開始できます。IdP は、ポストバック URL（Assertion Consumer
        Service URL）に接続パラメーターを含める必要があります。
      properties:
        client_authorizequery:
          description: デフォルトアプリケーションに送信するクエリ文字列
          maxLength: 2048
          minLength: 1
          type: string
        client_id:
          description: IdP 起点のログインリクエストに使用するクライアント ID。
          maxLength: 256
          minLength: 1
          type: string
        client_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedObject3OptionsIdpinitiatedClientProtocolEnum
        enabled:
          description: >-
            true の場合、この SAML 接続で IdP 起点のログインを有効にします。ユーザーは、まず Auth0
            にアクセスしなくても、アイデンティティプロバイダーから直接ログインできます。
          type: boolean
      type: object
    EventStreamCloudEventConnectionCreatedObject3OptionsProtocolBindingEnum:
      description: アイデンティティプロバイダーに認証リクエストを送信するための SAML プロトコルバインディング。
      enum:
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect
      type: string
    EventStreamCloudEventConnectionCreatedObject3OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        からは同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionCreatedObject3OptionsSignatureAlgorithmEnum:
      description: >-
        接続の署名鍵を使用して SAML認証リクエストおよびログアウトリクエストに署名するアルゴリズム。一般的な値は
        'rsa-sha256'（SHA-256 ダイジェストを使用する RSA 署名）または 'rsa-sha1' です。デフォルトは
        'rsa-sha256' です。
      enum:
        - rsa-sha1
        - rsa-sha256
      type: string
    EventStreamCloudEventConnectionCreatedObject3OptionsSubject:
      additionalProperties: false
      description: IDプロバイダーの署名証明書から抽出された証明書サブジェクトの識別名（DN）。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject3OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        IDプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject4OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をIDプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        から同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionCreatedObject4OptionsShouldTrustEmailVerifiedConnectionEnum:
      description: Auth0 がユーザープロファイルの email_verified フィールドを設定する方法を選択します。
      enum:
        - never_set_emails_as_verified
        - always_set_emails_as_verified
      type: string
    EventStreamCloudEventConnectionCreatedObject4OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject5OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        からは同期せず、ローカルで設定された値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionCreatedObject5OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject6OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンを Auth0 の Token Vault に保存するための設定。有効にすると、Auth0
        はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済み API
        呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject6OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新可能。'never_on_login': IdP
        から同期せず、ローカルで設定された値を保持。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionCreatedObject6OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject7OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンをAuth0のToken
        Vaultに保存するための設定。有効にすると、Auth0は連携ログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済みのAPI呼び出しを行えるようにします。
      properties:
        active:
          description: 連携接続のリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedObject7OptionsIdentityApiEnum:
      description: >-
        認証に使用するAzure
        ADエンドポイントのバージョン。'microsoft-identity-platform-v2.0'（推奨、デフォルト）は最新のOAuth
        2.0機能をサポートします。'azure-active-directory-v1.0'はプロトコル上の制限があるレガシーエンドポイントです。選択したバージョンは利用可能な機能に影響します。
      enum:
        - microsoft-identity-platform-v2.0
        - azure-active-directory-v1.0
      type: string
    EventStreamCloudEventConnectionCreatedObject7OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、pictureなど）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login':
        IdPから同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionCreatedObject7OptionsShouldTrustEmailVerifiedConnectionEnum:
      description: Auth0によるユーザープロファイルのemail_verifiedフィールドの設定方法を選択します。
      enum:
        - never_set_emails_as_verified
        - always_set_emails_as_verified
      type: string
    EventStreamCloudEventConnectionCreatedObject7OptionsTenantDomain:
      anyOf:
        - description: ホスト名形式のAzure ADテナントドメイン（例：contoso.onmicrosoft.com）。
          format: hostname
          maxLength: 512
          minLength: 0
          type: string
        - description: UUID形式のAzure ADテナントID。
          format: uuid
          type: string
      description: >-
        Azure
        ADテナントのドメインまたはテナントID（UUID）。'domain'フィールドから自動入力されます。ホスト名（例：'contoso.onmicrosoft.com'）またはUUID形式のテナントIDを指定できます。
    EventStreamCloudEventConnectionCreatedObject7OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject7OptionsUseridAttributeEnum:
      description: >-
        一意のユーザー識別子として使用するAzure ADクレーム。'oid'（Object
        ID）はシングルテナント接続で推奨され、SCIMでは必須です。'sub'（Subject）はマルチテナント/commonエンドポイントで必須です。OpenID
        Connectプロトコルでのみ適用されます。
      enum:
        - oid
        - sub
      type: string
    EventStreamCloudEventConnectionCreatedObject7OptionsWaadProtocolEnum:
      description: >-
        Azure AD v1エンドポイント用の認証プロトコル。'openid-connect'（デフォルト、推奨）は最新のOAuth
        2.0/OIDCを使用します。'ws-federation'は古い連携向けのレガシーSAMLベースのプロトコルです。Azure AD v1
        APIでのみ使用できます。
      enum:
        - ws-federation
        - openid-connect
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject0OptionsAttributeMap:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーからのクレームをAuth0のユーザープロファイル属性にマッピングするための設定。ユーザーフィールドに設定するIdPクレームとその変換方法をカスタマイズできます。
      properties:
        attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0OptionsAttributeMapAttributes
        mapping_mode:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0OptionsAttributeMapMappingModeEnum
        userinfo_scope:
          description: IdPのUserInfoエンドポイントに送信するスコープ
          maxLength: 255
          minLength: 0
          type: string
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject0OptionsConnectionSettings:
      additionalProperties: false
      description: >-
        OAuth 2.0 PKCE（Proof Key for Code
        Exchange）の設定。PKCEは、認可コードの傍受攻撃を防ぐことでパブリッククライアントのセキュリティを強化します。'auto'（推奨）は、IdPがサポートする最も強力な方式を使用します。
      properties:
        pkce:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject0OptionsConnectionSettingsPkceEnum
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject0OptionsDpopSigningAlgEnum:
      description: DPoP proof JWTの署名に使用するアルゴリズム。strategy=oidcまたはoktaの場合に適用されます。
      enum:
        - ES256
        - ES384
        - ES512
        - Ed25519
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject0OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダートークンをAuth0のToken
        Vaultに保存するための設定。有効にすると、Auth0はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済みAPI呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンおよびアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject0OptionsIdTokenSignedResponseAlgsItemEnum:
      description: ID トークンの検証に使用できるアルゴリズム。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject0OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠したOpenID Connectプロバイダーメタデータ
      properties:
        acr_values_supported:
          description: このOPがサポートする認証コンテキストクラス参照のリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされる、アイデンティティプロバイダーのOAuth 2.0認可エンドポイントのURL。有効なHTTPS
            URLである必要があります。このエンドポイントはOAuth 2.0認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenID Providerがサポートするクレームタイプのリストを含むJSON配列。これらのクレームタイプは、OpenID
            Connect Core 1.0
            [OpenID.Core]のセクション5.6で説明されています。省略した場合、実装では通常のクレームのみがサポートされます。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるクレーム値でサポートされる言語およびスクリプト。BCP47
            [RFC5646]言語タグ値のJSON配列で表されます。すべてのクレーム値ですべての言語およびスクリプトがサポートされるとは限りません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OPがclaimsパラメータの使用をサポートするかどうかを指定するブール値。trueはサポートを示します。省略した場合、デフォルト値はfalseです。
          type: boolean
        claims_supported:
          description: >-
            OpenIDプロバイダーが値を提供できる可能性のあるクレームのクレーム名のリストを含むJSON配列。プライバシー上またはその他の理由により、網羅的なリストではない場合があります。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636で定義されている、このOPがサポートするProof Key for Code
            Exchange（PKCE）のコードチャレンジメソッド（例：S256、plain）のリストを含むJSON配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwtおよびclient_secret_jwt認証方法でトークンエンドポイントにおいてクライアントを認証する際に使用するJWT
            [JWT]の署名について、トークンエンドポイントがサポートするJWS署名アルゴリズム（alg値）のリストを含むJSON配列。サーバーはRS256をサポートする必要があります。値noneは使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWTの署名に使用できるJWS署名アルゴリズム（alg値）のリストを含むJSON配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーのlogout/end
            sessionエンドポイントのURL。静的URLとして設定した場合、ユーザーはAuth0からログアウト後にこのURLへリダイレクトされます。HTTPSスキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            このOPがサポートするOAuth 2.0グラントタイプ値のリスト。Dynamic OpenID
            Providersはauthorization_codeおよびimplicitグラントタイプ値をサポートする必要があり、他のグラントタイプをサポートしてもかまいません。省略した場合、デフォルト値は["authorization_code",
            "implicit"]です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: JWT内のクレームをエンコードするためにOPがID トークンでサポートするJWE暗号化アルゴリズム（alg値）のリストを含むJSON配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT]内のクレームをエンコードするためにOPがID
            トークンでサポートするJWE暗号化アルゴリズム（enc値）のリストを含むJSON配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT内のクレームをエンコードするためにOPがID
            トークンでサポートするJWS署名アルゴリズム（alg値）のリスト。アルゴリズムRS256を含める必要があります。値noneをサポートしてもかまいませんが、使用するレスポンスタイプで認可エンドポイントからID
            トークンが返されない場合（認可コードフローを使用する場合など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: IdPがID トークンの署名に使用できるJWS署名アルゴリズム（OIDC ディスカバリーのメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子URL（例：https://accounts.google.com）。アイデンティティプロバイダーから発行されるID
            トークン内の「iss」クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開鍵を含む、アイデンティティプロバイダーのJSON Web Key
            Set（JWKS）エンドポイントのURL。Auth0はこれらのキーを取得してID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenIDプロバイダーがクライアント登録者に提供する、OPが提供するデータをRelying
            Partyがどのように使用できるかに関するOPの要件を確認するためのURL。指定されている場合、登録プロセスではこのURLをクライアント登録者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenIDプロバイダーがクライアント登録者に提供する、OpenIDプロバイダーの利用規約を確認するためのURL。指定されている場合、登録プロセスではこのURLをクライアント登録者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OPのDynamic Client
            RegistrationエンドポイントのURL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            リクエストオブジェクト用にOPがサポートするJWE暗号化アルゴリズム（alg値）のリストを含むJSON配列。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            リクエストオブジェクト用にOPがサポートするJWE暗号化アルゴリズム（enc値）のリストを含むJSON配列。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            OpenID Connect Core 1.0
            [OpenID.Core]のセクション6.1で説明されている、リクエストオブジェクト用にOPがサポートするJWS署名アルゴリズム（alg値）のリストを含むJSON配列。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合（requestパラメータを使用）と参照として渡す場合（request_uriパラメータを使用）の両方で使用されます。サーバーはnoneおよびRS256をサポートする必要があります。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OPがrequestパラメータの使用をサポートするかどうかを指定するBoolean値。trueはサポートすることを示します。省略した場合、デフォルト値はfalseです。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OPがrequest_uriパラメータの使用をサポートするかどうかを指定するBoolean値。trueはサポートすることを示します。省略した場合、デフォルト値はfalseです。
          type: boolean
        require_request_uri_registration:
          description: OPがrequest_uriパラメータの使用を必須とするかどうかを指定するBoolean値。省略した場合、デフォルト値はfalseです。
          type: boolean
        response_modes_supported:
          description: >-
            このOPがサポートするOAuth 2.0 response_mode値のリスト。省略した場合、Dynamic OpenID
            Providersのデフォルト値は["query", "fragment"]です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            このOPがサポートするOAuth 2.0 response_type値のリスト。Dynamic OpenID
            Providersはcode、id_token、およびtoken id_tokenのレスポンスタイプ値をサポートする必要があります。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートするOAuth 2.0
            [RFC6749]スコープ値のリスト。サーバーはopenidスコープ値をサポートする必要があります。このパラメータを使用する場合でも、サーバーはサポートする一部のスコープ値を公開しないことを選択できます。ただし、[OpenID.Core]で定義されているものは、サポートされている場合、リストに含める必要があります。推奨されますが、必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者が OpenID Provider を利用する際に必要となる、または役立つ人間が読める形式の情報を含むページの
            URL。特に、OpenID Provider が Dynamic Client Registration
            をサポートしていない場合、このドキュメントにはクライアントの登録方法に関する情報を提供する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: この OP がサポートするサブジェクト識別子タイプのリスト。有効なタイプには pairwise と public があります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換するための、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの
            URL。有効な HTTPS URL である必要があります。認可コードフローでは必須ですが、暗黙的フローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            このトークンエンドポイントでサポートされるクライアント認証方法のリストを含む JSON 配列。選択肢は、OpenID Connect
            Core 1.0 [OpenID.Core] のセクション 9 で説明されている
            client_secret_post、client_secret_basic、client_secret_jwt、private_key_jwt
            です。その他の認証方法は拡張機能で定義される場合があります。省略した場合、デフォルトは client_secret_basic、つまり
            OAuth 2.0 [RFC6749] のセクション 2.3.1 で規定されている HTTP Basic Authentication
            Scheme です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法でトークンエンドポイントにおいてクライアントを認証する際に使用する JWT [JWT]
            の署名について、このトークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列。サーバーは RS256 をサポートする必要があります。値 none は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: ユーザーインターフェースでサポートされる言語と文字体系。BCP47 [RFC5646] の言語タグ値を含む JSON 配列で表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo エンドポイントがサポートする JWE [JWE]
            暗号化アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo エンドポイントがサポートする JWE
            暗号化アルゴリズム（enc 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの任意の URL。属性マッピングとともに設定すると、Auth0
            はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo エンドポイントがサポートする JWS [JWS]
            署名アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。値 none を含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject0OptionsSchemaVersionEnum:
      description: 接続オプションの内部スキーマバージョン。
      enum:
        - openid-1.0.0
        - oidc-v4
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject0OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        から同期せず、ローカルで設定された値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject0OptionsTokenEndpointAuthMethodEnum:
      description: >-
        アイデンティティプロバイダーのトークンエンドポイントで使用する認証方法。'client_secret_post'
        はリクエスト本文で認証情報を送信します。'private_key_jwt' はセキュリティを強化するために署名付き JWT
        アサーションを使用します。strategy=oidc または okta の場合に適用されます。
      enum:
        - client_secret_post
        - private_key_jwt
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject0OptionsTokenEndpointAuthSigningAlgEnum:
      description: client_assertions の署名に使用するアルゴリズム。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject0OptionsTokenEndpointJwtcaAudFormatEnum:
      description: >-
        トークンエンドポイントでのクライアント認証に使用される JWT に含まれる
        aud（対象者）クレームの形式を指定します。指定可能な値は次のとおりです。'issuer'（aud クレームを OIDC 発行者 URL
        に設定）または 'token_endpoint'（aud クレームをトークンエンドポイント URL に設定）。
      enum:
        - issuer
        - token_endpoint
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject0OptionsTypeEnum:
      description: >-
        OIDC
        通信チャネルのタイプ。'back_channel'（機密クライアント）は、セキュリティを強化するためにサーバー側でトークンを交換します。'front_channel'
        はブラウザーで応答を処理します。
      enum:
        - back_channel
        - front_channel
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject0OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject1OptionsAttributeMap:
      additionalProperties: false
      description: アイデンティティプロバイダー（IdP）から受信したクレームのマッピング
      properties:
        attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1OptionsAttributeMapAttributes
        mapping_mode:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1OptionsAttributeMapMappingModeEnum
        userinfo_scope:
          description: IdPのUserInfoエンドポイントに送信するスコープ
          maxLength: 255
          minLength: 0
          type: string
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject1OptionsConnectionSettings:
      additionalProperties: false
      description: >-
        OAuth 2.0 PKCE（Proof Key for Code
        Exchange）の設定。PKCEは認可コード傍受攻撃を防止し、パブリッククライアントのセキュリティを強化します。「auto」（推奨）は、IdPがサポートする最も強力なメソッドを使用します。
      properties:
        pkce:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject1OptionsConnectionSettingsPkceEnum
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject1OptionsDpopSigningAlgEnum:
      description: DPoP proof JWTの署名に使用するアルゴリズム。strategy=oidcまたはoktaの場合に適用されます。
      enum:
        - ES256
        - ES384
        - ES512
        - Ed25519
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject1OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダートークンをAuth0のToken
        Vaultに保存するための設定。有効にすると、Auth0はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済みAPI呼び出しを実行できるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします。
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject1OptionsIdTokenSignedResponseAlgsItemEnum:
      description: ID トークンの検証に使用できるアルゴリズム。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject1OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠したOpenID Connectプロバイダーメタデータ
      properties:
        acr_values_supported:
          description: このOPがサポートする認証コンテキストクラス参照のリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            ユーザーが認証のためにリダイレクトされるアイデンティティプロバイダーのOAuth 2.0認可エンドポイントのURL。有効なHTTPS
            URLである必要があります。このエンドポイントはOAuth 2.0認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenID Providerがサポートするクレームタイプのリストを含むJSON配列。これらのクレームタイプは、OpenID
            Connect Core 1.0
            [OpenID.Core]のセクション5.6で説明されています。省略した場合、実装は通常のクレームのみをサポートします。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるクレーム値でサポートされる言語および文字体系。BCP47
            [RFC5646]の言語タグ値のJSON配列として表されます。すべてのクレーム値で、すべての言語および文字体系がサポートされるとは限りません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OPがclaimsパラメータの使用をサポートするかどうかを指定するブール値。trueはサポートを示します。省略した場合、デフォルト値はfalseです。
          type: boolean
        claims_supported:
          description: >-
            OpenID
            Providerが値を提供できる可能性があるクレームのクレーム名のリストを含むJSON配列。プライバシーなどの理由により、網羅的なリストではない可能性があります。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636で定義された、このOPがサポートするProof Key for Code
            Exchange（PKCE）のコードチャレンジメソッド（例: S256、plain）のリストを含むJSON配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法でトークンエンドポイントにおいてクライアントを認証する際に使用する JWT [JWT]
            の署名について、トークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは
            RS256 をサポートすることが推奨されます。none 値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWT の署名でサポートされる JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーの logout/end session エンドポイントの URL。静的 URL
            として設定した場合、ユーザーは Auth0 からログアウトした後にこの URL へリダイレクトされます。HTTPS
            スキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 グラントタイプ値のリスト。Dynamic OpenID Providers は
            authorization_code および implicit
            グラントタイプ値をサポートする必要があり、他のグラントタイプ値をサポートしてもかまいません。省略した場合、デフォルト値は
            ["authorization_code", "implicit"] です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードする ID トークンについて、OP がサポートする JWE 暗号化アルゴリズム（alg
            値）のリストを含む JSON 配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードする ID トークンについて、OP がサポートする JWE 暗号化アルゴリズム（enc
            値）のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードする ID トークンについて、OP がサポートする JWS 署名アルゴリズム（alg
            値）のリスト。RS256 アルゴリズムを含める必要があります。none
            値をサポートしてもかまいませんが、使用するレスポンスタイプが認可エンドポイントから ID
            トークンを返さない場合（認可コードフローを使用する場合など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: ID トークンの署名に IdP がサポートする JWS 署名アルゴリズム（OIDC ディスカバリーのメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーが発行する ID トークンの 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開鍵を含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する、OP が提供するデータを Relying Party
            がどのように使用できるかに関する OP の要件を確認するための URL。指定されている場合、登録プロセスではこの URL
            をクライアントの登録者に表示することが推奨されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する、OpenID Provider の利用規約を確認するための
            URL。指定されている場合、登録プロセスではこの URL をクライアントの登録者に表示することが推奨されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OP の Dynamic Client Registration エンドポイントの
            URL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            リクエストオブジェクトについて、OP がサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            リクエストオブジェクトについて、OP がサポートする JWE 暗号化アルゴリズム（enc 値）のリストを含む JSON
            配列。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            OpenID Connect Core 1.0 [OpenID.Core] のセクション 6.1
            で説明されている、リクエストオブジェクトについて OP がサポートする JWS 署名アルゴリズム（alg
            値）のリスト。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合（request
            パラメータを使用）と参照として渡す場合（request_uri パラメータを使用）の両方で使用されます。サーバーは none および
            RS256 をサポートすることが推奨されます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OP が request パラメータの使用をサポートするかどうかを指定する Boolean 値。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OP が request_uri パラメータの使用をサポートするかどうかを指定する Boolean 値。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        require_request_uri_registration:
          description: >-
            OP が request_uri パラメータの使用を必須とするかどうかを指定する Boolean 値。省略した場合、デフォルト値は
            false です。
          type: boolean
        response_modes_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_mode 値のリスト。省略した場合、Dynamic OpenID
            Providers のデフォルト値は ["query", "fragment"] です
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_type 値のリスト。Dynamic OpenID Providers
            は、code、id_token、および token id_token レスポンスタイプ値をサポートする必要があります
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートする OAuth 2.0 [RFC6749] スコープ値のリスト。サーバーは openid
            スコープ値をサポートする必要があります。このパラメータが使用されている場合でも、サーバーはサポートする一部のスコープ値を公開しないことを選択できます。ただし、[OpenID.Core]
            で定義されている値は、サポートされている場合はリストに含めることが推奨されます。推奨されますが、必須ではありません
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者が OpenID Provider を使用する際に知っておくべき情報や役立つ情報を、人が読める形式で提供するページの
            URL。特に、OpenID Provider が Dynamic Client Registration
            をサポートしていない場合は、クライアントの登録方法に関する情報をこのドキュメントで提供する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: >-
            この OP がサポートする Subject Identifier タイプのリスト。有効なタイプには pairwise および
            public があります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換するアイデンティティプロバイダーのOAuth 2.0トークンエンドポイントのURL。有効なHTTPS
            URLである必要があります。認可コードフローでは必須ですが、インプリシットフローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            このトークンエンドポイントでサポートされるクライアント認証方式のリストを含むJSON配列。OpenID Connect Core 1.0
            [OpenID.Core]
            のセクション9で説明されているとおり、選択肢はclient_secret_post、client_secret_basic、client_secret_jwt、private_key_jwtです。その他の認証方式は拡張によって定義される場合があります。省略した場合、デフォルトはclient_secret_basic、すなわちOAuth
            2.0 [RFC6749] のセクション2.3.1で規定されているHTTP Basic認証方式です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwtおよびclient_secret_jwt認証方式でトークンエンドポイントにおいてクライアントを認証する際に使用するJWT
            [JWT]
            の署名について、トークンエンドポイントがサポートするJWS署名アルゴリズム（alg値）のリストを含むJSON配列。サーバーはRS256をサポートすることが推奨されます。値noneは使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: ユーザーインターフェイスでサポートされる言語とスクリプト。BCP47 [RFC5646] 言語タグ値のJSON配列で表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームを暗号化するためにUserInfoエンドポイントがサポートするJWE [JWE]
            暗号化アルゴリズム（alg値）[JWA] のリストを含むJSON配列。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT]
            内のクレームを暗号化するためにUserInfoエンドポイントがサポートするJWE暗号化アルゴリズム（enc値）[JWA]
            のリストを含むJSON配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーのUserInfoエンドポイントの任意のURL。属性マッピングを設定すると、Auth0はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームを暗号化するためにUserInfoエンドポイントがサポートするJWS [JWS]
            署名アルゴリズム（alg値）[JWA] のリストを含むJSON配列。値noneを含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject1OptionsSchemaVersionEnum:
      description: 接続オプションの内部スキーマバージョン。
      enum:
        - openid-1.0.0
        - oidc-v4
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject1OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、pictureなど）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login':
        IdPから同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject1OptionsTokenEndpointAuthMethodEnum:
      description: >-
        アイデンティティプロバイダーのトークンエンドポイントで使用するクライアント認証方式。'client_secret_post'はリクエスト本文で認証情報を送信します。'private_key_jwt'はセキュリティ強化のために署名付きJWTアサーションを使用します。strategy=oidcまたはoktaの場合に適用されます。
      enum:
        - client_secret_post
        - private_key_jwt
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject1OptionsTokenEndpointAuthSigningAlgEnum:
      description: client_assertionsの署名に使用するアルゴリズム。strategy=oidcまたはoktaの場合に適用されます。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject1OptionsTokenEndpointJwtcaAudFormatEnum:
      description: >-
        トークンエンドポイントでのクライアント認証に使用するJWTに含まれるaud（オーディエンス）クレームの形式を指定します。指定できる値は、'issuer'（audクレームをOIDC発行者URLに設定）または'token_endpoint'（audクレームをトークンエンドポイントURLに設定）です。
      enum:
        - issuer
        - token_endpoint
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject1OptionsTypeEnum:
      description: 接続タイプ
      enum:
        - back_channel
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject1OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject2OptionsAssertionDecryptionSettings:
      additionalProperties: false
      description: SAMLアサーションの復号化設定。
      properties:
        algorithm_exceptions:
          description: SAMLアサーションの復号化で許可する安全でないアルゴリズムのリスト。
          items:
            maxLength: 100
            minLength: 1
            type: string
          type: array
        algorithm_profile:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum
      required:
        - algorithm_profile
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject2OptionsDigestAlgorithmEnum:
      description: SAMLリクエストおよびログアウトリクエストへの署名時にダイジェスト値の計算に使用するアルゴリズム。デフォルトは'sha256'です。
      enum:
        - sha1
        - sha256
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject2OptionsFieldsMap:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーの SAML アサーション属性を Auth0 ユーザープロファイル属性にマッピングします。形式: {
        'auth0_field': 'saml_attribute' }、またはフォールバックオプションには { 'auth0_field':
        ['saml_attr1', 'saml_attr2'] }
        を使用します。email、name、given_name、family_name、groups のデフォルトマッピングとマージされます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject2OptionsIdpinitiated:
      additionalProperties: false
      description: >-
        IdP 起点の SAML シングルサインオンの設定。有効にすると、ユーザーは Auth0 にアクセスせずに SAML
        アイデンティティプロバイダーから直接ログインを開始できます。IdP はポストバック URL（Assertion Consumer Service
        URL）に接続パラメータを含める必要があります。
      properties:
        client_authorizequery:
          description: デフォルトアプリケーションに送信されるクエリ文字列
          maxLength: 2048
          minLength: 1
          type: string
        client_id:
          description: IdP 起点ログインリクエストに使用するクライアント ID。
          maxLength: 256
          minLength: 1
          type: string
        client_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject2OptionsIdpinitiatedClientProtocolEnum
        enabled:
          description: >-
            true の場合、この SAML 接続で IdP 起点ログインが有効になります。ユーザーは Auth0
            にアクセスせずにアイデンティティプロバイダーから直接ログインできます。
          type: boolean
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject2OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠した OpenID Connect プロバイダーメタデータ。Cross App Access で使用されます。
      properties:
        acr_values_supported:
          description: この OP がサポートする認証コンテキストクラス参照のリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            認証のためにユーザーをリダイレクトする、アイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントで OAuth 2.0 認可コードフローが開始されます。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenID Provider がサポートする Claim Type のリストを含む JSON 配列。これらの Claim Type は
            OpenID Connect Core 1.0 [OpenID.Core] のセクション 5.6
            で説明されています。省略した場合、実装でサポートされるのは通常の Claim のみです。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返される Claim の値でサポートされる言語および文字体系。BCP47 [RFC5646] の言語タグ値を含む JSON
            配列として表されます。すべての Claim 値ですべての言語および文字体系がサポートされるとは限りません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OP が claims パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートしていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        claims_supported:
          description: >-
            OpenID Provider が値を提供できる可能性のある Claim の Claim Name のリストを含む JSON
            配列。プライバシー上またはその他の理由により、網羅的なリストではない場合があります。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636 で定義された、この OP がサポートする Proof Key for Code
            Exchange（PKCE）のコードチャレンジ方式（例: S256、plain）のリストを含む JSON 配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法でトークンエンドポイントにおいてクライアントを認証するために使用される JWT [JWT]
            の署名について、トークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは
            RS256 をサポートする必要があります。none 値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWT の署名でサポートされる JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーのログアウト／セッション終了エンドポイントの URL。静的 URL として設定した場合、ユーザーは
            Auth0 からログアウト後にこの URL へリダイレクトされます。HTTPS スキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 グラントタイプ値のリスト。動的 OpenID Provider は
            authorization_code および implicit
            のグラントタイプ値をサポートする必要があり、他のグラントタイプをサポートしてもかまいません。省略した場合、デフォルト値は
            ["authorization_code", "implicit"] です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: >-
            JWT で Claim をエンコードするために、OP が ID トークン用としてサポートする JWE 暗号化アルゴリズム（alg
            値）のリストを含む JSON 配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT] で Claim をエンコードするために、OP が ID トークン用としてサポートする JWE
            暗号化アルゴリズム（enc 値）のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT で Claim をエンコードするために、OP が ID トークン用としてサポートする JWS 署名アルゴリズム（alg
            値）のリスト。アルゴリズム RS256 を含める必要があります。none
            値をサポートしてもかまいませんが、使用するレスポンスタイプで認可エンドポイントから ID
            トークンが返されない場合（認可コードフローを使用する場合など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: ID トークンの署名に IdP がサポートする JWS 署名アルゴリズム（OIDC ディスカバリーメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーが発行する ID トークン内の 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenID Provider がクライアントの登録担当者に提供する URL。Relying Party による OP
            提供データの使用に関する OP の要件を確認できます。指定されている場合、登録プロセスではこの URL
            をクライアントの登録担当者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenID Provider がクライアントの登録担当者に提供する URL。OpenID Provider
            の利用規約を確認できます。指定されている場合、登録プロセスではこの URL をクライアントの登録担当者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OP の Dynamic Client Registration エンドポイントの
            URL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            Request Object 用に OP がサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            Request Object 用に OP がサポートする JWE 暗号化アルゴリズム（enc 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            OpenID Connect Core 1.0 [OpenID.Core] のセクション 6.1 で説明されている、Request
            Object 用に OP がサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合（request
            パラメータを使用）と、参照として渡す場合（request_uri パラメータを使用）の両方で使用されます。サーバーは none と
            RS256 をサポートすることが推奨されます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OP が request パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OP が request_uri パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        require_request_uri_registration:
          description: >-
            OP が request_uri パラメータの使用を必須とするかどうかを指定するブール値。省略した場合、デフォルト値は false
            です。
          type: boolean
        response_modes_supported:
          description: >-
            この OP がサポートする OAuth 2.0 の response_mode 値のリスト。省略した場合、Dynamic OpenID
            Providers のデフォルトは ["query", "fragment"] です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 の response_type 値のリスト。Dynamic OpenID
            Providers は、code、id_token、および token id_token の Response Type
            値をサポートする必要があります。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートする OAuth 2.0 [RFC6749] の scope 値のリスト。サーバーは openid scope
            値をサポートする必要があります。このパラメータを使用する場合でも、サーバーはサポートする scope
            値の一部を公開しないことを選択できます。ただし、[OpenID.Core]
            で定義されている値は、サポートされている場合、リストに含めることが推奨されます。推奨ですが必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者が OpenID Provider の使用時に知っておく必要がある、または知りたい人間可読な情報を掲載したページの
            URL。特に、OpenID Provider が Dynamic Client Registration
            をサポートしていない場合は、クライアントの登録方法に関する情報をこのドキュメントで提供する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: >-
            この OP がサポートする Subject Identifier のタイプのリスト。有効なタイプには pairwise と public
            があります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換する、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL。有効な
            HTTPS URL である必要があります。認可コードフローでは必須ですが、Implicit Flow では任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            この Token Endpoint がサポートするクライアント認証方式のリストを含む JSON 配列。OpenID Connect
            Core 1.0 [OpenID.Core] のセクション 9 で説明されているように、選択肢は
            client_secret_post、client_secret_basic、client_secret_jwt、private_key_jwt
            です。拡張機能によって、他の認証方法が定義される場合があります。省略した場合、デフォルトは
            client_secret_basic、つまり OAuth 2.0 [RFC6749] のセクション 2.3.1 で指定されている
            HTTP Basic 認証方式です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt 認証方式で Token Endpoint
            においてクライアントを認証する際に使用する JWT [JWT] の署名について、Token Endpoint がサポートする JWS
            署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは RS256 をサポートすることが推奨されます。none
            値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: ユーザーインターフェースでサポートされる言語と文字体系。BCP47 [RFC5646] の言語タグ値の JSON 配列として表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームを暗号化するために UserInfo Endpoint がサポートする JWE [JWE]
            暗号化アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームを暗号化するために UserInfo Endpoint がサポートする JWE
            暗号化アルゴリズム（enc 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo endpoint の任意の URL。属性マッピングを設定すると、Auth0
            はアクセストークンを使用して追加のユーザープロファイルクレームを取得するためにこのエンドポイントを呼び出します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームを暗号化するために UserInfo Endpoint がサポートする JWS [JWS]
            署名アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。none 値を含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject2OptionsProtocolBindingEnum:
      description: アイデンティティプロバイダーに SAML認証リクエストを送信するための SAML プロトコルバインディング方式。
      enum:
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject2OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login'：認証のたびに更新（デフォルト）。'on_first_login'：初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login'：IdP
        から同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject2OptionsSignatureAlgorithmEnum:
      description: >-
        接続の署名鍵を使用して
        SAML認証リクエストおよびログアウトリクエストに署名するアルゴリズム。一般的な値は、'rsa-sha256'（SHA-256
        ダイジェストを使用した RSA 署名）または 'rsa-sha1' です。デフォルトは 'rsa-sha256' です。
      enum:
        - rsa-sha1
        - rsa-sha256
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject2OptionsSubject:
      additionalProperties: false
      description: アイデンティティプロバイダーの署名証明書から抽出された証明書サブジェクトの識別名（DN）。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject2OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject3OptionsAssertionDecryptionSettings:
      additionalProperties: false
      description: SAML アサーションの復号に関する設定。
      properties:
        algorithm_exceptions:
          description: SAML アサーションの復号で許可する安全でないアルゴリズムのリスト。
          items:
            maxLength: 100
            minLength: 1
            type: string
          type: array
        algorithm_profile:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum
      required:
        - algorithm_profile
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject3OptionsDigestAlgorithmEnum:
      description: SAML リクエストおよびログアウトリクエストへの署名時に、ダイジェスト値の計算に使用するアルゴリズム。デフォルトは 'sha256' です。
      enum:
        - sha1
        - sha256
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject3OptionsIdpinitiated:
      additionalProperties: false
      description: >-
        IdP 開始 SAML シングルサインオンの設定。有効にすると、ユーザーは最初に Auth0 にアクセスすることなく、SAML
        アイデンティティプロバイダーから直接ログインを開始できます。IdP はポストバック URL（Assertion Consumer Service
        URL）に接続パラメータを含める必要があります。
      properties:
        client_authorizequery:
          description: デフォルトアプリケーションに送信するクエリ文字列
          maxLength: 2048
          minLength: 1
          type: string
        client_id:
          description: IdP 開始ログインリクエストに使用するクライアント ID。
          maxLength: 256
          minLength: 1
          type: string
        client_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionCreatedPreviousObject3OptionsIdpinitiatedClientProtocolEnum
        enabled:
          description: >-
            true の場合、この SAML 接続で IdP 開始ログインのサポートを有効にします。ユーザーは最初に Auth0
            にアクセスすることなく、アイデンティティプロバイダーから直接ログインできます。
          type: boolean
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject3OptionsProtocolBindingEnum:
      description: アイデンティティプロバイダーに認証リクエストを送信するための SAML プロトコルバインディングメカニズム。
      enum:
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject3OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新可能。'never_on_login': IdP
        から同期せず、ローカルで設定された値を保持。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject3OptionsSignatureAlgorithmEnum:
      description: >-
        接続の署名キーを使用してSAML認証リクエストおよびログアウトリクエストに署名するためのアルゴリズム。一般的な値は、'rsa-sha256'（SHA-256ダイジェストを使用したRSA署名）または'rsa-sha1'です。デフォルトは'rsa-sha256'です。
      enum:
        - rsa-sha1
        - rsa-sha256
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject3OptionsSubject:
      additionalProperties: false
      description: IDプロバイダーの署名証明書から抽出された証明書サブジェクト識別名（DN）。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject3OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        IDプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject4OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、pictureなど）をIDプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login':
        IdPから同期せず、ローカルで設定された値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject4OptionsShouldTrustEmailVerifiedConnectionEnum:
      description: Auth0がユーザープロファイルのemail_verifiedフィールドを設定する方法を選択します。
      enum:
        - never_set_emails_as_verified
        - always_set_emails_as_verified
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject4OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        IDプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject5OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新可能。'never_on_login': IdP
        からは同期せず、ローカルで設定した値を保持。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject5OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject6OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        Auth0 の Token Vault にアイデンティティプロバイダーのトークンを保存するための設定。有効な場合、Auth0
        はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済み API
        呼び出しを実行できるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンおよびアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject6OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login'：認証のたびに更新します（デフォルト）。'on_first_login'：初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login'：IdP
        から同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject6OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の構成に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject7OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダートークンをAuth0のToken
        Vaultに保存するための設定。有効にすると、Auth0はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済みのAPI呼び出しを実行できるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject7OptionsIdentityApiEnum:
      description: >-
        認証に使用するAzure
        ADエンドポイントのバージョン。'microsoft-identity-platform-v2.0'（推奨、デフォルト）は最新のOAuth
        2.0機能をサポートします。'azure-active-directory-v1.0'はプロトコル上の制限があるレガシーエンドポイントです。選択内容は利用可能な機能に影響します。
      enum:
        - microsoft-identity-platform-v2.0
        - azure-active-directory-v1.0
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject7OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、pictureなど）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新可能。'never_on_login':
        IdPから同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject7OptionsShouldTrustEmailVerifiedConnectionEnum:
      description: Auth0がユーザープロファイルのemail_verifiedフィールドを設定する方法を選択します。
      enum:
        - never_set_emails_as_verified
        - always_set_emails_as_verified
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject7OptionsTenantDomain:
      anyOf:
        - description: 'ホスト名としてのAzure ADテナントドメイン（例: contoso.onmicrosoft.com）。'
          format: hostname
          maxLength: 512
          minLength: 0
          type: string
        - description: UUIDテナントIDとしてのAzure ADテナントドメイン。
          format: uuid
          type: string
      description: >-
        Azure ADテナントドメインまたはテナントID（UUID）。'domain'フィールドから自動入力されます。ホスト名（例:
        'contoso.onmicrosoft.com'）またはUUIDテナントIDのいずれかを指定できます。
    EventStreamCloudEventConnectionCreatedPreviousObject7OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject7OptionsUseridAttributeEnum:
      description: >-
        一意のユーザー識別子として使用するAzure ADクレーム。単一テナント接続には'oid'（Object
        ID）が推奨され、SCIMでは必須です。マルチテナントまたは共通エンドポイントには'sub'（Subject）が必要です。OpenID
        Connectプロトコルでのみ適用されます。
      enum:
        - oid
        - sub
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject7OptionsWaadProtocolEnum:
      description: >-
        Azure AD v1 エンドポイント用の認証プロトコル。'openid-connect'（デフォルト、推奨）では最新の OAuth
        2.0/OIDC を使用します。'ws-federation' は、古い連携向けの従来の SAML ベースのプロトコルです。Azure AD
        v1 API でのみ利用できます。
      enum:
        - ws-federation
        - openid-connect
      type: string
    EventStreamCloudEventConnectionDeletedObject0OptionsAttributeMap:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーからのクレームを Auth0 のユーザープロファイル属性にマッピングするための設定。ユーザーフィールドに設定する
        IdP クレームと、その変換方法をカスタマイズできます。
      properties:
        attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0OptionsAttributeMapAttributes
        mapping_mode:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0OptionsAttributeMapMappingModeEnum
        userinfo_scope:
          description: IdP の UserInfo エンドポイントに送信するスコープ
          maxLength: 255
          minLength: 0
          type: string
      type: object
    EventStreamCloudEventConnectionDeletedObject0OptionsConnectionSettings:
      additionalProperties: false
      description: >-
        OAuth 2.0 PKCE（Proof Key for Code Exchange）の設定。PKCE
        は、認可コードの傍受攻撃を防ぐことで、パブリッククライアントのセキュリティを強化します。'auto'（推奨）は、IdP
        がサポートする最も強力な方式を使用します。
      properties:
        pkce:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject0OptionsConnectionSettingsPkceEnum
      type: object
    EventStreamCloudEventConnectionDeletedObject0OptionsDpopSigningAlgEnum:
      description: DPoP proof JWT の署名に使用するアルゴリズム。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - ES512
        - Ed25519
      type: string
    EventStreamCloudEventConnectionDeletedObject0OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンを Auth0 の Token Vault に保存するための設定。有効にすると、Auth0
        はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済みの API
        呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject0OptionsIdTokenSignedResponseAlgsItemEnum:
      description: ID トークンの検証に使用できるアルゴリズム。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionDeletedObject0OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠した OpenID Connect Provider Metadata
      properties:
        acr_values_supported:
          description: この OP がサポートする Authentication Context Class Reference のリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされる、アイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントは OAuth 2.0 認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenID Provider がサポートするクレームタイプのリストを含む JSON
            配列。これらのクレームタイプについては、OpenID Connect Core 1.0 [OpenID.Core] のセクション 5.6
            で説明されています。省略した場合、実装でサポートされるのは通常のクレームのみです。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるクレームの値でサポートされる言語および文字体系。BCP47 [RFC5646] の言語タグ値の JSON
            配列で表されます。すべてのクレーム値ですべての言語および文字体系がサポートされるとは限りません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OP が claims パラメーターの使用をサポートするかどうかを指定するブール値です。true
            はサポートすることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        claims_supported:
          description: >-
            OpenID Provider が値を提供できる可能性があるクレームのクレーム名のリストを含む JSON
            配列。プライバシー上の理由などから、網羅的なリストではない場合があります。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636 で定義されている、この OP がサポートする Proof Key for Code
            Exchange（PKCE）のコードチャレンジメソッド（例: S256、plain）のリストを含む JSON 配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法でトークンエンドポイントにおいてクライアントを認証する際に使用する JWT [JWT]
            の署名について、トークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは
            RS256 をサポートする必要があります。値 none は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWT の署名でサポートされる JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーのログアウト／セッション終了エンドポイントの URL。静的 URL として設定した場合、ユーザーは
            Auth0 からログアウトした後にこの URL へリダイレクトされます。HTTPS スキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 グラントタイプ値のリスト。動的 OpenID Provider は
            authorization_code および implicit
            のグラントタイプ値をサポートする必要があり、他のグラントタイプをサポートしてもかまいません。省略した場合、デフォルト値は
            ["authorization_code", "implicit"] です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードするために ID トークンで OP がサポートする JWE 暗号化アルゴリズム（alg
            値）のリストを含む JSON 配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために ID トークンで OP がサポートする JWE 暗号化アルゴリズム（enc
            値）のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードするために ID トークンで OP がサポートする JWS 署名アルゴリズム（alg
            値）のリスト。アルゴリズム RS256 を含める必要があります。値 none
            はサポートしてもかまいませんが、使用するレスポンスタイプが認可エンドポイントから ID
            トークンを返さない場合（認可コードフローを使用する場合など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: ID トークンの署名用に IdP がサポートする JWS 署名アルゴリズム（OIDC ディスカバリーメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーが発行する ID トークンの 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenID Provider がクライアント登録者に提供する URL。Relying Party が OP
            から提供されるデータを使用する際の OP の要件を確認できます。URL が提供されている場合、登録プロセスではクライアント登録者にこの
            URL を表示することが推奨されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenID Provider がクライアント登録者に提供する URL。OpenID Provider の利用規約を確認できます。URL
            が提供されている場合、登録プロセスではクライアント登録者にこの URL を表示することが推奨されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OP の Dynamic Client Registration エンドポイントの
            URL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            Request Object 用に OP がサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            Request Object 用に OP がサポートする JWE 暗号化アルゴリズム（enc 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            Request Object 用に OP がサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列です。これらのアルゴリズムは OpenID Connect Core 1.0 [OpenID.Core] のセクション 6.1
            で説明されています。Request Object を値として渡す場合（request
            パラメータを使用）と、参照として渡す場合（request_uri パラメータを使用）の両方で使用されます。サーバーは none と
            RS256 をサポートすべきです。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OP が request パラメータの使用をサポートするかどうかを指定するブール値です。true
            はサポートされていることを示します。省略した場合の既定値は false です。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OP が request_uri パラメータの使用をサポートするかどうかを指定するブール値です。true
            はサポートされていることを示します。省略した場合の既定値は false です。
          type: boolean
        require_request_uri_registration:
          description: OP が request_uri パラメータの使用を必須とするかどうかを指定するブール値です。省略した場合の既定値は false です。
          type: boolean
        response_modes_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_mode 値のリストです。省略した場合、Dynamic OpenID
            Providers の既定値は ["query", "fragment"] です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_type 値のリストです。Dynamic OpenID
            Providers は、code、id_token、token id_token の Response Type
            値をサポートする必要があります。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートする OAuth 2.0 [RFC6749] スコープ値のリストです。サーバーは openid
            スコープ値をサポートする必要があります。このパラメータを使用する場合でも、サーバーはサポートしている一部のスコープ値を公開しないことを選択できますが、[OpenID.Core]
            で定義されているものは、サポートしている場合はリストに含めるべきです。推奨されますが、必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者が OpenID Provider を使用する際に知りたい、または知る必要がある、人間が判読できる情報を含むページの URL
            です。特に、OpenID Provider が Dynamic Client Registration
            をサポートしていない場合は、クライアントの登録方法に関する情報をこのドキュメントで提供する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: >-
            この OP がサポートする Subject Identifier タイプのリストです。有効なタイプには pairwise と
            public があります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換するための、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL
            です。有効な HTTPS URL である必要があります。認可コードフローでは必須ですが、Implicit Flow では任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            この Token Endpoint がサポートするクライアント認証方法のリストを含む JSON 配列です。OpenID Connect
            Core 1.0 [OpenID.Core] のセクション 9 で説明されているように、オプションは
            client_secret_post、client_secret_basic、client_secret_jwt、private_key_jwt
            です。拡張機能によって他の認証方法が定義される場合もあります。省略した場合、既定値は client_secret_basic、つまり
            OAuth 2.0 [RFC6749] のセクション 2.3.1 で指定されている HTTP Basic Authentication
            Scheme です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt 認証方法で Token Endpoint
            においてクライアントを認証するために使用される JWT [JWT] の署名について、Token Endpoint がサポートする JWS
            署名アルゴリズム（alg 値）のリストを含む JSON 配列です。サーバーは RS256 をサポートすべきです。none
            の値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: >-
            ユーザーインターフェースでサポートされる言語および文字体系です。BCP47 [RFC5646] 言語タグ値の JSON
            配列で表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームを暗号化するために UserInfo Endpoint がサポートする JWE [JWE]
            暗号化アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列です。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームを暗号化するために UserInfo Endpoint がサポートする JWE
            暗号化アルゴリズム（enc 値）[JWA] のリストを含む JSON 配列です。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            任意のアイデンティティプロバイダーの UserInfo endpoint の URL です。属性マッピングを設定すると、Auth0
            はアクセストークンを使用して追加のユーザープロファイルクレームを取得するため、このエンドポイントを呼び出します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWS [JWS]
            署名アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列です。none の値を含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionDeletedObject0OptionsSchemaVersionEnum:
      description: 接続オプションの内部スキーマバージョンです。
      enum:
        - openid-1.0.0
        - oidc-v4
      type: string
    EventStreamCloudEventConnectionDeletedObject0OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（既定）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        から同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionDeletedObject0OptionsTokenEndpointAuthMethodEnum:
      description: >-
        アイデンティティプロバイダーのトークンエンドポイントで使用するクライアント認証方法です。'client_secret_post'
        はリクエスト本文で資格情報を送信します。'private_key_jwt' はセキュリティを強化するために署名付き JWT
        アサーションを使用します。strategy=oidc または okta の場合に適用されます。
      enum:
        - client_secret_post
        - private_key_jwt
      type: string
    EventStreamCloudEventConnectionDeletedObject0OptionsTokenEndpointAuthSigningAlgEnum:
      description: client_assertions の署名に使用するアルゴリズムです。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionDeletedObject0OptionsTokenEndpointJwtcaAudFormatEnum:
      description: >-
        トークンエンドポイントでのクライアント認証に使用する JWT に含まれる
        aud（オーディエンス）クレームの形式を指定します。指定可能な値は次のとおりです。'issuer'（aud クレームを OIDC 発行者 URL
        に設定）または 'token_endpoint'（aud クレームをトークンエンドポイント URL に設定）。
      enum:
        - issuer
        - token_endpoint
      type: string
    EventStreamCloudEventConnectionDeletedObject0OptionsTypeEnum:
      description: >-
        OIDC 通信チャネルの種類です。'back_channel'（confidential
        client）は、セキュリティを強化するためにサーバー側でトークンを交換します。'front_channel'
        はブラウザーでレスポンスを処理します。
      enum:
        - back_channel
        - front_channel
      type: string
    EventStreamCloudEventConnectionDeletedObject0OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用します。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject1OptionsAttributeMap:
      additionalProperties: false
      description: アイデンティティプロバイダー（IdP）から受け取ったクレームのマッピング
      properties:
        attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1OptionsAttributeMapAttributes
        mapping_mode:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1OptionsAttributeMapMappingModeEnum
        userinfo_scope:
          description: IdP の UserInfo エンドポイントに送信するスコープ
          maxLength: 255
          minLength: 0
          type: string
      type: object
    EventStreamCloudEventConnectionDeletedObject1OptionsConnectionSettings:
      additionalProperties: false
      description: >-
        OAuth 2.0 PKCE（Proof Key for Code Exchange）の設定。PKCE
        は認可コード傍受攻撃を防ぐことで、パブリッククライアントのセキュリティを強化します。'auto'（推奨）は、IdP
        がサポートする最も強力な方式を使用します。
      properties:
        pkce:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject1OptionsConnectionSettingsPkceEnum
      type: object
    EventStreamCloudEventConnectionDeletedObject1OptionsDpopSigningAlgEnum:
      description: DPoP proof JWT の署名に使用するアルゴリズム。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - ES512
        - Ed25519
      type: string
    EventStreamCloudEventConnectionDeletedObject1OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンを Auth0 の Token Vault に保存するための設定。有効にすると、Auth0
        はフェデレーションログインで使用されるアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済みの
        API 呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject1OptionsIdTokenSignedResponseAlgsItemEnum:
      description: ID トークンの検証に使用できるアルゴリズム。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionDeletedObject1OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠した OpenID Connect Provider Metadata
      properties:
        acr_values_supported:
          description: この OP がサポートする Authentication Context Class Reference のリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされる、アイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントにより、OAuth 2.0 認可コードフローが開始されます。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenID Provider がサポートする Claim Type のリストを含む JSON 配列。これらの Claim Type
            は、OpenID Connect Core 1.0 [OpenID.Core] のセクション 5.6
            で説明されています。省略した場合、実装でサポートされるのは通常のクレームのみです。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるクレームの値でサポートされる言語とスクリプトを、BCP47 [RFC5646] 言語タグ値の JSON
            配列で表します。すべてのクレーム値ですべての言語とスクリプトがサポートされるとは限りません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OP が claims パラメーターの使用をサポートするかどうかを指定するブール値。true
            はサポートしていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        claims_supported:
          description: >-
            OpenID Provider が値を提供できる可能性があるクレームの Claim Name のリストを含む JSON
            配列。プライバシー上またはその他の理由により、完全なリストではない可能性があることに注意してください。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636 で定義されている、この OP がサポートする Proof Key for Code
            Exchange（PKCE）のコードチャレンジメソッド（例: S256、plain）のリストを含む JSON 配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法でトークンエンドポイントにおいてクライアントを認証する際、JWT [JWT]
            の署名に使用する、トークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは
            RS256 をサポートする必要があります。値 none は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWT の署名でサポートされる JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーのログアウト／セッション終了エンドポイントの URL。静的 URL として設定した場合、ユーザーは
            Auth0 からログアウトした後、この URL にリダイレクトされます。HTTPS スキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 グラントタイプ値のリスト。動的 OpenID Provider は
            authorization_code および implicit
            のグラントタイプ値をサポートする必要があり、その他のグラントタイプをサポートしてもかまいません。省略した場合、デフォルト値は
            ["authorization_code", "implicit"] です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードするために OP が ID トークンでサポートする JWE 暗号化アルゴリズム（alg
            値）のリストを含む JSON 配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために OP が ID トークンでサポートする JWE 暗号化アルゴリズム（enc
            値）のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードするために OP が ID トークンでサポートする JWS 署名アルゴリズム（alg
            値）のリスト。アルゴリズム RS256 を含める必要があります。値 none はサポートしてもかまいませんが、使用する Response
            Type で認可エンドポイントから ID
            トークンが返されない場合（認可コードフローを使用する場合など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: ID トークンの署名に IdP がサポートする JWS 署名アルゴリズム（OIDC ディスカバリーメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダー固有の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーが発行する ID トークン内の 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenID Provider がクライアントを登録する担当者に提供する URL。この URL では、Relying Party が
            OP から提供されたデータを使用する際の OP の要件を確認できます。指定されている場合、登録プロセスではこの URL
            をクライアントの登録担当者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenID Provider がクライアントを登録する担当者に提供する URL。この URL では OpenID Provider
            の利用規約を確認できます。指定されている場合、登録プロセスではこの URL をクライアントの登録担当者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OP の Dynamic Client Registration エンドポイントの
            URL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            OP が Request Object でサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            OP が Request Object でサポートする JWE 暗号化アルゴリズム（enc 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            Request Object 向けに OP がサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列。これらは OpenID Connect Core 1.0 [OpenID.Core] のセクション 6.1
            で説明されています。これらのアルゴリズムは、Request Object を値で渡す場合（request
            パラメータを使用）と参照で渡す場合（request_uri パラメータを使用）の両方で使用されます。サーバーは none と RS256
            をサポートすべきです。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OP が request パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OP が request_uri パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        require_request_uri_registration:
          description: >-
            OP が request_uri パラメータの使用を必須とするかどうかを指定するブール値。省略した場合、デフォルト値は false
            です。
          type: boolean
        response_modes_supported:
          description: >-
            この OP がサポートする OAuth 2.0 の response_mode 値のリスト。省略した場合、Dynamic OpenID
            Providers のデフォルト値は ["query", "fragment"] です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 の response_type 値のリスト。Dynamic OpenID
            Providers は、code、id_token、および token id_token の Response Type
            値をサポートする必要があります。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートする OAuth 2.0 [RFC6749] のスコープ値のリスト。サーバーは openid
            スコープ値をサポートする必要があります。このパラメータを使用しても、サーバーはサポートするスコープ値の一部を公開しないことを選択できます。ただし、[OpenID.Core]
            で定義されている値は、サポートされている場合は一覧に含めるべきです。推奨されますが必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者が OpenID Provider を使用する際に知りたい、または知る必要がある人間が読める情報を掲載したページの
            URL。特に、OpenID Provider が Dynamic Client Registration
            をサポートしていない場合は、クライアントの登録方法に関する情報をこのドキュメントで提供する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: >-
            この OP がサポートする Subject Identifier タイプのリスト。有効なタイプには pairwise と public
            があります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換するための、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの
            URL。有効な HTTPS URL である必要があります。認可コードフローでは必須ですが、Implicit Flow では任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            この Token Endpoint でサポートされるクライアント認証方法のリストを含む JSON 配列。OpenID Connect
            Core 1.0 [OpenID.Core] のセクション 9 で説明されているとおり、オプションは
            client_secret_post、client_secret_basic、client_secret_jwt、private_key_jwt
            です。拡張機能によって、他の認証方法が定義される場合があります。省略した場合のデフォルトは
            client_secret_basic、つまり OAuth 2.0 [RFC6749] のセクション 2.3.1 で規定されている
            HTTP Basic Authentication Scheme です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt 認証方法で、Token Endpoint
            においてクライアントを認証するために使用される JWT [JWT] の署名に関して、Token Endpoint がサポートする JWS
            署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは RS256 をサポートすべきです。値 none
            は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: ユーザーインターフェースでサポートされる言語および文字体系。BCP47 [RFC5646] 言語タグ値の JSON 配列で表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームを暗号化するために UserInfo Endpoint がサポートする JWE [JWE]
            暗号化アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームを暗号化するために UserInfo Endpoint がサポートする JWE
            暗号化アルゴリズム（enc 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの任意の URL。属性マッピングが設定されている場合、Auth0
            はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWS [JWS]
            署名アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。値 none を含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionDeletedObject1OptionsSchemaVersionEnum:
      description: 接続オプションの内部スキーマバージョン。
      enum:
        - openid-1.0.0
        - oidc-v4
      type: string
    EventStreamCloudEventConnectionDeletedObject1OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        から同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionDeletedObject1OptionsTokenEndpointAuthMethodEnum:
      description: >-
        アイデンティティプロバイダーのトークンエンドポイントで使用するクライアント認証方法。'client_secret_post'
        はリクエスト本文で認証情報を送信します。'private_key_jwt' は強化されたセキュリティのために署名付き JWT
        アサーションを使用します。strategy=oidc または okta の場合に適用されます。
      enum:
        - client_secret_post
        - private_key_jwt
      type: string
    EventStreamCloudEventConnectionDeletedObject1OptionsTokenEndpointAuthSigningAlgEnum:
      description: client_assertions の署名に使用するアルゴリズム。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionDeletedObject1OptionsTokenEndpointJwtcaAudFormatEnum:
      description: >-
        トークンエンドポイントでのクライアント認証に使用する JWT に含まれる
        aud（audience）クレームの形式を指定します。使用できる値は、'issuer'（aud クレームを OIDC 発行者 URL
        に設定）または 'token_endpoint'（aud クレームをトークンエンドポイント URL に設定）です。
      enum:
        - issuer
        - token_endpoint
      type: string
    EventStreamCloudEventConnectionDeletedObject1OptionsTypeEnum:
      description: 接続タイプ
      enum:
        - back_channel
      type: string
    EventStreamCloudEventConnectionDeletedObject1OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、またはプロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject2OptionsAssertionDecryptionSettings:
      additionalProperties: false
      description: SAMLアサーションの復号化に関する設定。
      properties:
        algorithm_exceptions:
          description: SAMLアサーションの復号化で許可する安全でないアルゴリズムのリスト。
          items:
            maxLength: 100
            minLength: 1
            type: string
          type: array
        algorithm_profile:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum
      required:
        - algorithm_profile
      type: object
    EventStreamCloudEventConnectionDeletedObject2OptionsDigestAlgorithmEnum:
      description: SAMLリクエストおよびログアウトリクエストへの署名時に、ダイジェスト値の計算に使用するアルゴリズム。デフォルトは'sha256'です。
      enum:
        - sha1
        - sha256
      type: string
    EventStreamCloudEventConnectionDeletedObject2OptionsFieldsMap:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーのSAMLアサーション属性をAuth0のユーザープロファイル属性にマッピングします。形式: {
        'auth0_field': 'saml_attribute' }。フォールバックオプションには、{ 'auth0_field':
        ['saml_attr1', 'saml_attr2'] }
        を使用します。email、name、given_name、family_name、groupsのデフォルトマッピングとマージされます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject2OptionsIdpinitiated:
      additionalProperties: false
      description: >-
        IdP開始のSAMLシングルサインオンの設定。有効にすると、ユーザーはAuth0にアクセスせずに、SAMLアイデンティティプロバイダーから直接ログインを開始できます。IdPはpost-back
        URL（Assertion Consumer Service URL）にconnectionパラメータを含める必要があります。
      properties:
        client_authorizequery:
          description: デフォルトのアプリケーションに送信するクエリ文字列
          maxLength: 2048
          minLength: 1
          type: string
        client_id:
          description: IdP開始ログインリクエストに使用するクライアントID。
          maxLength: 256
          minLength: 1
          type: string
        client_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject2OptionsIdpinitiatedClientProtocolEnum
        enabled:
          description: >-
            trueの場合、このSAML接続でIdP開始ログインが有効になります。ユーザーはAuth0にアクセスせずに、アイデンティティプロバイダーから直接ログインできます。
          type: boolean
      type: object
    EventStreamCloudEventConnectionDeletedObject2OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠する OpenID Connect Provider Metadata。Cross App Access で使用します。
      properties:
        acr_values_supported:
          description: この OP がサポートする認証コンテキストクラス参照のリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされる、アイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントで OAuth 2.0 認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenID Provider がサポートするクレームタイプのリストを含む JSON 配列。これらのクレームタイプは、OpenID
            Connect Core 1.0 [OpenID.Core] のセクション 5.6
            で説明されています。省略した場合、実装では通常のクレームのみがサポートされます。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるクレーム値でサポートされる言語およびスクリプトを、BCP47 [RFC5646] 言語タグ値の JSON
            配列として表したものです。すべてのクレーム値ですべての言語およびスクリプトがサポートされるとは限りません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OP が claims パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートしていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        claims_supported:
          description: >-
            OpenID Provider が値を提供できる可能性のあるクレームのクレーム名のリストを含む JSON
            配列。プライバシーなどの理由により、完全なリストではない場合があります。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636 で定義されている、この OP がサポートする Proof Key for Code
            Exchange（PKCE）のコードチャレンジメソッド（例: S256、plain）のリストを含む JSON 配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法でトークンエンドポイントにおいてクライアントを認証する際に使用される JWT [JWT]
            の署名について、トークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは
            RS256 をサポートする必要があります。none 値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWT の署名でサポートされる JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーのログアウト／セッション終了エンドポイントの URL。静的 URL として設定した場合、ユーザーは
            Auth0 からログアウトした後、ここにリダイレクトされます。HTTPS スキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 グラントタイプ値のリスト。動的 OpenID Provider は
            authorization_code および implicit
            のグラントタイプ値をサポートする必要があり、他のグラントタイプをサポートしてもかまいません。省略した場合、デフォルト値は
            ["authorization_code", "implicit"] です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: >-
            JWT でクレームをエンコードする ID トークン用として OP がサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む
            JSON 配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT] でクレームをエンコードする ID トークン用として OP がサポートする JWE 暗号化アルゴリズム（enc
            値）のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT でクレームをエンコードする ID トークン用として OP がサポートする JWS 署名アルゴリズム（alg
            値）のリスト。アルゴリズム RS256 を含める必要があります。none
            値をサポートしてもかまいませんが、使用するレスポンスタイプで認可エンドポイントから ID
            トークンが返されない場合（認可コードフロー使用時など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: ID トークン署名用に IdP がサポートする JWS 署名アルゴリズム（OIDC ディスカバリーメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーが発行する ID
            トークンの「iss」クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開鍵を含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する URL。登録者は、この URL で、Relying Party による
            OP 提供データの利用に関する OP の要件を確認できます。指定されている場合、登録プロセスではこの URL を登録者に表示すべきです。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する URL。登録者は、この URL で OpenID Provider
            の利用規約を確認できます。指定されている場合、登録プロセスではこの URL を登録者に表示すべきです。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OP の Dynamic Client Registration エンドポイントの
            URL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            OP が Request Object 用にサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合と参照で渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            OP が Request Object 用にサポートする JWE 暗号化アルゴリズム（enc 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合と参照で渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            OpenID Connect Core 1.0 [OpenID.Core] のセクション 6.1 で説明されている、OP が
            Request Object 用にサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合（request
            パラメータを使用）と参照で渡す場合（request_uri パラメータを使用）の両方で使用されます。サーバーは none と RS256
            をサポートすべきです。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OP が request パラメータの使用をサポートするかどうかを指定する Boolean 値。true
            はサポートを示します。省略した場合、デフォルト値は false です。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OP が request_uri パラメータの使用をサポートするかどうかを指定する Boolean 値。true
            はサポートを示します。省略した場合、デフォルト値は false です。
          type: boolean
        require_request_uri_registration:
          description: >-
            OP が request_uri パラメータの使用を必須とするかどうかを指定する Boolean 値。省略した場合、デフォルト値は
            false です。
          type: boolean
        response_modes_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_mode 値のリスト。省略した場合、Dynamic OpenID
            Providers のデフォルトは ["query", "fragment"] です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_type 値のリスト。Dynamic OpenID Providers
            は、code、id_token、token id_token の Response Type 値をサポートする必要があります。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートする OAuth 2.0 [RFC6749] scope 値のリスト。サーバーは openid scope
            値をサポートする必要があります。このパラメータを使用する場合でも、サーバーはサポートする一部の scope
            値を通知しないことがあります。ただし、[OpenID.Core]
            で定義されているものは、サポートしている場合はリストに含めるべきです。推奨されますが、必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者が OpenID Provider を使用する際に知りたい、または知る必要がある人間が読みやすい情報を掲載したページの
            URL。特に、OpenID Provider が Dynamic Client Registration
            をサポートしていない場合、このドキュメントにはクライアントの登録方法に関する情報を記載する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: >-
            この OP がサポートする Subject Identifier タイプのリスト。有効なタイプには pairwise と public
            があります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換するアイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL。有効な
            HTTPS URL である必要があります。認可コードフローでは必須ですが、Implicit Flow では任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            この Token Endpoint がサポートするクライアント認証方法のリストを含む JSON 配列。OpenID Connect
            Core 1.0 [OpenID.Core] のセクション 9 で説明されているように、オプションは
            client_secret_post、client_secret_basic、client_secret_jwt、private_key_jwt
            です。その他の認証方法は extension によって定義される場合があります。省略した場合、デフォルトは
            client_secret_basic、つまり OAuth 2.0 [RFC6749] のセクション 2.3.1 で指定された HTTP
            Basic 認証方式です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt 認証方法で Token Endpoint
            においてクライアントを認証するために使用する JWT [JWT] の署名について、Token Endpoint がサポートする JWS
            署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは RS256 をサポートすべきです。none
            は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: ユーザーインターフェースでサポートされる言語および文字体系。BCP47 [RFC5646] 言語タグ値の JSON 配列で表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWE [JWE]
            暗号化アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWE
            暗号化アルゴリズム（enc 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの任意の URL。属性マッピングを設定すると、Auth0
            はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            UserInfo エンドポイントが JWT [JWT] のクレームのエンコードに対応する JWS [JWS] 署名アルゴリズム（alg
            値）[JWA] のリストを含む JSON 配列。値 none を含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionDeletedObject2OptionsProtocolBindingEnum:
      description: アイデンティティプロバイダーに認証リクエストを送信するためのSAMLプロトコルバインディング方式。
      enum:
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect
      type: string
    EventStreamCloudEventConnectionDeletedObject2OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、pictureなど）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login':
        IdPから同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionDeletedObject2OptionsSignatureAlgorithmEnum:
      description: >-
        接続の署名キーを使用してSAML認証リクエストおよびログアウトリクエストに署名するアルゴリズム。一般的な値:
        'rsa-sha256'（SHA-256ダイジェストによるRSA署名）または'rsa-sha1'。デフォルトは'rsa-sha256'です。
      enum:
        - rsa-sha1
        - rsa-sha256
      type: string
    EventStreamCloudEventConnectionDeletedObject2OptionsSubject:
      additionalProperties: false
      description: アイデンティティプロバイダーの署名証明書から抽出された証明書サブジェクト識別名（DN）。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject2OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject3OptionsAssertionDecryptionSettings:
      additionalProperties: false
      description: SAMLアサーションの復号化に関する設定。
      properties:
        algorithm_exceptions:
          description: SAMLアサーションの復号化で許可する安全でないアルゴリズムのリスト。
          items:
            maxLength: 100
            minLength: 1
            type: string
          type: array
        algorithm_profile:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum
      required:
        - algorithm_profile
      type: object
    EventStreamCloudEventConnectionDeletedObject3OptionsDigestAlgorithmEnum:
      description: SAMLリクエストおよびログアウトリクエストへの署名時にダイジェスト値を計算するためのアルゴリズム。デフォルトは 'sha256' です。
      enum:
        - sha1
        - sha256
      type: string
    EventStreamCloudEventConnectionDeletedObject3OptionsIdpinitiated:
      additionalProperties: false
      description: >-
        IdP開始型 SAMLシングルサインオンの設定。有効にすると、ユーザーは Auth0 を経由せずに
        SAMLアイデンティティプロバイダーから直接ログインを開始できます。IdP はポストバック URL（Assertion Consumer
        Service URL）に接続パラメータを含める必要があります。
      properties:
        client_authorizequery:
          description: デフォルトアプリケーションに送信するクエリ文字列
          maxLength: 2048
          minLength: 1
          type: string
        client_id:
          description: IdP開始型ログインリクエストに使用するクライアント ID。
          maxLength: 256
          minLength: 1
          type: string
        client_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedObject3OptionsIdpinitiatedClientProtocolEnum
        enabled:
          description: >-
            true の場合、この SAML接続で IdP開始型ログインが有効になります。ユーザーは Auth0
            を経由せずにアイデンティティプロバイダーから直接ログインできます。
          type: boolean
      type: object
    EventStreamCloudEventConnectionDeletedObject3OptionsProtocolBindingEnum:
      description: アイデンティティプロバイダーに認証リクエストを送信するための SAMLプロトコルバインディング方式。
      enum:
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect
      type: string
    EventStreamCloudEventConnectionDeletedObject3OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新可能。'never_on_login': IdP
        からは同期せず、ローカルで設定した値を保持。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionDeletedObject3OptionsSignatureAlgorithmEnum:
      description: >-
        接続の署名鍵を使用して SAML認証リクエストおよびログアウトリクエストに署名するためのアルゴリズム。一般的な値:
        'rsa-sha256'（SHA-256 ダイジェストを使用する RSA 署名）または 'rsa-sha1'。デフォルトは
        'rsa-sha256' です。
      enum:
        - rsa-sha1
        - rsa-sha256
      type: string
    EventStreamCloudEventConnectionDeletedObject3OptionsSubject:
      additionalProperties: false
      description: アイデンティティプロバイダーの署名証明書から抽出された証明書サブジェクト識別名（DN）。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject3OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject4OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        から同期せず、ローカルで設定された値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionDeletedObject4OptionsShouldTrustEmailVerifiedConnectionEnum:
      description: Auth0 がユーザープロファイルの email_verified フィールドを設定する方法を選択します。
      enum:
        - never_set_emails_as_verified
        - always_set_emails_as_verified
      type: string
    EventStreamCloudEventConnectionDeletedObject4OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject5OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、それ以降は個別に更新できます。'never_on_login': IdP
        から同期せず、ローカルで設定された値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionDeletedObject5OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject6OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンを Auth0 の Token Vault に保存するための設定です。有効な場合、Auth0
        はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済みの API
        呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject6OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        から同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionDeletedObject6OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、またはプロバイダー固有の動作の設定に使用します。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject7OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンを Auth0 の Token Vault に保存するための設定です。有効にすると、Auth0
        はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済みの API
        呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedObject7OptionsIdentityApiEnum:
      description: >-
        認証に使用する Azure AD
        エンドポイントのバージョンです。'microsoft-identity-platform-v2.0'（推奨、デフォルト）は最新の OAuth
        2.0 機能をサポートします。'azure-active-directory-v1.0'
        はプロトコル上の制限があるレガシーエンドポイントです。選択によって利用可能な機能が変わります。
      enum:
        - microsoft-identity-platform-v2.0
        - azure-active-directory-v1.0
      type: string
    EventStreamCloudEventConnectionDeletedObject7OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        からは同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionDeletedObject7OptionsShouldTrustEmailVerifiedConnectionEnum:
      description: ユーザープロファイルの email_verified フィールドを Auth0 が設定する方法を選択します。
      enum:
        - never_set_emails_as_verified
        - always_set_emails_as_verified
      type: string
    EventStreamCloudEventConnectionDeletedObject7OptionsTenantDomain:
      anyOf:
        - description: 'ホスト名として指定する Azure AD テナントドメイン（例: contoso.onmicrosoft.com）。'
          format: hostname
          maxLength: 512
          minLength: 0
          type: string
        - description: UUID のテナント ID として指定する Azure AD テナントドメイン。
          format: uuid
          type: string
      description: >-
        Azure AD テナントのドメインまたはテナント ID（UUID）です。'domain' フィールドから自動入力されます。ホスト名（例:
        'contoso.onmicrosoft.com'）または UUID のテナント ID を指定できます。
    EventStreamCloudEventConnectionDeletedObject7OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータです。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject7OptionsUseridAttributeEnum:
      description: >-
        一意のユーザー識別子として使用する Azure AD クレームです。'oid'（オブジェクト ID）はシングルテナント接続で推奨され、SCIM
        では必須です。'sub'（サブジェクト）はマルチテナントまたは共通エンドポイントで必須です。OpenID Connect
        プロトコルでのみ適用されます。
      enum:
        - oid
        - sub
      type: string
    EventStreamCloudEventConnectionDeletedObject7OptionsWaadProtocolEnum:
      description: >-
        Azure AD v1 エンドポイント用の認証プロトコルです。'openid-connect'（デフォルト、推奨）は最新の OAuth
        2.0/OIDC を使用します。'ws-federation' は古い統合向けのレガシー SAML ベースのプロトコルです。Azure AD
        v1 API でのみ使用できます。
      enum:
        - ws-federation
        - openid-connect
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject0OptionsAttributeMap:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのクレームを Auth0 のユーザープロファイル属性にマッピングするための設定。どの IdP
        クレームをユーザーフィールドに設定するか、およびその変換方法をカスタマイズできます。
      properties:
        attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0OptionsAttributeMapAttributes
        mapping_mode:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0OptionsAttributeMapMappingModeEnum
        userinfo_scope:
          description: IdP の UserInfo エンドポイントに送信するスコープ
          maxLength: 255
          minLength: 0
          type: string
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject0OptionsConnectionSettings:
      additionalProperties: false
      description: >-
        OAuth 2.0 PKCE（Proof Key for Code Exchange）の設定。PKCE
        は、認可コード傍受攻撃を防ぐことでパブリッククライアントのセキュリティを強化します。'auto'（推奨）は、IdP
        がサポートする最も強力な方式を使用します。
      properties:
        pkce:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject0OptionsConnectionSettingsPkceEnum
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject0OptionsDpopSigningAlgEnum:
      description: DPoP proof JWT の署名に使用するアルゴリズム。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - ES512
        - Ed25519
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject0OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンを Auth0 の Token Vault に保存するための設定。有効にすると、Auth0
        はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済みの API
        呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンおよびアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject0OptionsIdTokenSignedResponseAlgsItemEnum:
      description: ID トークンの検証に使用できるアルゴリズム。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject0OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠した OpenID Connect Provider Metadata
      properties:
        acr_values_supported:
          description: この OP がサポートする Authentication Context Class Reference のリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされる、アイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントで OAuth 2.0 認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenID Provider がサポートする Claim Type のリストを含む JSON 配列。これらの Claim Type は
            OpenID Connect Core 1.0 [OpenID.Core] のセクション 5.6
            で説明されています。省略した場合、実装でサポートされるのは通常のクレームのみです。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるクレームの値でサポートされる言語および文字体系を、BCP47 [RFC5646] の言語タグ値からなる JSON
            配列で表します。すべてのクレーム値が、すべての言語および文字体系をサポートするとは限りません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OP が claims パラメーターの使用をサポートするかどうかを指定するブール値。true
            はサポートを示します。省略した場合、デフォルト値は false です。
          type: boolean
        claims_supported:
          description: >-
            OpenID Provider が値を提供できる可能性があるクレームの Claim Name のリストを含む JSON
            配列。プライバシーなどの理由により、網羅的なリストではない場合があることに注意してください。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636 で定義されている、この OP がサポートする Proof Key for Code Exchange (PKCE)
            のコードチャレンジ方式（例: S256、plain）のリストを含む JSON 配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法でトークンエンドポイントにおいてクライアントを認証する際に使用する JWT [JWT]
            の署名について、トークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは
            RS256 をサポートする必要があります。値 none は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWT の署名でサポートされる JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーのログアウト／セッション終了エンドポイントの URL。静的 URL として設定した場合、ユーザーは
            Auth0 からログアウト後にこの URL へリダイレクトされます。HTTPS スキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 グラントタイプ値のリスト。動的 OpenID Provider は
            authorization_code および implicit
            のグラントタイプ値をサポートする必要があり、他のグラントタイプもサポートできます。省略した場合、デフォルト値は
            ["authorization_code", "implicit"] です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードする ID トークン用に OP がサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む
            JSON 配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードする ID トークン用に OP がサポートする JWE 暗号化アルゴリズム（enc
            値）のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードする ID トークン用に OP がサポートする JWS 署名アルゴリズム（alg
            値）のリスト。RS256 アルゴリズムを含める必要があります。値 none もサポートできますが、使用する Response Type
            が認可エンドポイントから ID
            トークンを返さない場合（認可コードフローを使用する場合など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: ID トークンの署名用に IdP がサポートする JWS 署名アルゴリズム（OIDC ディスカバリーメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーから発行される ID トークンの 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーの JSON Web Key Set (JWKS) エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する URL。この URL で、Relying Party による OP
            提供データの利用に関する OP の要件を確認できます。指定されている場合、登録プロセスではクライアントの登録者にこの URL
            を表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する、OpenID Provider の利用規約を確認するための
            URL。指定されている場合、登録プロセスではクライアントの登録者にこの URL を表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OP の Dynamic Client Registration エンドポイントの
            URL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            OP が Request Object 用にサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            OP が Request Object 用にサポートする JWE 暗号化アルゴリズム（enc 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            Request Object 用に OP がサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、OpenID Connect Core 1.0 [OpenID.Core] のセクション 6.1
            で説明されています。Request Object を値として渡す場合（request
            パラメータを使用）と参照として渡す場合（request_uri パラメータを使用）の両方で使用されます。サーバーは none と
            RS256 をサポートすべきです。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OP が request パラメータの使用をサポートするかどうかを指定する Boolean 値。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OP が request_uri パラメータの使用をサポートするかどうかを指定する Boolean 値。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        require_request_uri_registration:
          description: >-
            OP が request_uri パラメータの使用を必須とするかどうかを指定する Boolean 値。省略した場合、デフォルト値は
            false です。
          type: boolean
        response_modes_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_mode 値のリスト。省略した場合、Dynamic OpenID
            Providers のデフォルトは ["query", "fragment"] です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_type 値のリスト。Dynamic OpenID Providers
            は、code、id_token、token id_token の Response Type 値をサポートする必要があります。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートする OAuth 2.0 [RFC6749] スコープ値のリスト。サーバーは openid
            スコープ値をサポートする必要があります。このパラメータを使用する場合でも、サーバーはサポートしている一部のスコープ値を告知しないことを選択できます。ただし、[OpenID.Core]
            で定義されているものは、サポートしている場合はリストに含めるべきです。推奨ですが必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者が OpenID Provider を使用する際に知りたい、または知る必要がある、人間が理解しやすい情報を含むページの
            URL。特に、OpenID Provider が Dynamic Client Registration
            をサポートしていない場合は、このドキュメントでクライアントの登録方法に関する情報を提供する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: >-
            この OP がサポートする Subject Identifier タイプのリスト。有効なタイプには pairwise と public
            があります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換する、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL。有効な
            HTTPS URL である必要があります。認可コードフローでは必須ですが、Implicit Flow では任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            この Token Endpoint でサポートされるクライアント認証方式のリストを含む JSON 配列。OpenID Connect
            Core 1.0 [OpenID.Core] のセクション 9 で説明されているように、選択肢は
            client_secret_post、client_secret_basic、client_secret_jwt、private_key_jwt
            です。拡張機能によって他の認証方法が定義される場合があります。省略した場合、デフォルトは client_secret_basic、つまり
            OAuth 2.0 [RFC6749] のセクション 2.3.1 で規定されている HTTP Basic 認証方式です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt 認証方法で Token Endpoint
            においてクライアントを認証するために使用される JWT [JWT] の署名用として、Token Endpoint がサポートする JWS
            署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは RS256 をサポートすべきです。none
            値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: ユーザーインターフェースでサポートされる言語と文字体系。BCP47 [RFC5646] 言語タグ値の JSON 配列で表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWE [JWE]
            暗号化アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWE
            暗号化アルゴリズム（enc 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo endpoint の任意の URL。属性マッピングを設定すると、Auth0
            はアクセストークンを使用して追加のユーザープロファイルクレームを取得するため、このエンドポイントを呼び出します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWS [JWS]
            署名アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。none 値を含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject0OptionsSchemaVersionEnum:
      description: 接続オプションの内部スキーマバージョン。
      enum:
        - openid-1.0.0
        - oidc-v4
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject0OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        からは同期せず、ローカルで設定された値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject0OptionsTokenEndpointAuthMethodEnum:
      description: >-
        アイデンティティプロバイダーのトークンエンドポイントで使用する認証方法。'client_secret_post'
        は認証情報をリクエスト本文で送信します。'private_key_jwt' はセキュリティを強化するために署名付き JWT assertion
        を使用します。strategy=oidc または okta の場合に適用されます。
      enum:
        - client_secret_post
        - private_key_jwt
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject0OptionsTokenEndpointAuthSigningAlgEnum:
      description: client_assertions の署名に使用するアルゴリズム。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject0OptionsTokenEndpointJwtcaAudFormatEnum:
      description: >-
        トークンエンドポイントでのクライアント認証に使用する JWT に含まれる
        aud（audience）クレームの形式を指定します。使用可能な値は、'issuer'（aud クレームを OIDC 発行者 URL
        に設定）または 'token_endpoint'（aud クレームをトークンエンドポイント URL に設定）です。
      enum:
        - issuer
        - token_endpoint
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject0OptionsTypeEnum:
      description: >-
        OIDC 通信チャネルの種類。'back_channel'（confidential
        client）は、セキュリティを強化するためにサーバー側でトークンを交換します。'front_channel'
        はブラウザーでレスポンスを処理します。
      enum:
        - back_channel
        - front_channel
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject0OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用します。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject1OptionsAttributeMap:
      additionalProperties: false
      description: アイデンティティプロバイダー（IdP）から受信したクレームのマッピング
      properties:
        attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1OptionsAttributeMapAttributes
        mapping_mode:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1OptionsAttributeMapMappingModeEnum
        userinfo_scope:
          description: IdP の UserInfo エンドポイントに送信するスコープ
          maxLength: 255
          minLength: 0
          type: string
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject1OptionsConnectionSettings:
      additionalProperties: false
      description: >-
        OAuth 2.0 PKCE（Proof Key for Code Exchange）の設定。PKCE
        は、認可コード傍受攻撃を防ぐことでパブリッククライアントのセキュリティを強化します。'auto'（推奨）は、IdP
        がサポートする最も強力な方式を使用します。
      properties:
        pkce:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject1OptionsConnectionSettingsPkceEnum
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject1OptionsDpopSigningAlgEnum:
      description: DPoP proof JWT の署名に使用するアルゴリズム。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - ES512
        - Ed25519
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject1OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        Auth0のToken
        Vaultにアイデンティティプロバイダーのトークンを保存するための設定です。有効にすると、Auth0はフェデレーションログインのアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済みのAPI呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject1OptionsIdTokenSignedResponseAlgsItemEnum:
      description: ID トークンの検証に使用できるアルゴリズム。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject1OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠したOpenID Connectプロバイダーメタデータ
      properties:
        acr_values_supported:
          description: このOPがサポートする認証コンテキストクラス参照のリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            ユーザーが認証のためにリダイレクトされるアイデンティティプロバイダーのOAuth 2.0認可エンドポイントのURL。有効なHTTPS
            URLである必要があります。このエンドポイントはOAuth 2.0認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenID Providerがサポートするクレームタイプのリストを含むJSON配列。これらのクレームタイプは、OpenID
            Connect Core 1.0
            [OpenID.Core]のセクション5.6で説明されています。省略した場合、実装でサポートされるのは通常のクレームのみです。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるクレームの値でサポートされる言語とスクリプト。BCP47
            [RFC5646]の言語タグ値のJSON配列として表されます。すべてのクレーム値ですべての言語とスクリプトがサポートされるとは限りません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OPがclaimsパラメーターの使用をサポートするかどうかを指定するブール値です。trueはサポートを示します。省略した場合、デフォルト値はfalseです。
          type: boolean
        claims_supported:
          description: >-
            OpenID
            Providerが値を提供できる可能性のあるクレーム名のリストを含むJSON配列。プライバシーなどの理由により、完全なリストではない場合があります。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636で定義される、このOPがサポートするProof Key for Code
            Exchange（PKCE）のコードチャレンジメソッド（例: S256、plain）のリストを含むJSON配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwtおよびclient_secret_jwt認証方法でトークンエンドポイントにおいてクライアントを認証する際に使用するJWT
            [JWT]の署名について、トークンエンドポイントがサポートするJWS署名アルゴリズム（alg値）のリストを含むJSON配列。サーバーはRS256をサポートする必要があります。none値は使用してはいけません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWTの署名でサポートされるJWS署名アルゴリズム（alg値）のリストを含むJSON配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーのログアウト/セッション終了エンドポイントのURL。静的URLとして設定すると、ユーザーはAuth0からログアウト後にここへリダイレクトされます。HTTPSスキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            このOPがサポートするOAuth 2.0グラントタイプ値のリスト。動的OpenID
            Providerはauthorization_codeおよびimplicitグラントタイプ値をサポートする必要があり、他のグラントタイプをサポートしてもかまいません。省略した場合、デフォルト値は["authorization_code",
            "implicit"]です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: >-
            JWT内のクレームをエンコードするID
            トークンについて、OPがサポートするJWE暗号化アルゴリズム（alg値）のリストを含むJSON配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT]内のクレームをエンコードするID
            トークンについて、OPがサポートするJWE暗号化アルゴリズム（enc値）のリストを含むJSON配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT内のクレームをエンコードするID
            トークンについて、OPがサポートするJWS署名アルゴリズム（alg値）のリスト。RS256アルゴリズムを含める必要があります。none値をサポートしてもかまいませんが、使用するレスポンスタイプが認可エンドポイントからID
            トークンを返さない場合（認可コードフローを使用する場合など）を除き、使用してはいけません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: ID トークン署名用にIdPがサポートするJWS署名アルゴリズム（OIDC ディスカバリーメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダー固有の発行者識別子URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーからのID
            トークン内の'iss'クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開キーを含む、アイデンティティプロバイダーのJSON Web Key
            Set（JWKS）エンドポイントのURL。Auth0はこれらのキーを取得してID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenID Providerがクライアントの登録担当者に提供するURL。Relying
            PartyがOPから提供されるデータをどのように使用できるかに関するOPの要件を確認するために使用します。指定されている場合、登録プロセスではこのURLをクライアントの登録担当者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenID Providerがクライアントの登録担当者に提供する、OpenID
            Providerの利用規約を確認するためのURL。指定されている場合、登録プロセスではこのURLをクライアントの登録担当者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OPのDynamic Client
            RegistrationエンドポイントのURL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            OPがリクエストオブジェクトでサポートするJWE暗号化アルゴリズム（alg値）のリストを含むJSON配列。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            OPがリクエストオブジェクトでサポートするJWE暗号化アルゴリズム（enc値）のリストを含むJSON配列。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            Request Object
            用にOPがサポートするJWS署名アルゴリズム（alg値）のリストを含むJSON配列です。これらは、OpenID Connect Core
            1.0 [OpenID.Core]のセクション6.1で説明されています。これらのアルゴリズムは、Request
            Objectを値として渡す場合（requestパラメータを使用）と参照として渡す場合（request_uriパラメータを使用）の両方で使用されます。サーバーはnoneおよびRS256をサポートすることが推奨されます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OPがrequestパラメータの使用をサポートするかどうかを指定するBoolean値です。trueはサポートされていることを示します。省略した場合、既定値はfalseです。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OPがrequest_uriパラメータの使用をサポートするかどうかを指定するBoolean値です。trueはサポートされていることを示します。省略した場合、既定値はfalseです。
          type: boolean
        require_request_uri_registration:
          description: OPがrequest_uriパラメータの使用を必須とするかどうかを指定するBoolean値です。省略した場合、既定値はfalseです。
          type: boolean
        response_modes_supported:
          description: >-
            このOPがサポートするOAuth 2.0のresponse_mode値のリストです。省略した場合、Dynamic OpenID
            Providersの既定値は["query", "fragment"]です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            このOPがサポートするOAuth 2.0のresponse_type値のリストです。Dynamic OpenID
            Providersは、code、id_token、およびtoken id_tokenのResponse
            Type値をサポートする必要があります。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートするOAuth 2.0 [RFC6749]のscope値のリストです。サーバーはopenid
            scope値をサポートする必要があります。このパラメータを使用する場合でも、サーバーはサポートしている一部のscope値を公開しないことを選択できます。ただし、[OpenID.Core]で定義されている値は、サポートしている場合は一覧に含めることが推奨されます。推奨ですが必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者がOpenID
            Providerを使用する際に知りたい、または知る必要がある、人が読める情報を掲載したページのURLです。特に、OpenID
            ProviderがDynamic Client
            Registrationをサポートしていない場合は、このドキュメントにクライアントの登録方法に関する情報を記載する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: >-
            このOPがサポートするSubject
            Identifierタイプのリストです。有効なタイプにはpairwiseおよびpublicがあります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換するアイデンティティプロバイダーのOAuth
            2.0トークンエンドポイントのURLです。有効なHTTPS URLである必要があります。認可コードフローでは必須ですが、Implicit
            Flowでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            このトークンエンドポイントでサポートされるクライアント認証方式のリストを含むJSON配列です。オプションは、OpenID Connect
            Core 1.0
            [OpenID.Core]のセクション9で説明されているclient_secret_post、client_secret_basic、client_secret_jwt、およびprivate_key_jwtです。その他の認証方式は拡張機能によって定義される場合があります。省略した場合、既定値はclient_secret_basic、つまりOAuth
            2.0 [RFC6749]のセクション2.3.1で規定されているHTTP Basic認証方式です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwtおよびclient_secret_jwt認証方式で、トークンエンドポイントにおいてクライアントを認証するために使用されるJWT
            [JWT]の署名に関して、このトークンエンドポイントがサポートするJWS署名アルゴリズム（alg値）のリストを含むJSON配列です。サーバーはRS256をサポートすることが推奨されます。none値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: >-
            ユーザーインターフェイスでサポートされる言語および文字体系を、BCP47
            [RFC5646]言語タグ値のJSON配列として表したものです。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT]内のクレームを暗号化するためにUserInfo EndpointがサポートするJWE
            [JWE]暗号化アルゴリズム（alg値）[JWA]のリストを含むJSON配列です。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT]内のクレームを暗号化するためにUserInfo
            EndpointがサポートするJWE暗号化アルゴリズム（enc値）[JWA]のリストを含むJSON配列です。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーのUserInfo
            endpointのURL（任意）です。属性マッピングを設定すると、Auth0はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            JWT [JWT]内のクレームをエンコードするためにUserInfo EndpointがサポートするJWS
            [JWS]署名アルゴリズム（alg値）[JWA]のリストを含むJSON配列です。none値を含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject1OptionsSchemaVersionEnum:
      description: 接続オプションの内部スキーマバージョンです。
      enum:
        - openid-1.0.0
        - oidc-v4
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject1OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、pictureなど）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login'：認証のたびに更新（既定）。'on_first_login'：初回ログイン時にのみ属性を設定し、その後は個別に更新可能。'never_on_login'：IdPから同期せず、ローカルで設定した値を保持。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject1OptionsTokenEndpointAuthMethodEnum:
      description: >-
        アイデンティティプロバイダーのトークンエンドポイントで使用するクライアント認証方式です。'client_secret_post'はリクエスト本文で認証情報を送信します。'private_key_jwt'はセキュリティを強化するために署名付きJWTアサーションを使用します。strategy=oidcまたはoktaの場合に適用されます。
      enum:
        - client_secret_post
        - private_key_jwt
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject1OptionsTokenEndpointAuthSigningAlgEnum:
      description: client_assertionsの署名に使用するアルゴリズムです。strategy=oidcまたはoktaの場合に適用されます。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject1OptionsTokenEndpointJwtcaAudFormatEnum:
      description: >-
        トークンエンドポイントでのクライアント認証に使用されるJWTに含まれるaud（audience）クレームの形式を指定します。指定可能な値は、'issuer'（audクレームをOIDC発行者URLに設定）または'token_endpoint'（audクレームをトークンエンドポイントURLに設定）です。
      enum:
        - issuer
        - token_endpoint
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject1OptionsTypeEnum:
      description: 接続タイプ
      enum:
        - back_channel
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject1OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータです。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject2OptionsAssertionDecryptionSettings:
      additionalProperties: false
      description: SAMLアサーションの復号設定。
      properties:
        algorithm_exceptions:
          description: SAMLアサーションの復号で許可する安全でないアルゴリズムのリスト。
          items:
            maxLength: 100
            minLength: 1
            type: string
          type: array
        algorithm_profile:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum
      required:
        - algorithm_profile
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject2OptionsDigestAlgorithmEnum:
      description: >-
        SAMLリクエストおよびログアウトリクエストへの署名時にダイジェスト値を計算するために使用するアルゴリズム。デフォルトは 'sha256'
        です。
      enum:
        - sha1
        - sha256
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject2OptionsFieldsMap:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーからの SAMLアサーション属性を Auth0 ユーザープロファイルの属性にマッピングします。形式: {
        'auth0_field': 'saml_attribute' }、またはフォールバック用の { 'auth0_field':
        ['saml_attr1', 'saml_attr2'] }。email、name、given_name、family_name、groups
        のデフォルトマッピングと統合されます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject2OptionsIdpinitiated:
      additionalProperties: false
      description: >-
        IdP-Initiated SAML シングルサインオンの設定。有効にすると、ユーザーは Auth0 にアクセスせずに、SAML
        アイデンティティプロバイダーから直接ログインを開始できます。IdP は POST バック URL（Assertion Consumer
        Service URL）に接続パラメータを含める必要があります。
      properties:
        client_authorizequery:
          description: デフォルトアプリケーションに送信されるクエリ文字列
          maxLength: 2048
          minLength: 1
          type: string
        client_id:
          description: IdP-initiated ログインリクエストに使用するクライアント ID。
          maxLength: 256
          minLength: 1
          type: string
        client_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject2OptionsIdpinitiatedClientProtocolEnum
        enabled:
          description: >-
            true の場合、この SAML 接続で IdP-initiated ログインのサポートを有効にします。ユーザーは Auth0
            にアクセスせずに、アイデンティティプロバイダーから直接ログインできます。
          type: boolean
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject2OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠した OpenID Connect Provider メタデータ。Cross App Access で使用されます。
      properties:
        acr_values_supported:
          description: この OP がサポートする認証コンテキストクラス参照のリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされる、アイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントは OAuth 2.0 認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenID Provider がサポートするクレームタイプのリストを含む JSON 配列。これらのクレームタイプは、OpenID
            Connect Core 1.0 [OpenID.Core] のセクション 5.6
            で説明されています。省略した場合、実装は通常のクレームのみをサポートします。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるクレームの値でサポートされる言語および文字体系。BCP47 [RFC5646] の言語タグ値の JSON
            配列として表されます。すべてのクレーム値ですべての言語および文字体系が必ずしもサポートされるわけではありません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OP が claims パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートを示します。省略した場合、デフォルト値は false です。
          type: boolean
        claims_supported:
          description: >-
            OpenID Provider が値を提供できる可能性があるクレームのクレーム名のリストを含む JSON
            配列。プライバシー上またはその他の理由により、網羅的なリストではない可能性があります。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636 で定義されている、この OP がサポートする Proof Key for Code
            Exchange（PKCE）コードチャレンジメソッド（例: S256、plain）のリストを含む JSON 配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法でトークンエンドポイントにおいてクライアントを認証する際に使用する JWT [JWT]
            の署名について、トークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは
            RS256 をサポートする必要があります。値 none は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWT の署名でサポートされる JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーの logout/end session エンドポイントの URL。静的 URL
            として設定した場合、ユーザーは Auth0 からログアウトした後、ここにリダイレクトされます。HTTPS
            スキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 グラントタイプ値のリスト。動的 OpenID Provider は
            authorization_code および implicit
            のグラントタイプ値をサポートする必要があり、その他のグラントタイプをサポートしてもかまいません。省略した場合、デフォルト値は
            ["authorization_code", "implicit"] です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードするために ID トークンで OP がサポートする JWE 暗号化アルゴリズム（alg
            値）のリストを含む JSON 配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために ID トークンで OP がサポートする JWE 暗号化アルゴリズム（enc
            値）のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            OP が JWT 内のクレームを ID トークンとしてエンコードする際にサポートする JWS 署名アルゴリズム（alg
            値）のリスト。RS256 を含める必要があります。none
            をサポートしてもかまいませんが、使用するレスポンスタイプが認可エンドポイントから ID
            トークンを返さない場合（認可コードフローを使用する場合など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: IdP が ID トークンの署名に使用する JWS 署名アルゴリズム（OIDC ディスカバリーのメタデータから）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーが発行する ID トークン内の 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開鍵を含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenID プロバイダーがクライアントの登録担当者に提供する、Relying Party による OP 提供データの利用に関する OP
            の要件を確認するための URL。指定されている場合、登録プロセスではこの URL
            をクライアントの登録担当者に表示することが推奨されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenID プロバイダーがクライアントの登録担当者に提供する、OpenID プロバイダーの利用規約を確認するための
            URL。指定されている場合、登録プロセスではこの URL をクライアントの登録担当者に表示することが推奨されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OP の Dynamic Client Registration エンドポイントの
            URL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            OP がリクエストオブジェクト用にサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合と参照で渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            OP がリクエストオブジェクト用にサポートする JWE 暗号化アルゴリズム（enc 値）のリストを含む JSON
            配列。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合と参照で渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            OpenID Connect Core 1.0 [OpenID.Core] のセクション 6.1 で説明されている、OP
            がリクエストオブジェクト用にサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合（request
            パラメータを使用）と、参照で渡す場合（request_uri パラメータを使用）の両方で使用されます。サーバーは none と
            RS256 をサポートすることが推奨されます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OP が request パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OP が request_uri パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        require_request_uri_registration:
          description: >-
            OP が request_uri パラメータの使用を必須とするかどうかを指定するブール値。省略した場合、デフォルト値は false
            です。
          type: boolean
        response_modes_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_mode 値のリスト。省略した場合、Dynamic OpenID
            Providers のデフォルトは ["query", "fragment"] です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_type 値のリスト。Dynamic OpenID Providers
            は、code、id_token、および token id_token のレスポンスタイプをサポートする必要があります。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートする OAuth 2.0 [RFC6749] scope 値のリスト。サーバーは openid scope
            値をサポートする必要があります。このパラメータを使用しても、サポートする scope
            値の一部を公開しないことがありますが、[OpenID.Core]
            で定義されているものは、サポートしている場合はリストに含めることが推奨されます。推奨されますが、必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者が OpenID プロバイダーを利用する際に知っておくべき、または知りたい、人間が読める情報を含むページの
            URL。特に、OpenID プロバイダーが Dynamic Client Registration
            をサポートしていない場合、このドキュメントにはクライアントの登録方法に関する情報を記載する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: この OP がサポートするサブジェクト識別子タイプのリスト。有効なタイプには pairwise と public があります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換する、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL。有効な
            HTTPS URL である必要があります。認可コードフローでは必須ですが、インプリシットフローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            このトークンエンドポイントがサポートするクライアント認証方法のリストを含む JSON 配列。OpenID Connect Core
            1.0 [OpenID.Core] のセクション 9 で説明されているように、選択肢は
            client_secret_post、client_secret_basic、client_secret_jwt、private_key_jwt
            です。その他の認証方法は拡張機能で定義できます。省略した場合、デフォルトは client_secret_basic、つまり OAuth
            2.0 [RFC6749] のセクション 2.3.1 で指定されている HTTP Basic 認証方式です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法でトークンエンドポイントにおいてクライアントを認証するために使用される JWT [JWT]
            の署名について、トークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは
            RS256 をサポートすることが推奨されます。none は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: >-
            ユーザーインターフェースでサポートされる言語および文字体系。BCP47 [RFC5646] の言語タグ値からなる JSON
            配列で表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームを暗号化するためにUserInfoエンドポイントがサポートする、JWE [JWE]
            暗号化アルゴリズム（alg値）[JWA] のリストを含むJSON配列。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT]
            内のクレームを暗号化するためにUserInfoエンドポイントがサポートする、JWE暗号化アルゴリズム（enc値）[JWA]
            のリストを含むJSON配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーのUserInfoエンドポイントの任意のURL。属性マッピングを設定すると、Auth0はこのエンドポイントを呼び出し、アクセストークンを使用して追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするためにUserInfoエンドポイントがサポートする、JWS [JWS]
            署名アルゴリズム（alg値）[JWA] のリストを含むJSON配列。値noneを含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject2OptionsProtocolBindingEnum:
      description: アイデンティティプロバイダーに認証リクエストを送信するためのSAMLプロトコルバインディング方式。
      enum:
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject2OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、pictureなど）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新可能。'never_on_login': IdPから同期せず、ローカルで設定した値を保持。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject2OptionsSignatureAlgorithmEnum:
      description: >-
        接続の署名鍵を使用してSAML認証リクエストおよびログアウトリクエストに署名するアルゴリズム。一般的な値:
        'rsa-sha256'（SHA-256ダイジェストを使用するRSA署名）または'rsa-sha1'。デフォルトは'rsa-sha256'です。
      enum:
        - rsa-sha1
        - rsa-sha256
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject2OptionsSubject:
      additionalProperties: false
      description: アイデンティティプロバイダーの署名証明書から抽出された証明書サブジェクト識別名（DN）。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject2OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject3OptionsAssertionDecryptionSettings:
      additionalProperties: false
      description: SAMLアサーションの復号設定。
      properties:
        algorithm_exceptions:
          description: SAMLアサーションの復号で許可する安全でないアルゴリズムのリスト。
          items:
            maxLength: 100
            minLength: 1
            type: string
          type: array
        algorithm_profile:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum
      required:
        - algorithm_profile
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject3OptionsDigestAlgorithmEnum:
      description: SAMLリクエストおよびログアウトリクエストの署名時にダイジェスト値の計算に使用するアルゴリズム。デフォルトは 'sha256'。
      enum:
        - sha1
        - sha256
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject3OptionsIdpinitiated:
      additionalProperties: false
      description: >-
        IdP-Initiated SAML シングルサインオンの設定。有効にすると、ユーザーはまず Auth0 にアクセスしなくても、SAML
        アイデンティティプロバイダーから直接ログインを開始できます。IdP はポストバック URL（Assertion Consumer Service
        URL）に接続パラメータを含める必要があります。
      properties:
        client_authorizequery:
          description: デフォルトアプリケーションに送信されるクエリ文字列
          maxLength: 2048
          minLength: 1
          type: string
        client_id:
          description: IdP-initiated ログインリクエストに使用するクライアント ID。
          maxLength: 256
          minLength: 1
          type: string
        client_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionDeletedPreviousObject3OptionsIdpinitiatedClientProtocolEnum
        enabled:
          description: >-
            true の場合、この SAML 接続での IdP-initiated ログインを有効にします。ユーザーはまず Auth0
            にアクセスしなくても、アイデンティティプロバイダーから直接ログインできます。
          type: boolean
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject3OptionsProtocolBindingEnum:
      description: アイデンティティプロバイダーに認証リクエストを送信するための SAML プロトコルバインディング方式。
      enum:
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject3OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新可能。'never_on_login': IdP から同期せず、ローカルで設定した値を保持。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject3OptionsSignatureAlgorithmEnum:
      description: >-
        接続の署名鍵を使用して SAML認証リクエストおよびログアウトリクエストに署名するアルゴリズム。一般的な値:
        'rsa-sha256'（SHA-256 ダイジェストを使用する RSA 署名）または 'rsa-sha1'。デフォルトは
        'rsa-sha256'。
      enum:
        - rsa-sha1
        - rsa-sha256
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject3OptionsSubject:
      additionalProperties: false
      description: アイデンティティプロバイダーの署名証明書から抽出した証明書サブジェクトの識別名（DN）。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject3OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、またはプロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject4OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        から同期せず、ローカルで設定された値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject4OptionsShouldTrustEmailVerifiedConnectionEnum:
      description: Auth0 がユーザープロファイルの email_verified フィールドを設定する方法を選択します。
      enum:
        - never_set_emails_as_verified
        - always_set_emails_as_verified
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject4OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject5OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        から同期せず、ローカルで設定された値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject5OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject6OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンを Auth0 の Token Vault に保存するための設定。有効にすると、Auth0
        はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済み API
        呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンおよびアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject6OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login'：認証のたびに更新します（デフォルト）。'on_first_login'：初回ログイン時のみ属性を設定し、その後は個別に更新できます。'never_on_login'：IdP
        から同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject6OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject7OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンを Auth0 の Token Vault に保存するための設定。有効な場合、Auth0
        はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済み API
        呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject7OptionsIdentityApiEnum:
      description: >-
        認証に使用する Azure AD
        エンドポイントのバージョン。'microsoft-identity-platform-v2.0'（推奨、既定）は最新の OAuth 2.0
        機能をサポートします。'azure-active-directory-v1.0'
        はプロトコル上の制限があるレガシーエンドポイントです。選択内容によって利用可能な機能が変わります。
      enum:
        - microsoft-identity-platform-v2.0
        - azure-active-directory-v1.0
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject7OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を指定します。'on_each_login'：認証のたびに更新（既定）。'on_first_login'：初回ログイン時にのみ属性を設定し、以降は個別に更新可能。'never_on_login'：IdP
        から同期せず、ローカルで設定した値を保持。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject7OptionsShouldTrustEmailVerifiedConnectionEnum:
      description: Auth0 がユーザープロファイルの email_verified フィールドを設定する方法を選択します。
      enum:
        - never_set_emails_as_verified
        - always_set_emails_as_verified
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject7OptionsTenantDomain:
      anyOf:
        - description: ホスト名形式の Azure AD テナントドメイン（例：contoso.onmicrosoft.com）。
          format: hostname
          maxLength: 512
          minLength: 0
          type: string
        - description: UUID 形式の Azure AD テナント ID。
          format: uuid
          type: string
      description: >-
        Azure AD のテナントドメインまたはテナント ID（UUID）。'domain'
        フィールドから自動入力されます。ホスト名（例：'contoso.onmicrosoft.com'）または UUID のテナント ID
        を指定できます。
    EventStreamCloudEventConnectionDeletedPreviousObject7OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject7OptionsUseridAttributeEnum:
      description: >-
        一意のユーザー識別子として使用する Azure AD クレーム。'oid'（オブジェクト ID）はシングルテナント接続で推奨され、SCIM
        では必須です。'sub'（Subject）はマルチテナント/common エンドポイントで必須です。OpenID Connect
        プロトコルでのみ適用されます。
      enum:
        - oid
        - sub
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject7OptionsWaadProtocolEnum:
      description: >-
        Azure AD v1 エンドポイント用の認証プロトコル。'openid-connect'（既定、推奨）は最新の OAuth 2.0/OIDC
        を使用します。'ws-federation' は従来の統合向けのレガシー SAML ベースのプロトコルです。Azure AD v1 API
        でのみ使用できます。
      enum:
        - ws-federation
        - openid-connect
      type: string
    EventStreamCloudEventConnectionUpdatedObject0OptionsAttributeMap:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーからのクレームを Auth0 のユーザープロファイル属性にマッピングするための設定。どの IdP
        クレームをユーザーフィールドに設定するか、またそれらをどのように変換するかをカスタマイズできます。
      properties:
        attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0OptionsAttributeMapAttributes
        mapping_mode:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0OptionsAttributeMapMappingModeEnum
        userinfo_scope:
          description: IdP の UserInfo エンドポイントに送信するスコープ
          maxLength: 255
          minLength: 0
          type: string
      type: object
    EventStreamCloudEventConnectionUpdatedObject0OptionsConnectionSettings:
      additionalProperties: false
      description: >-
        OAuth 2.0 PKCE（Proof Key for Code Exchange）の設定。PKCE
        は認可コード傍受攻撃を防ぐことで、パブリッククライアントのセキュリティを強化します。'auto'（推奨）は、IdP
        がサポートする中で最も強力な方式を使用します。
      properties:
        pkce:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject0OptionsConnectionSettingsPkceEnum
      type: object
    EventStreamCloudEventConnectionUpdatedObject0OptionsDpopSigningAlgEnum:
      description: DPoP proof JWT の署名に使用するアルゴリズム。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - ES512
        - Ed25519
      type: string
    EventStreamCloudEventConnectionUpdatedObject0OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンを Auth0 の Token Vault に保存するための設定。有効にすると、Auth0
        はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済み API
        呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします。
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject0OptionsIdTokenSignedResponseAlgsItemEnum:
      description: ID トークンの検証に使用できるアルゴリズム。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionUpdatedObject0OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠した OpenID Connect プロバイダーのメタデータ
      properties:
        acr_values_supported:
          description: この OP がサポートする Authentication Context Class Reference の一覧
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされる、アイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントで OAuth 2.0 認可コードフローが開始されます。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenID Provider がサポートする Claim Type の一覧を含む JSON 配列。これらの Claim Type
            については、OpenID Connect Core 1.0 [OpenID.Core] のセクション 5.6
            で説明されています。省略した場合、実装でサポートされるのは通常のクレームのみです。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるクレーム値でサポートされる言語および文字体系を、BCP47 [RFC5646] 言語タグの値による JSON
            配列で表したもの。すべてのクレーム値ですべての言語および文字体系がサポートされるとは限りません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OP が claims パラメータの使用をサポートするかどうかを指定する Boolean 値。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        claims_supported:
          description: >-
            OpenID Provider が値を提供できる可能性があるクレームの Claim Name の一覧を含む JSON
            配列。プライバシー上の理由などにより、完全な一覧ではない場合があります。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636 で定義された、この OP がサポートする Proof Key for Code
            Exchange（PKCE）のコードチャレンジ方式（例：S256、plain）のリストを含む JSON 配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法でトークンエンドポイントにおいてクライアントを認証するために使用する JWT [JWT]
            の署名に対して、トークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）の一覧を含む JSON 配列。サーバーは
            RS256 をサポートする必要があります。値 none は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWT の署名でサポートされる JWS 署名アルゴリズム（alg 値）の一覧を含む JSON 配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーの logout/end session エンドポイントの URL。静的 URL
            として設定した場合、ユーザーは Auth0 からログアウトした後、この URL にリダイレクトされます。HTTPS
            スキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 グラントタイプ値の一覧。動的 OpenID Provider は
            authorization_code および implicit
            のグラントタイプ値をサポートする必要があり、その他のグラントタイプをサポートしてもかまいません。省略した場合、デフォルト値は
            ["authorization_code", "implicit"] です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードする ID トークンに使用するために、OP がサポートする JWE 暗号化アルゴリズム（alg
            値）の一覧を含む JSON 配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードする ID トークンに使用するために、OP がサポートする JWE
            暗号化アルゴリズム（enc 値）の一覧を含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードする ID トークンに使用するために、OP がサポートする JWS 署名アルゴリズム（alg
            値）の一覧。アルゴリズム RS256 を含める必要があります。値 none をサポートしてもかまいませんが、使用する Response
            Type で認可エンドポイントから ID
            トークンが返されない場合（認可コードフローを使用する場合など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: ID トークンの署名用に IdP がサポートする JWS 署名アルゴリズム（OIDC ディスカバリーメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーが発行する ID トークン内の 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開鍵を含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する URL。この URL では、Relying Party が OP
            から提供されたデータを使用する際の OP の要件を確認できます。URL が指定されている場合、登録プロセスではクライアントの登録者にこの
            URL を表示することが推奨されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する URL。この URL では、OpenID Provider
            の利用規約を確認できます。URL が指定されている場合、登録プロセスではクライアントの登録者にこの URL
            を表示することが推奨されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OP の Dynamic Client Registration エンドポイントの
            URL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            Request Object に対して OP がサポートする JWE 暗号化アルゴリズム（alg 値）の一覧を含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            Request Object に対して OP がサポートする JWE 暗号化アルゴリズム（enc 値）の一覧を含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            OpenID Connect Core 1.0 [OpenID.Core] のセクション 6.1 で説明されている、Request
            Object に対して OP がサポートする JWS 署名アルゴリズム（alg 値）の一覧を含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合（request
            パラメータを使用）と参照として渡す場合（request_uri パラメータを使用）の両方で使用されます。サーバーは none と
            RS256 をサポートすることが推奨されます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OP が request パラメータの使用をサポートするかどうかを指定する Boolean 値。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OP が request_uri パラメータの使用をサポートするかどうかを指定する Boolean 値。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        require_request_uri_registration:
          description: >-
            OP が request_uri パラメータの使用を必須とするかどうかを指定するブール値です。省略した場合、デフォルト値は false
            です。
          type: boolean
        response_modes_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_mode 値のリストです。省略した場合、Dynamic OpenID
            Providers のデフォルト値は ["query", "fragment"] です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_type 値のリストです。Dynamic OpenID
            Providers は、code、id_token、token id_token の Response Type
            値をサポートする必要があります。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートする OAuth 2.0 [RFC6749] のスコープ値のリストです。サーバーは openid
            スコープ値をサポートする必要があります。このパラメータを使用する場合でも、サーバーはサポートしている一部のスコープ値を通知しないことを選択できますが、[OpenID.Core]
            で定義されている値は、サポートしている場合はリストに含めるべきです。推奨されますが、必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者が OpenID Provider を使用する際に知りたい、または知る必要がある、人間が読める形式の情報を含むページの URL
            です。特に、OpenID Provider が Dynamic Client Registration
            をサポートしていない場合は、クライアントの登録方法に関する情報をこのドキュメントで提供する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: >-
            この OP がサポートする Subject Identifier のタイプのリストです。有効なタイプには pairwise と
            public があります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセス トークンに交換するための、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL
            です。有効な HTTPS URL である必要があります。認可コードフローでは必須ですが、インプリシットフローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            このトークンエンドポイントでサポートされるクライアント認証方法のリストを含む JSON 配列です。選択肢は、OpenID Connect
            Core 1.0 [OpenID.Core] のセクション 9 で説明されている
            client_secret_post、client_secret_basic、client_secret_jwt、private_key_jwt
            です。拡張機能によって、他の認証方法が定義される場合があります。省略した場合、デフォルトは
            client_secret_basic、つまり OAuth 2.0 [RFC6749] のセクション 2.3.1 で指定されている
            HTTP Basic Authentication Scheme です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法で、トークンエンドポイントにおいてクライアントを認証するために使用する JWT [JWT]
            の署名について、このトークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列です。サーバーは RS256 をサポートすべきです。none 値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: >-
            ユーザーインターフェースでサポートされる言語および文字体系です。BCP47 [RFC5646] 言語タグ値の JSON
            配列で表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT] でクレームを暗号化するために UserInfo エンドポイントがサポートする JWE [JWE]
            暗号化アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列です。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT] でクレームを暗号化するために UserInfo エンドポイントがサポートする JWE 暗号化アルゴリズム（enc
            値）[JWA] のリストを含む JSON 配列です。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの任意の URL です。属性マッピングを設定すると、Auth0
            はアクセス トークンを使用して追加のユーザープロファイルクレームを取得するため、このエンドポイントを呼び出します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            JWT [JWT] でクレームを暗号化するために UserInfo エンドポイントがサポートする JWS [JWS]
            署名アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列です。none 値を含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionUpdatedObject0OptionsSchemaVersionEnum:
      description: 接続オプションの内部スキーマバージョンです。
      enum:
        - openid-1.0.0
        - oidc-v4
      type: string
    EventStreamCloudEventConnectionUpdatedObject0OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        からは同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionUpdatedObject0OptionsTokenEndpointAuthMethodEnum:
      description: >-
        アイデンティティプロバイダーのトークンエンドポイントで使用する認証方法です。'client_secret_post'
        はリクエスト本文で認証情報を送信し、'private_key_jwt' はセキュリティを強化するために署名付き JWT
        アサーションを使用します。strategy=oidc または okta の場合に適用されます。
      enum:
        - client_secret_post
        - private_key_jwt
      type: string
    EventStreamCloudEventConnectionUpdatedObject0OptionsTokenEndpointAuthSigningAlgEnum:
      description: client_assertions の署名に使用するアルゴリズムです。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionUpdatedObject0OptionsTokenEndpointJwtcaAudFormatEnum:
      description: >-
        トークンエンドポイントでのクライアント認証に使用される JWT に含まれる
        aud（オーディエンス）クレームの形式を指定します。指定可能な値は、'issuer'（aud クレームを OIDC 発行者 URL
        に設定）または 'token_endpoint'（aud クレームをトークンエンドポイント URL に設定）です。
      enum:
        - issuer
        - token_endpoint
      type: string
    EventStreamCloudEventConnectionUpdatedObject0OptionsTypeEnum:
      description: >-
        OIDC
        通信チャネルの種類です。'back_channel'（コンフィデンシャルクライアント）は、より強力なセキュリティのためにサーバー側でトークンを交換します。'front_channel'
        はブラウザーで応答を処理します。
      enum:
        - back_channel
        - front_channel
      type: string
    EventStreamCloudEventConnectionUpdatedObject0OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータです。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject1OptionsAttributeMap:
      additionalProperties: false
      description: アイデンティティプロバイダー（IdP）から受信したクレームのマッピング
      properties:
        attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1OptionsAttributeMapAttributes
        mapping_mode:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1OptionsAttributeMapMappingModeEnum
        userinfo_scope:
          description: IdP の UserInfo エンドポイントに送信するスコープ
          maxLength: 255
          minLength: 0
          type: string
      type: object
    EventStreamCloudEventConnectionUpdatedObject1OptionsConnectionSettings:
      additionalProperties: false
      description: >-
        OAuth 2.0 PKCE（Proof Key for Code Exchange）の設定。PKCE
        は認可コード傍受攻撃を防ぐことで、パブリッククライアントのセキュリティを強化します。「auto」（推奨）は、IdP
        がサポートする最も強力なメソッドを使用します。
      properties:
        pkce:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject1OptionsConnectionSettingsPkceEnum
      type: object
    EventStreamCloudEventConnectionUpdatedObject1OptionsDpopSigningAlgEnum:
      description: DPoP Proof JWT の署名に使用するアルゴリズム。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - ES512
        - Ed25519
      type: string
    EventStreamCloudEventConnectionUpdatedObject1OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンを Auth0 の Token Vault に保存するための設定。有効にすると、Auth0
        はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済みの API
        呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject1OptionsIdTokenSignedResponseAlgsItemEnum:
      description: ID トークンの検証に使用できるアルゴリズム。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionUpdatedObject1OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠した OpenID Connect Provider のメタデータ
      properties:
        acr_values_supported:
          description: この OP がサポートする認証コンテキストクラス参照のリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされるアイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントで OAuth 2.0 認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenID Provider がサポートするクレームタイプのリストを含む JSON 配列。これらのクレームタイプは、OpenID
            Connect Core 1.0 [OpenID.Core] のセクション 5.6
            で説明されています。省略した場合、実装でサポートされるのは通常のクレームのみです。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるクレームの値でサポートされる言語およびスクリプトを、BCP47 [RFC5646] の言語タグ値からなる JSON
            配列で表します。すべてのクレーム値ですべての言語およびスクリプトがサポートされるとは限りません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OP が claims パラメータの使用をサポートするかどうかを指定するブール値です。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        claims_supported:
          description: >-
            OpenID Provider が値を提供できる可能性のあるクレームのクレーム名のリストを含む JSON
            配列。プライバシーなどの理由により、網羅的なリストではない場合があります。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636 で定義された、この OP がサポートする Proof Key for Code
            Exchange（PKCE）のコードチャレンジ方式（例：S256、plain）のリストを含む JSON 配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法でトークンエンドポイントにおいてクライアントを認証する際に使用する JWT [JWT]
            の署名用として、トークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは
            RS256 をサポートする必要があります。none は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWT の署名でサポートされる JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーのログアウト／セッション終了エンドポイントの URL。静的 URL として設定した場合、ユーザーは
            Auth0 からログアウト後にこの URL へリダイレクトされます。HTTPS スキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 グラントタイプ値のリスト。動的 OpenID Provider は
            authorization_code および implicit
            のグラントタイプ値をサポートする必要があり、他のグラントタイプをサポートしてもかまいません。省略した場合、デフォルト値は
            ["authorization_code", "implicit"] です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードするために ID トークン用として OP がサポートする JWE 暗号化アルゴリズム（alg
            値）のリストを含む JSON 配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために ID トークン用として OP がサポートする JWE 暗号化アルゴリズム（enc
            値）のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードするために ID トークン用として OP がサポートする JWS 署名アルゴリズム（alg
            値）のリスト。RS256 アルゴリズムを含める必要があります。none
            をサポートしてもかまいませんが、使用するレスポンスタイプが認可エンドポイントから ID
            トークンを返さない場合（認可コードフローを使用する場合など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: ID トークンの署名用として IdP がサポートする JWS 署名アルゴリズム（OIDC ディスカバリーメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーが発行する ID トークンの 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開鍵を含むアイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの URL。Auth0
            はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する URL。この URL では、Relying Party が OP
            から提供されたデータを使用する際の OP の要件を確認できます。URL が指定されている場合、登録プロセスではクライアントの登録者にこの
            URL を表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する URL。この URL では、OpenID Provider
            の利用規約を確認できます。URL が指定されている場合、登録プロセスではクライアントの登録者にこの URL を表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OP の Dynamic Client Registration エンドポイントの
            URL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            リクエストオブジェクト用として OP がサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            リクエストオブジェクト用として OP がサポートする JWE 暗号化アルゴリズム（enc 値）のリストを含む JSON
            配列。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            OpenID Connect Core 1.0 [OpenID.Core] のセクション 6.1
            で説明されている、リクエストオブジェクト用として OP がサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合（request
            パラメータを使用）と参照として渡す場合（request_uri パラメータを使用）の両方で使用されます。サーバーは none および
            RS256 をサポートする必要があります。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OP が request パラメータの使用をサポートするかどうかを指定するブール値です。true
            はサポートされていることを示します。省略した場合、デフォルト値は false です。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OP が request_uri パラメータの使用をサポートするかどうかを指定するブール値です。true
            はサポートされていることを示します。省略した場合、既定値は false です。
          type: boolean
        require_request_uri_registration:
          description: OP が request_uri パラメータの使用を必須とするかどうかを指定するブール値です。省略した場合、既定値は false です。
          type: boolean
        response_modes_supported:
          description: >-
            この OP がサポートする OAuth 2.0 の response_mode 値のリストです。省略した場合、Dynamic
            OpenID Providers の既定値は ["query", "fragment"] です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 の response_type 値のリストです。Dynamic OpenID
            Providers は、code、id_token、token id_token の Response Type
            値をサポートする必要があります。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートする OAuth 2.0 [RFC6749] の scope 値のリストです。サーバーは openid scope
            値をサポートする必要があります。このパラメータを使用する場合でも、サーバーはサポートしている一部の scope
            値を通知しないことを選択できますが、[OpenID.Core]
            で定義されているものは、サポートされている場合はリストに含めるべきです。推奨されますが、必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者が OpenID Provider
            を使用する際に知っておく必要がある、または知りたい可能性のある、人間が読み取れる情報を掲載したページの URL です。特に、OpenID
            Provider が Dynamic Client Registration
            をサポートしていない場合、このドキュメントにはクライアントの登録方法に関する情報を記載する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: >-
            この OP がサポートする Subject Identifier タイプのリストです。有効なタイプには pairwise と
            public があります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換するための、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL
            です。有効な HTTPS URL である必要があります。認可コードフローでは必須ですが、暗黙的フローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            この Token Endpoint でサポートされるクライアント認証方法のリストを含む JSON 配列です。選択肢は、OpenID
            Connect Core 1.0 [OpenID.Core] のセクション 9 で説明されている
            client_secret_post、client_secret_basic、client_secret_jwt、private_key_jwt
            です。拡張機能により、他の認証方法が定義される場合があります。省略した場合、既定値は client_secret_basic、つまり
            OAuth 2.0 [RFC6749] のセクション 2.3.1 で規定されている HTTP Basic Authentication
            Scheme です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt 認証方法で Token Endpoint
            においてクライアントを認証する際に使用する JWT [JWT] の署名に対して、Token Endpoint がサポートする JWS
            署名アルゴリズム（alg 値）のリストを含む JSON 配列です。サーバーは RS256 をサポートすべきです。none
            値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: >-
            ユーザーインターフェースでサポートされる言語およびスクリプトです。BCP47 [RFC5646] の言語タグ値の JSON
            配列で表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWE [JWE]
            暗号化アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列です。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWE
            暗号化アルゴリズム（enc 値）[JWA] のリストを含む JSON 配列です。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの任意の URL です。属性マッピングを設定すると、Auth0
            はアクセストークンを使用して追加のユーザープロファイルクレームを取得するためにこのエンドポイントを呼び出します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWS [JWS]
            署名アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列です。none 値を含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionUpdatedObject1OptionsSchemaVersionEnum:
      description: 接続オプションの内部スキーマバージョンです。
      enum:
        - openid-1.0.0
        - oidc-v4
      type: string
    EventStreamCloudEventConnectionUpdatedObject1OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（既定）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        から同期せず、ローカルで設定された値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionUpdatedObject1OptionsTokenEndpointAuthMethodEnum:
      description: >-
        アイデンティティプロバイダーのトークンエンドポイントで使用する認証方法です。'client_secret_post'
        はリクエスト本文で認証情報を送信します。'private_key_jwt' はセキュリティを強化するために署名付き JWT assertion
        を使用します。strategy=oidc または okta の場合に適用されます。
      enum:
        - client_secret_post
        - private_key_jwt
      type: string
    EventStreamCloudEventConnectionUpdatedObject1OptionsTokenEndpointAuthSigningAlgEnum:
      description: client_assertions の署名に使用するアルゴリズムです。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionUpdatedObject1OptionsTokenEndpointJwtcaAudFormatEnum:
      description: >-
        トークンエンドポイントでのクライアント認証に使用される JWT に含まれる
        aud（audience）クレームの形式を指定します。指定できる値は、'issuer'（aud クレームを OIDC 発行者 URL
        に設定）または 'token_endpoint'（aud クレームをトークンエンドポイント URL に設定）です。
      enum:
        - issuer
        - token_endpoint
      type: string
    EventStreamCloudEventConnectionUpdatedObject1OptionsTypeEnum:
      description: 接続タイプ
      enum:
        - back_channel
      type: string
    EventStreamCloudEventConnectionUpdatedObject1OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータです。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject2OptionsAssertionDecryptionSettings:
      additionalProperties: false
      description: SAMLアサーション復号の設定。
      properties:
        algorithm_exceptions:
          description: SAMLアサーションの復号で使用を許可する安全でないアルゴリズムのリスト。
          items:
            maxLength: 100
            minLength: 1
            type: string
          type: array
        algorithm_profile:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum
      required:
        - algorithm_profile
      type: object
    EventStreamCloudEventConnectionUpdatedObject2OptionsDigestAlgorithmEnum:
      description: SAMLリクエストおよびログアウトリクエストへの署名時にダイジェスト値の計算に使用するアルゴリズム。デフォルトは'sha256'です。
      enum:
        - sha1
        - sha256
      type: string
    EventStreamCloudEventConnectionUpdatedObject2OptionsFieldsMap:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーのSAMLアサーション属性をAuth0ユーザープロファイルの属性にマッピングします。形式: {
        'auth0_field': 'saml_attribute' }。フォールバックオプションには、{ 'auth0_field':
        ['saml_attr1', 'saml_attr2'] }
        を使用します。email、name、given_name、family_name、groupsのデフォルトマッピングと統合されます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject2OptionsIdpinitiated:
      additionalProperties: false
      description: >-
        IdP起点のSAMLシングルサインオンの設定。有効にすると、ユーザーは最初にAuth0にアクセスしなくても、SAMLアイデンティティプロバイダーから直接ログインを開始できます。IdPは、ポストバックURL（Assertion
        Consumer Service URL）に接続パラメータを含める必要があります。
      properties:
        client_authorizequery:
          description: デフォルトのアプリケーションに送信するクエリ文字列
          maxLength: 2048
          minLength: 1
          type: string
        client_id:
          description: IdP起点ログインリクエストに使用するクライアントID。
          maxLength: 256
          minLength: 1
          type: string
        client_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject2OptionsIdpinitiatedClientProtocolEnum
        enabled:
          description: >-
            trueの場合、このSAML接続でIdP起点ログインのサポートを有効にします。ユーザーは最初にAuth0にアクセスしなくても、アイデンティティプロバイダーから直接ログインできます。
          type: boolean
      type: object
    EventStreamCloudEventConnectionUpdatedObject2OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠した OpenID Connect Provider Metadata。Cross App Access で使用します。
      properties:
        acr_values_supported:
          description: この OP がサポートする認証コンテキストクラス参照のリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされるアイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントで OAuth 2.0 認可コードフローが開始されます。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenID Provider がサポートするクレームタイプのリストを含む JSON 配列。これらのクレームタイプは OpenID
            Connect Core 1.0 [OpenID.Core] のセクション 5.6
            で説明されています。省略した場合、実装でサポートされるのは通常のクレームのみです。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるクレーム値でサポートされる言語および文字体系。BCP47 [RFC5646] の言語タグ値の JSON
            配列として表されます。すべてのクレーム値ですべての言語および文字体系が必ずしもサポートされるわけではありません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OP が claims パラメータの使用をサポートするかどうかを指定するブール値です。true
            はサポートされていることを示します。省略した場合、既定値は false です。
          type: boolean
        claims_supported:
          description: >-
            OpenID Provider が値を提供できる可能性のあるクレームのクレーム名のリストを含む JSON
            配列。プライバシーその他の理由により、網羅的なリストではない場合があります。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636 で定義された、この OP がサポートする Proof Key for Code
            Exchange（PKCE）のコードチャレンジ方式（例：S256、plain）のリストを含む JSON 配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法で、トークンエンドポイントにおいてクライアントを認証する際に JWT [JWT]
            の署名に使用できる、トークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列。サーバーは RS256 をサポートする必要があります。none は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWT の署名でサポートされる JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーの logout/end session エンドポイントの URL。静的 URL
            として設定されている場合、ユーザーは Auth0 からログアウトした後、この URL にリダイレクトされます。HTTPS
            スキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 グラントタイプ値のリスト。Dynamic OpenID Providers は
            authorization_code および implicit
            のグラントタイプ値をサポートする必要があり、他のグラントタイプもサポートできます。省略した場合、デフォルト値は
            ["authorization_code", "implicit"] です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードするために、OP が ID トークンでサポートする JWE 暗号化アルゴリズム（alg
            値）のリストを含む JSON 配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために、OP が ID トークンでサポートする JWE 暗号化アルゴリズム（enc
            値）のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードするために、OP が ID トークンでサポートする JWS 署名アルゴリズム（alg
            値）のリスト。RS256 アルゴリズムを含める必要があります。none
            をサポートしてもかまいませんが、使用するレスポンスタイプで認可エンドポイントから ID
            トークンが返されない場合（認可コードフローを使用する場合など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: ID トークンの署名に IdP がサポートする JWS 署名アルゴリズム（OIDC ディスカバリーのメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーが発行する ID トークンの 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開鍵を含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する、Relying Party が OP
            から提供されたデータを使用する際の要件を確認するための URL。指定されている場合、登録プロセスではこの URL
            をクライアントの登録者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する、OpenID Provider の利用規約を確認するための
            URL。指定されている場合、登録プロセスではこの URL をクライアントの登録者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OP の Dynamic Client Registration エンドポイントの
            URL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            リクエストオブジェクト用に OP がサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            リクエストオブジェクト用に OP がサポートする JWE 暗号化アルゴリズム（enc 値）のリストを含む JSON
            配列。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            OpenID Connect Core 1.0 [OpenID.Core] のセクション 6.1
            で説明されている、リクエストオブジェクト用に OP がサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、リクエストオブジェクトを値として渡す場合（request
            パラメータを使用）と、参照として渡す場合（request_uri パラメータを使用）の両方で使用されます。サーバーは none および
            RS256 をサポートする必要があります。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OP が request パラメータの使用をサポートするかどうかを指定する真偽値。true
            はサポートを示します。省略した場合、デフォルト値は false です。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OP が request_uri パラメータの使用をサポートするかどうかを指定する真偽値。true
            はサポートを示します。省略した場合、デフォルト値は false です。
          type: boolean
        require_request_uri_registration:
          description: OP が request_uri パラメータの使用を必須とするかどうかを指定する真偽値。省略した場合、デフォルト値は false です。
          type: boolean
        response_modes_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_mode 値のリスト。省略した場合、Dynamic OpenID
            Providers のデフォルト値は ["query", "fragment"] です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_type 値のリスト。Dynamic OpenID Providers
            は code、id_token、および token id_token のレスポンスタイプ値をサポートする必要があります。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートする OAuth 2.0 [RFC6749] scope 値のリスト。サーバーは openid scope
            値をサポートする必要があります。このパラメータを使用する場合でも、サーバーはサポートしている一部の scope
            値を告知しないことを選択できますが、[OpenID.Core]
            で定義されている値は、サポートしている場合はリストに含める必要があります。推奨されますが、必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者が OpenID Provider を使用する際に知っておくとよい、または知る必要がある人間が読める情報を含むページの
            URL。特に、OpenID Provider が Dynamic Client Registration
            をサポートしていない場合は、このドキュメントでクライアントの登録方法に関する情報を提供する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: この OP がサポートするサブジェクト識別子タイプのリスト。有効なタイプには pairwise および public があります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換するための、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの
            URL。有効な HTTPS URL である必要があります。認可コードフローでは必須ですが、インプリシットフローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            このトークンエンドポイントでサポートされるクライアント認証方法のリストを含む JSON 配列。オプションは、OpenID Connect
            Core 1.0 [OpenID.Core] のセクション 9 で説明されている
            client_secret_post、client_secret_basic、client_secret_jwt、private_key_jwt
            です。拡張機能によって、他の認証方法が定義される場合があります。省略した場合、デフォルトは client_secret_basic
            です。これは OAuth 2.0 [RFC6749] のセクション 2.3.1 で規定されている HTTP Basic
            Authentication Scheme です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法で、トークンエンドポイントにおいてクライアントを認証するために使用される JWT [JWT]
            の署名に対応する、このトークンエンドポイントでサポートされる JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列。サーバーは RS256 をサポートする必要があります。値 none は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: >-
            ユーザーインターフェースでサポートされる言語およびスクリプト。BCP47 [RFC5646] の言語タグ値の JSON
            配列として表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo エンドポイントでサポートされる JWE [JWE]
            暗号化アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo エンドポイントでサポートされる JWE
            暗号化アルゴリズム（enc 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの任意の URL。属性マッピングを設定すると、Auth0
            はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo エンドポイントでサポートされる JWS [JWS]
            署名アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。値 none を含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionUpdatedObject2OptionsProtocolBindingEnum:
      description: アイデンティティプロバイダーに認証リクエストを送信するためのSAMLプロトコルバインディング方式。
      enum:
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect
      type: string
    EventStreamCloudEventConnectionUpdatedObject2OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、pictureなど）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新可能。'never_on_login': IdPからは同期せず、ローカルで設定した値を保持。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionUpdatedObject2OptionsSignatureAlgorithmEnum:
      description: >-
        接続の署名鍵を使用してSAML認証リクエストおよびログアウトリクエストに署名するアルゴリズム。一般的な値:
        'rsa-sha256'（SHA-256ダイジェストを使用したRSA署名）または'rsa-sha1'。デフォルトは'rsa-sha256'です。
      enum:
        - rsa-sha1
        - rsa-sha256
      type: string
    EventStreamCloudEventConnectionUpdatedObject2OptionsSubject:
      additionalProperties: false
      description: アイデンティティプロバイダーの署名証明書から抽出された証明書サブジェクトの識別名（DN）。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject2OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、またはプロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject3OptionsAssertionDecryptionSettings:
      additionalProperties: false
      description: SAMLアサーションの復号に関する設定。
      properties:
        algorithm_exceptions:
          description: SAMLアサーションの復号で許可する安全でないアルゴリズムのリスト。
          items:
            maxLength: 100
            minLength: 1
            type: string
          type: array
        algorithm_profile:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum
      required:
        - algorithm_profile
      type: object
    EventStreamCloudEventConnectionUpdatedObject3OptionsDigestAlgorithmEnum:
      description: SAMLリクエストおよびログアウトリクエストの署名時にダイジェスト値の計算に使用するアルゴリズム。デフォルトは 'sha256' です。
      enum:
        - sha1
        - sha256
      type: string
    EventStreamCloudEventConnectionUpdatedObject3OptionsIdpinitiated:
      additionalProperties: false
      description: >-
        IdP開始型SAMLシングルサインオンの設定。有効にすると、ユーザーは最初にAuth0にアクセスしなくても、SAMLアイデンティティプロバイダーから直接ログインを開始できます。IdPは、ポストバックURL（Assertion
        Consumer Service URL）に接続パラメータを含める必要があります。
      properties:
        client_authorizequery:
          description: デフォルトアプリケーションに送信するクエリ文字列
          maxLength: 2048
          minLength: 1
          type: string
        client_id:
          description: IdP開始型ログインリクエストに使用するクライアントID。
          maxLength: 256
          minLength: 1
          type: string
        client_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedObject3OptionsIdpinitiatedClientProtocolEnum
        enabled:
          description: >-
            trueの場合、このSAML接続でIdP開始型ログインが有効になります。ユーザーは最初にAuth0にアクセスしなくても、アイデンティティプロバイダーから直接ログインできます。
          type: boolean
      type: object
    EventStreamCloudEventConnectionUpdatedObject3OptionsProtocolBindingEnum:
      description: アイデンティティプロバイダーに認証リクエストを送信するためのSAMLプロトコルバインディング方式。
      enum:
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect
      type: string
    EventStreamCloudEventConnectionUpdatedObject3OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、pictureなど）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新可能。'never_on_login': IdPから同期せず、ローカルで設定した値を保持。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionUpdatedObject3OptionsSignatureAlgorithmEnum:
      description: >-
        接続の署名鍵を使用してSAML認証リクエストおよびログアウトリクエストに署名するアルゴリズム。一般的な値:
        'rsa-sha256'（SHA-256ダイジェストを使用したRSA署名）または 'rsa-sha1'。デフォルトは 'rsa-sha256'
        です。
      enum:
        - rsa-sha1
        - rsa-sha256
      type: string
    EventStreamCloudEventConnectionUpdatedObject3OptionsSubject:
      additionalProperties: false
      description: アイデンティティプロバイダーの署名証明書から抽出された証明書サブジェクト識別名（DN）。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject3OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject4OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        から同期せず、ローカルで設定された値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionUpdatedObject4OptionsShouldTrustEmailVerifiedConnectionEnum:
      description: Auth0 がユーザープロファイルの email_verified フィールドを設定する方法を選択します。
      enum:
        - never_set_emails_as_verified
        - always_set_emails_as_verified
      type: string
    EventStreamCloudEventConnectionUpdatedObject4OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject5OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、pictureなど）をIDプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login':
        IdPからは同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionUpdatedObject5OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        IDプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject6OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンを Auth0 の Token Vault に保存するための設定。有効にすると、Auth0
        はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済みの API
        呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject6OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        からは同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionUpdatedObject6OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、またはプロバイダー固有の動作の構成に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject7OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンを Auth0 の Token Vault に保存するための設定。有効にすると、Auth0
        はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済み API
        呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続におけるリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedObject7OptionsIdentityApiEnum:
      description: >-
        認証に使用する Azure AD
        エンドポイントのバージョンです。'microsoft-identity-platform-v2.0'（推奨、デフォルト）は最新の OAuth
        2.0 機能をサポートします。'azure-active-directory-v1.0'
        は、プロトコル上の制限があるレガシーエンドポイントです。選択内容は利用可能な機能に影響します。
      enum:
        - microsoft-identity-platform-v2.0
        - azure-active-directory-v1.0
      type: string
    EventStreamCloudEventConnectionUpdatedObject7OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login'：認証のたびに更新します（デフォルト）。'on_first_login'：初回ログイン時にのみ属性を設定するため、その後は個別に更新できます。'never_on_login'：IdP
        から同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionUpdatedObject7OptionsShouldTrustEmailVerifiedConnectionEnum:
      description: Auth0 がユーザープロファイルの email_verified フィールドを設定する方法を選択します。
      enum:
        - never_set_emails_as_verified
        - always_set_emails_as_verified
      type: string
    EventStreamCloudEventConnectionUpdatedObject7OptionsTenantDomain:
      anyOf:
        - description: ホスト名として指定する Azure AD テナントドメイン（例：contoso.onmicrosoft.com）。
          format: hostname
          maxLength: 512
          minLength: 0
          type: string
        - description: UUID 形式のテナント ID として指定する Azure AD テナントドメイン。
          format: uuid
          type: string
      description: >-
        Azure AD のテナントドメインまたはテナント ID（UUID）です。'domain'
        フィールドから自動入力されます。ホスト名（例：'contoso.onmicrosoft.com'）または UUID 形式のテナント ID
        を指定できます。
    EventStreamCloudEventConnectionUpdatedObject7OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータです。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject7OptionsUseridAttributeEnum:
      description: >-
        一意のユーザー識別子として使用する Azure AD クレームです。'oid'（オブジェクト ID）はシングルテナント接続に推奨され、SCIM
        では必須です。'sub'（サブジェクト）はマルチテナント/common エンドポイントでは必須です。OpenID Connect
        プロトコルでのみ適用されます。
      enum:
        - oid
        - sub
      type: string
    EventStreamCloudEventConnectionUpdatedObject7OptionsWaadProtocolEnum:
      description: >-
        Azure AD v1 エンドポイント用の認証プロトコルです。'openid-connect'（デフォルト、推奨）は最新の OAuth
        2.0/OIDC を使用します。'ws-federation' は、古い連携向けのレガシー SAML ベースのプロトコルです。Azure AD
        v1 API でのみ利用できます。
      enum:
        - ws-federation
        - openid-connect
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsAttributeMap:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーからのクレームを Auth0 のユーザープロファイル属性にマッピングするための設定。どの IdP
        クレームをユーザーフィールドに設定するか、またどのように変換するかをカスタマイズできます。
      properties:
        attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsAttributeMapAttributes
        mapping_mode:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsAttributeMapMappingModeEnum
        userinfo_scope:
          description: IdP の UserInfo エンドポイントに送信するスコープ
          maxLength: 255
          minLength: 0
          type: string
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsConnectionSettings:
      additionalProperties: false
      description: >-
        OAuth 2.0 PKCE（Proof Key for Code Exchange）の設定。PKCE
        は認可コード傍受攻撃を防ぐことで、パブリッククライアントのセキュリティを強化します。'auto'（推奨）は、IdP
        がサポートする最も強力な方式を使用します。
      properties:
        pkce:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsConnectionSettingsPkceEnum
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsDpopSigningAlgEnum:
      description: DPoP proof JWT の署名に使用するアルゴリズム。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - ES512
        - Ed25519
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンを Auth0 の Token Vault に保存するための設定。有効にすると、Auth0
        はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済み API
        呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsIdTokenSignedResponseAlgsItemEnum:
      description: ID トークンの検証に使用できるアルゴリズム。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠した OpenID Connect プロバイダーのメタデータ
      properties:
        acr_values_supported:
          description: この OP がサポートする認証コンテキストクラス参照のリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            ユーザーが認証のためにリダイレクトされるアイデンティティプロバイダーの OAuth 2.0 認可エンドポイントの URL。有効な
            HTTPS URL である必要があります。このエンドポイントで OAuth 2.0 認可コードフローが開始されます。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenID プロバイダーがサポートする Claim Type のリストを含む JSON 配列。これらの Claim Type は
            OpenID Connect Core 1.0 [OpenID.Core] のセクション 5.6
            で説明されています。省略した場合、実装では通常のクレームのみがサポートされます。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるクレームの値でサポートされる言語と文字体系を、BCP47 [RFC5646] 言語タグ値の JSON
            配列で表します。すべてのクレーム値ですべての言語と文字体系がサポートされるとは限りません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OP が claims パラメータの使用をサポートするかどうかを指定するブール値です。true
            はサポートを示します。省略した場合、デフォルト値は false です。
          type: boolean
        claims_supported:
          description: >-
            OpenID プロバイダーが値を提供できる可能性があるクレームの Claim Name のリストを含む JSON
            配列。プライバシーなどの理由により、網羅的なリストではない場合があります。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636 で定義されている、この OP がサポートする Proof Key for Code
            Exchange（PKCE）のコードチャレンジ方式（例: S256、plain）のリストを含む JSON 配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法でトークンエンドポイントにおいてクライアントを認証するために使用する JWT [JWT]
            の署名について、トークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは
            RS256 をサポートする必要があります。none 値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWT の署名でサポートされる JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーのログアウト／セッション終了エンドポイントの URL。静的 URL として設定すると、ユーザーは Auth0
            からログアウト後にここへリダイレクトされます。HTTPS スキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 グラントタイプ値のリスト。動的 OpenID プロバイダーは
            authorization_code および implicit
            のグラントタイプ値をサポートする必要があり、他のグラントタイプもサポートできます。省略した場合、デフォルト値は
            ["authorization_code", "implicit"] です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードするために OP が ID トークンでサポートする JWE 暗号化アルゴリズム（alg
            値）のリストを含む JSON 配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために OP が ID トークンでサポートする JWE 暗号化アルゴリズム（enc
            値）のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードするために OP が ID トークンでサポートする JWS 署名アルゴリズム（alg
            値）のリスト。RS256 アルゴリズムを含める必要があります。none 値はサポートできますが、認可エンドポイントから ID
            トークンを返さないレスポンスタイプを使用する場合（認可コードフローを使用する場合など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: IdP が ID トークンの署名に対応する JWS 署名アルゴリズム（OIDC ディスカバリーのメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーが発行する ID トークンの 'iss'
            クレームと一致している必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開鍵を含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する、Relying Party が OP
            から提供されたデータを利用する際の要件を確認するための URL。指定されている場合、登録プロセスではこの URL
            をクライアントの登録者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenID Provider がクライアントの登録者に提供する、OpenID Provider の利用規約を確認するための
            URL。指定されている場合、登録プロセスではこの URL をクライアントの登録者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OP の Dynamic Client Registration エンドポイントの
            URL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            OP が Request Object 向けにサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            OP が Request Object 向けにサポートする JWE 暗号化アルゴリズム（enc 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合と参照として渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            OpenID Connect Core 1.0 [OpenID.Core] のセクション 6.1 で説明されている、OP が
            Request Object 向けにサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、Request Object を値として渡す場合（request
            パラメータを使用）と参照として渡す場合（request_uri パラメータを使用）の両方で使用されます。サーバーは none および
            RS256 をサポートする必要があります。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OP が request パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートを示します。省略した場合のデフォルト値は false です。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OP が request_uri パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートを示します。省略した場合のデフォルト値は false です。
          type: boolean
        require_request_uri_registration:
          description: >-
            OP が request_uri パラメータの使用を必須とするかどうかを指定するブール値。省略した場合のデフォルト値は false
            です。
          type: boolean
        response_modes_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_mode 値のリスト。省略した場合、Dynamic OpenID
            Providers のデフォルトは ["query", "fragment"] です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 response_type 値のリスト。Dynamic OpenID Providers
            は、code、id_token、および token id_token の Response Type 値をサポートする必要があります。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートする OAuth 2.0 [RFC6749] スコープ値のリスト。サーバーは openid
            スコープ値をサポートする必要があります。このパラメータを使用しても、サーバーはサポートする一部のスコープ値を通知しない場合があります。ただし、[OpenID.Core]
            で定義されているものは、サポートされている場合はリストに含める必要があります。推奨されますが、必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者が OpenID Provider の使用時に知っておくべき、人間が読み取れる情報を含むページの URL。特に、OpenID
            Provider が Dynamic Client Registration
            をサポートしていない場合は、クライアントの登録方法に関する情報をこのドキュメントで提供する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: >-
            この OP がサポートする Subject Identifier タイプのリスト。有効なタイプには pairwise および
            public があります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換する、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL。有効な
            HTTPS URL である必要があります。認可コードフローでは必須ですが、Implicit Flow では任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            この Token Endpoint がサポートするクライアント認証方法のリストを含む JSON 配列。OpenID Connect
            Core 1.0 [OpenID.Core] のセクション 9 で説明されているとおり、選択肢は
            client_secret_post、client_secret_basic、client_secret_jwt、および
            private_key_jwt です。その他の認証方法は拡張機能によって定義される場合があります。省略した場合のデフォルトは
            client_secret_basic、つまり OAuth 2.0 [RFC6749] のセクション 2.3.1 で規定されている
            HTTP Basic Authentication Scheme です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt 認証方法で Token Endpoint
            においてクライアントを認証するために使用される JWT [JWT] の署名について、Token Endpoint がサポートする JWS
            署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは RS256 をサポートする必要があります。none
            値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: ユーザーインターフェースでサポートされる言語および文字体系。BCP47 [RFC5646] 言語タグ値の JSON 配列で表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWE [JWE]
            暗号化アルゴリズム（alg 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWE
            暗号化アルゴリズム（enc 値）[JWA] のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの任意の URL。属性マッピングを設定すると、Auth0
            はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            UserInfo エンドポイントが JWT [JWT] 内のクレームのエンコードに対応する JWS [JWS] 署名アルゴリズム（alg
            値）[JWA] のリストを含む JSON 配列。値 none を含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsSchemaVersionEnum:
      description: 接続オプションの内部スキーマバージョン。
      enum:
        - openid-1.0.0
        - oidc-v4
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新可能。'never_on_login': IdP から同期せず、ローカルで設定した値を保持。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsTokenEndpointAuthMethodEnum:
      description: >-
        アイデンティティプロバイダーのトークンエンドポイントで使用する認証方式。'client_secret_post'
        はリクエスト本文で認証情報を送信します。'private_key_jwt' はセキュリティを強化するために署名付き JWT
        アサーションを使用します。strategy=oidc または okta の場合に適用されます。
      enum:
        - client_secret_post
        - private_key_jwt
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsTokenEndpointAuthSigningAlgEnum:
      description: client_assertions の署名に使用するアルゴリズム。strategy=oidc または okta の場合に適用されます。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsTokenEndpointJwtcaAudFormatEnum:
      description: >-
        トークンエンドポイントでのクライアント認証に使用する JWT に含まれる aud（オーディエンス）クレームの形式を指定します。使用可能な値:
        'issuer'（aud クレームを OIDC 発行者 URL に設定）または 'token_endpoint'（aud
        クレームをトークンエンドポイント URL に設定）。
      enum:
        - issuer
        - token_endpoint
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsTypeEnum:
      description: >-
        OIDC
        通信チャネルのタイプ。'back_channel'（機密クライアント）はセキュリティ強化のためにサーバー側でトークンを交換します。'front_channel'
        はブラウザーで応答を処理します。
      enum:
        - back_channel
        - front_channel
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsAttributeMap:
      additionalProperties: false
      description: アイデンティティプロバイダー（IdP）から受信したクレームのマッピング
      properties:
        attributes:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsAttributeMapAttributes
        mapping_mode:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsAttributeMapMappingModeEnum
        userinfo_scope:
          description: IdPのUserInfoエンドポイントに送信するスコープ
          maxLength: 255
          minLength: 0
          type: string
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsConnectionSettings:
      additionalProperties: false
      description: >-
        OAuth 2.0 PKCE（Proof Key for Code
        Exchange）設定。PKCEは、認可コードの傍受攻撃を防ぐことでパブリッククライアントのセキュリティを強化します。'auto'（推奨）は、IdPがサポートする最も強力なメソッドを使用します。
      properties:
        pkce:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsConnectionSettingsPkceEnum
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsDpopSigningAlgEnum:
      description: DPoP Proof JWTの署名に使用するアルゴリズム。strategy=oidcまたはoktaの場合に適用されます。
      enum:
        - ES256
        - ES384
        - ES512
        - Ed25519
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンをAuth0のToken
        Vaultに保存するための設定。有効にすると、Auth0はフェデレーションログインで取得したアクセスおよびリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済みのAPI呼び出しを実行できるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンおよびアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsIdTokenSignedResponseAlgsItemEnum:
      description: ID トークンの検証に使用できるアルゴリズム。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠したOpenID Connectプロバイダーのメタデータ
      properties:
        acr_values_supported:
          description: このOPがサポートする認証コンテキストクラス参照のリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされる、アイデンティティプロバイダーのOAuth 2.0認可エンドポイントのURL。有効なHTTPS
            URLである必要があります。このエンドポイントでOAuth 2.0認可コードフローが開始されます。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenIDプロバイダーがサポートするクレームタイプのリストを含むJSON配列。これらのクレームタイプは、OpenID Connect
            Core 1.0
            [OpenID.Core]のセクション5.6で説明されています。省略した場合、実装でサポートされるのは通常のクレームのみです。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるクレーム値でサポートされる言語および文字体系。BCP47
            [RFC5646]の言語タグ値のJSON配列で表されます。すべてのクレーム値ですべての言語および文字体系がサポートされるとは限りません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OPがclaimsパラメータの使用をサポートするかどうかを指定するブール値。trueはサポートを示します。省略した場合、デフォルト値はfalseです。
          type: boolean
        claims_supported:
          description: >-
            OpenIDプロバイダーが値を提供できる可能性があるクレームのクレーム名のリストを含むJSON配列。プライバシーなどの理由により、このリストが網羅的でない場合があることに注意してください。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636で定義されている、このOPがサポートするProof Key for Code
            Exchange（PKCE）のコードチャレンジメソッド（例: S256、plain）のリストを含むJSON配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwtおよびclient_secret_jwt認証方法で、トークンエンドポイントにおいてクライアントを認証するために使用されるJWT
            [JWT]の署名に関して、トークンエンドポイントがサポートするJWS署名アルゴリズム（alg値）のリストを含むJSON配列。サーバーはRS256をサポートする必要があります。none値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP Proof JWTの署名でサポートされるJWS署名アルゴリズム（alg値）のリストを含むJSON配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーのログアウト／セッション終了エンドポイントのURL。静的URLとして設定すると、ユーザーはAuth0からログアウトした後にここへリダイレクトされます。HTTPSスキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            このOPがサポートするOAuth
            2.0グラントタイプ値のリスト。動的OpenIDプロバイダーはauthorization_codeおよびimplicitのグラントタイプ値をサポートする必要があり、その他のグラントタイプをサポートしてもかまいません。省略した場合、デフォルト値は["authorization_code",
            "implicit"]です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: >-
            JWT内のクレームをエンコードするために、ID
            トークンでOPがサポートするJWE暗号化アルゴリズム（alg値）のリストを含むJSON配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT]内のクレームをエンコードするために、ID
            トークンでOPがサポートするJWE暗号化アルゴリズム（enc値）のリストを含むJSON配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT内のクレームをエンコードするために、ID
            トークンでOPがサポートするJWS署名アルゴリズム（alg値）のリスト。アルゴリズムRS256を含める必要があります。none値をサポートしてもかまいませんが、使用するレスポンスタイプで認可エンドポイントからID
            トークンが返されない場合（認可コードフロー使用時など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: ID トークンの署名用としてIdPがサポートするJWS署名アルゴリズム（OIDCディスカバリーメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーが発行するID
            トークン内の「iss」クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開鍵を含む、アイデンティティプロバイダーのJSON Web Key
            Set（JWKS）エンドポイントのURL。Auth0はこれらのキーを取得してID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            OpenIDプロバイダーがクライアントの登録者に提供するURL。リライングパーティがOPから提供されるデータをどのように使用できるかに関するOPの要件を確認できます。指定されている場合、登録プロセスではこのURLをクライアントの登録者に表示することが推奨されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            OpenIDプロバイダーがクライアントの登録者に提供するURL。OpenIDプロバイダーの利用規約を確認できます。指定されている場合、登録プロセスではこのURLをクライアントの登録者に表示することが推奨されます。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OPのDynamic Client
            RegistrationエンドポイントのURL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            OPがRequest
            Object用にサポートするJWE暗号化アルゴリズム（alg値）のリストを含むJSON配列。これらのアルゴリズムは、Request
            Objectを値で渡す場合と参照で渡す場合のどちらにも使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            OPがRequest
            Object用にサポートするJWE暗号化アルゴリズム（enc値）のリストを含むJSON配列。これらのアルゴリズムは、Request
            Objectを値で渡す場合と参照で渡す場合のどちらにも使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            OpenID Connect Core 1.0 [OpenID.Core]のセクション6.1で説明されている、OPがRequest
            Object用にサポートするJWS署名アルゴリズム（alg値）のリストを含むJSON配列。これらのアルゴリズムは、Request
            Objectを値で渡す場合（request パラメータを使用）と参照で渡す場合（request_uri
            パラメータを使用）のどちらにも使用されます。サーバーはnoneとRS256をサポートすることが推奨されます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OPがrequest
            パラメータの使用をサポートするかどうかを指定するBoolean値。trueはサポートを示します。省略した場合、デフォルト値はfalseです。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OPがrequest_uri
            パラメータの使用をサポートするかどうかを指定するBoolean値。trueはサポートを示します。省略した場合、デフォルト値はfalseです。
          type: boolean
        require_request_uri_registration:
          description: >-
            OPがrequest_uri
            パラメータの使用を必須とするかどうかを指定するBoolean値。省略した場合、デフォルト値はfalseです。
          type: boolean
        response_modes_supported:
          description: >-
            このOPがサポートするOAuth 2.0 response_mode値のリスト。省略した場合、Dynamic OpenID
            Providersのデフォルトは["query", "fragment"]です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            このOPがサポートするOAuth 2.0 response_type値のリスト。Dynamic OpenID
            Providersは、code、id_token、token id_tokenのResponse
            Type値をサポートする必要があります。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートするOAuth 2.0 [RFC6749] scope値のリスト。サーバーはopenid
            scope値をサポートする必要があります。このパラメータを使用する場合でも、サーバーはサポートする一部のscope値を通知しないことを選択できます。ただし、[OpenID.Core]で定義されているものは、サポートされている場合、リストに含めることが推奨されます。推奨されますが、必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者がOpenIDプロバイダーを使用する際に知っておく必要がある、または知りたいと思う可能性のある、人間が読める情報を掲載したページのURL。特に、OpenIDプロバイダーがDynamic
            Client
            Registrationをサポートしていない場合、このドキュメントにはクライアントの登録方法に関する情報を記載する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: このOPがサポートするサブジェクト識別子タイプのリスト。有効なタイプにはpairwiseとpublicがあります。
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換する、アイデンティティプロバイダーのOAuth 2.0トークンエンドポイントのURL。有効なHTTPS
            URLである必要があります。認可コードフローでは必須ですが、インプリシットフローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            このトークンエンドポイントがサポートするクライアント認証方法のリストを含むJSON配列。OpenID Connect Core 1.0
            [OpenID.Core]のセクション9で説明されているように、選択肢はclient_secret_post、client_secret_basic、client_secret_jwt、private_key_jwtです。その他の認証方法は拡張機能によって定義される場合があります。省略した場合、デフォルトはclient_secret_basic、つまりOAuth
            2.0 [RFC6749]のセクション2.3.1で規定されているHTTP Basic 認証方式です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwtおよびclient_secret_jwt認証方法でトークンエンドポイントにおいてクライアントを認証するために使用されるJWT
            [JWT]の署名について、トークンエンドポイントがサポートするJWS署名アルゴリズム（alg値）のリストを含むJSON配列。サーバーはRS256をサポートすることが推奨されます。none値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: ユーザーインターフェースでサポートされる言語および文字体系。BCP47 [RFC5646]の言語タグ値のJSON配列として表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT]内のクレームをエンコードするためにUserInfoエンドポイントがサポートするJWE
            [JWE]暗号化アルゴリズム（alg値）[JWA]のリストを含むJSON配列。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT
            [JWT]内のクレームをエンコードするためにUserInfoエンドポイントがサポートするJWE暗号化アルゴリズム（enc値）[JWA]のリストを含むJSON配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーのUserInfoエンドポイントの任意のURL。属性マッピングとともに設定すると、Auth0はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            UserInfoエンドポイントがJWT [JWT] 内のクレームをエンコードするためにサポートするJWS [JWS]
            署名アルゴリズム（alg値）[JWA] のリストを含むJSON配列。値noneを含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsSchemaVersionEnum:
      description: 接続オプションの内部スキーマバージョン。
      enum:
        - openid-1.0.0
        - oidc-v4
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、pictureなど）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新可能。'never_on_login': IdPからは同期せず、ローカルで設定した値を保持。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsTokenEndpointAuthMethodEnum:
      description: >-
        アイデンティティプロバイダーのトークンエンドポイントで使用する認証方法。'client_secret_post'
        はリクエスト本文で資格情報を送信します。'private_key_jwt'
        はセキュリティを強化するために署名付きJWTアサーションを使用します。strategy=oidcまたはoktaの場合に適用されます。
      enum:
        - client_secret_post
        - private_key_jwt
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsTokenEndpointAuthSigningAlgEnum:
      description: client_assertionsへの署名に使用するアルゴリズム。strategy=oidcまたはoktaの場合に適用されます。
      enum:
        - ES256
        - ES384
        - PS256
        - PS384
        - RS256
        - RS384
        - RS512
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsTokenEndpointJwtcaAudFormatEnum:
      description: >-
        トークンエンドポイントでのクライアント認証に使用するJWTに含まれるaud（オーディエンス）クレームの形式を指定します。指定可能な値は、'issuer'（audクレームをOIDC発行者URLに設定）または'token_endpoint'（audクレームをトークンエンドポイントURLに設定）です。
      enum:
        - issuer
        - token_endpoint
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsTypeEnum:
      description: 接続タイプ
      enum:
        - back_channel
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsAssertionDecryptionSettings:
      additionalProperties: false
      description: SAMLアサーションの復号設定。
      properties:
        algorithm_exceptions:
          description: SAMLアサーションの復号で許可する安全でないアルゴリズムのリスト。
          items:
            maxLength: 100
            minLength: 1
            type: string
          type: array
        algorithm_profile:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum
      required:
        - algorithm_profile
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsDigestAlgorithmEnum:
      description: SAMLリクエストおよびログアウトリクエストへの署名時にダイジェスト値を計算するためのアルゴリズム。デフォルトは'sha256'です。
      enum:
        - sha1
        - sha256
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsFieldsMap:
      additionalProperties: true
      description: >-
        IDプロバイダーからのSAMLアサーション属性をAuth0ユーザープロファイルの属性にマッピングします。形式: { 'auth0_field':
        'saml_attribute' }。フォールバックオプションの場合は、{ 'auth0_field': ['saml_attr1',
        'saml_attr2']
        }。email、name、given_name、family_name、groupsのデフォルトマッピングと統合されます。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsIdpinitiated:
      additionalProperties: false
      description: >-
        IdP-Initiated SAML Single Sign-Onの設定。有効にすると、ユーザーはまずAuth0にアクセスしなくても、SAML
        IDプロバイダーから直接ログインを開始できます。IdPはpost-back URL（Assertion Consumer Service
        URL）に接続パラメータを含める必要があります。
      properties:
        client_authorizequery:
          description: デフォルトアプリケーションに送信されるクエリ文字列
          maxLength: 2048
          minLength: 1
          type: string
        client_id:
          description: IdP-initiatedログインリクエストに使用するクライアントID。
          maxLength: 256
          minLength: 1
          type: string
        client_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsIdpinitiatedClientProtocolEnum
        enabled:
          description: >-
            trueの場合、このSAML接続でIdP-initiatedログインのサポートを有効にします。ユーザーはまずAuth0にアクセスしなくても、IDプロバイダーから直接ログインできます。
          type: boolean
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsOidcMetadata:
      additionalProperties: false
      description: >-
        https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
        に準拠したOpenID Connect Provider Metadata。Cross App Accessで使用します。
      properties:
        acr_values_supported:
          description: このOPがサポートするAuthentication Context Class Referenceのリスト
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        authorization_endpoint:
          description: >-
            認証のためにユーザーがリダイレクトされるIDプロバイダーのOAuth 2.0認可エンドポイントのURL。有効なHTTPS
            URLである必要があります。このエンドポイントはOAuth 2.0認可コードフローを開始します。
          format: uri
          maxLength: 2083
          minLength: 8
          type: string
        claim_types_supported:
          description: >-
            OpenID ProviderがサポートするClaim Typeのリストを含むJSON配列。これらのClaim TypeはOpenID
            Connect Core 1.0
            [OpenID.Core]のセクション5.6で説明されています。省略した場合、実装は通常のClaimsのみをサポートします。
          items:
            maxLength: 25
            type: string
          minItems: 0
          type: array
        claims_locales_supported:
          description: >-
            返されるClaimsの値でサポートされる言語およびスクリプト。BCP47
            [RFC5646]言語タグ値のJSON配列で表されます。すべてのClaim値ですべての言語およびスクリプトが必ずしもサポートされるわけではありません。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        claims_parameter_supported:
          description: >-
            OPがclaimsパラメータの使用をサポートするかどうかを指定するブール値。trueはサポートを示します。省略した場合、デフォルト値はfalseです。
          type: boolean
        claims_supported:
          description: >-
            OpenID プロバイダーが値を提供できる可能性があるクレームのクレーム名のリストを含む JSON
            配列。プライバシーなどの理由により、このリストは網羅的でない場合があります。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        code_challenge_methods_supported:
          description: >-
            RFC 7636 で定義されている、この OP がサポートする Proof Key for Code
            Exchange（PKCE）のコードチャレンジ方式（例: S256、plain）のリストを含む JSON 配列。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        display_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方法でトークンエンドポイントにおいてクライアントを認証する際に使用される JWT [JWT]
            の署名について、トークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。サーバーは
            RS256 をサポートする必要があります。none 値は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        dpop_signing_alg_values_supported:
          description: DPoP proof JWT の署名にサポートされる JWS 署名アルゴリズム（alg 値）のリストを含む JSON 配列。
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        end_session_endpoint:
          description: >-
            アイデンティティプロバイダーの logout/end session エンドポイントの URL。静的 URL
            として設定した場合、ユーザーは Auth0 からログアウトした後、ここにリダイレクトされます。HTTPS
            スキームを使用する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        grant_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 のグラントタイプ値のリスト。Dynamic OpenID Providers は
            authorization_code および implicit
            のグラントタイプ値をサポートする必要があり、他のグラントタイプもサポートできます。省略した場合、デフォルト値は
            ["authorization_code", "implicit"] です。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        id_token_encryption_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードするために、OP が ID トークン用にサポートする JWE 暗号化アルゴリズム（alg
            値）のリストを含む JSON 配列
          items:
            maxLength: 14
            type: string
          minItems: 0
          type: array
        id_token_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために、OP が ID トークン用にサポートする JWE 暗号化アルゴリズム（enc
            値）のリストを含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        id_token_signing_alg_values_supported:
          description: >-
            JWT 内のクレームをエンコードするために、OP が ID トークン用にサポートする JWS 署名アルゴリズム（alg
            値）のリスト。アルゴリズム RS256 を含める必要があります。none
            値をサポートすることはできますが、使用するレスポンスタイプが認可エンドポイントから ID
            トークンを返さない場合（認可コードフローを使用する場合など）を除き、使用してはなりません。https://datatracker.ietf.org/doc/html/rfc7518
          items:
            description: ID トークンの署名に IdP がサポートする JWS 署名アルゴリズム（OIDC ディスカバリーのメタデータから取得）。
            maxLength: 10
            type: string
          minItems: 1
          type: array
        issuer:
          description: >-
            アイデンティティプロバイダーの一意の発行者識別子 URL（例:
            https://accounts.google.com）。アイデンティティプロバイダーから発行される ID トークンの 'iss'
            クレームと一致する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        jwks_uri:
          description: >-
            署名検証用の公開鍵を含む、アイデンティティプロバイダーの JSON Web Key Set（JWKS）エンドポイントの
            URL。Auth0 はこれらのキーを取得して ID トークンの署名を検証します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_policy_uri:
          description: >-
            クライアント登録者が、OP によって提供されるデータを Relying Party がどのように使用できるかに関する OP
            の要件を確認するために、OpenID プロバイダーが提供する URL。指定されている場合、登録プロセスではこの URL
            をクライアント登録者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        op_tos_uri:
          description: >-
            クライアント登録者が OpenID プロバイダーの利用規約を確認するために、OpenID プロバイダーが提供する
            URL。指定されている場合、登録プロセスではこの URL をクライアント登録者に表示する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        registration_endpoint:
          description: >-
            OP の Dynamic Client Registration エンドポイントの
            URL。推奨されますが、必須ではありません。https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        request_object_encryption_alg_values_supported:
          description: >-
            OP がリクエストオブジェクト用にサポートする JWE 暗号化アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、リクエストオブジェクトを値で渡す場合と参照で渡す場合の両方で使用されます。
          items:
            maxLength: 28
            type: string
          minItems: 0
          type: array
        request_object_encryption_enc_values_supported:
          description: >-
            OP がリクエストオブジェクト用にサポートする JWE 暗号化アルゴリズム（enc 値）のリストを含む JSON
            配列。これらのアルゴリズムは、リクエストオブジェクトを値で渡す場合と参照で渡す場合の両方で使用されます。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        request_object_signing_alg_values_supported:
          description: >-
            OpenID Connect Core 1.0 [OpenID.Core] のセクション 6.1 で説明されている、OP
            がリクエストオブジェクト用にサポートする JWS 署名アルゴリズム（alg 値）のリストを含む JSON
            配列。これらのアルゴリズムは、リクエストオブジェクトを値で渡す場合（request
            パラメータを使用）と参照で渡す場合（request_uri パラメータを使用）の両方で使用されます。サーバーは none および
            RS256 をサポートする必要があります。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        request_parameter_supported:
          description: >-
            OP が request パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートを示します。省略した場合、デフォルト値は false です。
          type: boolean
        request_uri_parameter_supported:
          description: >-
            OP が request_uri パラメータの使用をサポートするかどうかを指定するブール値。true
            はサポートを示します。省略した場合、デフォルト値は false です。
          type: boolean
        require_request_uri_registration:
          description: >-
            OP が request_uri パラメータの使用を必須とするかどうかを指定するブール値。省略した場合、デフォルト値は false
            です。
          type: boolean
        response_modes_supported:
          description: >-
            この OP がサポートする OAuth 2.0 の response_mode 値のリスト。省略した場合、Dynamic OpenID
            Providers のデフォルト値は ["query", "fragment"] です。
          items:
            maxLength: 20
            type: string
          minItems: 0
          type: array
        response_types_supported:
          description: >-
            この OP がサポートする OAuth 2.0 の response_type 値のリスト。Dynamic OpenID
            Providers は code、id_token、および token id_token
            のレスポンスタイプ値をサポートする必要があります。
          items:
            maxLength: 40
            type: string
          minItems: 1
          type: array
        scopes_supported:
          description: >-
            このサーバーがサポートする OAuth 2.0 [RFC6749] のスコープ値のリスト。サーバーは openid
            スコープ値をサポートする必要があります。このパラメータを使用しても、サーバーはサポートする一部のスコープ値を通知しないことを選択できます。ただし、[OpenID.Core]
            で定義されているものは、サポートされている場合はリストに記載する必要があります。推奨されますが、必須ではありません。
          items:
            maxLength: 100
            type: string
          minItems: 0
          type: array
        service_documentation:
          description: >-
            開発者が OpenID Provider を使用する際に知っておく必要がある、人が読める情報を含むページの URL。特に OpenID
            Provider が Dynamic Client Registration
            をサポートしていない場合は、クライアントの登録方法に関する情報をこのドキュメントで提供する必要があります。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        subject_types_supported:
          description: >-
            この OP がサポートする Subject Identifier タイプの一覧。有効なタイプには pairwise と public
            があります
          items:
            maxLength: 100
            minLength: 0
            type: string
          minItems: 0
          type: array
        token_endpoint:
          description: >-
            認可コードをアクセストークンと交換する、アイデンティティプロバイダーの OAuth 2.0 トークンエンドポイントの URL。有効な
            HTTPS URL である必要があります。認可コードフローでは必須ですが、インプリシットフローでは任意です。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        token_endpoint_auth_methods_supported:
          description: >-
            このトークンエンドポイントがサポートするクライアント認証方式の一覧を含む JSON 配列。OpenID Connect Core 1.0
            [OpenID.Core] のセクション 9 で説明されているとおり、オプションは
            client_secret_post、client_secret_basic、client_secret_jwt、private_key_jwt
            です。拡張機能によって、ほかの認証方式が定義される場合があります。省略した場合のデフォルトは
            client_secret_basic、つまり OAuth 2.0 [RFC6749] のセクション 2.3.1 で規定されている
            HTTP Basic Authentication Scheme です。
          items:
            maxLength: 60
            type: string
          minItems: 0
          type: array
        token_endpoint_auth_signing_alg_values_supported:
          description: >-
            private_key_jwt および client_secret_jwt
            認証方式でトークンエンドポイントにおいてクライアントを認証する際に使用する JWT [JWT]
            の署名について、トークンエンドポイントがサポートする JWS 署名アルゴリズム（alg 値）の一覧を含む JSON 配列。サーバーは
            RS256 をサポートする必要があります。値 none は使用してはなりません。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        ui_locales_supported:
          description: >-
            ユーザーインターフェイスでサポートされる言語および文字体系。BCP47 [RFC5646] の言語タグ値による JSON
            配列で表されます。
          items:
            maxLength: 50
            type: string
          minItems: 0
          type: array
        userinfo_encryption_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWE [JWE]
            暗号化アルゴリズム（alg 値）[JWA] の一覧を含む JSON 配列。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
        userinfo_encryption_enc_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWE
            暗号化アルゴリズム（enc 値）[JWA] の一覧を含む JSON 配列。
          items:
            maxLength: 26
            type: string
          minItems: 0
          type: array
        userinfo_endpoint:
          description: >-
            アイデンティティプロバイダーの UserInfo エンドポイントの任意の URL。属性マッピングを設定すると、Auth0
            はアクセストークンを使用してこのエンドポイントを呼び出し、追加のユーザープロファイルクレームを取得します。
          format: uri
          maxLength: 255
          minLength: 8
          type: string
        userinfo_signing_alg_values_supported:
          description: >-
            JWT [JWT] 内のクレームをエンコードするために UserInfo Endpoint がサポートする JWS [JWS]
            署名アルゴリズム（alg 値）[JWA] の一覧を含む JSON 配列。値 none を含めることができます。
          items:
            maxLength: 10
            type: string
          minItems: 0
          type: array
      required:
        - authorization_endpoint
        - id_token_signing_alg_values_supported
        - issuer
        - jwks_uri
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsProtocolBindingEnum:
      description: アイデンティティプロバイダーに認証リクエストを送信するための SAML プロトコルバインディングメカニズム。
      enum:
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        から同期せず、ローカルで設定された値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsSignatureAlgorithmEnum:
      description: >-
        接続の署名キーを使用して SAML 認証リクエストおよびログアウトリクエストに署名するためのアルゴリズム。一般的な値:
        'rsa-sha256'（SHA-256 ダイジェストを使用する RSA 署名）または 'rsa-sha1'。デフォルトは
        'rsa-sha256' です。
      enum:
        - rsa-sha1
        - rsa-sha256
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsSubject:
      additionalProperties: false
      description: アイデンティティプロバイダーの署名証明書から抽出された証明書サブジェクトの識別名（DN）。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsAssertionDecryptionSettings:
      additionalProperties: false
      description: SAMLアサーションの復号化設定。
      properties:
        algorithm_exceptions:
          description: SAMLアサーションの復号化で許可する安全でないアルゴリズムの一覧。
          items:
            maxLength: 100
            minLength: 1
            type: string
          type: array
        algorithm_profile:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum
      required:
        - algorithm_profile
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsDigestAlgorithmEnum:
      description: SAMLリクエストおよびログアウトリクエストへの署名時にダイジェスト値を計算するアルゴリズム。既定値は'sha256'です。
      enum:
        - sha1
        - sha256
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsIdpinitiated:
      additionalProperties: false
      description: >-
        IdP開始型SAMLシングルサインオンの設定。有効にすると、ユーザーは最初にAuth0にアクセスすることなく、SAMLアイデンティティプロバイダーから直接ログインを開始できます。IdPは、ポストバックURL（Assertion
        Consumer Service URL）に接続パラメータを含める必要があります。
      properties:
        client_authorizequery:
          description: 既定のアプリケーションに送信するクエリ文字列
          maxLength: 2048
          minLength: 1
          type: string
        client_id:
          description: IdP開始型ログインリクエストに使用するクライアントID。
          maxLength: 256
          minLength: 1
          type: string
        client_protocol:
          $ref: >-
            #/components/schemas/EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsIdpinitiatedClientProtocolEnum
        enabled:
          description: >-
            trueの場合、このSAML接続でIdP開始型ログインのサポートを有効にします。ユーザーは最初にAuth0にアクセスすることなく、アイデンティティプロバイダーから直接ログインできます。
          type: boolean
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsProtocolBindingEnum:
      description: 認証リクエストをアイデンティティプロバイダーに送信するためのSAMLプロトコルバインディング方式。
      enum:
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST
        - urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、pictureなど）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login'：認証のたびに更新（既定）。'on_first_login'：初回ログイン時にのみ属性を設定し、その後は個別に更新可能。'never_on_login'：IdPから同期せず、ローカルで設定された値を保持。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsSignatureAlgorithmEnum:
      description: >-
        接続の署名鍵を使用してSAML認証リクエストおよびログアウトリクエストに署名するアルゴリズム。一般的な値は、'rsa-sha256'（SHA-256ダイジェストを使用したRSA署名）または'rsa-sha1'です。既定値は'rsa-sha256'です。
      enum:
        - rsa-sha1
        - rsa-sha256
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsSubject:
      additionalProperties: false
      description: アイデンティティプロバイダーの署名証明書から抽出される証明書サブジェクトの識別名（DN）。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject4OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、picture
        など）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login': IdP
        から同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject4OptionsShouldTrustEmailVerifiedConnectionEnum:
      description: Auth0 がユーザープロファイルの email_verified フィールドを設定する方法を選択します。
      enum:
        - never_set_emails_as_verified
        - always_set_emails_as_verified
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject4OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータです。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject5OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、pictureなど）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login'：認証のたびに更新（デフォルト）。'on_first_login'：初回ログイン時にのみ属性を設定し、その後は個別に更新可能。'never_on_login'：IdPから同期せず、ローカルで設定された値を保持。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject5OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください。
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject6OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンをAuth0のToken
        Vaultに保存するための設定。有効にすると、Auth0はフェデレーションログインのアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済みのAPI呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject6OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、pictureなど）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新します（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新できます。'never_on_login':
        IdPからは同期せず、ローカルで設定した値を保持します。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject6OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に役立ちます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idps
        を参照してください
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject7OptionsFederatedConnectionsAccessTokens:
      additionalProperties: false
      description: >-
        アイデンティティプロバイダーのトークンをAuth0のToken
        Vaultに保存するための設定。有効にすると、Auth0はフェデレーションログインで取得したアクセストークンとリフレッシュトークンを安全に保存し、アプリケーションがユーザーに代わって認証済みのAPI呼び出しを行えるようにします。
      properties:
        active:
          description: フェデレーション接続のリフレッシュトークンとアクセストークンの収集を有効にします
          type: boolean
      required:
        - active
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject7OptionsIdentityApiEnum:
      description: >-
        認証に使用するAzure
        ADエンドポイントのバージョン。'microsoft-identity-platform-v2.0'（推奨、デフォルト）は最新のOAuth
        2.0機能をサポートします。'azure-active-directory-v1.0'はプロトコル上の制限があるレガシーエンドポイントです。選択内容によって利用可能な機能が変わります。
      enum:
        - microsoft-identity-platform-v2.0
        - azure-active-directory-v1.0
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject7OptionsSetUserRootAttributesEnum:
      description: >-
        ユーザープロファイルのルート属性（name、nickname、pictureなど）をアイデンティティプロバイダーから同期する方法を制御します。'on_each_login':
        認証のたびに更新（デフォルト）。'on_first_login':
        初回ログイン時にのみ属性を設定し、その後は個別に更新可能。'never_on_login': IdPから同期せず、ローカルで設定した値を保持。
      enum:
        - on_each_login
        - on_first_login
        - never_on_login
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject7OptionsShouldTrustEmailVerifiedConnectionEnum:
      description: Auth0によるユーザープロファイルのemail_verifiedフィールドの設定方法を選択します。
      enum:
        - never_set_emails_as_verified
        - always_set_emails_as_verified
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject7OptionsTenantDomain:
      anyOf:
        - description: 'ホスト名として指定するAzure AD テナントのドメイン（例: contoso.onmicrosoft.com）。'
          format: hostname
          maxLength: 512
          minLength: 0
          type: string
        - description: UUID形式のテナントIDとして指定するAzure AD テナントのドメイン。
          format: uuid
          type: string
      description: >-
        Azure AD テナントのドメインまたはテナントID（UUID）。'domain'フィールドから自動入力されます。ホスト名（例:
        'contoso.onmicrosoft.com'）またはUUID形式のテナントIDを指定できます。
    EventStreamCloudEventConnectionUpdatedPreviousObject7OptionsUpstreamParams:
      additionalProperties: true
      description: >-
        アイデンティティプロバイダーに送信する認可リクエストに含める追加パラメータ。カスタムクレームの受け渡し、特定のアイデンティティソースの選択、プロバイダー固有の動作の設定に使用できます。https://auth0.com/docs/authenticate/identity-providers/pass-parameters-to-idpsを参照してください
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject7OptionsUseridAttributeEnum:
      description: >-
        一意のユーザー識別子として使用するAzure
        ADクレーム。'oid'（オブジェクトID）はシングルテナント接続で推奨され、SCIMでは必須です。'sub'（Subject）はマルチテナントまたは共通エンドポイントで必須です。OpenID
        Connectプロトコルでのみ適用されます。
      enum:
        - oid
        - sub
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject7OptionsWaadProtocolEnum:
      description: >-
        Azure AD v1エンドポイント用の認証プロトコル。'openid-connect'（デフォルト、推奨）は最新のOAuth
        2.0/OIDCを使用します。'ws-federation'は古い連携向けのレガシーSAMLベースのプロトコルです。Azure AD v1
        APIでのみ使用できます。
      enum:
        - ws-federation
        - openid-connect
      type: string
    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
    EventStreamCloudEventGroupMemberAddedPreviousObjectGroup0TypeEnum:
      description: グループの種類。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupMemberAddedPreviousObjectGroup1TypeEnum:
      description: グループの種類。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupMemberAddedPreviousObjectGroup2TypeEnum:
      description: グループの種類。
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupMemberAddedPreviousObjectMember0MemberTypeEnum:
      description: ユーザーメンバーの型判別子
      enum:
        - user
      type: string
    EventStreamCloudEventGroupMemberAddedPreviousObjectMember1MemberTypeEnum:
      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
    EventStreamCloudEventGroupMemberDeletedPreviousObjectGroup0TypeEnum:
      description: グループの種類。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupMemberDeletedPreviousObjectGroup1TypeEnum:
      description: グループの種類。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupMemberDeletedPreviousObjectGroup2TypeEnum:
      description: グループの種類。
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupMemberDeletedPreviousObjectMember0MemberTypeEnum:
      description: ユーザーメンバーの型判別子
      enum:
        - user
      type: string
    EventStreamCloudEventGroupMemberDeletedPreviousObjectMember1MemberTypeEnum:
      description: 接続メンバーの型判別子
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupRoleAssignedObjectGroup0TypeEnum:
      description: group のタイプ。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupRoleAssignedObjectGroup1TypeEnum:
      description: group のタイプ。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupRoleAssignedObjectGroup2TypeEnum:
      description: group のタイプ。
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupRoleAssignedPreviousObjectGroup0TypeEnum:
      description: グループの種類。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupRoleAssignedPreviousObjectGroup1TypeEnum:
      description: グループの種類。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupRoleAssignedPreviousObjectGroup2TypeEnum:
      description: グループの種類。
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupRoleDeletedObjectGroup0TypeEnum:
      description: group のタイプ。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupRoleDeletedObjectGroup1TypeEnum:
      description: group のタイプ。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupRoleDeletedObjectGroup2TypeEnum:
      description: group のタイプ。
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupRoleDeletedPreviousObjectGroup0TypeEnum:
      description: グループの種類。
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupRoleDeletedPreviousObjectGroup1TypeEnum:
      description: グループの種類。
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupRoleDeletedPreviousObjectGroup2TypeEnum:
      description: グループの種類。
      enum:
        - tenant
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0TypeEnum:
      description: group の種類。
      enum:
        - connection
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1TypeEnum:
      description: group の種類。
      enum:
        - organization
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2TypeEnum:
      description: group の種類。
      enum:
        - tenant
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectGroup0TypeEnum:
      description: グループのタイプ。
      enum:
        - connection
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectGroup1TypeEnum:
      description: グループのタイプ。
      enum:
        - organization
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedPreviousObjectGroup2TypeEnum:
      description: グループのタイプ。
      enum:
        - tenant
      type: string
    EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0TypeEnum:
      description: グループのタイプ。
      enum:
        - connection
      type: string
    EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1TypeEnum:
      description: グループのタイプ。
      enum:
        - organization
      type: string
    EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2TypeEnum:
      description: グループのタイプ。
      enum:
        - tenant
      type: string
    EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectGroup0TypeEnum:
      description: グループのタイプ。
      enum:
        - connection
      type: string
    EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectGroup1TypeEnum:
      description: グループのタイプ。
      enum:
        - organization
      type: string
    EventStreamCloudEventOrgGroupRoleDeletedPreviousObjectGroup2TypeEnum:
      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: このユーザーの姓（family name／last name／surname）。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名（given name／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: このユーザーのユーザー名。
          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: このユーザーの姓（family name／last name／surname）。
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: このユーザーの名（given name／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: このユーザーのユーザー名。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProviderEnum:
      description: Database アイデンティティプロバイダーの一覧。
      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: このユーザーのユーザー名。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProviderEnum:
      description: エンタープライズ アイデンティティプロバイダーの一覧。
      enum:
        - ad
        - adfs
        - google-apps
        - ip
        - office365
        - oidc
        - okta
        - pingfederate
        - samlp
        - sharepoint
        - waad
      type: string
    EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseUserId:
      anyOf:
        - type: string
        - type: integer
      description: このユーザーのIDプロバイダー固有の識別子。
    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: このユーザーの姓/ラストネーム/苗字。
          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
    EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProviderEnum:
      description: パスワードレス アイデンティティプロバイダーの一覧。
      enum:
        - email
        - sms
      type: string
    EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessUserId:
      anyOf:
        - type: string
        - type: integer
      description: このユーザーのIDプロバイダー固有の識別子。
    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: このユーザーの姓/ラストネーム/名字。
          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
    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: ユーザーに対するIDプロバイダー固有の識別子。
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemCustomIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemCustomProfileData:
      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
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemCustomProviderEnum:
      description: カスタムアイデンティティプロバイダーのリスト。
      enum:
        - custom
      type: string
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemCustomUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーのIDプロバイダー固有の識別子。
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemDatabaseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemDatabaseProfileData:
      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
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemDatabaseProviderEnum:
      description: データベースアイデンティティプロバイダーのリスト。
      enum:
        - auth0
      type: string
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemDatabaseUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーのIDプロバイダー固有の識別子。
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemEnterpriseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemEnterpriseProfileData:
      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
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemEnterpriseProviderEnum:
      description: エンタープライズアイデンティティプロバイダーのリスト。
      enum:
        - ad
        - adfs
        - google-apps
        - ip
        - office365
        - oidc
        - okta
        - pingfederate
        - samlp
        - sharepoint
        - waad
      type: string
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemEnterpriseUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーのIDプロバイダー固有の識別子。
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemPasswordlessIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemPasswordlessProfileData:
      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
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemPasswordlessProviderEnum:
      description: パスワードレスアイデンティティプロバイダーのリスト。
      enum:
        - email
        - sms
      type: string
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemPasswordlessUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーのIDプロバイダー固有の識別子。
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemSocialIsSocialEnum:
      enum:
        - true
      type: boolean
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemSocialProfileData:
      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
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemSocialProviderEnum:
      description: ソーシャルアイデンティティプロバイダーのリスト。
      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
    EventStreamCloudEventUserCreatedPreviousObjectIdentitiesItemSocialUserId:
      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: このユーザーのユーザー名。
          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: このユーザーのユーザー名。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProviderEnum:
      description: データベース アイデンティティプロバイダーの一覧。
      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: このユーザーのユーザー名。
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProviderEnum:
      description: エンタープライズ アイデンティティプロバイダーの一覧。
      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: パスワードレス アイデンティティプロバイダーの一覧。
      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: ソーシャルアイデンティティプロバイダーの一覧。
      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: このユーザーに対するIDプロバイダー固有の識別子。
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemCustomIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemCustomProfileData:
      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
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemCustomProviderEnum:
      description: カスタムアイデンティティプロバイダーのリスト。
      enum:
        - custom
      type: string
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemCustomUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーのIDP固有の識別子。
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemDatabaseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemDatabaseProfileData:
      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
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemDatabaseProviderEnum:
      description: データベースアイデンティティプロバイダーのリスト。
      enum:
        - auth0
      type: string
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemDatabaseUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーのIDP固有の識別子。
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemEnterpriseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemEnterpriseProfileData:
      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
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemEnterpriseProviderEnum:
      description: エンタープライズアイデンティティプロバイダーのリスト。
      enum:
        - ad
        - adfs
        - google-apps
        - ip
        - office365
        - oidc
        - okta
        - pingfederate
        - samlp
        - sharepoint
        - waad
      type: string
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemEnterpriseUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーのIDP固有の識別子。
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemPasswordlessIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemPasswordlessProfileData:
      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
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemPasswordlessProviderEnum:
      description: パスワードレスアイデンティティプロバイダーのリスト。
      enum:
        - email
        - sms
      type: string
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemPasswordlessUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーのIDP固有の識別子。
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemSocialIsSocialEnum:
      enum:
        - true
      type: boolean
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemSocialProfileData:
      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
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemSocialProviderEnum:
      description: ソーシャルアイデンティティプロバイダーのリスト。
      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
    EventStreamCloudEventUserDeletedPreviousObjectIdentitiesItemSocialUserId:
      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: データベース アイデンティティプロバイダーの一覧。
      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: このユーザーの姓（ラストネーム）。
          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
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProviderEnum:
      description: エンタープライズ アイデンティティプロバイダーの一覧。
      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: このユーザーの姓（ラストネーム）。
          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
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProviderEnum:
      description: パスワードレスのアイデンティティプロバイダーの一覧。
      enum:
        - email
        - sms
      type: string
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessUserId:
      anyOf:
        - type: string
        - type: integer
      description: このユーザーのIDプロバイダー固有の識別子。
    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: このユーザーの姓／ラストネーム／サーネーム。
          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
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProviderEnum:
      description: ソーシャルアイデンティティプロバイダーの一覧。
      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プロバイダー固有の識別子。
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemCustomIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemCustomProfileData:
      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
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemCustomProviderEnum:
      description: カスタムIDプロバイダーのリスト。
      enum:
        - custom
      type: string
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemCustomUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーのIDプロバイダー固有の識別子。
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemDatabaseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemDatabaseProfileData:
      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
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemDatabaseProviderEnum:
      description: データベースIDプロバイダーのリスト。
      enum:
        - auth0
      type: string
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemDatabaseUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーのIDプロバイダー固有の識別子。
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemEnterpriseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemEnterpriseProfileData:
      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
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemEnterpriseProviderEnum:
      description: エンタープライズIDプロバイダーのリスト。
      enum:
        - ad
        - adfs
        - google-apps
        - ip
        - office365
        - oidc
        - okta
        - pingfederate
        - samlp
        - sharepoint
        - waad
      type: string
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemEnterpriseUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーのIDプロバイダー固有の識別子。
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemPasswordlessIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemPasswordlessProfileData:
      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
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemPasswordlessProviderEnum:
      description: パスワードレスIDプロバイダーのリスト。
      enum:
        - email
        - sms
      type: string
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemPasswordlessUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーのIDプロバイダー固有の識別子。
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemSocialIsSocialEnum:
      enum:
        - true
      type: boolean
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemSocialProfileData:
      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
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemSocialProviderEnum:
      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
    EventStreamCloudEventUserUpdatedPreviousObjectIdentitiesItemSocialUserId:
      anyOf:
        - type: string
        - type: integer
      description: ユーザーのIDプロバイダー固有の識別子。
    EventStreamCloudEventConnectionCreatedObject0OptionsAttributeMapAttributes:
      additionalProperties: true
      description: 受信クレームのマッピング詳細を含むオブジェクト
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject0OptionsAttributeMapMappingModeEnum:
      description: strategy=oidc の場合に受信クレームをマッピングする方法。
      enum:
        - bind_all
        - use_map
      type: string
    EventStreamCloudEventConnectionCreatedObject0OptionsConnectionSettingsPkceEnum:
      description: PKCE の設定。
      enum:
        - auto
        - S256
        - plain
        - disabled
      type: string
    EventStreamCloudEventConnectionCreatedObject1OptionsAttributeMapAttributes:
      additionalProperties: true
      description: 受信クレームのマッピング詳細を含むオブジェクト
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedObject1OptionsAttributeMapMappingModeEnum:
      description: strategy=oktaの場合に、受信クレームをマッピングするために使用するメソッド。
      enum:
        - basic_profile
        - use_map
      type: string
    EventStreamCloudEventConnectionCreatedObject1OptionsConnectionSettingsPkceEnum:
      description: PKCEの設定。
      enum:
        - auto
        - S256
        - plain
        - disabled
      type: string
    EventStreamCloudEventConnectionCreatedObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum:
      description: SAML アサーションの復号に使用するアルゴリズムプロファイル。
      enum:
        - v2026-1
      type: string
    EventStreamCloudEventConnectionCreatedObject2OptionsIdpinitiatedClientProtocolEnum:
      description: デフォルトアプリケーションとの通信に使用する応答プロトコル。
      enum:
        - oidc
        - samlp
        - wsfed
      type: string
    EventStreamCloudEventConnectionCreatedObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum:
      description: SAML Assertion の復号に使用するアルゴリズムプロファイル。
      enum:
        - v2026-1
      type: string
    EventStreamCloudEventConnectionCreatedObject3OptionsIdpinitiatedClientProtocolEnum:
      description: デフォルトアプリケーションとの通信に使用する応答プロトコル。
      enum:
        - oidc
        - samlp
        - wsfed
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject0OptionsAttributeMapAttributes:
      additionalProperties: true
      description: 受信クレームのマッピングの詳細を含むオブジェクト
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject0OptionsAttributeMapMappingModeEnum:
      description: strategy=oidcの場合に受信クレームをマッピングする方法。
      enum:
        - bind_all
        - use_map
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject0OptionsConnectionSettingsPkceEnum:
      description: PKCEの設定。
      enum:
        - auto
        - S256
        - plain
        - disabled
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject1OptionsAttributeMapAttributes:
      additionalProperties: true
      description: 受信クレームのマッピング詳細を含むオブジェクト
      properties: {}
      type: object
    EventStreamCloudEventConnectionCreatedPreviousObject1OptionsAttributeMapMappingModeEnum:
      description: strategy=oktaの場合に受信クレームをマッピングするためのメソッド。
      enum:
        - basic_profile
        - use_map
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject1OptionsConnectionSettingsPkceEnum:
      description: PKCEの設定。
      enum:
        - auto
        - S256
        - plain
        - disabled
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum:
      description: SAMLアサーションの復号化に使用するアルゴリズムプロファイル。
      enum:
        - v2026-1
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject2OptionsIdpinitiatedClientProtocolEnum:
      description: デフォルトアプリケーションとの通信に使用するレスポンスプロトコル。
      enum:
        - oidc
        - samlp
        - wsfed
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum:
      description: SAML アサーションの復号に使用するアルゴリズムプロファイル。
      enum:
        - v2026-1
      type: string
    EventStreamCloudEventConnectionCreatedPreviousObject3OptionsIdpinitiatedClientProtocolEnum:
      description: デフォルトアプリケーションとの通信に使用するレスポンスプロトコル。
      enum:
        - oidc
        - samlp
        - wsfed
      type: string
    EventStreamCloudEventConnectionDeletedObject0OptionsAttributeMapAttributes:
      additionalProperties: true
      description: 受信クレームのマッピング詳細を含むオブジェクト
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject0OptionsAttributeMapMappingModeEnum:
      description: strategy=oidc の場合に受信クレームをマッピングするために使用するメソッド。
      enum:
        - bind_all
        - use_map
      type: string
    EventStreamCloudEventConnectionDeletedObject0OptionsConnectionSettingsPkceEnum:
      description: PKCE の設定。
      enum:
        - auto
        - S256
        - plain
        - disabled
      type: string
    EventStreamCloudEventConnectionDeletedObject1OptionsAttributeMapAttributes:
      additionalProperties: true
      description: 受信クレームのマッピングの詳細を含むオブジェクト
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedObject1OptionsAttributeMapMappingModeEnum:
      description: strategy=okta の場合に、受信クレームのマッピングに使用するメソッド。
      enum:
        - basic_profile
        - use_map
      type: string
    EventStreamCloudEventConnectionDeletedObject1OptionsConnectionSettingsPkceEnum:
      description: PKCE の設定。
      enum:
        - auto
        - S256
        - plain
        - disabled
      type: string
    EventStreamCloudEventConnectionDeletedObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum:
      description: SAMLアサーションの復号化に使用するアルゴリズムプロファイル。
      enum:
        - v2026-1
      type: string
    EventStreamCloudEventConnectionDeletedObject2OptionsIdpinitiatedClientProtocolEnum:
      description: デフォルトのアプリケーションとの通信に使用する応答プロトコル。
      enum:
        - oidc
        - samlp
        - wsfed
      type: string
    EventStreamCloudEventConnectionDeletedObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum:
      description: SAMLアサーションの復号化に使用するアルゴリズムプロファイル。
      enum:
        - v2026-1
      type: string
    EventStreamCloudEventConnectionDeletedObject3OptionsIdpinitiatedClientProtocolEnum:
      description: デフォルトアプリケーションとの通信に使用するレスポンスプロトコル。
      enum:
        - oidc
        - samlp
        - wsfed
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject0OptionsAttributeMapAttributes:
      additionalProperties: true
      description: 受信クレームのマッピング詳細を含むオブジェクト
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject0OptionsAttributeMapMappingModeEnum:
      description: strategy=oidc の場合に受信クレームをマッピングするために使用するメソッド。
      enum:
        - bind_all
        - use_map
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject0OptionsConnectionSettingsPkceEnum:
      description: PKCE の設定。
      enum:
        - auto
        - S256
        - plain
        - disabled
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject1OptionsAttributeMapAttributes:
      additionalProperties: true
      description: 受信クレームのマッピング詳細を含むオブジェクト
      properties: {}
      type: object
    EventStreamCloudEventConnectionDeletedPreviousObject1OptionsAttributeMapMappingModeEnum:
      description: strategy=okta の場合に受信クレームをマッピングするために使用するメソッド。
      enum:
        - basic_profile
        - use_map
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject1OptionsConnectionSettingsPkceEnum:
      description: PKCE の設定。
      enum:
        - auto
        - S256
        - plain
        - disabled
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum:
      description: SAMLアサーションの復号に使用するアルゴリズムプロファイル。
      enum:
        - v2026-1
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject2OptionsIdpinitiatedClientProtocolEnum:
      description: デフォルトアプリケーションとの通信に使用する応答プロトコル。
      enum:
        - oidc
        - samlp
        - wsfed
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum:
      description: SAMLアサーションの復号に使用するアルゴリズムプロファイル。
      enum:
        - v2026-1
      type: string
    EventStreamCloudEventConnectionDeletedPreviousObject3OptionsIdpinitiatedClientProtocolEnum:
      description: デフォルトアプリケーションとの通信に使用する応答プロトコル。
      enum:
        - oidc
        - samlp
        - wsfed
      type: string
    EventStreamCloudEventConnectionUpdatedObject0OptionsAttributeMapAttributes:
      additionalProperties: true
      description: 受信クレームのマッピング詳細を含むオブジェクト
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject0OptionsAttributeMapMappingModeEnum:
      description: strategy=oidc の場合に受信クレームをマッピングするためのメソッド。
      enum:
        - bind_all
        - use_map
      type: string
    EventStreamCloudEventConnectionUpdatedObject0OptionsConnectionSettingsPkceEnum:
      description: PKCE の設定。
      enum:
        - auto
        - S256
        - plain
        - disabled
      type: string
    EventStreamCloudEventConnectionUpdatedObject1OptionsAttributeMapAttributes:
      additionalProperties: true
      description: 受信クレームのマッピング詳細を含むオブジェクト
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedObject1OptionsAttributeMapMappingModeEnum:
      description: strategy=okta の場合に、受信クレームをマッピングするために使用するメソッド。
      enum:
        - basic_profile
        - use_map
      type: string
    EventStreamCloudEventConnectionUpdatedObject1OptionsConnectionSettingsPkceEnum:
      description: PKCE の設定。
      enum:
        - auto
        - S256
        - plain
        - disabled
      type: string
    EventStreamCloudEventConnectionUpdatedObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum:
      description: SAMLアサーションの復号に使用するアルゴリズムプロファイル。
      enum:
        - v2026-1
      type: string
    EventStreamCloudEventConnectionUpdatedObject2OptionsIdpinitiatedClientProtocolEnum:
      description: デフォルトのアプリケーションとの通信に使用する応答プロトコル。
      enum:
        - oidc
        - samlp
        - wsfed
      type: string
    EventStreamCloudEventConnectionUpdatedObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum:
      description: SAMLアサーションの復号に使用するアルゴリズムプロファイル。
      enum:
        - v2026-1
      type: string
    EventStreamCloudEventConnectionUpdatedObject3OptionsIdpinitiatedClientProtocolEnum:
      description: デフォルトアプリケーションとの通信に使用するレスポンスプロトコル。
      enum:
        - oidc
        - samlp
        - wsfed
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsAttributeMapAttributes:
      additionalProperties: true
      description: 受信クレームのマッピング詳細を含むオブジェクト
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsAttributeMapMappingModeEnum:
      description: strategy=oidc の場合に受信クレームをマッピングする方法。
      enum:
        - bind_all
        - use_map
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject0OptionsConnectionSettingsPkceEnum:
      description: PKCE の設定。
      enum:
        - auto
        - S256
        - plain
        - disabled
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsAttributeMapAttributes:
      additionalProperties: true
      description: 受信クレームのマッピングの詳細を含むオブジェクト
      properties: {}
      type: object
    EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsAttributeMapMappingModeEnum:
      description: strategy=oktaの場合に、受信クレームをマッピングするために使用するメソッド。
      enum:
        - basic_profile
        - use_map
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject1OptionsConnectionSettingsPkceEnum:
      description: PKCE設定。
      enum:
        - auto
        - S256
        - plain
        - disabled
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsAssertionDecryptionSettingsAlgorithmProfileEnum:
      description: SAMLアサーションの復号に使用するアルゴリズムプロファイル。
      enum:
        - v2026-1
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject2OptionsIdpinitiatedClientProtocolEnum:
      description: デフォルトアプリケーションとの通信に使用する応答プロトコル。
      enum:
        - oidc
        - samlp
        - wsfed
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsAssertionDecryptionSettingsAlgorithmProfileEnum:
      description: SAMLアサーションの復号化に使用するアルゴリズムプロファイル。
      enum:
        - v2026-1
      type: string
    EventStreamCloudEventConnectionUpdatedPreviousObject3OptionsIdpinitiatedClientProtocolEnum:
      description: 既定のアプリケーションとの通信に使用するレスポンスプロトコル。
      enum:
        - oidc
        - samlp
        - wsfed
      type: string
  securitySchemes:
    bearerAuth:
      bearerFormat: jwt
      scheme: bearer
      type: http
    oAuth2ClientCredentials:
      flows:
        clientCredentials:
          scopes:
            create:actions: Create Actions
            create:agents: Create Agents
            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_acl_keys: Create Network ACL Keys
            create:network_acls: Create Network Acls
            create:organization_client_grants: Create Organization Client Grants
            create:organization_clients: Create Organization Client Associations
            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:organization_templates: Create Organization Templates
            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:agents: Delete Agents
            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: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_acl_keys: Delete Network ACL Keys
            delete:network_acls: Delete Network Acls
            delete:organization_client_grants: Delete Organization Client Grants
            delete:organization_clients: Delete Organization Client Associations
            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:agents: Read Agents
            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: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_acl_keys: Read Network ACL Keys
            read:network_acls: Read Network Acls
            read:organization_client_grants: Read Organization Client Grants
            read:organization_clients: Read Organization Client Associations
            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:organization_templates: Read Organization Templates
            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:agents: Update Agents
            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_clients: Update Organization Client Associations
            update:organization_connections: Update Organization Connections
            update:organization_discovery_domains: Update Organization Discovery Domains
            update:organization_templates: Update Organization Templates
            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

````