{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "BrowserUser", "description": "BrowserUser 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-user-schema.json", "type": "object", "properties": { "user_id": { "type": "string", "description": "Unique identifier of the browser user." }, "email": { "type": "string", "format": "email", "description": "User email address." }, "display_name": { "type": "string", "description": "User display name." }, "policy_id": { "type": "string", "description": "ID of the browser policy assigned to this user." }, "active_sessions": { "type": "integer", "description": "Current number of active browser sessions." }, "last_active_at": { "type": "string", "format": "date-time" } } }