{ "$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." } } }