Palo Alto Networks · JSON Structure

Saas Security Api Log Forwarding Settings Structure

LogForwardingSettings schema from Palo Alto Networks SaaS Security API

Type: object Properties: 2
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

LogForwardingSettings is a JSON Structure definition published by Palo Alto Networks, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

enabled destinations

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/saas-security-api-log-forwarding-settings-structure.json",
  "name": "LogForwardingSettings",
  "description": "LogForwardingSettings schema from Palo Alto Networks SaaS Security API",
  "type": "object",
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Whether log forwarding is globally enabled."
    },
    "destinations": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Forwarding destination type.",
            "enum": [
              "syslog",
              "https",
              "s3",
              "splunk"
            ]
          },
          "name": {
            "type": "string",
            "description": "Destination name."
          },
          "enabled": {
            "type": "boolean",
            "description": "Whether this destination is active."
          },
          "log_types": {
            "type": "array",
            "description": "Log types forwarded to this destination.",
            "items": {
              "type": "string"
            }
          }
        }
      }
    }
  }
}