Palo Alto Networks · Schema

PanOsResponse

Standard PAN-OS API response envelope.

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
@status string
@code string
msg string
View JSON Schema on GitHub

JSON Schema

pan-os-rest-api-pan-os-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PanOsResponse",
  "description": "Standard PAN-OS API response envelope.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/pan-os-rest-api-pan-os-response-schema.json",
  "type": "object",
  "properties": {
    "@status": {
      "type": "string",
      "enum": [
        "success",
        "error"
      ]
    },
    "@code": {
      "type": "string"
    },
    "msg": {
      "type": "string"
    }
  }
}