Tufin · Schema
Tufin SecureTrack Device
Schema for a network device (firewall, router) managed by Tufin SecureTrack.
Cloud SecurityComplianceFirewall ManagementNetwork SecurityNetwork TopologyPolicy OrchestrationRisk ManagementSecurity Policy ManagementZero Trust
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique identifier of the device in SecureTrack |
| name | string | Display name of the device |
| ip | string | Management IP address |
| vendor | string | Device manufacturer |
| model | string | Device model or software version |
| version | string | Software/firmware version running on the device |
| domain | string | SecureTrack management domain this device belongs to |
| topology | boolean | Whether this device participates in network topology analysis |
| managedBy | string | Management system controlling this device (e.g., Panorama, SmartCenter) |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.tufin.com/schemas/device.json",
"title": "Tufin SecureTrack Device",
"description": "Schema for a network device (firewall, router) managed by Tufin SecureTrack.",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier of the device in SecureTrack"
},
"name": {
"type": "string",
"description": "Display name of the device"
},
"ip": {
"type": "string",
"description": "Management IP address",
"format": "ipv4"
},
"vendor": {
"type": "string",
"description": "Device manufacturer",
"examples": ["Palo Alto Networks", "Check Point", "Cisco", "Fortinet", "Juniper"]
},
"model": {
"type": "string",
"description": "Device model or software version"
},
"version": {
"type": "string",
"description": "Software/firmware version running on the device"
},
"domain": {
"type": "string",
"description": "SecureTrack management domain this device belongs to"
},
"topology": {
"type": "boolean",
"description": "Whether this device participates in network topology analysis"
},
"managedBy": {
"type": "string",
"description": "Management system controlling this device (e.g., Panorama, SmartCenter)"
}
},
"examples": [
{
"id": 1,
"name": "fw-dmz-01",
"ip": "192.168.1.1",
"vendor": "Palo Alto Networks",
"model": "PA-5220",
"version": "10.2.3",
"domain": "default",
"topology": true,
"managedBy": "Panorama"
}
]
}