Palo Alto Networks · Schema

RuleDestination

Traffic destination matching criteria for a security rule.

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
Cidrs array Destination CIDR blocks.
Countries array Destination country codes.
Feeds array
FqdnLists array Names of FQDN lists defined in the rule stack.
PrefixLists array
View JSON Schema on GitHub

JSON Schema

cloud-ngfw-api-rule-destination-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RuleDestination",
  "description": "Traffic destination matching criteria for a security rule.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/cloud-ngfw-api-rule-destination-schema.json",
  "type": "object",
  "properties": {
    "Cidrs": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Destination CIDR blocks."
    },
    "Countries": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Destination country codes."
    },
    "Feeds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "FqdnLists": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Names of FQDN lists defined in the rule stack."
    },
    "PrefixLists": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}