Auth0 · Schema

EventStreamCloudEventOffsetOnlyMessage

An offset-only heartbeat message. Advances the cursor without delivering an event.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

auth0-eventstreamcloudeventoffsetonlymessage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventStreamCloudEventOffsetOnlyMessage",
  "title": "EventStreamCloudEventOffsetOnlyMessage",
  "type": "object",
  "description": "An offset-only heartbeat message. Advances the cursor without delivering an event.",
  "additionalProperties": false,
  "required": [
    "type",
    "offset"
  ],
  "properties": {
    "type": {
      "$ref": "#/components/schemas/EventStreamCloudEventOffsetOnlyMessageTypeEnum"
    },
    "offset": {
      "type": "string",
      "description": "Opaque cursor representing the latest position in the stream. Pass as the `from` query parameter to resume."
    }
  }
}