Palo Alto Networks · Schema
Subscription
Subscription schema from Palo Alto Networks SASE Subscription Service API
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR
Properties
| Name | Type | Description |
|---|---|---|
| subscription_id | string | Unique identifier of the subscription. |
| tsg_id | string | Tenant Service Group ID this subscription is associated with. |
| product_name | string | Product name (e.g., Prisma Access, Prisma SD-WAN). |
| sku | string | Product SKU identifier. |
| status | string | Current subscription status. |
| licensed_quantity | integer | Total licensed quantity (e.g., number of users or devices). |
| licensed_unit | string | Unit of measure for the licensed quantity (e.g., users, devices, Mbps). |
| utilized_quantity | integer | Currently utilized quantity. |
| start_date | string | Subscription start date. |
| end_date | string | Subscription end date. |
| support_level | string | Support tier included with the subscription. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Subscription",
"description": "Subscription schema from Palo Alto Networks SASE Subscription Service API",
"$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/sase-subscription-api-subscription-schema.json",
"type": "object",
"properties": {
"subscription_id": {
"type": "string",
"description": "Unique identifier of the subscription."
},
"tsg_id": {
"type": "string",
"description": "Tenant Service Group ID this subscription is associated with."
},
"product_name": {
"type": "string",
"description": "Product name (e.g., Prisma Access, Prisma SD-WAN)."
},
"sku": {
"type": "string",
"description": "Product SKU identifier."
},
"status": {
"type": "string",
"enum": [
"active",
"expired",
"pending"
],
"description": "Current subscription status."
},
"licensed_quantity": {
"type": "integer",
"description": "Total licensed quantity (e.g., number of users or devices)."
},
"licensed_unit": {
"type": "string",
"description": "Unit of measure for the licensed quantity (e.g., users, devices, Mbps)."
},
"utilized_quantity": {
"type": "integer",
"description": "Currently utilized quantity."
},
"start_date": {
"type": "string",
"format": "date",
"description": "Subscription start date."
},
"end_date": {
"type": "string",
"format": "date",
"description": "Subscription end date."
},
"support_level": {
"type": "string",
"description": "Support tier included with the subscription."
}
}
}