Auth0 · Schema

EventStreamCloudEventGroupCreated

SSE message for group.created.

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-eventstreamcloudeventgroupcreated-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventStreamCloudEventGroupCreated",
  "title": "EventStreamCloudEventGroupCreated",
  "type": "object",
  "description": "SSE message for group.created.",
  "additionalProperties": false,
  "required": [
    "type",
    "offset",
    "event"
  ],
  "properties": {
    "type": {
      "$ref": "#/components/schemas/EventStreamCloudEventGroupCreatedTypeEnum"
    },
    "offset": {
      "type": "string",
      "description": "Opaque cursor representing position in the stream. Pass as the `from` query parameter to resume."
    },
    "event": {
      "$ref": "#/components/schemas/EventStreamCloudEventGroupCreatedCloudEvent"
    }
  }
}