Auth0 · Schema

EventStreamCloudEventOrgConnectionRemoved

SSE message for organization.connection.removed.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
type object
offset string Opaque cursor representing position in the stream. Pass as the `from` query parameter to resume.
event object
View JSON Schema on GitHub

JSON Schema

auth0-eventstreamcloudeventorgconnectionremoved-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventStreamCloudEventOrgConnectionRemoved",
  "title": "EventStreamCloudEventOrgConnectionRemoved",
  "type": "object",
  "description": "SSE message for organization.connection.removed.",
  "additionalProperties": false,
  "required": [
    "type",
    "offset",
    "event"
  ],
  "properties": {
    "type": {
      "$ref": "#/components/schemas/EventStreamCloudEventOrgConnectionRemovedTypeEnum"
    },
    "offset": {
      "type": "string",
      "description": "Opaque cursor representing position in the stream. Pass as the `from` query parameter to resume."
    },
    "event": {
      "$ref": "#/components/schemas/EventStreamCloudEventOrgConnectionRemovedCloudEvent"
    }
  }
}