Palo Alto Networks · Schema

IPBlockEntry

IPBlockEntry schema from SP Interconnect Manage APIs

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
edgeLocation string
cidr array
type string
View JSON Schema on GitHub

JSON Schema

sase-multitenant-interconnect-api-ip-block-entry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "IPBlockEntry",
  "description": "IPBlockEntry schema from SP Interconnect Manage APIs",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/sase-multitenant-interconnect-api-ip-block-entry-schema.json",
  "type": "object",
  "properties": {
    "edgeLocation": {
      "type": "string"
    },
    "cidr": {
      "type": "array",
      "minItems": 1,
      "uniqueItems": true,
      "items": {
        "type": "string"
      }
    },
    "type": {
      "type": "string",
      "enum": [
        "PRIMARY",
        "SECONDARY"
      ]
    }
  },
  "required": [
    "cidr"
  ]
}