Palo Alto Networks · Schema

NotifTypeDetail

NotifTypeDetail schema from Multi-Tenant Notifications API

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
type string Notification Type
notifCategoryList array List of notification type categories
View JSON Schema on GitHub

JSON Schema

sase-multitenant-notifications-api-notif-type-detail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "NotifTypeDetail",
  "description": "NotifTypeDetail 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-notif-type-detail-schema.json",
  "type": "object",
  "properties": {
    "type": {
      "description": "Notification Type",
      "type": "string",
      "enum": [
        "INCIDENTS",
        "UPGRADES",
        "ANNOUNCEMENTS"
      ]
    },
    "notifCategoryList": {
      "description": "List of notification type categories",
      "type": "array",
      "items": {
        "required": [
          "name",
          "bestPractice",
          "subCategoryList"
        ],
        "type": "object",
        "properties": {
          "name": {
            "description": "Notification type category name",
            "type": "string"
          },
          "bestPractice": {
            "description": "Best practice flag for category",
            "type": "boolean"
          },
          "subCategoryList": {
            "description": "List of notification type sub-categories",
            "type": "array",
            "items": {
              "required": [
                "name",
                "bestPractice",
                "needLicense"
              ],
              "type": "object",
              "properties": {
                "name": {
                  "description": "Notification type sub-category name",
                  "type": "string"
                },
                "bestPractice": {
                  "description": "Best practice flag for sub-category",
                  "type": "boolean"
                },
                "needLicense": {
                  "description": "Need license flag for sub-category",
                  "type": "boolean"
                }
              }
            }
          }
        }
      }
    }
  },
  "required": [
    "type",
    "notifCategoryList"
  ]
}