Auth0 · Schema

EventStreamWebhookCustomHeaderAuth

Custom header authorization for HTTP requests.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
method object
header_key string HTTP header name.
View JSON Schema on GitHub

JSON Schema

auth0-eventstreamwebhookcustomheaderauth-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventStreamWebhookCustomHeaderAuth",
  "title": "EventStreamWebhookCustomHeaderAuth",
  "type": "object",
  "description": "Custom header authorization for HTTP requests.",
  "additionalProperties": false,
  "required": [
    "method",
    "header_key"
  ],
  "properties": {
    "method": {
      "$ref": "#/components/schemas/EventStreamWebhookCustomHeaderAuthMethodEnum"
    },
    "header_key": {
      "type": "string",
      "description": "HTTP header name.",
      "minLength": 1,
      "pattern": "^[a-zA-Z0-9!#$%&'*+.^_`|~-]+$"
    }
  }
}