Auth0 · Schema

CreateEventStreamTestEventRequestContent

The payload for sending a test event to an event stream.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
event_type object
data object
View JSON Schema on GitHub

JSON Schema

auth0-createeventstreamtesteventrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateEventStreamTestEventRequestContent",
  "title": "CreateEventStreamTestEventRequestContent",
  "type": "object",
  "description": "The payload for sending a test event to an event stream.",
  "additionalProperties": false,
  "required": [
    "event_type"
  ],
  "properties": {
    "event_type": {
      "$ref": "#/components/schemas/EventStreamTestEventTypeEnum"
    },
    "data": {
      "$ref": "#/components/schemas/TestEventDataContent"
    }
  }
}