Palo Alto Networks · JSON Structure

Strata Logging Service Api Forwarding Status Structure

ForwardingStatus schema from Palo Alto Networks Strata Logging Service API

Type: object Properties: 3
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

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

Properties

profile_id overall_status 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/strata-logging-service-api-forwarding-status-structure.json",
  "name": "ForwardingStatus",
  "description": "ForwardingStatus schema from Palo Alto Networks Strata Logging Service API",
  "type": "object",
  "properties": {
    "profile_id": {
      "type": "string",
      "description": "Log forwarding profile identifier."
    },
    "overall_status": {
      "type": "string",
      "description": "Overall health status of the forwarding profile.",
      "enum": [
        "healthy",
        "degraded",
        "error"
      ]
    },
    "destinations": {
      "type": "array",
      "description": "Per-destination status details.",
      "items": {
        "type": "object",
        "properties": {
          "destination_id": {
            "type": "string"
          },
          "destination_type": {
            "type": "string",
            "enum": [
              "syslog",
              "https",
              "email"
            ]
          },
          "status": {
            "type": "string",
            "enum": [
              "healthy",
              "error",
              "disabled"
            ]
          },
          "last_successful_delivery": {
            "type": "datetime"
          },
          "error_count_24h": {
            "type": "int32"
          },
          "last_error": {
            "type": "string"
          }
        }
      }
    }
  }
}