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

# Suscripción a Events

> Suscribirse a eventos mediante Server-Sent Events (SSE)

export const Scopes = ({scopes = []}) => {
  return <div>
      <div class="api-section-heading flex flex-col gap-y-4 w-full">
        <div class="flex items-baseline border-b pb-2.5 border-gray-100 dark:border-gray-800 w-full">
          <h4 class="api-section-heading-title flex-1 mb-0">Scopes</h4>
          <div class="flex items-center"></div>
        </div>
      </div>
      <div class="mt-4">
        <div class="space-y-4 whitespace-normal prose prose-sm prose-gray dark:prose-invert overflow-wrap-anywhere [&_*]:overflow-wrap-anywhere">
          <p class="whitespace-pre-line text-xs">
            {"Los alcances definen los permisos y los niveles de acceso para las solicitudes a la API y los tokens de autenticación."}
          </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="Ir al encabezado">
                ​
                <div class="w-6 h-6 rounded-md flex items-center justify-center shadow-sm text-gray-400 dark:text-white/50 dark:bg-background-dark dark:brightness-[1.35] dark:ring-1 dark:hover:brightness-150 bg-white ring-1 ring-gray-400/30 dark:ring-gray-700/25 hover:ring-gray-400/60 dark:hover:ring-white/20 group-focus/link:border-2 group-focus/link:border-primary dark:group-focus/link:border-primary-light">
                  <svg xmlns="http://www.w3.org/2000/svg" fill="gray" height="12px" viewBox="0 0 576 512">
                    <path d="M0 256C0 167.6 71.6 96 160 96h72c13.3 0 24 10.7 24 24s-10.7 24-24 24H160C98.1 144 48 194.1 48 256s50.1 112 112 112h72c13.3 0 24 10.7 24 24s-10.7 24-24 24H160C71.6 416 0 344.4 0 256zm576 0c0 88.4-71.6 160-160 160H344c-13.3 0-24-10.7-24-24s10.7-24 24-24h72c61.9 0 112-50.1 112-112s-50.1-112-112-112H344c-13.3 0-24-10.7-24-24s10.7-24 24-24h72c88.4 0 160 71.6 160 160zM184 232H392c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24z"></path>
                  </svg>
                </div>
              </a>
            </div>
            {scopes.map((scope, index) => {
    return <span class="flex items-center px-2 py-0.5 rounded-md bg-gray-100/50 dark:bg-white/5 text-gray-600 dark:text-gray-200 font-medium break-all" style={{
      lineHeight: "1rem",
      fontSize: "0.75rem",
      fontFamily: 'var(--font-jetbrains-mono), ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace'
    }} data-component-part="field-info-pill" key={index}>
                  {scope}
                </span>;
  })}
          </div>
        </div>
      </div>
    </div>;
};

