{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "AttackCategory", "description": "AttackCategory schema from Palo Alto Networks Prisma AIRS AI Red Teaming API", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/prisma-airs-ai-red-teaming-api-attack-category-schema.json", "type": "object", "properties": { "category_id": { "type": "string", "description": "Unique identifier for the attack category." }, "name": { "type": "string", "description": "Human-readable category name." }, "description": { "type": "string", "description": "Description of the vulnerability class this category tests." }, "attack_count": { "type": "integer", "description": "Number of built-in attack probes in this category." }, "severity_range": { "type": "object", "description": "Severity range of vulnerabilities this category can discover.", "properties": { "min": { "type": "string", "enum": [ "informational", "low", "medium", "high", "critical" ] }, "max": { "type": "string", "enum": [ "informational", "low", "medium", "high", "critical" ] } } }, "examples": { "type": "array", "items": { "type": "string" }, "description": "Example attack type names within this category." } } }