Auth0 · Schema

EventStreamWebhookBasicAuth

Basic Authorization for HTTP requests (e.g., 'Basic credentials').

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
method object
username string Username
View JSON Schema on GitHub

JSON Schema

auth0-eventstreamwebhookbasicauth-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventStreamWebhookBasicAuth",
  "title": "EventStreamWebhookBasicAuth",
  "type": "object",
  "description": "Basic Authorization for HTTP requests (e.g., 'Basic credentials').\n",
  "additionalProperties": false,
  "required": [
    "method",
    "username"
  ],
  "properties": {
    "method": {
      "$ref": "#/components/schemas/EventStreamWebhookBasicAuthMethodEnum"
    },
    "username": {
      "type": "string",
      "description": "Username",
      "maxLength": 128,
      "pattern": "^[^:]+$"
    }
  }
}