{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/sase-multitenant-notifications-api-notif-category-detail-structure.json", "name": "NotifCategoryDetail", "description": "NotifCategoryDetail schema from Multi-Tenant Notifications API", "type": "object", "properties": { "name": { "type": "string", "description": "Notification type category name" }, "bestPractice": { "type": "boolean", "description": "Best practice flag for category" }, "subCategoryList": { "type": "array", "description": "List of notification type sub-categories", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "Notification type sub-category name" }, "bestPractice": { "type": "boolean", "description": "Best practice flag for sub-category" }, "needLicense": { "type": "boolean", "description": "Need license flag for sub-category" } }, "required": [ "name", "bestPractice", "needLicense" ] } } }, "required": [ "name", "bestPractice", "subCategoryList" ] }