Tufin · Schema

DeviceInput

Input for adding or updating a device

Cloud SecurityComplianceFirewall ManagementNetwork SecurityNetwork TopologyPolicy OrchestrationRisk ManagementSecurity Policy ManagementZero Trust

Properties

Name Type Description
vendor string Device vendor
model string Device model
name string Device display name
ip string Management IP address
View JSON Schema on GitHub

JSON Schema

tufin-deviceinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeviceInput",
  "title": "DeviceInput",
  "type": "object",
  "description": "Input for adding or updating a device",
  "required": [
    "vendor",
    "model",
    "name"
  ],
  "properties": {
    "vendor": {
      "type": "string",
      "description": "Device vendor"
    },
    "model": {
      "type": "string",
      "description": "Device model"
    },
    "name": {
      "type": "string",
      "description": "Device display name"
    },
    "ip": {
      "type": "string",
      "description": "Management IP address"
    }
  }
}