{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "BrowserDeploymentRequest", "description": "BrowserDeploymentRequest 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-deployment-request-schema.json", "type": "object", "properties": { "name": { "type": "string", "description": "Display name for the deployment." }, "description": { "type": "string" }, "platform": { "type": "string", "enum": [ "windows", "macos", "linux", "chromeos" ], "description": "Target operating system platform." }, "policy_id": { "type": "string", "description": "Default browser policy ID for this deployment." }, "update_channel": { "type": "string", "enum": [ "stable", "beta" ], "default": "stable" } }, "required": [ "name", "platform" ] }