{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/sase-subscription-api-subscription-structure.json", "name": "Subscription", "description": "Subscription schema from Palo Alto Networks SASE Subscription Service API", "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", "description": "Current subscription status.", "enum": [ "active", "expired", "pending" ] }, "licensed_quantity": { "type": "int32", "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": "int32", "description": "Currently utilized quantity." }, "start_date": { "type": "date", "description": "Subscription start date." }, "end_date": { "type": "date", "description": "Subscription end date." }, "support_level": { "type": "string", "description": "Support tier included with the subscription." } } }