{ "$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." } } }