Auth0 · Schema

CreateLogStreamDatadogRequestBody

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string log stream name
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
startFrom string The optional datetime (ISO 8601) to start streaming logs from
View JSON Schema on GitHub

JSON Schema

auth0-createlogstreamdatadogrequestbody-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateLogStreamDatadogRequestBody",
  "title": "CreateLogStreamDatadogRequestBody",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "type",
    "sink"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "log stream name"
    },
    "type": {
      "$ref": "#/components/schemas/LogStreamDatadogEnum"
    },
    "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/LogStreamDatadogSink"
    },
    "startFrom": {
      "type": "string",
      "description": "The optional datetime (ISO 8601) to start streaming logs from",
      "default": "2021-03-01T19:57:29.532Z"
    }
  }
}