Palo Alto Networks · JSON Structure

Ztna Connector Api Fqdn Rule Request Structure

FQDNRuleRequest schema from Palo Alto Networks ZTNA Connector API

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

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

Properties

name fqdn_pattern group_id ports enabled

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/ztna-connector-api-fqdn-rule-request-structure.json",
  "name": "FQDNRuleRequest",
  "description": "FQDNRuleRequest schema from Palo Alto Networks ZTNA Connector API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for the FQDN rule."
    },
    "fqdn_pattern": {
      "type": "string",
      "description": "FQDN pattern or wildcard this rule matches."
    },
    "group_id": {
      "type": "string",
      "description": "Connector group to use for matching FQDNs."
    },
    "ports": {
      "type": "array",
      "description": "Ports covered by this rule.",
      "items": {
        "type": "int32"
      }
    },
    "enabled": {
      "type": "boolean",
      "default": true
    }
  },
  "required": [
    "name",
    "fqdn_pattern",
    "group_id"
  ]
}