Palo Alto Networks · JSON Structure

Ztna Connector Api Subnet Rule Request Structure

SubnetRuleRequest schema from Palo Alto Networks ZTNA Connector API

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

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

Properties

name subnet group_id 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-subnet-rule-request-structure.json",
  "name": "SubnetRuleRequest",
  "description": "SubnetRuleRequest schema from Palo Alto Networks ZTNA Connector API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for the subnet rule."
    },
    "subnet": {
      "type": "string",
      "description": "CIDR notation subnet this rule covers."
    },
    "group_id": {
      "type": "string",
      "description": "Connector group to use for routing traffic to this subnet."
    },
    "enabled": {
      "type": "boolean",
      "default": true
    }
  },
  "required": [
    "name",
    "subnet",
    "group_id"
  ]
}