Palo Alto Networks · JSON Structure

Security Advisory Api Advisory Structure

A PSIRT security advisory for a Palo Alto Networks product.

Type: object Properties: 15
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

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

Properties

advisory_id cve_id title description severity cvss_score cvss_vector cwe affected_products fixed_versions workarounds exploit_status published_date last_modified_date references

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/security-advisory-api-advisory-structure.json",
  "name": "Advisory",
  "description": "A PSIRT security advisory for a Palo Alto Networks product.",
  "type": "object",
  "properties": {
    "advisory_id": {
      "type": "string",
      "description": "Palo Alto Networks advisory identifier (e.g., PAN-SA-2024-0001)."
    },
    "cve_id": {
      "type": "string",
      "description": "CVE identifier (e.g., CVE-2024-3400)."
    },
    "title": {
      "type": "string",
      "description": "Advisory title summarizing the vulnerability."
    },
    "description": {
      "type": "string",
      "description": "Detailed description of the vulnerability including impact and attack vector."
    },
    "severity": {
      "type": "string",
      "description": "Severity rating based on CVSS v3.1 base score.",
      "enum": [
        "NONE",
        "LOW",
        "MEDIUM",
        "HIGH",
        "CRITICAL"
      ]
    },
    "cvss_score": {
      "type": "double",
      "description": "CVSS v3.1 base score (0.0 to 10.0).",
      "minimum": 0.0,
      "maximum": 10.0
    },
    "cvss_vector": {
      "type": "string",
      "description": "CVSS v3.1 vector string (e.g., CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H)."
    },
    "cwe": {
      "type": "string",
      "description": "CWE identifier for the vulnerability class."
    },
    "affected_products": {
      "type": "array",
      "description": "Products and version ranges affected by this vulnerability.",
      "items": {
        "type": "object",
        "properties": {
          "product": {
            "type": "string",
            "description": "Product name (e.g., PAN-OS, Cortex XDR Agent)."
          },
          "versions": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "version": {
                  "type": "string",
                  "description": "Affected version or version range."
                },
                "status": {
                  "type": "string",
                  "description": "Vulnerability status for this version.",
                  "enum": [
                    "Affected",
                    "Unaffected",
                    "Fixed"
                  ]
                }
              }
            }
          }
        }
      }
    },
    "fixed_versions": {
      "type": "array",
      "description": "Product versions in which the vulnerability is fixed.",
      "items": {
        "type": "string"
      }
    },
    "workarounds": {
      "type": "string",
      "description": "Available workarounds or mitigations if a fix is not yet deployed."
    },
    "exploit_status": {
      "type": "string",
      "description": "Known exploit activity status.",
      "enum": [
        "None",
        "Proof-of-Concept",
        "Active"
      ]
    },
    "published_date": {
      "type": "datetime",
      "description": "Date and time when the advisory was first published."
    },
    "last_modified_date": {
      "type": "datetime",
      "description": "Date and time of the most recent advisory update."
    },
    "references": {
      "type": "array",
      "description": "External references and related advisories.",
      "items": {
        "type": "object",
        "properties": {
          "url": {
            "type": "uri",
            "description": "Reference URL."
          },
          "description": {
            "type": "string",
            "description": "Description of the referenced resource."
          }
        }
      }
    }
  }
}