Palo Alto Networks · Schema
AttackSurfaceRule
An attack surface rule defining criteria for classifying internet exposures as incidents.
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR
Properties
| Name | Type | Description |
|---|---|---|
| attack_surface_rule_id | string | |
| attack_surface_rule_name | string | |
| category | string | Rule category (e.g., Unencrypted, Misconfigured, Unauthorized). |
| description | string | |
| remediation_guidance | string | |
| enabled_status | string | |
| severity | string | |
| created | integer | |
| modified | integer | |
| release_status | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "AttackSurfaceRule",
"description": "An attack surface rule defining criteria for classifying internet exposures as incidents.",
"$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/cortex-xpanse-api-attack-surface-rule-schema.json",
"type": "object",
"properties": {
"attack_surface_rule_id": {
"type": "string"
},
"attack_surface_rule_name": {
"type": "string"
},
"category": {
"type": "string",
"description": "Rule category (e.g., Unencrypted, Misconfigured, Unauthorized)."
},
"description": {
"type": "string"
},
"remediation_guidance": {
"type": "string"
},
"enabled_status": {
"type": "string",
"enum": [
true,
false
]
},
"severity": {
"type": "string",
"enum": [
"critical",
"high",
"medium",
"low",
"informational"
]
},
"created": {
"type": "integer"
},
"modified": {
"type": "integer"
},
"release_status": {
"type": "string",
"enum": [
"GA",
"BETA"
]
}
}
}