PolicyRequest schema from Aqua Security API
{ "type": "object", "properties": { "name": { "type": "string", "example": "high-security", "description": "Policy name (unique)" }, "description": { "type": "string", "example": "Policy blocking high severity vulnerabilities", "description": "Policy description" }, "block_failed": { "type": "boolean", "example": true, "description": "Block containers failing policy" }, "maximum_score": { "type": "number", "example": 7.0, "description": "Maximum CVSS score threshold" } }, "required": [ "name" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/aqua-security/refs/heads/main/json-schema/aqua-security-api-policy-request-schema.json", "title": "PolicyRequest", "description": "PolicyRequest schema from Aqua Security API" }