{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "MtNotifAggKey", "description": "MtNotifAggKey schema from Multi-Tenant Notifications API", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/sase-multitenant-notifications-api-mt-notif-agg-key-schema.json", "type": "object", "properties": { "tsgId": { "description": "TSG Id", "type": "string" }, "notifType": { "description": "Notification Type", "type": "string", "enum": [ "INCIDENTS", "UPGRADES", "ANNOUNCEMENTS" ] }, "category": { "description": "Notification category - is associated with notification type", "type": "string" }, "subCategory": { "description": "Notification sub-category - is associated with notification type and notification category", "type": "string" }, "inAppFlag": { "description": "InApp Notification Flag", "type": "boolean" } }, "required": [ "tsgId", "notifType", "category", "subCategory", "inAppFlag" ] }