Palo Alto Networks · JSON Structure

Sase Aggregate Monitoring Api Aggregation Response Structure

AggregationResponse schema from Palo Alto Networks SASE Aggregate Monitoring API

Type: object Properties: 5
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

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

Properties

total count time_range data histogram

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-aggregate-monitoring-api-aggregation-response-structure.json",
  "name": "AggregationResponse",
  "description": "AggregationResponse schema from Palo Alto Networks SASE Aggregate Monitoring API",
  "type": "object",
  "properties": {
    "total": {
      "type": "int32",
      "description": "Total number of matching records before count limit."
    },
    "count": {
      "type": "int32",
      "description": "Number of records returned."
    },
    "time_range": {
      "type": "object",
      "properties": {
        "start": {
          "type": "datetime"
        },
        "end": {
          "type": "datetime"
        }
      }
    },
    "data": {
      "type": "array",
      "description": "Array of result objects. Schema varies by query type and group_by dimensions.",
      "items": {
        "type": "object",
        "additionalProperties": true
      }
    },
    "histogram": {
      "type": "array",
      "description": "Time-series histogram buckets when histogram configuration was specified in the query.",
      "items": {
        "type": "object",
        "properties": {
          "timestamp": {
            "type": "datetime"
          },
          "count": {
            "type": "int32"
          },
          "values": {
            "type": "object",
            "additionalProperties": true
          }
        }
      }
    }
  }
}