Auth0 · Schema

UpdateEventStreamRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string Name of the event stream.
subscriptions array List of event types subscribed to in this stream.
destination object
status object
View JSON Schema on GitHub

JSON Schema

auth0-updateeventstreamrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateEventStreamRequestContent",
  "title": "UpdateEventStreamRequestContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the event stream.",
      "minLength": 1,
      "maxLength": 128
    },
    "subscriptions": {
      "type": "array",
      "description": "List of event types subscribed to in this stream.",
      "items": {
        "$ref": "#/components/schemas/EventStreamSubscription"
      }
    },
    "destination": {
      "$ref": "#/components/schemas/EventStreamDestinationPatch"
    },
    "status": {
      "$ref": "#/components/schemas/EventStreamStatusEnum"
    }
  }
}