{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/prisma-access-api-remote-network-structure.json", "name": "RemoteNetwork", "description": "RemoteNetwork schema from Palo Alto Networks Prisma Access Configuration API", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier for the remote network." }, "name": { "type": "string", "description": "Name of the remote network." }, "region": { "type": "string", "description": "Prisma Access compute region (e.g., us-east-1, eu-west-1)." }, "license_type": { "type": "string", "description": "License type assigned to this remote network.", "enum": [ "FWAAS-AGGREGATE", "FWAAS-BYOL" ] }, "spn_name": { "type": "string", "description": "Service provider node name for the Prisma Access gateway location." }, "ecmp_load_balancing": { "type": "string", "description": "Enable or disable ECMP load balancing.", "enum": [ "enable", "disable" ] }, "subnets": { "type": "array", "description": "Local subnets at the remote network site.", "items": { "type": "string" } }, "folder": { "type": "string", "description": "Folder containing this remote network." } }, "required": [ "name", "region" ] }