{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "BrowserSession", "description": "BrowserSession 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-session-schema.json", "type": "object", "properties": { "session_id": { "type": "string", "description": "Unique identifier of the browser session." }, "user_id": { "type": "string", "description": "User ID of the session owner." }, "device_id": { "type": "string", "description": "Device ID used in this session." }, "ip_address": { "type": "string", "description": "Client IP address." }, "policy_id": { "type": "string", "description": "Policy applied during this session." }, "browser_version": { "type": "string", "description": "Prisma Access Browser version." }, "status": { "type": "string", "enum": [ "active", "terminated" ], "description": "Session status." }, "started_at": { "type": "string", "format": "date-time" }, "ended_at": { "type": "string", "format": "date-time" } } }