Palo Alto Networks · JSON Structure

Prisma Access Insights Api Data Resource Response Structure

Response containing data resource query results

Type: object Properties: 4
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

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

Properties

header data count pagination

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/prisma-access-insights-api-data-resource-response-structure.json",
  "name": "DataResourceResponse",
  "description": "Response containing data resource query results",
  "type": "object",
  "properties": {
    "header": {
      "type": "object",
      "description": "Response metadata",
      "properties": {
        "requestId": {
          "type": "string",
          "description": "Unique request identifier"
        },
        "status": {
          "type": "string",
          "enum": [
            "success",
            "failed",
            "partial"
          ]
        },
        "timestamp": {
          "type": "datetime"
        }
      }
    },
    "data": {
      "type": "array",
      "description": "Array of result records",
      "items": {
        "type": "object",
        "additionalProperties": true
      }
    },
    "count": {
      "type": "int32",
      "description": "Total number of records matching the query"
    },
    "pagination": {
      "type": "object",
      "description": "Pagination information",
      "properties": {
        "offset": {
          "type": "int32",
          "description": "Current result offset"
        },
        "limit": {
          "type": "int32",
          "description": "Page size"
        }
      }
    }
  }
}