Palo Alto Networks · Schema

AttackCategory

AttackCategory schema from Palo Alto Networks Prisma AIRS AI Red Teaming API

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
category_id string Unique identifier for the attack category.
name string Human-readable category name.
description string Description of the vulnerability class this category tests.
attack_count integer Number of built-in attack probes in this category.
severity_range object Severity range of vulnerabilities this category can discover.
examples array Example attack type names within this category.
View JSON Schema on GitHub

JSON Schema

prisma-airs-ai-red-teaming-api-attack-category-schema.json Raw ↑
{
  "$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."
    }
  }
}