Palo Alto Networks · JSON Structure

Sase 5G Api Security Metrics5 G Structure

SecurityMetrics5G schema from Palo Alto Networks SASE 5G Managed Services API

Type: object Properties: 8
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

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

Properties

period total_sessions threats_detected threats_blocked bytes_inspected active_subscribers per_slice_metrics time_series

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/sase-5g-api-security-metrics5-g-structure.json",
  "name": "SecurityMetrics5G",
  "description": "SecurityMetrics5G schema from Palo Alto Networks SASE 5G Managed Services API",
  "type": "object",
  "properties": {
    "period": {
      "type": "object",
      "properties": {
        "start": {
          "type": "datetime"
        },
        "end": {
          "type": "datetime"
        }
      }
    },
    "total_sessions": {
      "type": "int32",
      "description": "Total 5G sessions inspected during the period."
    },
    "threats_detected": {
      "type": "int32",
      "description": "Number of threats detected in 5G traffic."
    },
    "threats_blocked": {
      "type": "int32",
      "description": "Number of threats blocked."
    },
    "bytes_inspected": {
      "type": "int32",
      "description": "Total bytes of 5G traffic inspected."
    },
    "active_subscribers": {
      "type": "int32",
      "description": "Number of active 5G subscribers."
    },
    "per_slice_metrics": {
      "type": "array",
      "description": "Metrics broken down by network slice.",
      "items": {
        "type": "object",
        "properties": {
          "slice_id": {
            "type": "string"
          },
          "slice_name": {
            "type": "string"
          },
          "sessions": {
            "type": "int32"
          },
          "threats_detected": {
            "type": "int32"
          },
          "bytes_inspected": {
            "type": "int32"
          }
        }
      }
    },
    "time_series": {
      "type": "array",
      "description": "Time-series data points for the metrics period.",
      "items": {
        "type": "object",
        "properties": {
          "timestamp": {
            "type": "datetime"
          },
          "sessions": {
            "type": "int32"
          },
          "threats": {
            "type": "int32"
          }
        }
      }
    }
  }
}