Palo Alto Networks · Schema
MtNotifAggKey
MtNotifAggKey schema from Multi-Tenant Notifications API
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR
Properties
| Name | Type | Description |
|---|---|---|
| tsgId | string | TSG Id |
| notifType | string | Notification Type |
| category | string | Notification category - is associated with notification type |
| subCategory | string | Notification sub-category - is associated with notification type and notification category |
| inAppFlag | boolean | InApp Notification Flag |
JSON Schema
{
"$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"
]
}