{ "$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" } } } } } }