Palo Alto Networks · JSON Structure

Prisma Access Browser Api Browser Policy Request Structure

BrowserPolicyRequest schema from Palo Alto Networks Prisma Access Browser Management API

Type: object Properties: 7 Required: 1
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

BrowserPolicyRequest is a JSON Structure definition published by Palo Alto Networks, describing 7 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name description enabled web_filtering dlp_enabled extension_policy download_control

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/prisma-access-browser-api-browser-policy-request-structure.json",
  "name": "BrowserPolicyRequest",
  "description": "BrowserPolicyRequest schema from Palo Alto Networks Prisma Access Browser Management API",
  "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"
  ]
}