Auth0 · Schema

EventStreamWebhookConfiguration

Configuration specific to a webhook destination.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
webhook_endpoint string Target HTTP endpoint URL.
webhook_authorization object
View JSON Schema on GitHub

JSON Schema

auth0-eventstreamwebhookconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventStreamWebhookConfiguration",
  "title": "EventStreamWebhookConfiguration",
  "type": "object",
  "description": "Configuration specific to a webhook destination.",
  "additionalProperties": false,
  "required": [
    "webhook_endpoint",
    "webhook_authorization"
  ],
  "properties": {
    "webhook_endpoint": {
      "type": "string",
      "description": "Target HTTP endpoint URL.",
      "pattern": "^https://.*"
    },
    "webhook_authorization": {
      "$ref": "#/components/schemas/EventStreamWebhookAuthorizationResponse"
    }
  }
}