Palo Alto Networks · Schema

DataResourceResponse

Response containing data resource query results

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
header object Response metadata
data array Array of result records
count integer Total number of records matching the query
pagination object Pagination information
View JSON Schema on GitHub

JSON Schema

prisma-access-insights-api-data-resource-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DataResourceResponse",
  "description": "Response containing data resource query results",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/prisma-access-insights-api-data-resource-response-schema.json",
  "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": "string",
          "format": "date-time"
        }
      }
    },
    "data": {
      "type": "array",
      "description": "Array of result records",
      "items": {
        "type": "object",
        "additionalProperties": true
      }
    },
    "count": {
      "type": "integer",
      "description": "Total number of records matching the query"
    },
    "pagination": {
      "type": "object",
      "description": "Pagination information",
      "properties": {
        "offset": {
          "type": "integer",
          "description": "Current result offset"
        },
        "limit": {
          "type": "integer",
          "description": "Page size"
        }
      }
    }
  }
}