Auth0 · Schema

LogStreamHttpSink

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
httpAuthorization string HTTP Authorization header
httpContentFormat object
httpContentType string HTTP Content-Type header
httpEndpoint string HTTP endpoint
httpCustomHeaders array custom HTTP headers
View JSON Schema on GitHub

JSON Schema

auth0-logstreamhttpsink-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LogStreamHttpSink",
  "title": "LogStreamHttpSink",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "httpEndpoint"
  ],
  "properties": {
    "httpAuthorization": {
      "type": "string",
      "description": "HTTP Authorization header"
    },
    "httpContentFormat": {
      "$ref": "#/components/schemas/LogStreamHttpContentFormatEnum"
    },
    "httpContentType": {
      "type": "string",
      "description": "HTTP Content-Type header"
    },
    "httpEndpoint": {
      "type": "string",
      "description": "HTTP endpoint",
      "pattern": "^https://.*"
    },
    "httpCustomHeaders": {
      "type": "array",
      "description": "custom HTTP headers",
      "items": {
        "$ref": "#/components/schemas/HttpCustomHeader"
      }
    }
  }
}