Palo Alto Networks · Schema

LicenseInfo

LicenseInfo schema from Palo Alto Networks ZTNA Connector API

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
licensed_users integer Total number of ZTNA user licenses purchased.
active_users integer Number of users actively using ZTNA.
subscription_id string Subscription identifier.
expires_at string Subscription expiration date and time.
features array List of enabled ZTNA feature entitlements.
View JSON Schema on GitHub

JSON Schema

ztna-connector-api-license-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LicenseInfo",
  "description": "LicenseInfo schema from Palo Alto Networks ZTNA Connector API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/ztna-connector-api-license-info-schema.json",
  "type": "object",
  "properties": {
    "licensed_users": {
      "type": "integer",
      "description": "Total number of ZTNA user licenses purchased."
    },
    "active_users": {
      "type": "integer",
      "description": "Number of users actively using ZTNA."
    },
    "subscription_id": {
      "type": "string",
      "description": "Subscription identifier."
    },
    "expires_at": {
      "type": "string",
      "format": "date-time",
      "description": "Subscription expiration date and time."
    },
    "features": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of enabled ZTNA feature entitlements."
    }
  }
}