Palo Alto Networks · JSON Structure

Sase Multitenant Notifications Api Notif Category Detail Structure

NotifCategoryDetail schema from Multi-Tenant Notifications API

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

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

Properties

name bestPractice subCategoryList

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-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"
  ]
}