Palo Alto Networks · Schema

ComplianceIssue

ComplianceIssue schema from Palo Alto Networks Prisma Cloud Compute API

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
id integer Compliance check ID.
title string Title of the compliance check.
severity string Severity of the compliance issue.
cause string Explanation of why the resource failed the check.
description string Detailed description of the compliance requirement.
View JSON Schema on GitHub

JSON Schema

prisma-cloud-compute-api-compliance-issue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ComplianceIssue",
  "description": "ComplianceIssue schema from Palo Alto Networks Prisma Cloud Compute API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/prisma-cloud-compute-api-compliance-issue-schema.json",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Compliance check ID."
    },
    "title": {
      "type": "string",
      "description": "Title of the compliance check."
    },
    "severity": {
      "type": "string",
      "enum": [
        "critical",
        "high",
        "medium",
        "low"
      ],
      "description": "Severity of the compliance issue."
    },
    "cause": {
      "type": "string",
      "description": "Explanation of why the resource failed the check."
    },
    "description": {
      "type": "string",
      "description": "Detailed description of the compliance requirement."
    }
  }
}