Auth0 · Schema

LogStreamSplunkSink

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
splunkDomain string Splunk URL Endpoint
splunkPort string Port
splunkToken string Splunk token
splunkSecure boolean Verify TLS certificate
View JSON Schema on GitHub

JSON Schema

auth0-logstreamsplunksink-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LogStreamSplunkSink",
  "title": "LogStreamSplunkSink",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "splunkDomain",
    "splunkToken",
    "splunkPort",
    "splunkSecure"
  ],
  "properties": {
    "splunkDomain": {
      "type": "string",
      "description": "Splunk URL Endpoint"
    },
    "splunkPort": {
      "type": "string",
      "description": "Port",
      "pattern": "^[0-9]*$"
    },
    "splunkToken": {
      "type": "string",
      "description": "Splunk token"
    },
    "splunkSecure": {
      "type": "boolean",
      "description": "Verify TLS certificate"
    }
  }
}