Palo Alto Networks · Schema
BrowserPolicyRequest
BrowserPolicyRequest schema from Palo Alto Networks Prisma Access Browser Management API
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Display name for the browser policy. |
| description | string | Optional description. |
| enabled | boolean | |
| web_filtering | object | |
| dlp_enabled | boolean | |
| extension_policy | string | |
| download_control | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "BrowserPolicyRequest",
"description": "BrowserPolicyRequest schema from Palo Alto Networks Prisma Access Browser Management API",
"$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/prisma-access-browser-api-browser-policy-request-schema.json",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Display name for the browser policy."
},
"description": {
"type": "string",
"description": "Optional description."
},
"enabled": {
"type": "boolean",
"default": true
},
"web_filtering": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"blocked_categories": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"dlp_enabled": {
"type": "boolean",
"default": false
},
"extension_policy": {
"type": "string",
"enum": [
"allow_all",
"allow_list",
"block_all"
],
"default": "allow_all"
},
"download_control": {
"type": "string",
"enum": [
"allow",
"scan",
"block"
],
"default": "allow"
}
},
"required": [
"name"
]
}