Palo Alto Networks · JSON Structure

Strata Logging Service Api Log Forwarding Profile Request Structure

LogForwardingProfileRequest schema from Palo Alto Networks Strata Logging Service API

Type: object Properties: 4 Required: 2
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

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

Properties

name description log_types enabled

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/strata-logging-service-api-log-forwarding-profile-request-structure.json",
  "name": "LogForwardingProfileRequest",
  "description": "LogForwardingProfileRequest schema from Palo Alto Networks Strata Logging Service API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for the profile."
    },
    "description": {
      "type": "string",
      "description": "Optional description."
    },
    "log_types": {
      "type": "array",
      "description": "Log types to include in forwarding.",
      "items": {
        "type": "string",
        "enum": [
          "traffic",
          "threat",
          "url",
          "wildfire",
          "auth",
          "decryption",
          "globalprotect",
          "system",
          "config"
        ]
      }
    },
    "enabled": {
      "type": "boolean",
      "default": true
    }
  },
  "required": [
    "name",
    "log_types"
  ]
}