export const ApiReleaseLifecycle = ({releaseLifecycle = "GA"}) => {
  const lifecycleMap = {
    ea: "Acceso Anticipado",
    ga: "Disponible Generalmente",
    deprecated: "Obsoleto",
    planned: "Planificado",
    beta: "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">Ciclo de Vida de la Versión</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="Navegar al encabezado">
                <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 es/docs/oas/management/v2/management-api-oas.json GET /events
openapi: 3.1.0
info:
  contact:
    name: Auth0 Support
    url: https://support.auth0.com
  description: Auth0 Management API v2.
  termsOfService: https://auth0.com/web-terms/
  title: Auth0 Management API
  version: '2.0'
servers:
  - url: https://{tenantDomain}/api/v2
    variables:
      tenantDomain:
        default: '{TENANT}.auth0.com'
        description: Dominio del Tenant de Auth0
security:
  - bearerAuth: []
externalDocs:
  description: Documentación de Auth0 Management API
  url: https://auth0.com/docs/api/management/v2/
paths:
  /events:
    get:
      tags:
        - events
      summary: Suscribirse a eventos mediante eventos enviados por el servidor (SSE)
      description: Suscribirse a eventos mediante Server-Sent Events (SSE)
      operationId: subscribe_events
      parameters:
        - description: >-
            Token opaco que representa la posición en el flujo. Si no se
            proporciona, el flujo comenzará con los eventos más recientes.
          in: query
          name: from
          schema:
            maxLength: 1024
            type: string
        - description: >-
            Marca de tiempo RFC-3339 que indica desde dónde comenzar a
            transmitir eventos. Solo debe usarse en la consulta inicial cuando
            puede que no haya un cursor disponible. Las solicitudes posteriores
            deben usar el cursor (from), ya que será más preciso.
          in: query
          name: from_timestamp
          schema:
            maxLength: 20
            type: string
        - description: >-
            Tipo(s) de evento que se deben escuchar. Especifíquelo varias veces
            para varios tipos (por ejemplo,
            ?event_type=user.created&event_type=user.updated). Si no se
            proporciona, se transmitirán todos los tipos de evento.
          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: Flujo de eventos establecido correctamente.
        '400':
          description: Formato de cursor no válido.
          x-description-1: Unsupported event type.
          x-description-2: >-
            Invalid request query string. The message will vary depending on the
            cause.
        '401':
          description: Token no válido.
          x-description-1: Invalid signature received for JSON Web Token validation.
          x-description-2: Client is not global.
        '403':
          description: >-
            Se alcanzó el número máximo de conexiones simultáneas al flujo de
            eventos. Cierre las conexiones existentes.
          x-description-1: 'Insufficient scope; expected any of: read:events.'
        '404':
          description: No encontrado
        '410':
          description: El cursor apunta a datos que ya no están disponibles en el flujo.
        '429':
          description: >-
            Demasiadas solicitudes. Revise los encabezados X-RateLimit-Limit,
            X-RateLimit-Remaining y X-RateLimit-Reset.
      security:
        - bearerAuth: []
        - oAuth2ClientCredentials:
            - read:events
      x-codeSamples: []
components:
  schemas:
    EventStreamSubscribeEventsEventTypeParam:
      description: >-
        Tipo(s) de evento que se deben escuchar. Especifíquelo varias veces para
        incluir varios tipos (por ejemplo,
        ?event_type=user.created&event_type=user.updated). Si no se proporciona,
        se transmitirán todos los tipos de eventos.
      items:
        $ref: '#/components/schemas/EventStreamSubscribeEventsEventTypeEnum'
      type: array
    EventStreamSubscribeEventsResponseContent:
      description: >-
        La carga útil JSON entregada en cada línea de datos de SSE. El SDK
        inyecta el campo type a partir del campo event de SSE. Se discrimina por
        type: un nombre de tipo de evento para los eventos, "error" para los
        errores y "offset-only" para los heartbeats de solo cursor.
      discriminator:
        mapping:
          error:
            $ref: '#/components/schemas/EventStreamCloudEventErrorMessage'
          group.created:
            $ref: '#/components/schemas/EventStreamCloudEventGroupCreated'
          group.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventGroupDeleted'
          group.member.added:
            $ref: '#/components/schemas/EventStreamCloudEventGroupMemberAdded'
          group.member.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventGroupMemberDeleted'
          group.role.assigned:
            $ref: '#/components/schemas/EventStreamCloudEventGroupRoleAssigned'
          group.role.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventGroupRoleDeleted'
          group.updated:
            $ref: '#/components/schemas/EventStreamCloudEventGroupUpdated'
          offset-only:
            $ref: '#/components/schemas/EventStreamCloudEventOffsetOnlyMessage'
          organization.connection.added:
            $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionAdded'
          organization.connection.removed:
            $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionRemoved'
          organization.connection.updated:
            $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionUpdated'
          organization.created:
            $ref: '#/components/schemas/EventStreamCloudEventOrgCreated'
          organization.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventOrgDeleted'
          organization.group.role.assigned:
            $ref: '#/components/schemas/EventStreamCloudEventOrgGroupRoleAssigned'
          organization.group.role.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventOrgGroupRoleDeleted'
          organization.member.added:
            $ref: '#/components/schemas/EventStreamCloudEventOrgMemberAdded'
          organization.member.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventOrgMemberDeleted'
          organization.member.role.assigned:
            $ref: '#/components/schemas/EventStreamCloudEventOrgMemberRoleAssigned'
          organization.member.role.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventOrgMemberRoleDeleted'
          organization.updated:
            $ref: '#/components/schemas/EventStreamCloudEventOrgUpdated'
          user.created:
            $ref: '#/components/schemas/EventStreamCloudEventUserCreated'
          user.deleted:
            $ref: '#/components/schemas/EventStreamCloudEventUserDeleted'
          user.updated:
            $ref: '#/components/schemas/EventStreamCloudEventUserUpdated'
        propertyName: type
        x-discriminator-context: protocol
      oneOf:
        - $ref: '#/components/schemas/EventStreamCloudEventGroupCreated'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupMemberAdded'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupMemberDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupRoleAssigned'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupRoleDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupUpdated'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionAdded'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionRemoved'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionUpdated'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgCreated'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgGroupRoleAssigned'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgGroupRoleDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgMemberAdded'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgMemberDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgMemberRoleAssigned'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgMemberRoleDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventOrgUpdated'
        - $ref: '#/components/schemas/EventStreamCloudEventUserCreated'
        - $ref: '#/components/schemas/EventStreamCloudEventUserDeleted'
        - $ref: '#/components/schemas/EventStreamCloudEventUserUpdated'
        - $ref: '#/components/schemas/EventStreamCloudEventErrorMessage'
        - $ref: '#/components/schemas/EventStreamCloudEventOffsetOnlyMessage'
    EventStreamSubscribeEventsEventTypeEnum:
      enum:
        - group.created
        - group.deleted
        - group.member.added
        - group.member.deleted
        - group.role.assigned
        - group.role.deleted
        - group.updated
        - organization.connection.added
        - organization.connection.removed
        - organization.connection.updated
        - organization.created
        - organization.deleted
        - organization.group.role.assigned
        - organization.group.role.deleted
        - organization.member.added
        - organization.member.deleted
        - organization.member.role.assigned
        - organization.member.role.deleted
        - organization.updated
        - user.created
        - user.deleted
        - user.updated
      type: string
    EventStreamCloudEventErrorMessage:
      additionalProperties: false
      description: >-
        Un mensaje de error entregado a través del flujo SSE. El flujo se cierra
        después de este mensaje.
      properties:
        error:
          $ref: '#/components/schemas/EventStreamCloudEventErrorDetail'
        type:
          $ref: '#/components/schemas/EventStreamCloudEventErrorMessageTypeEnum'
      required:
        - type
        - error
      type: object
    EventStreamCloudEventGroupCreated:
      additionalProperties: false
      description: Mensaje SSE para group.created.
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedCloudEvent'
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventGroupDeleted:
      additionalProperties: false
      description: Mensaje SSE para group.deleted.
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedCloudEvent'
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudarlo.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventGroupMemberAdded:
      additionalProperties: false
      description: Mensaje SSE para group.member.added.
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventGroupMemberAddedCloudEvent'
        offset:
          description: >-
            Cursor opaque que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventGroupMemberAddedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventGroupMemberDeleted:
      additionalProperties: false
      description: Mensaje SSE para group.member.deleted.
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedCloudEvent
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventGroupMemberDeletedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventGroupRoleAssigned:
      additionalProperties: false
      description: Mensaje SSE para group.role.assigned.
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedCloudEvent
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventGroupRoleAssignedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventGroupRoleDeleted:
      additionalProperties: false
      description: Mensaje de SSE para group.role.deleted.
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventGroupRoleDeletedCloudEvent'
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventGroupRoleDeletedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventGroupUpdated:
      additionalProperties: false
      description: Mensaje SSE para group.updated.
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedCloudEvent'
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudarlo.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOffsetOnlyMessage:
      additionalProperties: false
      description: >-
        Un mensaje heartbeat solo de offset. Hace avanzar el cursor sin entregar
        ningún evento.
      properties:
        offset:
          description: >-
            Cursor opaco que representa la posición más reciente en el flujo.
            Páselo como parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventOffsetOnlyMessageTypeEnum'
      required:
        - type
        - offset
      type: object
    EventStreamCloudEventOrgConnectionAdded:
      additionalProperties: false
      description: Mensaje SSE para organization.connection.added.
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedCloudEvent
        offset:
          description: >-
            Cursor opaco que representa una posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionAddedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgConnectionRemoved:
      additionalProperties: false
      description: Mensaje SSE para organization.connection.removed.
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionRemovedCloudEvent
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionRemovedTypeEnum
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgConnectionUpdated:
      additionalProperties: false
      description: Mensaje SSE para organization.connection.updated.
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedCloudEvent
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedTypeEnum
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgCreated:
      additionalProperties: false
      description: Mensaje SSE para organization.created.
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventOrgCreatedCloudEvent'
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventOrgCreatedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgDeleted:
      additionalProperties: false
      description: Mensaje SSE para organization.deleted.
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventOrgDeletedCloudEvent'
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventOrgDeletedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgGroupRoleAssigned:
      additionalProperties: false
      description: Mensaje SSE para organization.group.role.assigned.
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedCloudEvent
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedTypeEnum
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgGroupRoleDeleted:
      additionalProperties: false
      description: Mensaje SSE para organization.group.role.deleted.
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedCloudEvent
        offset:
          description: >-
            Cursor opaque que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedTypeEnum
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgMemberAdded:
      additionalProperties: false
      description: Mensaje SSE para organization.member.added.
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberAddedCloudEvent'
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberAddedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgMemberDeleted:
      additionalProperties: false
      description: Mensaje SSE para organization.member.deleted.
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberDeletedCloudEvent'
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Pásele el
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberDeletedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgMemberRoleAssigned:
      additionalProperties: false
      description: Mensaje SSE para organization.member.role.assigned.
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedCloudEvent
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Pásele el
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedTypeEnum
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgMemberRoleDeleted:
      additionalProperties: false
      description: Mensaje de SSE para organization.member.role.deleted.
      properties:
        event:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedCloudEvent
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedTypeEnum
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventOrgUpdated:
      additionalProperties: false
      description: Mensaje SSE para organization.updated.
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventOrgUpdatedCloudEvent'
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventOrgUpdatedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventUserCreated:
      additionalProperties: false
      description: Mensaje SSE para user.created.
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventUserCreatedCloudEvent'
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventUserCreatedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventUserDeleted:
      additionalProperties: false
      description: Mensaje SSE para user.deleted.
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventUserDeletedCloudEvent'
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventUserDeletedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventUserUpdated:
      additionalProperties: false
      description: Mensaje SSE para user.updated.
      properties:
        event:
          $ref: '#/components/schemas/EventStreamCloudEventUserUpdatedCloudEvent'
        offset:
          description: >-
            Cursor opaco que representa la posición en el flujo. Páselo como
            parámetro de consulta `from` para reanudar.
          type: string
        type:
          $ref: '#/components/schemas/EventStreamCloudEventUserUpdatedTypeEnum'
      required:
        - type
        - offset
        - event
      type: object
    EventStreamCloudEventErrorDetail:
      additionalProperties: false
      description: Detalles del error.
      properties:
        code:
          $ref: '#/components/schemas/EventStreamCloudEventErrorCodeEnum'
        message:
          description: Mensaje de error legible para humanos.
          type: string
        offset:
          description: >-
            El cursor en el momento del error (cuando esté disponible). Se puede
            usar para reanudar desde esta posición.
          type: string
      required:
        - code
        - message
      type: object
    EventStreamCloudEventErrorMessageTypeEnum:
      description: >-
        Identifica esto como un mensaje de error (inyectado desde el campo de
        evento SSE).
      enum:
        - error
      type: string
    EventStreamCloudEventGroupCreatedCloudEvent:
      additionalProperties: false
      description: Representa un evento que se produce cuando se crea un grupo.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que usa el evento.
          type: string
        time:
          description: >-
            Una marca de tiempo ISO-8601 que indica cuándo ocurrió realmente el
            evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupCreatedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventGroupCreatedTypeEnum:
      description: El tipo de evento (inyectado desde el campo event de SSE).
      enum:
        - group.created
      type: string
    EventStreamCloudEventGroupDeletedCloudEvent:
      additionalProperties: false
      description: Representa un evento que ocurre cuando se elimina un grupo.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: El origen del evento. Tendrá la forma 'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que utiliza el evento.
          type: string
        time:
          description: >-
            Una marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente
            el evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventGroupDeletedTypeEnum:
      description: El tipo de evento (inyectado desde el campo event de SSE).
      enum:
        - group.deleted
      type: string
    EventStreamCloudEventGroupMemberAddedCloudEvent:
      additionalProperties: false
      description: Representa un evento que ocurre cuando se añade un miembro a un grupo.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que utiliza el evento.
          type: string
        time:
          description: >-
            Una marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente
            el evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventGroupMemberAddedTypeEnum:
      description: El tipo de evento (inyectado desde el campo de evento de SSE).
      enum:
        - group.member.added
      type: string
    EventStreamCloudEventGroupMemberDeletedCloudEvent:
      additionalProperties: false
      description: >-
        Representa un evento que se produce cuando se elimina un miembro de un
        grupo.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único para el evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que usa el evento.
          type: string
        time:
          description: >-
            Una marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente
            el evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventGroupMemberDeletedTypeEnum:
      description: El tipo de evento (inyectado desde el campo event de SSE).
      enum:
        - group.member.deleted
      type: string
    EventStreamCloudEventGroupRoleAssignedCloudEvent:
      additionalProperties: false
      description: Representa un evento que ocurre cuando se asigna un rol a un grupo.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que utiliza el evento.
          type: string
        time:
          description: >-
            Una marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente
            el evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventGroupRoleAssignedTypeEnum:
      description: El tipo de evento (inyectado desde el campo de evento de SSE).
      enum:
        - group.role.assigned
      type: string
    EventStreamCloudEventGroupRoleDeletedCloudEvent:
      additionalProperties: false
      description: Representa un evento que ocurre cuando se quita un rol de un grupo.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único para el evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que usa el evento.
          type: string
        time:
          description: >-
            Marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente el
            evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventGroupRoleDeletedTypeEnum:
      description: El tipo de evento (inyectado desde el campo event de SSE).
      enum:
        - group.role.deleted
      type: string
    EventStreamCloudEventGroupUpdatedCloudEvent:
      additionalProperties: false
      description: Representa un evento que ocurre cuando se actualiza un grupo.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único para el evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que usa el evento.
          type: string
        time:
          description: >-
            Marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente el
            evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupUpdatedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventGroupUpdatedTypeEnum:
      description: El tipo de evento (inyectado desde el campo `event` de SSE).
      enum:
        - group.updated
      type: string
    EventStreamCloudEventOffsetOnlyMessageTypeEnum:
      description: >-
        Identifica esto como un mensaje heartbeat solo de offset (inyectado
        desde el campo `event` de SSE).
      enum:
        - offset-only
      type: string
    EventStreamCloudEventOrgConnectionAddedCloudEvent:
      additionalProperties: false
      description: >-
        Representa un evento que ocurre cuando se agrega una conexión a una
        organización.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: El origen del evento. Tendrá la forma 'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que utiliza el evento.
          type: string
        time:
          description: >-
            Una marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente
            el evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgConnectionAddedTypeEnum:
      description: El tipo de evento (inyectado desde el campo event de SSE).
      enum:
        - organization.connection.added
      type: string
    EventStreamCloudEventOrgConnectionRemovedCloudEvent:
      additionalProperties: false
      description: >-
        Representa un evento que ocurre cuando se elimina una conexión de una
        organización.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que utiliza el evento.
          type: string
        time:
          description: >-
            Una marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente
            el evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionRemovedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgConnectionRemovedTypeEnum:
      description: El tipo de evento (inyectado desde el campo event de SSE).
      enum:
        - organization.connection.removed
      type: string
    EventStreamCloudEventOrgConnectionUpdatedCloudEvent:
      additionalProperties: false
      description: >-
        Representa un evento que ocurre cuando se actualiza una conexión de una
        organización.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que utiliza el evento.
          type: string
        time:
          description: >-
            Una marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente
            el evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgConnectionUpdatedTypeEnum:
      description: El tipo de evento (inyectado desde el campo event de SSE).
      enum:
        - organization.connection.updated
      type: string
    EventStreamCloudEventOrgCreatedCloudEvent:
      additionalProperties: false
      description: Representa un evento que ocurre cuando se crea una organización.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que usa el evento.
          type: string
        time:
          description: >-
            Una marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente
            el evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgCreatedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgCreatedTypeEnum:
      description: El tipo de evento (inyectado desde el campo de evento de SSE).
      enum:
        - organization.created
      type: string
    EventStreamCloudEventOrgDeletedCloudEvent:
      additionalProperties: false
      description: Representa un evento que ocurre cuando se elimina una organización.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: El origen del evento. Tendrá la forma 'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que usa el evento.
          type: string
        time:
          description: >-
            Una marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente
            el evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgDeletedTypeEnum:
      description: El tipo de evento (inyectado desde el campo de evento de SSE).
      enum:
        - organization.deleted
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedCloudEvent:
      additionalProperties: false
      description: >-
        Representa un evento que ocurre cuando se asigna un rol a un grupo de la
        organización.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: El origen del evento. Tendrá la forma 'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que usa el evento.
          type: string
        time:
          description: >-
            Una marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente
            el evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedTypeEnum:
      description: El tipo de evento (inyectado desde el campo de evento de SSE).
      enum:
        - organization.group.role.assigned
      type: string
    EventStreamCloudEventOrgGroupRoleDeletedCloudEvent:
      additionalProperties: false
      description: >-
        Representa un evento que se produce cuando se elimina un rol de un grupo
        de organización.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: El origen del evento. Tendrá la forma 'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que usa el evento.
          type: string
        time:
          description: >-
            Marca temporal ISO-8601 que indica cuándo se produjo físicamente el
            evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedTypeEnum:
      description: El tipo de evento (inyectado desde el campo de evento de SSE).
      enum:
        - organization.group.role.deleted
      type: string
    EventStreamCloudEventOrgMemberAddedCloudEvent:
      additionalProperties: false
      description: >-
        Representa un evento que ocurre cuando se agrega un miembro a una
        organización.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 por el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que utiliza el evento.
          type: string
        time:
          description: >-
            Una marca temporal ISO 8601 que indica cuándo ocurrió físicamente el
            evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberAddedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgMemberAddedTypeEnum:
      description: El tipo de evento (inyectado desde el campo de evento SSE).
      enum:
        - organization.member.added
      type: string
    EventStreamCloudEventOrgMemberDeletedCloudEvent:
      additionalProperties: false
      description: >-
        Representa un evento que se produce cuando se elimina un miembro de una
        organización.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: >-
            El ID del flujo de eventos de Auth0 del flujo en el que se entregó
            el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que utiliza el evento.
          type: string
        time:
          description: >-
            Una marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente
            el evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgMemberDeletedTypeEnum:
      description: El tipo de evento (inyectado desde el campo de evento SSE).
      enum:
        - organization.member.deleted
      type: string
    EventStreamCloudEventOrgMemberRoleAssignedCloudEvent:
      additionalProperties: false
      description: >-
        Representa un evento que se produce cuando se agrega un miembro a una
        organización.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que utiliza el evento.
          type: string
        time:
          description: >-
            Una marca de tiempo ISO-8601 que indica cuándo ocurrió realmente el
            evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedTypeEnum:
      description: El tipo de evento (inyectado desde el campo de evento de SSE).
      enum:
        - organization.member.role.assigned
      type: string
    EventStreamCloudEventOrgMemberRoleDeletedCloudEvent:
      additionalProperties: false
      description: >-
        Representa un evento que ocurre cuando se elimina un miembro de una
        organización.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que utiliza el evento.
          type: string
        time:
          description: >-
            Una marca de tiempo ISO-8601 que indica cuándo ocurrió realmente el
            evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedTypeEnum:
      description: El tipo de evento (inyectado desde el campo de evento de SSE).
      enum:
        - organization.member.role.deleted
      type: string
    EventStreamCloudEventOrgUpdatedCloudEvent:
      additionalProperties: false
      description: Representa un evento que ocurre cuando se actualiza una organización.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que usa el evento.
          type: string
        time:
          description: >-
            Marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente el
            evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgUpdatedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventOrgUpdatedTypeEnum:
      description: El tipo de evento (inyectado desde el campo de evento de SSE).
      enum:
        - organization.updated
      type: string
    EventStreamCloudEventUserCreatedCloudEvent:
      additionalProperties: false
      description: Representa un evento que ocurre cuando se crea un usuario.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El id del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que usa el evento.
          type: string
        time:
          description: >-
            Marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente el
            evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventUserCreatedTypeEnum:
      description: El tipo de evento (inyectado desde el campo de evento de SSE).
      enum:
        - user.created
      type: string
    EventStreamCloudEventUserDeletedCloudEvent:
      additionalProperties: false
      description: Representa un evento que ocurre cuando se elimina un usuario.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que usa el evento.
          type: string
        time:
          description: >-
            Una marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente
            el evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventUserDeletedTypeEnum:
      description: El tipo de evento (inyectado desde el campo de evento de SSE).
      enum:
        - user.deleted
      type: string
    EventStreamCloudEventUserUpdatedCloudEvent:
      additionalProperties: false
      description: Representa un evento que ocurre cuando se actualiza un usuario.
      properties:
        a0purpose:
          $ref: '#/components/schemas/EventStreamCloudEventA0PurposeEnum'
        a0stream:
          description: El ID del flujo de eventos de Auth0 en el que se entregó el evento.
          pattern: est_[a-zA-Z0-9]{16}
          type: string
        a0tenant:
          description: El ID del inquilino de Auth0 al que está asociado el evento.
          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: Un identificador único del evento.
          pattern: evt_[a-zA-Z0-9]{16}
          type: string
        source:
          description: >-
            El origen del evento. Tendrá el formato
            'urn:auth0:<tenant>.<domain>'.
          type: string
        specversion:
          description: La versión de la especificación CloudEvents que utiliza el evento.
          type: string
        time:
          description: >-
            Una marca de tiempo ISO-8601 que indica cuándo ocurrió físicamente
            el evento.
          format: date-time
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedCloudEventTypeEnum
      required:
        - specversion
        - type
        - source
        - id
        - time
        - data
        - a0tenant
        - a0stream
      type: object
    EventStreamCloudEventUserUpdatedTypeEnum:
      description: Tipo de evento (inyectado desde el campo event de SSE).
      enum:
        - user.updated
      type: string
    EventStreamCloudEventErrorCodeEnum:
      description: Código de error legible por máquina.
      enum:
        - invalid_cursor
        - cursor_expired
        - timeout
        - payload_too_large
        - processing_error
        - connection_timeout
      type: string
    EventStreamCloudEventA0PurposeEnum:
      description: >-
        La finalidad de este evento. Normalmente, este campo solo aparecerá en
        casos especiales,

        como el envío de un evento de prueba. En los eventos normales, este
        campo se omitirá.
      enum:
        - test
      type: string
    EventStreamCloudEventGroupCreatedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedObject'
      required:
        - object
      type: object
    EventStreamCloudEventGroupCreatedCloudEventTypeEnum:
      description: El tipo de evento que se produjo.
      enum:
        - group.created
      type: string
    EventStreamCloudEventGroupDeletedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedObject'
      required:
        - object
      type: object
    EventStreamCloudEventGroupDeletedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - group.deleted
      type: string
    EventStreamCloudEventGroupMemberAddedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupMemberAddedObject'
      required:
        - object
      type: object
    EventStreamCloudEventGroupMemberAddedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - group.member.added
      type: string
    EventStreamCloudEventGroupMemberDeletedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupMemberDeletedObject'
      required:
        - object
      type: object
    EventStreamCloudEventGroupMemberDeletedCloudEventTypeEnum:
      description: El tipo de evento que se produjo.
      enum:
        - group.member.deleted
      type: string
    EventStreamCloudEventGroupRoleAssignedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupRoleAssignedObject'
      required:
        - object
      type: object
    EventStreamCloudEventGroupRoleAssignedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - group.role.assigned
      type: string
    EventStreamCloudEventGroupRoleDeletedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupRoleDeletedObject'
      required:
        - object
      type: object
    EventStreamCloudEventGroupRoleDeletedCloudEventTypeEnum:
      description: El tipo del evento ocurrido.
      enum:
        - group.role.deleted
      type: string
    EventStreamCloudEventGroupUpdatedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedObject'
      required:
        - object
      type: object
    EventStreamCloudEventGroupUpdatedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - group.updated
      type: string
    EventStreamCloudEventOrgConnectionAddedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionAddedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgConnectionAddedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - organization.connection.added
      type: string
    EventStreamCloudEventOrgConnectionRemovedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionRemovedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgConnectionRemovedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - organization.connection.removed
      type: string
    EventStreamCloudEventOrgConnectionUpdatedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgConnectionUpdatedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgConnectionUpdatedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - organization.connection.updated
      type: string
    EventStreamCloudEventOrgCreatedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgCreatedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgCreatedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - organization.created
      type: string
    EventStreamCloudEventOrgDeletedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgDeletedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgDeletedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - organization.deleted
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - organization.group.role.assigned
      type: string
    EventStreamCloudEventOrgGroupRoleDeletedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedCloudEventTypeEnum:
      description: El tipo de evento que se ha producido.
      enum:
        - organization.group.role.deleted
      type: string
    EventStreamCloudEventOrgMemberAddedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberAddedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgMemberAddedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - organization.member.added
      type: string
    EventStreamCloudEventOrgMemberDeletedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberDeletedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgMemberDeletedCloudEventTypeEnum:
      description: El tipo de evento que se ha producido.
      enum:
        - organization.member.deleted
      type: string
    EventStreamCloudEventOrgMemberRoleAssignedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedObject
      required:
        - object
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - organization.member.role.assigned
      type: string
    EventStreamCloudEventOrgMemberRoleDeletedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - organization.member.role.deleted
      type: string
    EventStreamCloudEventOrgUpdatedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventOrgUpdatedObject'
      required:
        - object
      type: object
    EventStreamCloudEventOrgUpdatedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - organization.updated
      type: string
    EventStreamCloudEventUserCreatedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventUserCreatedObject'
      required:
        - object
      type: object
    EventStreamCloudEventUserCreatedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - user.created
      type: string
    EventStreamCloudEventUserDeletedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventUserDeletedObject'
      required:
        - object
      type: object
    EventStreamCloudEventUserDeletedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - user.deleted
      type: string
    EventStreamCloudEventUserUpdatedData:
      additionalProperties: false
      description: La carga útil del evento.
      properties:
        context:
          $ref: '#/components/schemas/EventStreamCloudEventContext'
        object:
          $ref: '#/components/schemas/EventStreamCloudEventUserUpdatedObject'
      required:
        - object
      type: object
    EventStreamCloudEventUserUpdatedCloudEventTypeEnum:
      description: El tipo de evento que ocurrió.
      enum:
        - user.updated
      type: string
    EventStreamCloudEventContext:
      additionalProperties: false
      description: >-
        Información sobre el contexto en el que se produjo el evento. Puede
        incluir, por ejemplo,

        detalles de la solicitud HTTP, información del cliente, información de
        la conexión, etc.


        Nota: Es posible que este campo no esté presente en todos los eventos,
        según el tipo de evento y el

        contexto en el que se generó.
      properties:
        client:
          $ref: '#/components/schemas/EventStreamCloudEventContextClient'
        connection:
          $ref: '#/components/schemas/EventStreamCloudEventContextConnection'
        request:
          $ref: '#/components/schemas/EventStreamCloudEventContextRequest'
        tenant:
          $ref: '#/components/schemas/EventStreamCloudEventContextTenant'
      required:
        - tenant
      type: object
    EventStreamCloudEventGroupCreatedObject:
      description: El contenido del evento.
      oneOf:
        - $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedObject0'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedObject1'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupCreatedObject2'
    EventStreamCloudEventGroupDeletedObject:
      description: El contenido del evento.
      oneOf:
        - $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedObject0'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedObject1'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupDeletedObject2'
    EventStreamCloudEventGroupMemberAddedObject:
      additionalProperties: false
      description: El contenido del evento.
      properties:
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectGroup
        member:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectMember
      required:
        - group
        - member
      type: object
    EventStreamCloudEventGroupMemberDeletedObject:
      additionalProperties: false
      description: El contenido del evento.
      properties:
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectGroup
        member:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectMember
      required:
        - group
        - member
      type: object
    EventStreamCloudEventGroupRoleAssignedObject:
      additionalProperties: false
      description: El contenido del evento.
      properties:
        created_at:
          description: La hora a la que se asignó el rol al grupo.
          format: date-time
          type: string
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectRole
      required:
        - group
        - role
        - created_at
      type: object
    EventStreamCloudEventGroupRoleDeletedObject:
      additionalProperties: false
      description: El contenido del evento.
      properties:
        deleted_at:
          description: La hora a la que se quitó el rol del grupo.
          format: date-time
          type: string
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup
        role:
          $ref: '#/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectRole'
      required:
        - group
        - role
        - deleted_at
      type: object
    EventStreamCloudEventGroupUpdatedObject:
      description: El contenido del evento.
      oneOf:
        - $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedObject0'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedObject1'
        - $ref: '#/components/schemas/EventStreamCloudEventGroupUpdatedObject2'
    EventStreamCloudEventOrgConnectionAddedObject:
      additionalProperties: false
      description: El contenido del evento.
      properties:
        assign_membership_on_login:
          description: >-
            Cuando es `true`, a todos los usuarios que inicien sesión con esta
            conexión se les otorgará automáticamente membresía

            en la organización. Cuando es `false`, se debe otorgar membresía a
            los usuarios en la organización antes de

            iniciar sesión con esta conexión.
          type: boolean
        connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedObjectConnection
        is_signup_enabled:
          description: >-
            Determina si el registro de organizaciones debe estar habilitado
            para esta conexión de organización.

            Solo se aplica a las conexiones de base de datos.
          type: boolean
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionAddedObjectOrganization
        show_as_button:
          description: >-
            Determina si una conexión debe mostrarse en la pantalla de inicio de
            sesión de esta organización.

            Solo se aplica a las conexiones empresariales.
          type: boolean
      required:
        - organization
        - connection
      type: object
    EventStreamCloudEventOrgConnectionRemovedObject:
      additionalProperties: false
      description: El contenido del evento.
      properties:
        connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionRemovedObjectConnection
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionRemovedObjectOrganization
      required:
        - organization
        - connection
      type: object
    EventStreamCloudEventOrgConnectionUpdatedObject:
      additionalProperties: false
      description: El contenido del evento.
      properties:
        assign_membership_on_login:
          description: >-
            Cuando es true, todos los usuarios que inicien sesión con esta
            conexión recibirán automáticamente membresía en la organización.

            Cuando es false, se debe conceder membresía a los usuarios en la
            organización antes de

            iniciar sesión con esta conexión.
          type: boolean
        connection:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedObjectConnection
        is_signup_enabled:
          description: >-
            Determina si se debe habilitar el registro en la organización para
            esta conexión de organización.

            Solo se aplica a conexiones de base de datos.
          type: boolean
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgConnectionUpdatedObjectOrganization
        show_as_button:
          description: >-
            Determina si una conexión debe mostrarse en la pantalla de login de
            esta organización.

            Solo se aplica a conexiones empresariales.
          type: boolean
      required:
        - organization
        - connection
      type: object
    EventStreamCloudEventOrgCreatedObject:
      additionalProperties: false
      description: El contenido del evento.
      properties:
        branding:
          $ref: '#/components/schemas/EventStreamCloudEventOrgCreatedObjectBranding'
        display_name:
          description: >-
            Si se establece, el nombre que se mostrará a los usuarios finales
            para esta organización en cualquier interacción con ellos.
          type: string
        id:
          description: ID de la organización.
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        metadata:
          $ref: '#/components/schemas/EventStreamCloudEventOrgCreatedObjectMetadata'
        name:
          description: >-
            El identificador legible para humanos de la organización que los
            usuarios finales usarán para dirigirse a su organización en la
            aplicación.
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgDeletedObject:
      additionalProperties: false
      description: El contenido del evento.
      properties:
        display_name:
          description: >-
            Si se establece, es el nombre que se mostrará a los usuarios finales
            para esta organización en cualquier interacción con ellos.
          type: string
        id:
          description: ID de la organización.
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        metadata:
          $ref: '#/components/schemas/EventStreamCloudEventOrgDeletedObjectMetadata'
        name:
          description: >-
            El identificador legible para humanos de la organización que se
            usará para dirigir a los usuarios finales a su organización en su
            aplicación.
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedObject:
      additionalProperties: false
      description: El contenido del evento.
      properties:
        created_at:
          description: La hora a la que se asignó el rol al grupo de la organización.
          format: date-time
          type: string
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectGroup
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectOrganization
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectRole
      required:
        - organization
        - role
        - group
        - created_at
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedObject:
      additionalProperties: false
      description: El contenido del evento.
      properties:
        deleted_at:
          description: La hora a la que se eliminó el rol del grupo en la organización.
          format: date-time
          type: string
        group:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObjectGroup
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObjectOrganization
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObjectRole
      required:
        - organization
        - role
        - group
        - deleted_at
      type: object
    EventStreamCloudEventOrgMemberAddedObject:
      additionalProperties: false
      description: El contenido del evento.
      properties:
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberAddedObjectOrganization
        user:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberAddedObjectUser'
      required:
        - organization
        - user
      type: object
    EventStreamCloudEventOrgMemberDeletedObject:
      additionalProperties: false
      description: El contenido del evento.
      properties:
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberDeletedObjectOrganization
        user:
          $ref: '#/components/schemas/EventStreamCloudEventOrgMemberDeletedObjectUser'
      required:
        - organization
        - user
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedObject:
      additionalProperties: false
      description: El contenido del evento.
      properties:
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedObjectOrganization
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedObjectRole
        user:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleAssignedObjectUser
      required:
        - organization
        - user
        - role
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedObject:
      additionalProperties: false
      description: El contenido del evento.
      properties:
        organization:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedObjectOrganization
        role:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedObjectRole
        user:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedObjectUser
      required:
        - organization
        - user
        - role
      type: object
    EventStreamCloudEventOrgUpdatedObject:
      additionalProperties: false
      description: El contenido del evento.
      properties:
        branding:
          $ref: '#/components/schemas/EventStreamCloudEventOrgUpdatedObjectBranding'
        display_name:
          description: >-
            Si se establece, el nombre que se mostrará a los usuarios finales
            para esta organización en cualquier interacción con ellos.
          type: string
        id:
          description: ID de la organización.
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        metadata:
          $ref: '#/components/schemas/EventStreamCloudEventOrgUpdatedObjectMetadata'
        name:
          description: >-
            El identificador legible para humanos de la organización que los
            usuarios finales usarán para dirigirse a su organización en su
            aplicación.
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventUserCreatedObject:
      additionalProperties: true
      description: El contenido del evento.
      properties:
        app_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectAppMetadata
        blocked:
          description: >-
            Si este usuario fue bloqueado por un administrador (true) o no
            (false).
          type: boolean
        created_at:
          description: La fecha y hora en que se creó esta entidad (formato ISO_8601).
          format: date-time
          type: string
        email:
          description: La dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Si esta dirección de correo electrónico está verificada (true) o no
            (false).
          type: boolean
        family_name:
          description: El apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: El nombre de pila o primer nombre de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        identities:
          description: >-
            Array de objetos de identidad de usuario cuando las cuentas están
            vinculadas.
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItem
          type: array
        last_ip:
          description: La última dirección IP desde la que este usuario inició sesión.
          type: string
        last_login:
          description: >-
            La última fecha y hora en que este usuario inició sesión (formato
            ISO_8601).
          format: date-time
          type: string
        logins_count:
          description: El número total de inicios de sesión de este usuario.
          type: integer
        multifactor:
          description: >-
            Lista de proveedores de autenticación multifactor en los que este
            usuario se ha inscrito.
          items:
            type: string
          type: array
        name:
          description: El nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        nickname:
          description: El apodo o alias preferido de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: El número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: Si este número de teléfono está verificado (true) o no (false).
          type: boolean
        picture:
          description: URL de la imagen, foto o avatar de este usuario.
          format: uri
          type: string
        updated_at:
          description: >-
            La fecha y hora en que esta entidad se actualizó o modificó por
            última vez (formato ISO_8601).
          format: date-time
          type: string
        user_id:
          description: Id del usuario que puede usarse al interactuar con otras API.
          type: string
        user_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectUserMetadata
        username:
          description: El username de este usuario.
          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: El contenido del evento.
      properties:
        app_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectAppMetadata
        blocked:
          description: >-
            Indica si este usuario fue bloqueado por un administrador (true) o
            no (false).
          type: boolean
        created_at:
          description: Fecha y hora en que se creó esta entidad (formato ISO_8601).
          format: date-time
          type: string
        deleted_at:
          description: Fecha y hora en que se eliminó esta entidad (formato ISO_8601).
          format: date-time
          type: string
        email:
          description: La dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Indica si esta dirección de correo electrónico está verificada
            (true) o no (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        identities:
          description: >-
            Array de objetos de identidad de usuario cuando las cuentas están
            vinculadas.
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItem
          type: array
        last_ip:
          description: Última dirección IP desde la que este usuario inició sesión.
          type: string
        last_login:
          description: >-
            Última fecha y hora en que este usuario inició sesión (formato
            ISO_8601).
          format: date-time
          type: string
        logins_count:
          description: Número total de inicios de sesión de este usuario.
          type: integer
        multifactor:
          description: >-
            Lista de proveedores de autenticación multifactor en los que este
            usuario se ha inscrito.
          items:
            type: string
          type: array
        name:
          description: Nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        nickname:
          description: Apodo o alias preferido de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: El número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono ha sido verificado (true) o no
            (false).
          type: boolean
        picture:
          description: URL de la imagen, foto o avatar de este usuario.
          format: uri
          type: string
        updated_at:
          description: >-
            Fecha y hora en que esta entidad se actualizó o modificó por última
            vez (formato ISO_8601).
          format: date-time
          type: string
        user_id:
          description: ID del usuario que se puede usar al interactuar con otras API.
          type: string
        user_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectUserMetadata
        username:
          description: El username de este usuario.
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      required:
        - user_id
        - created_at
        - updated_at
        - identities
        - deleted_at
      type: object
    EventStreamCloudEventUserUpdatedObject:
      additionalProperties: true
      description: El contenido del evento.
      properties:
        app_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectAppMetadata
        blocked:
          description: >-
            Indica si este usuario fue bloqueado por un administrador (true) o
            no (false).
          type: boolean
        created_at:
          description: Fecha y hora en que se creó esta entidad (formato ISO_8601).
          format: date-time
          type: string
        email:
          description: Dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Indica si esta dirección de correo electrónico está verificada
            (true) o no (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila, primer nombre o nombre propio de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        identities:
          description: >-
            Matriz de objetos de identidad de usuario cuando las cuentas están
            vinculadas.
          items:
            $ref: >-
              #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItem
          type: array
        last_ip:
          description: Última dirección IP desde la que este usuario inició sesión.
          type: string
        last_login:
          description: >-
            Última fecha y hora en que este usuario inició sesión (formato
            ISO_8601).
          format: date-time
          type: string
        logins_count:
          description: Número total de inicios de sesión que ha realizado este usuario.
          type: integer
        multifactor:
          description: >-
            Lista de proveedores de autenticación multifactor en los que este
            usuario se ha inscrito.
          items:
            type: string
          type: array
        name:
          description: Nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        nickname:
          description: Apodo o alias preferido de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: Número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono ha sido verificado (true) o no
            (false).
          type: boolean
        picture:
          description: URL de la imagen, foto o avatar de este usuario.
          format: uri
          type: string
        updated_at:
          description: >-
            Fecha y hora de la última actualización o modificación de esta
            entidad (formato ISO_8601).
          format: date-time
          type: string
        user_id:
          description: ID del usuario que puede usarse al interactuar con otras API.
          type: string
        user_metadata:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectUserMetadata
        username:
          description: Username de este usuario.
          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: El cliente de OAuth que solicita o presenta un token de acceso.
      properties:
        id:
          description: El identificador del cliente.
          type: string
        metadata:
          $ref: '#/components/schemas/EventStreamCloudEventContextClientMetadata'
        name:
          description: El nombre del cliente.
          type: string
      required:
        - id
        - name
        - metadata
      type: object
    EventStreamCloudEventContextConnection:
      additionalProperties: false
      description: >-
        La Conexión de Auth0 utilizada para la transacción de autenticación que
        generó el evento.
      properties:
        id:
          description: El ID de la conexión.
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        name:
          description: El nombre de la conexión.
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        strategy:
          description: La estrategia de autenticación implementada por la conexión.
          type: string
      required:
        - id
        - name
        - strategy
      type: object
    EventStreamCloudEventContextRequest:
      additionalProperties: false
      description: Una solicitud HTTP.
      properties:
        custom_domain:
          description: El dominio personalizado utilizado en la solicitud (si corresponde).
          type: string
        geo:
          $ref: '#/components/schemas/EventStreamCloudEventContextRequestGeo'
        hostname:
          description: El nombre de host al que se dirige la solicitud.
          type: string
        ip:
          description: La dirección IP de origen de la solicitud.
          type: string
        method:
          description: El método HTTP utilizado para la solicitud.
          type: string
        user_agent:
          description: El valor del encabezado `User-Agent`.
          type: string
      required:
        - geo
        - hostname
        - ip
        - method
        - user_agent
      type: object
    EventStreamCloudEventContextTenant:
      additionalProperties: false
      description: Referencia a un inquilino en el contexto del evento
      properties:
        tenant_id:
          description: Identificador único del inquilino generado por máquina.
          pattern: ten_[a-zA-Z0-9]{16}
          type: string
      required:
        - tenant_id
      type: object
    EventStreamCloudEventGroupCreatedObject0:
      additionalProperties: false
      description: Representa una entidad de grupo de conexión.
      properties:
        connection_id:
          description: El ID de la conexión asociada al grupo.
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        created_at:
          description: Fecha y hora en que se creó esta entidad (formato ISO_8601).
          format: date-time
          type: string
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: El nombre del grupo.
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupCreatedObject0TypeEnum
      required:
        - id
        - name
        - created_at
        - type
        - connection_id
      type: object
    EventStreamCloudEventGroupCreatedObject1:
      additionalProperties: false
      description: Representa una entidad de grupo de organización.
      properties:
        created_at:
          description: Fecha y hora en que se creó esta entidad (formato ISO_8601).
          format: date-time
          type: string
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: El nombre del grupo.
          type: string
        organization_id:
          description: El ID de la organización asociada al grupo.
          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: Representa una entidad de grupo de inquilino.
      properties:
        created_at:
          description: Fecha y hora en que se creó esta entidad (formato ISO_8601).
          format: date-time
          type: string
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: El nombre del grupo.
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupCreatedObject2TypeEnum
      required:
        - id
        - name
        - created_at
        - type
      type: object
    EventStreamCloudEventGroupDeletedObject0:
      additionalProperties: false
      description: Grupo de conexión con marca de tiempo updated_at
      properties:
        connection_id:
          description: El ID de la conexión asociada al grupo.
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        created_at:
          description: Fecha y hora en que se creó esta entidad (formato ISO_8601).
          format: date-time
          type: string
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: El nombre del grupo.
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupDeletedObject0TypeEnum
        updated_at:
          description: >-
            Fecha y hora en que esta entidad se actualizó o modificó por última
            vez (formato ISO_8601).
          format: date-time
          type: string
      required:
        - id
        - name
        - created_at
        - type
        - connection_id
        - updated_at
      type: object
    EventStreamCloudEventGroupDeletedObject1:
      additionalProperties: false
      description: Grupo de organización con marca de tiempo updated_at
      properties:
        created_at:
          description: Fecha y hora en que se creó esta entidad (formato ISO_8601).
          format: date-time
          type: string
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: El nombre del grupo.
          type: string
        organization_id:
          description: El ID de la organización asociada al grupo.
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupDeletedObject1TypeEnum
        updated_at:
          description: >-
            Fecha y hora en que esta entidad se actualizó o modificó por última
            vez (formato ISO_8601).
          format: date-time
          type: string
      required:
        - id
        - name
        - created_at
        - type
        - organization_id
        - updated_at
      type: object
    EventStreamCloudEventGroupDeletedObject2:
      additionalProperties: false
      description: Grupo de inquilino con marca de tiempo updated_at
      properties:
        created_at:
          description: Fecha y hora en que se creó esta entidad (formato ISO_8601).
          format: date-time
          type: string
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: El nombre del grupo.
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupDeletedObject2TypeEnum
        updated_at:
          description: >-
            Fecha y hora de la última actualización o modificación de esta
            entidad (formato ISO_8601).
          format: date-time
          type: string
      required:
        - id
        - name
        - created_at
        - type
        - updated_at
      type: object
    EventStreamCloudEventGroupMemberAddedObjectGroup:
      description: El grupo al que pertenece el miembro.
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectGroup2
    EventStreamCloudEventGroupMemberAddedObjectMember:
      description: El miembro que forma parte del grupo.
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectMember0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectMember1
    EventStreamCloudEventGroupMemberDeletedObjectGroup:
      description: El grupo al que pertenece el miembro.
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectGroup2
    EventStreamCloudEventGroupMemberDeletedObjectMember:
      description: El miembro que forma parte del grupo.
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectMember0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectMember1
    EventStreamCloudEventGroupRoleAssignedObjectGroup:
      description: El grupo al que se asigna el rol.
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup2
    EventStreamCloudEventGroupRoleAssignedObjectRole:
      additionalProperties: false
      description: El rol asignado al grupo.
      properties:
        id:
          description: El ID del rol.
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
        name:
          description: El nombre del rol.
          type: string
      required:
        - id
        - name
      type: object
    EventStreamCloudEventGroupRoleDeletedObjectGroup:
      description: El grupo del que se quitó el rol.
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup2
    EventStreamCloudEventGroupRoleDeletedObjectRole:
      additionalProperties: false
      description: El rol eliminado del grupo.
      properties:
        id:
          description: El ID del rol.
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventGroupUpdatedObject0:
      additionalProperties: false
      description: Grupo de conexión con marca de tiempo updated_at
      properties:
        connection_id:
          description: El ID de la conexión asociado al grupo.
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        created_at:
          description: Fecha y hora en que se creó esta entidad (formato ISO_8601).
          format: date-time
          type: string
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: El nombre del grupo.
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupUpdatedObject0TypeEnum
        updated_at:
          description: >-
            Fecha y hora de la última actualización o modificación de esta
            entidad (formato ISO_8601).
          format: date-time
          type: string
      required:
        - id
        - name
        - created_at
        - type
        - connection_id
        - updated_at
      type: object
    EventStreamCloudEventGroupUpdatedObject1:
      additionalProperties: false
      description: Grupo de organización con marca de tiempo `updated_at`
      properties:
        created_at:
          description: Fecha y hora en que se creó esta entidad (formato ISO_8601).
          format: date-time
          type: string
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: El nombre del grupo.
          type: string
        organization_id:
          description: El ID de la organización asociada al grupo.
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupUpdatedObject1TypeEnum
        updated_at:
          description: >-
            Fecha y hora en que esta entidad se actualizó o modificó por última
            vez (formato ISO_8601).
          format: date-time
          type: string
      required:
        - id
        - name
        - created_at
        - type
        - organization_id
        - updated_at
      type: object
    EventStreamCloudEventGroupUpdatedObject2:
      additionalProperties: false
      description: Grupo de inquilino con marca de tiempo `updated_at`
      properties:
        created_at:
          description: Fecha y hora en que se creó esta entidad (formato ISO_8601).
          format: date-time
          type: string
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        name:
          description: El nombre del grupo.
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupUpdatedObject2TypeEnum
        updated_at:
          description: >-
            Fecha y hora en que esta entidad se actualizó o modificó por última
            vez (formato ISO_8601).
          format: date-time
          type: string
      required:
        - id
        - name
        - created_at
        - type
        - updated_at
      type: object
    EventStreamCloudEventOrgConnectionAddedObjectConnection:
      additionalProperties: false
      properties:
        id:
          description: El ID de la conexión.
          pattern: con_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionAddedObjectOrganization:
      additionalProperties: false
      description: Información sobre una Organización de Auth0.
      properties:
        id:
          description: ID de la organización.
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: >-
            El identificador legible por personas de la organización que usarán
            los usuarios finales para acceder a su organización en la
            aplicación.
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionRemovedObjectConnection:
      additionalProperties: false
      properties:
        id:
          description: El ID de la conexión.
          pattern: con_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionRemovedObjectOrganization:
      additionalProperties: false
      description: Información sobre una Organización de Auth0.
      properties:
        id:
          description: ID de la organización.
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: >-
            El identificador legible por personas de la organización que usarán
            los usuarios finales para acceder a su organización en la
            aplicación.
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionUpdatedObjectConnection:
      additionalProperties: false
      properties:
        id:
          description: El ID de la conexión.
          pattern: con_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgConnectionUpdatedObjectOrganization:
      additionalProperties: false
      description: Información sobre una Organización de Auth0.
      properties:
        id:
          description: ID de la organización.
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: >-
            El identificador legible para humanos de la organización que los
            usuarios finales usarán para dirigirse a su organización en la
            aplicación.
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgCreatedObjectBranding:
      additionalProperties: false
      description: La marca asociada a la organización.
      properties:
        colors:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgCreatedObjectBrandingColors
        logo_url:
          description: URL del logotipo que se mostrará en la página de login.
          format: uri
          type: string
      type: object
    EventStreamCloudEventOrgCreatedObjectMetadata:
      additionalProperties: true
      description: Los metadatos asociados a la organización.
      properties: {}
      type: object
    EventStreamCloudEventOrgDeletedObjectMetadata:
      additionalProperties: true
      description: Los metadatos asociados a la organización.
      properties: {}
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup:
      description: El grupo al que se asigna el rol.
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2
    EventStreamCloudEventOrgGroupRoleAssignedObjectOrganization:
      additionalProperties: false
      description: La organización en la que se asigna el rol al grupo.
      properties:
        id:
          description: ID de la organización.
          pattern: org_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedObjectRole:
      additionalProperties: false
      description: El rol asignado al grupo en la organización.
      properties:
        id:
          description: El ID del rol.
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
        name:
          description: El nombre del rol.
          type: string
      required:
        - id
        - name
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedObjectGroup:
      description: El grupo del que se eliminó el rol.
      oneOf:
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1
        - $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2
    EventStreamCloudEventOrgGroupRoleDeletedObjectOrganization:
      additionalProperties: false
      description: La organización de la que se eliminó el rol del grupo.
      properties:
        id:
          description: ID de la organización.
          pattern: org_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedObjectRole:
      additionalProperties: false
      description: El rol que se eliminó del grupo.
      properties:
        id:
          description: El ID del rol.
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberAddedObjectOrganization:
      additionalProperties: false
      description: La organización a la que pertenece el miembro.
      properties:
        id:
          description: ID de la organización.
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: >-
            El identificador legible para las personas de la organización que
            los usuarios finales usarán para acceder a su organización en su
            aplicación..
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberAddedObjectUser:
      additionalProperties: true
      description: El usuario que es miembro de la organización.
      properties:
        user_id:
          description: ID del usuario que se puede usar al interactuar con otras API.
          type: string
      required:
        - user_id
      type: object
    EventStreamCloudEventOrgMemberDeletedObjectOrganization:
      additionalProperties: false
      description: La organización a la que pertenece el miembro.
      properties:
        id:
          description: ID de la organización.
          pattern: org_[a-zA-Z0-9]{16}
          type: string
        name:
          description: >-
            El identificador legible para las personas de la organización que
            los usuarios finales usarán para acceder a su organización en su
            aplicación..
          pattern: ^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberDeletedObjectUser:
      additionalProperties: true
      description: El usuario que es miembro de la organización.
      properties:
        user_id:
          description: ID del usuario que se puede usar al interactuar con otras API.
          type: string
      required:
        - user_id
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedObjectOrganization:
      additionalProperties: false
      description: La organización a la que pertenece el miembro.
      properties:
        id:
          description: ID de la organización.
          pattern: org_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedObjectRole:
      additionalProperties: false
      description: El rol asignado al usuario en la organización.
      properties:
        id:
          description: El ID del rol.
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
        name:
          description: El nombre del rol.
          type: string
      required:
        - id
        - name
      type: object
    EventStreamCloudEventOrgMemberRoleAssignedObjectUser:
      additionalProperties: true
      description: El usuario que es miembro de la organización.
      properties:
        user_id:
          description: ID del usuario que puede usarse al interactuar con otras API.
          type: string
      required:
        - user_id
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedObjectOrganization:
      additionalProperties: false
      description: La organización a la que pertenece el miembro.
      properties:
        id:
          description: ID de la organización.
          pattern: org_[a-zA-Z0-9]{16}
          type: string
      required:
        - id
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedObjectRole:
      additionalProperties: false
      description: El rol asignado al usuario en la organización.
      properties:
        id:
          description: El ID del rol.
          pattern: rol_[a-zA-Z0-9]{16}
          type: string
        name:
          description: El nombre del rol.
          type: string
      required:
        - id
        - name
      type: object
    EventStreamCloudEventOrgMemberRoleDeletedObjectUser:
      additionalProperties: true
      description: El usuario que es miembro de la organización.
      properties:
        user_id:
          description: ID del usuario que se puede usar al interactuar con otras API.
          type: string
      required:
        - user_id
      type: object
    EventStreamCloudEventOrgUpdatedObjectBranding:
      additionalProperties: false
      description: La marca asociada a la organización.
      properties:
        colors:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgUpdatedObjectBrandingColors
        logo_url:
          description: URL del logotipo que se mostrará en la página de Login.
          format: uri
          type: string
      type: object
    EventStreamCloudEventOrgUpdatedObjectMetadata:
      additionalProperties: true
      description: Los metadatos asociados a la organización.
      properties: {}
      type: object
    EventStreamCloudEventUserCreatedObjectAppMetadata:
      additionalProperties: true
      description: >-
        Metadatos del usuario a los que este usuario tiene acceso de solo
        lectura.
      properties: {}
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItem:
      description: El objeto de identidad cuando las cuentas están vinculadas.
      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: >-
        Metadatos del usuario a los que este usuario tiene acceso de lectura y
        escritura.
      properties: {}
      type: object
    EventStreamCloudEventUserDeletedObjectAppMetadata:
      additionalProperties: true
      description: >-
        Metadatos del usuario a los que este usuario tiene acceso de solo
        lectura.
      properties: {}
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItem:
      description: Objeto de identidad cuando las cuentas están vinculadas.
      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: >-
        Metadatos de usuario a los que este usuario tiene acceso de lectura y
        escritura.
      properties: {}
      type: object
    EventStreamCloudEventUserUpdatedObjectAppMetadata:
      additionalProperties: true
      description: >-
        Metadatos del usuario a los que este usuario tiene acceso de solo
        lectura.
      properties: {}
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItem:
      description: Objeto de identidad cuando las cuentas están vinculadas.
      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: >-
        Metadatos de usuario a los que este usuario tiene acceso de lectura y
        escritura.
      properties: {}
      type: object
    EventStreamCloudEventContextClientMetadata:
      additionalProperties: true
      description: Metadatos del cliente.
      properties: {}
      type: object
    EventStreamCloudEventContextRequestGeo:
      additionalProperties: false
      description: Información geográfica sobre el origen de la solicitud.
      properties:
        city_name:
          description: Nombre de la ciudad.
          type: string
        continent_code:
          description: Código del continente.
          type: string
        country_code:
          description: Código de país.
          type: string
        country_name:
          description: Nombre del país.
          type: string
        latitude:
          description: Coordenada de latitud.
          type: number
        longitude:
          description: Coordenada de longitud.
          type: number
        subdivision_code:
          description: Código de subdivisión (estado/provincia).
          type: string
        subdivision_name:
          description: Nombre de la subdivisión (estado/provincia).
          type: string
        time_zone:
          description: Zona horaria.
          type: string
      type: object
    EventStreamCloudEventGroupCreatedObject0TypeEnum:
      description: El tipo de grupo.
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupCreatedObject1TypeEnum:
      description: El tipo de grupo.
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupCreatedObject2TypeEnum:
      description: El tipo de grupo.
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupDeletedObject0TypeEnum:
      description: El tipo de grupo.
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupDeletedObject1TypeEnum:
      description: El tipo de grupo.
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupDeletedObject2TypeEnum:
      description: El tipo de grupo.
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupMemberAddedObjectGroup0:
      additionalProperties: false
      description: Referencia a un grupo de conexión
      properties:
        connection_id:
          description: El ID de conexión asociado al grupo.
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          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: Referencia a un grupo de organización
      properties:
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: El ID de organización asociado al grupo.
          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: Referencia a un grupo de inquilino
      properties:
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          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: Un miembro de grupo con member_type user
      properties:
        id:
          description: El identificador único del usuario
          type: string
        member_type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectMember0MemberTypeEnum
      required:
        - member_type
        - id
      type: object
    EventStreamCloudEventGroupMemberAddedObjectMember1:
      additionalProperties: false
      description: Un miembro de grupo de tipo `group`
      properties:
        connection_id:
          description: ID de conexión asociado al miembro
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        id:
          description: El identificador único del miembro de la conexión
          type: string
        member_type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberAddedObjectMember1MemberTypeEnum
        type:
          description: El tipo de la conexión
          type: string
      required:
        - member_type
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventGroupMemberDeletedObjectGroup0:
      additionalProperties: false
      description: Referencia a un grupo de conexión
      properties:
        connection_id:
          description: El ID de conexión asociado al grupo.
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          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: Referencia a un grupo de organización
      properties:
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: El ID de la organización asociado al grupo.
          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: Referencia a un grupo del inquilino
      properties:
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          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: Un miembro del grupo con member_type user
      properties:
        id:
          description: El identificador único del usuario
          type: string
        member_type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectMember0MemberTypeEnum
      required:
        - member_type
        - id
      type: object
    EventStreamCloudEventGroupMemberDeletedObjectMember1:
      additionalProperties: false
      description: Un miembro del grupo con member_type group
      properties:
        connection_id:
          description: ID de la conexión asociada al miembro
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        id:
          description: El identificador único del miembro de la conexión
          type: string
        member_type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectMember1MemberTypeEnum
        type:
          description: El tipo de la conexión
          type: string
      required:
        - member_type
        - id
        - type
        - connection_id
      type: object
    EventStreamCloudEventGroupRoleAssignedObjectGroup0:
      additionalProperties: false
      description: Referencia a un grupo de conexión
      properties:
        connection_id:
          description: El ID de la conexión asociada al grupo.
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          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: Referencia a un grupo de organización
      properties:
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: El ID de la organización asociada al grupo.
          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: Referencia a un grupo de Tenant
      properties:
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventGroupRoleDeletedObjectGroup0:
      additionalProperties: false
      description: Referencia a un grupo de conexión
      properties:
        connection_id:
          description: El ID de la conexión asociada al grupo.
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          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: Referencia a un grupo de organización
      properties:
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: El ID de la organización asociado al grupo.
          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: Referencia a un grupo de tenant
      properties:
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventGroupUpdatedObject0TypeEnum:
      description: El tipo de grupo.
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupUpdatedObject1TypeEnum:
      description: El tipo de grupo.
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupUpdatedObject2TypeEnum:
      description: El tipo de grupo.
      enum:
        - tenant
      type: string
    EventStreamCloudEventOrgCreatedObjectBrandingColors:
      additionalProperties: false
      description: Esquema de colores utilizado para personalizar las páginas de login.
      properties:
        page_background:
          description: Color HEX para el fondo.
          type: string
        primary:
          description: Color HEX para los elementos principales.
          type: string
      type: object
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0:
      additionalProperties: false
      description: Referencia a un grupo de conexiones
      properties:
        connection_id:
          description: El ID de la conexión asociada al grupo.
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          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: Referencia a un grupo de organización
      properties:
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: El ID de la organización asociada al grupo.
          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: Referencia a un grupo de tenant
      properties:
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0:
      additionalProperties: false
      description: Referencia a un grupo de conexiones
      properties:
        connection_id:
          description: El ID de la conexión asociado al grupo.
          pattern: con_[a-zA-Z0-9]{16}
          type: string
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          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: Referencia a un grupo de organización
      properties:
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        organization_id:
          description: El ID de la organización asociado al grupo.
          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: Referencia a un grupo de tenant
      properties:
        external_id:
          description: El identificador externo del grupo.
          type: string
        id:
          description: El identificador único del grupo.
          pattern: grp_[1-9a-km-zA-HJ-NP-Z]{14,22}
          type: string
        type:
          $ref: >-
            #/components/schemas/EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2TypeEnum
      required:
        - id
        - type
      type: object
    EventStreamCloudEventOrgUpdatedObjectBrandingColors:
      additionalProperties: false
      description: Esquema de colores usado para personalizar las páginas de Login.
      properties:
        page_background:
          description: Color HEX del fondo.
          type: string
        primary:
          description: Color HEX de los elementos principales.
          type: string
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemCustom:
      additionalProperties: false
      description: El objeto de identidad para proveedores de identidad personalizados.
      properties:
        connection:
          description: El nombre de la conexión que contiene esta identidad.
          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: Objeto de identidad para proveedores de identidad de base de datos.
      properties:
        connection:
          description: Nombre de la conexión que contiene esta identidad.
          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: Objeto de identidad para proveedores de identidad empresariales.
      properties:
        connection:
          description: Nombre de la conexión que contiene esta identidad.
          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: El objeto de identidad para proveedores de identidad sin contraseña.
      properties:
        connection:
          description: Nombre de la conexión que contiene esta identidad.
          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: El objeto de identidad para proveedores de identidad sociales.
      properties:
        connection:
          description: Nombre de la conexión que contiene esta identidad.
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemCustom:
      additionalProperties: false
      description: El objeto de identidad para proveedores de identidad personalizados.
      properties:
        connection:
          description: Nombre de la conexión que contiene esta identidad.
          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: El objeto de identidad para proveedores de identidad de base de datos.
      properties:
        connection:
          description: Nombre de la conexión que contiene esta identidad.
          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: El objeto de identidad para proveedores de identidad empresariales.
      properties:
        connection:
          description: Nombre de la conexión que contiene esta identidad.
          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: El objeto de identidad para los proveedores de identidad sin contraseña.
      properties:
        connection:
          description: Nombre de la conexión que contiene esta identidad.
          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: El objeto de identidad para los proveedores de identidad sociales.
      properties:
        connection:
          description: Nombre de la conexión que contiene esta identidad.
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustom:
      additionalProperties: false
      description: Objeto de identidad para proveedores de identidad personalizados.
      properties:
        connection:
          description: Nombre de la conexión que contiene esta identidad.
          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: Objeto de identidad para proveedores de identidad de base de datos.
      properties:
        connection:
          description: Nombre de la conexión que contiene esta identidad.
          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: Objeto de identidad para proveedores de identidad empresariales.
      properties:
        connection:
          description: Nombre de la conexión que contiene esta identidad.
          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: El objeto de identidad para proveedores de identidad sin contraseña.
      properties:
        connection:
          description: Nombre de la conexión que contiene esta identidad.
          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: El objeto de identidad para proveedores de identidad sociales.
      properties:
        connection:
          description: Nombre de la conexión que contiene esta identidad.
          pattern: ^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$
          type: string
        isSocial:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialIsSocialEnum
        profileData:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProfileData
        provider:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProviderEnum
        user_id:
          $ref: >-
            #/components/schemas/EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialUserId
      required:
        - connection
        - user_id
        - provider
        - isSocial
      type: object
    EventStreamCloudEventGroupMemberAddedObjectGroup0TypeEnum:
      description: El tipo de grupo.
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupMemberAddedObjectGroup1TypeEnum:
      description: El tipo de grupo.
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupMemberAddedObjectGroup2TypeEnum:
      description: El tipo de grupo.
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupMemberAddedObjectMember0MemberTypeEnum:
      description: Discriminador de tipo para miembros de usuario
      enum:
        - user
      type: string
    EventStreamCloudEventGroupMemberAddedObjectMember1MemberTypeEnum:
      description: Discriminador de tipo para miembros de conexión
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupMemberDeletedObjectGroup0TypeEnum:
      description: El tipo del grupo.
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupMemberDeletedObjectGroup1TypeEnum:
      description: El tipo del grupo.
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupMemberDeletedObjectGroup2TypeEnum:
      description: El tipo de grupo.
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupMemberDeletedObjectMember0MemberTypeEnum:
      description: Discriminador de tipo para miembros de tipo usuario
      enum:
        - user
      type: string
    EventStreamCloudEventGroupMemberDeletedObjectMember1MemberTypeEnum:
      description: Discriminador de tipo para miembros de conexión
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupRoleAssignedObjectGroup0TypeEnum:
      description: El tipo de grupo.
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupRoleAssignedObjectGroup1TypeEnum:
      description: El tipo de grupo.
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupRoleAssignedObjectGroup2TypeEnum:
      description: El tipo de grupo.
      enum:
        - tenant
      type: string
    EventStreamCloudEventGroupRoleDeletedObjectGroup0TypeEnum:
      description: El tipo de grupo.
      enum:
        - connection
      type: string
    EventStreamCloudEventGroupRoleDeletedObjectGroup1TypeEnum:
      description: El tipo de grupo.
      enum:
        - organization
      type: string
    EventStreamCloudEventGroupRoleDeletedObjectGroup2TypeEnum:
      description: El tipo de grupo.
      enum:
        - tenant
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0TypeEnum:
      description: El tipo de grupo.
      enum:
        - connection
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1TypeEnum:
      description: El tipo de grupo.
      enum:
        - organization
      type: string
    EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2TypeEnum:
      description: El tipo de grupo.
      enum:
        - tenant
      type: string
    EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0TypeEnum:
      description: El tipo de grupo.
      enum:
        - connection
      type: string
    EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1TypeEnum:
      description: El tipo de grupo.
      enum:
        - organization
      type: string
    EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2TypeEnum:
      description: El tipo de grupo.
      enum:
        - tenant
      type: string
    EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProfileData:
      additionalProperties: true
      description: Datos del perfil del usuario.
      properties:
        email:
          description: La dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Si esta dirección de correo electrónico está verificada (true) o no
            (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: El nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: Número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono se ha verificado (true) o no
            (false).
          type: boolean
        username:
          description: El username de este usuario.
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProviderEnum:
      description: Lista de proveedores de identidad custom.
      enum:
        - custom
      type: string
    EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomUserId:
      anyOf:
        - type: string
        - type: integer
      description: Identificador específico del IdP para el usuario.
    EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProfileData:
      additionalProperties: true
      description: Datos del perfil del usuario.
      properties:
        email:
          description: Dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Indica si esta dirección de correo electrónico está verificada
            (true) o no (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: Nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: Número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono se ha verificado (true) o no
            (false).
          type: boolean
        username:
          description: Username de este usuario.
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProviderEnum:
      description: Lista de proveedores de identidad de base de datos.
      enum:
        - auth0
      type: string
    EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseUserId:
      anyOf:
        - type: string
        - type: integer
      description: Identificador específico del IdP para el usuario.
    EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProfileData:
      additionalProperties: true
      description: Datos del perfil del usuario.
      properties:
        email:
          description: Dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Indica si esta dirección de correo electrónico está verificada
            (true) o no (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: Nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: Número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono se ha verificado (true) o no
            (false).
          type: boolean
        username:
          description: Username de este usuario.
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProviderEnum:
      description: Lista de proveedores de identidad empresariales.
      enum:
        - ad
        - adfs
        - google-apps
        - ip
        - office365
        - oidc
        - okta
        - pingfederate
        - samlp
        - sharepoint
        - waad
      type: string
    EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseUserId:
      anyOf:
        - type: string
        - type: integer
      description: Identificador específico del IdP para el usuario.
    EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProfileData:
      additionalProperties: true
      description: Datos del perfil del usuario.
      properties:
        email:
          description: Dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Indica si esta dirección de correo electrónico está verificada
            (true) o sin verificar (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila/primer nombre de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: Nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: Número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono está verificado (true) o no
            (false).
          type: boolean
        username:
          description: Username de este usuario.
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProviderEnum:
      description: Lista de proveedores de identidad sin contraseña.
      enum:
        - email
        - sms
      type: string
    EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessUserId:
      anyOf:
        - type: string
        - type: integer
      description: El identificador específico del IdP para el usuario.
    EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialIsSocialEnum:
      enum:
        - true
      type: boolean
    EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProfileData:
      additionalProperties: true
      description: Datos del perfil del usuario.
      properties:
        email:
          description: Dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Indica si esta dirección de correo electrónico está verificada
            (true) o sin verificar (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila/primer nombre de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: Nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: Número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono está verificado (true) o no
            (false).
          type: boolean
        username:
          description: Username de este usuario.
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProviderEnum:
      description: Lista de proveedores de identidad sociales.
      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: El identificador específico del IdP para el usuario.
    EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProfileData:
      additionalProperties: true
      description: Datos de perfil del usuario.
      properties:
        email:
          description: Dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Indica si esta dirección de correo electrónico está verificada
            (true) o sin verificar (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila/primer nombre de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: Nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: Número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono se ha verificado (true) o no
            (false).
          type: boolean
        username:
          description: Username de este usuario.
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProviderEnum:
      description: Lista de proveedores de identidad Custom.
      enum:
        - custom
      type: string
    EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomUserId:
      anyOf:
        - type: string
        - type: integer
      description: El identificador específico del IdP para el usuario.
    EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProfileData:
      additionalProperties: true
      description: Datos de perfil del usuario.
      properties:
        email:
          description: Dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Indica si esta dirección de correo electrónico está verificada
            (true) o sin verificar (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila/primer nombre de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: Nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: Número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono se ha verificado (true) o no
            (false).
          type: boolean
        username:
          description: Username de este usuario.
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProviderEnum:
      description: Lista de proveedores de identidad de base de datos.
      enum:
        - auth0
      type: string
    EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseUserId:
      anyOf:
        - type: string
        - type: integer
      description: El identificador específico del IdP para el usuario.
    EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProfileData:
      additionalProperties: true
      description: Datos de perfil del usuario.
      properties:
        email:
          description: Dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Indica si esta dirección de correo electrónico está verificada
            (true) o sin verificar (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila/primer nombre de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: Nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: Número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono está verificado (true) o no
            (false).
          type: boolean
        username:
          description: Username de este usuario.
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProviderEnum:
      description: Lista de proveedores de identidad empresariales.
      enum:
        - ad
        - adfs
        - google-apps
        - ip
        - office365
        - oidc
        - okta
        - pingfederate
        - samlp
        - sharepoint
        - waad
      type: string
    EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseUserId:
      anyOf:
        - type: string
        - type: integer
      description: El identificador específico del IdP del usuario.
    EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProfileData:
      additionalProperties: true
      description: Datos del perfil del usuario.
      properties:
        email:
          description: Dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Indica si esta dirección de correo electrónico está verificada
            (true) o no verificada (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila/nombre/primer nombre de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: Nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: Número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono está verificado (true) o no
            (false).
          type: boolean
        username:
          description: Username de este usuario.
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProviderEnum:
      description: Lista de proveedores de identidad sin contraseña.
      enum:
        - email
        - sms
      type: string
    EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessUserId:
      anyOf:
        - type: string
        - type: integer
      description: El identificador específico del IdP del usuario.
    EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialIsSocialEnum:
      enum:
        - true
      type: boolean
    EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProfileData:
      additionalProperties: true
      description: Datos del perfil del usuario.
      properties:
        email:
          description: Dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Indica si esta dirección de correo electrónico está verificada
            (true) o no verificada (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila/nombre/primer nombre de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: Nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: Número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono está verificado (true) o no
            (false).
          type: boolean
        username:
          description: Username de este usuario.
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProviderEnum:
      description: Lista de proveedores de identidad sociales.
      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: El identificador específico del IdP del usuario.
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProfileData:
      additionalProperties: true
      description: Datos del perfil del usuario.
      properties:
        email:
          description: Dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Indica si esta dirección de correo electrónico está verificada
            (true) o sin verificar (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila/primer nombre de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: Nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: Número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono está verificado (true) o no
            (false).
          type: boolean
        username:
          description: Username de este usuario.
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProviderEnum:
      description: Lista de proveedores de identidad personalizados.
      enum:
        - custom
      type: string
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomUserId:
      anyOf:
        - type: string
        - type: integer
      description: Identificador específico del IdP para el usuario.
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProfileData:
      additionalProperties: true
      description: Datos del perfil del usuario.
      properties:
        email:
          description: Dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Indica si esta dirección de correo electrónico está verificada
            (true) o sin verificar (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila/primer nombre de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: Nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: Número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono está verificado (true) o no
            (false).
          type: boolean
        username:
          description: Username de este usuario.
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProviderEnum:
      description: Lista de proveedores de identidad de base de datos.
      enum:
        - auth0
      type: string
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseUserId:
      anyOf:
        - type: string
        - type: integer
      description: Identificador específico del IdP para el usuario.
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProfileData:
      additionalProperties: true
      description: Datos del perfil del usuario.
      properties:
        email:
          description: Dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Indica si esta dirección de correo electrónico está verificada
            (true) o no verificada (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila/primer nombre de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: Nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: Número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono ha sido verificado (true) o no
            (false).
          type: boolean
        username:
          description: Username de este usuario.
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProviderEnum:
      description: Lista de proveedores de identidad empresariales.
      enum:
        - ad
        - adfs
        - google-apps
        - ip
        - office365
        - oidc
        - okta
        - pingfederate
        - samlp
        - sharepoint
        - waad
      type: string
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseUserId:
      anyOf:
        - type: string
        - type: integer
      description: El identificador específico del IdP para el usuario.
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessIsSocialEnum:
      enum:
        - false
      type: boolean
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProfileData:
      additionalProperties: true
      description: Datos de perfil del usuario.
      properties:
        email:
          description: Dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Indica si esta dirección de correo electrónico está verificada
            (true) o no verificada (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila/primer nombre de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: Nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: Número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono ha sido verificado (true) o no
            (false).
          type: boolean
        username:
          description: Username de este usuario.
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProviderEnum:
      description: Lista de proveedores de identidad sin contraseña.
      enum:
        - email
        - sms
      type: string
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessUserId:
      anyOf:
        - type: string
        - type: integer
      description: El identificador específico del IdP para el usuario.
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialIsSocialEnum:
      enum:
        - true
      type: boolean
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProfileData:
      additionalProperties: true
      description: Datos de perfil del usuario.
      properties:
        email:
          description: Dirección de correo electrónico de este usuario.
          format: email
          type: string
        email_verified:
          description: >-
            Indica si esta dirección de correo electrónico está verificada
            (true) o no verificada (false).
          type: boolean
        family_name:
          description: Apellido de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        given_name:
          description: Nombre de pila/primer nombre de este usuario.
          maxLength: 150
          minLength: 1
          type: string
        name:
          description: Nombre de este usuario.
          maxLength: 300
          minLength: 1
          type: string
        phone_number:
          description: Número de teléfono de este usuario.
          pattern: ^\+[0-9]{1,15}$
          type: string
        phone_verified:
          description: >-
            Indica si este número de teléfono ha sido verificado (true) o no
            (false).
          type: boolean
        username:
          description: Username de este usuario.
          maxLength: 128
          minLength: 1
          pattern: ^[a-zA-Z0-9_+\-.!#\$\^`~@']*$
          type: string
      type: object
    EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProviderEnum:
      description: Lista de proveedores de identidad sociales.
      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: Identificador específico del IdP para el usuario.
  securitySchemes:
    bearerAuth:
      bearerFormat: jwt
      scheme: bearer
      type: http
    oAuth2ClientCredentials:
      flows:
        clientCredentials:
          scopes:
            create:actions: Create Actions
            create:authentication_methods: Create Authentication Methods
            create:client_credentials: Create Client Credentials
            create:client_grants: Create Client Grants
            create:clients: Create Clients
            create:connection_profiles: Create Connection Profiles
            create:connections: Create Connections
            create:connections_keys: Create Connections Keys
            create:current_user_device_credentials: Create Current User Device Credentials
            create:custom_domains: Create Custom Domains
            create:custom_signing_keys: Create Custom Signing Keys
            create:directory_provisionings: Create Directory Provisionings
            create:email_provider: Create Email Provider
            create:email_templates: Create Email Templates
            create:encryption_keys: Create Encryption Keys
            create:event_streams: Create Event Streams
            create:experimentation: Create Experimentation
            create:flows: Create Flows
            create:flows_vault_connections: Create Flows Vault Connections
            create:forms: Create Forms
            create:group_roles: Create Group Roles
            create:guardian_enrollment_tickets: Create Guardian Enrollment Tickets
            create:hooks: Create Hooks
            create:log_streams: Create Log Streams
            create:network_acls: Create Network Acls
            create:organization_client_grants: Create Organization Client Grants
            create:organization_connections: Create Organization Connections
            create:organization_discovery_domains: Create Organization Discovery Domains
            create:organization_group_roles: Create Organization Group Roles
            create:organization_invitations: Create Organization Invitations
            create:organization_member_roles: Create Organization Member Roles
            create:organization_members: Create Organization Members
            create:organizations: Create Organizations
            create:phone_providers: Create Phone Providers
            create:phone_templates: Create Phone Templates
            create:rate_limit_policies: Create Rate Limit Policies
            create:resource_servers: Create Resource Servers
            create:role_members: Create Role Members
            create:roles: Create Roles
            create:rules: Create Rules
            create:scim_config: Create Scim Config
            create:scim_token: Create Scim Token
            create:self_service_profiles: Create Self Service Profiles
            create:signing_keys: Create Signing Keys
            create:sso_access_tickets: Create Sso Access Tickets
            create:token_exchange_profiles: Create Token Exchange Profiles
            create:user_attribute_profiles: Create User Attribute Profiles
            create:user_tickets: Create User Tickets
            create:users: Create Users
            create:vdcs_templates: Create Vdcs Templates
            delete:actions: Delete Actions
            delete:anomaly_blocks: Delete Anomaly Blocks
            delete:authentication_methods: Delete Authentication Methods
            delete:branding: Delete Branding
            delete:client_credentials: Delete Client Credentials
            delete:client_grants: Delete Client Grants
            delete:clients: Delete Clients
            delete:connection_profiles: Delete Connection Profiles
            delete:connections: Delete Connections
            delete:current_user: Delete Current User
            delete:current_user_device_credentials: Delete Current User Device Credentials
            delete:custom_domains: Delete Custom Domains
            delete:custom_signing_keys: Delete Custom Signing Keys
            delete:device_credentials: Delete Device Credentials
            delete:directory_provisionings: Delete Directory Provisionings
            delete:email_provider: Delete Email Provider
            delete:encryption_keys: Delete Encryption Keys
            delete:event_streams: Delete Event Streams
            delete:experimentation: Delete Experimentation
            delete:federated_connections_tokens: Delete Federated Connections Tokens
            delete:flows: Delete Flows
            delete:flows_executions: Delete Flows Executions
            delete:flows_vault_connections: Delete Flows Vault Connections
            delete:forms: Delete Forms
            delete:grants: Delete Grants
            delete:group_roles: Delete Group Roles
            delete:groups: Delete Groups
            delete:guardian_enrollments: Delete Guardian Enrollments
            delete:hooks: Delete Hooks
            delete:log_streams: Delete Log Streams
            delete:network_acls: Delete Network Acls
            delete:organization_client_grants: Delete Organization Client Grants
            delete:organization_connections: Delete Organization Connections
            delete:organization_discovery_domains: Delete Organization Discovery Domains
            delete:organization_group_roles: Delete Organization Group Roles
            delete:organization_invitations: Delete Organization Invitations
            delete:organization_member_roles: Delete Organization Member Roles
            delete:organization_members: Delete Organization Members
            delete:organizations: Delete Organizations
            delete:phone_providers: Delete Phone Providers
            delete:phone_templates: Delete Phone Templates
            delete:rate_limit_policies: Delete Rate Limit Policies
            delete:refresh_tokens: Delete Refresh Tokens
            delete:resource_servers: Delete Resource Servers
            delete:role_members: Delete Role Members
            delete:roles: Delete Roles
            delete:rules: Delete Rules
            delete:rules_configs: Delete Rules Configs
            delete:scim_config: Delete Scim Config
            delete:scim_token: Delete Scim Token
            delete:self_service_profiles: Delete Self Service Profiles
            delete:sessions: Delete Sessions
            delete:sso_access_tickets: Delete Sso Access Tickets
            delete:token_exchange_profiles: Delete Token Exchange Profiles
            delete:user_attribute_profiles: Delete User Attribute Profiles
            delete:users: Delete Users
            delete:vdcs_templates: Delete Vdcs Templates
            read:actions: Read Actions
            read:anomaly_blocks: Read Anomaly Blocks
            read:attack_protection: Read Attack Protection
            read:authentication_methods: Read Authentication Methods
            read:branding: Read Branding
            read:client_credentials: Read Client Credentials
            read:client_grants: Read Client Grants
            read:client_keys: Read Client Keys
            read:client_summary: Read Client Summary
            read:clients: Read Clients
            read:connection_profiles: Read Connection Profiles
            read:connections: Read Connections
            read:connections_keys: Read Connections Keys
            read:current_user: Read Current User
            read:custom_domains: Read Custom Domains
            read:custom_signing_keys: Read Custom Signing Keys
            read:device_credentials: Read Device Credentials
            read:directory_provisionings: Read Directory Provisionings
            read:email_provider: Read Email Provider
            read:email_templates: Read Email Templates
            read:encryption_keys: Read Encryption Keys
            read:event_deliveries: Read Event Deliveries
            read:event_streams: Read Event Streams
            read:events: Read Events
            read:experimentation: Read Experimentation
            read:federated_connections_tokens: Read Federated Connections Tokens
            read:flows: Read Flows
            read:flows_executions: Read Flows Executions
            read:flows_vault_connections: Read Flows Vault Connections
            read:forms: Read Forms
            read:grants: Read Grants
            read:group_members: Read Group Members
            read:group_roles: Read Group Roles
            read:groups: Read Groups
            read:guardian_enrollments: Read Guardian Enrollments
            read:guardian_factors: Read Guardian Factors
            read:hooks: Read Hooks
            read:log_streams: Read Log Streams
            read:logs: Read Logs
            read:logs_users: Read Logs Users
            read:mfa_policies: Read Mfa Policies
            read:network_acls: Read Network Acls
            read:organization_client_grants: Read Organization Client Grants
            read:organization_connections: Read Organization Connections
            read:organization_discovery_domains: Read Organization Discovery Domains
            read:organization_group_roles: Read Organization Group Roles
            read:organization_groups: Read Organization Groups
            read:organization_invitations: Read Organization Invitations
            read:organization_member_effective_roles: Read Organization Member Effective Roles
            read:organization_member_role_source_groups: Read Organization Member Role Source Groups
            read:organization_member_roles: Read Organization Member Roles
            read:organization_members: Read Organization Members
            read:organizations: Read Organizations
            read:organizations_summary: Read Organizations Summary
            read:phone_providers: Read Phone Providers
            read:phone_templates: Read Phone Templates
            read:prompts: Read Prompts
            read:rate_limit_policies: Read Rate Limit Policies
            read:refresh_tokens: Read Refresh Tokens
            read:resource_servers: Read Resource Servers
            read:role_members: Read Role Members
            read:roles: Read Roles
            read:rules: Read Rules
            read:rules_configs: Read Rules Configs
            read:scim_config: Read Scim Config
            read:scim_token: Read Scim Token
            read:self_service_profile_custom_texts: Read Self Service Profile Custom Texts
            read:self_service_profiles: Read Self Service Profiles
            read:sessions: Read Sessions
            read:signing_keys: Read Signing Keys
            read:stats: Read Stats
            read:tenant_settings: Read Tenant Settings
            read:token_exchange_profiles: Read Token Exchange Profiles
            read:user_attribute_profiles: Read User Attribute Profiles
            read:user_effective_permissions: Read User Effective Permissions
            read:user_effective_roles: Read User Effective Roles
            read:user_idp_tokens: Read User Idp Tokens
            read:user_permission_source_roles: Read User Permission Source Roles
            read:user_role_source_groups: Read User Role Source Groups
            read:users: Read Users
            read:vdcs_templates: Read Vdcs Templates
            update:actions: Update Actions
            update:attack_protection: Update Attack Protection
            update:authentication_methods: Update Authentication Methods
            update:branding: Update Branding
            update:client_credentials: Update Client Credentials
            update:client_grants: Update Client Grants
            update:client_keys: Update Client Keys
            update:client_token_vault_privileged_access: Update Client Token Vault Privileged Access
            update:clients: Update Clients
            update:connection_profiles: Update Connection Profiles
            update:connections: Update Connections
            update:connections_keys: Update Connections Keys
            update:current_user_identities: Update Current User Identities
            update:current_user_metadata: Update Current User Metadata
            update:custom_domains: Update Custom Domains
            update:custom_signing_keys: Update Custom Signing Keys
            update:directory_provisionings: Update Directory Provisionings
            update:email_provider: Update Email Provider
            update:email_templates: Update Email Templates
            update:encryption_keys: Update Encryption Keys
            update:event_deliveries: Update Event Deliveries
            update:event_streams: Update Event Streams
            update:experimentation: Update Experimentation
            update:flows: Update Flows
            update:flows_vault_connections: Update Flows Vault Connections
            update:forms: Update Forms
            update:guardian_factors: Update Guardian Factors
            update:hooks: Update Hooks
            update:log_streams: Update Log Streams
            update:mfa_policies: Update Mfa Policies
            update:network_acls: Update Network Acls
            update:organization_connections: Update Organization Connections
            update:organization_discovery_domains: Update Organization Discovery Domains
            update:organizations: Update Organizations
            update:phone_providers: Update Phone Providers
            update:phone_templates: Update Phone Templates
            update:prompts: Update Prompts
            update:rate_limit_policies: Update Rate Limit Policies
            update:refresh_tokens: Update Refresh Tokens
            update:resource_servers: Update Resource Servers
            update:roles: Update Roles
            update:rules: Update Rules
            update:rules_configs: Update Rules Configs
            update:scim_config: Update Scim Config
            update:self_service_profile_custom_texts: Update Self Service Profile Custom Texts
            update:self_service_profiles: Update Self Service Profiles
            update:sessions: Update Sessions
            update:signing_keys: Update Signing Keys
            update:tenant_settings: Update Tenant Settings
            update:token_exchange_profiles: Update Token Exchange Profiles
            update:user_attribute_profiles: Update User Attribute Profiles
            update:users: Update Users
            update:users_app_metadata: Update Users App Metadata
            update:vdcs_templates: Update Vdcs Templates
          tokenUrl: /oauth/token/
          x-form-parameters:
            audience: /api/v2/
      type: oauth2

````