Palo Alto Networks · Schema

BrowserUser

BrowserUser schema from Palo Alto Networks Prisma Access Browser Management API

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
user_id string Unique identifier of the browser user.
email string User email address.
display_name string User display name.
policy_id string ID of the browser policy assigned to this user.
active_sessions integer Current number of active browser sessions.
last_active_at string
View JSON Schema on GitHub

JSON Schema

prisma-access-browser-api-browser-user-schema.json Raw ↑
{
  "$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"
    }
  }
}