Palo Alto Networks · Schema
ApplicationUsage
ApplicationUsage schema from Palo Alto Networks Prisma SD-WAN API
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR
Properties
| Name | Type | Description |
|---|---|---|
| application | string | Application name. |
| site_id | string | Site where the application traffic was observed. |
| bytes_up | integer | Uploaded bytes for the application. |
| bytes_down | integer | Downloaded bytes for the application. |
| sessions | integer | Number of application sessions. |
| avg_latency_ms | number | Average latency for application traffic. |
| timestamp | string | Time bucket for the usage data. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ApplicationUsage",
"description": "ApplicationUsage schema from Palo Alto Networks Prisma SD-WAN API",
"$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/prisma-sd-wan-api-application-usage-schema.json",
"type": "object",
"properties": {
"application": {
"type": "string",
"description": "Application name."
},
"site_id": {
"type": "string",
"description": "Site where the application traffic was observed."
},
"bytes_up": {
"type": "integer",
"format": "int64",
"description": "Uploaded bytes for the application."
},
"bytes_down": {
"type": "integer",
"format": "int64",
"description": "Downloaded bytes for the application."
},
"sessions": {
"type": "integer",
"description": "Number of application sessions."
},
"avg_latency_ms": {
"type": "number",
"description": "Average latency for application traffic."
},
"timestamp": {
"type": "string",
"format": "date-time",
"description": "Time bucket for the usage data."
}
}
}