Palo Alto Networks · JSON Structure

Sase Multitenant Notifications Api Notif Type Detail Structure

NotifTypeDetail schema from Multi-Tenant Notifications API

Type: object Properties: 2 Required: 2
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

NotifTypeDetail is a JSON Structure definition published by Palo Alto Networks, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type notifCategoryList

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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-type-detail-structure.json",
  "name": "NotifTypeDetail",
  "description": "NotifTypeDetail schema from Multi-Tenant Notifications API",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Notification Type",
      "enum": [
        "INCIDENTS",
        "UPGRADES",
        "ANNOUNCEMENTS"
      ]
    },
    "notifCategoryList": {
      "type": "array",
      "description": "List of notification type categories",
      "items": {
        "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"
        ]
      }
    }
  },
  "required": [
    "type",
    "notifCategoryList"
  ]
}