Auth0 · Schema

LogStreamEventBridgeResponseSchema

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string The id of the log stream
name string log stream name
status object
type object
isPriority boolean True for priority log streams, false for non-priority
filters array Only logs events matching these filters will be delivered by the stream. If omitted or empty, all events will be delivered.
pii_config object
sink object
View JSON Schema on GitHub

JSON Schema

auth0-logstreameventbridgeresponseschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LogStreamEventBridgeResponseSchema",
  "title": "LogStreamEventBridgeResponseSchema",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "id": {
      "type": "string",
      "description": "The id of the log stream",
      "format": "log-stream-id"
    },
    "name": {
      "type": "string",
      "description": "log stream name"
    },
    "status": {
      "$ref": "#/components/schemas/LogStreamStatusEnum"
    },
    "type": {
      "$ref": "#/components/schemas/LogStreamEventBridgeEnum"
    },
    "isPriority": {
      "type": "boolean",
      "description": "True for priority log streams, false for non-priority"
    },
    "filters": {
      "type": "array",
      "description": "Only logs events matching these filters will be delivered by the stream. If omitted or empty, all events will be delivered.",
      "items": {
        "$ref": "#/components/schemas/LogStreamFilter"
      }
    },
    "pii_config": {
      "$ref": "#/components/schemas/LogStreamPiiConfig"
    },
    "sink": {
      "$ref": "#/components/schemas/LogStreamEventBridgeSink"
    }
  }
}