{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/prisma-cloud-compute-api-vulnerability-policy-structure.json", "name": "VulnerabilityPolicy", "description": "VulnerabilityPolicy schema from Palo Alto Networks Prisma Cloud Compute API", "type": "object", "properties": { "rules": { "type": "array", "description": "Ordered list of vulnerability policy rules.", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "Rule name." }, "collections": { "type": "array", "description": "Collections this rule applies to.", "items": { "type": "string" } }, "effect": { "type": "string", "description": "Action to take for matching vulnerabilities.", "enum": [ "ignore", "alert", "block" ] }, "condition": { "type": "object", "description": "Conditions that trigger this rule.", "properties": { "cves": { "type": "object", "properties": { "ids": { "type": "array", "items": { "type": "string" } }, "effect": { "type": "string" } } }, "severities": { "type": "array", "items": { "type": "string", "enum": [ "critical", "high", "medium", "low" ] } } } } } } } } }