Auth0 · Schema

EventStreamCloudEvent

Event content. This will only be set if delivery failed.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string Unique identifier for the event
source string Where the event originated
specversion string Version of CloudEvents spec
type string Type of the event (e.g., user.created)
time string Timestamp at which the event was generated
data string Event contents encoded as a string.
View JSON Schema on GitHub

JSON Schema

auth0-eventstreamcloudevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventStreamCloudEvent",
  "title": "EventStreamCloudEvent",
  "type": "object",
  "description": "Event content. This will only be set if delivery failed.",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the event",
      "minLength": 26,
      "maxLength": 26,
      "format": "event-id"
    },
    "source": {
      "type": "string",
      "description": "Where the event originated"
    },
    "specversion": {
      "type": "string",
      "description": "Version of CloudEvents spec"
    },
    "type": {
      "type": "string",
      "description": "Type of the event (e.g., user.created)"
    },
    "time": {
      "type": "string",
      "description": "Timestamp at which the event was generated",
      "format": "date-time"
    },
    "data": {
      "type": "string",
      "description": "Event contents encoded as a string."
    }
  }
}