Palo Alto Networks · Schema
Connector
Connector schema from Palo Alto Networks ZTNA Connector API
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR
Properties
| Name | Type | Description |
|---|---|---|
| connector_id | string | Unique identifier of the connector. |
| name | string | Display name of the connector. |
| group_id | string | ID of the connector group this connector belongs to. |
| status | string | Current health status of the connector. |
| version | string | Installed connector software version. |
| hostname | string | Hostname of the system where the connector is installed. |
| ip_address | string | IP address of the connector host. |
| region | string | Geographic region where the connector is deployed. |
| last_seen_at | string | Timestamp of the connector's most recent heartbeat. |
| created_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Connector",
"description": "Connector schema from Palo Alto Networks ZTNA Connector API",
"$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/ztna-connector-api-connector-schema.json",
"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",
"enum": [
"connected",
"disconnected",
"upgrading",
"error"
],
"description": "Current health status of the connector."
},
"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": "string",
"format": "date-time",
"description": "Timestamp of the connector's most recent heartbeat."
},
"created_at": {
"type": "string",
"format": "date-time"
}
}
}