{ "$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-connector-structure.json", "name": "Connector", "description": "Connector schema from Palo Alto Networks ZTNA Connector API", "type": "object", "properties": { "connector_id": { "type": "string", "description": "Unique identifier of the connector." }, "name": { "type": "string", "description": "Display name of the connector." }, "group_id": { "type": "string", "description": "ID of the connector group this connector belongs to." }, "status": { "type": "string", "description": "Current health status of the connector.", "enum": [ "connected", "disconnected", "upgrading", "error" ] }, "version": { "type": "string", "description": "Installed connector software version." }, "hostname": { "type": "string", "description": "Hostname of the system where the connector is installed." }, "ip_address": { "type": "string", "description": "IP address of the connector host." }, "region": { "type": "string", "description": "Geographic region where the connector is deployed." }, "last_seen_at": { "type": "datetime", "description": "Timestamp of the connector's most recent heartbeat." }, "created_at": { "type": "datetime" } } }