Tufin · Schema

NetworkObject

A network object (host, range, or group)

Cloud SecurityComplianceFirewall ManagementNetwork SecurityNetwork TopologyPolicy OrchestrationRisk ManagementSecurity Policy ManagementZero Trust

Properties

Name Type Description
id integer Object identifier
name string Object name
type string Object type (host, range, group)
ip string IP address or range
netmask string Network mask
View JSON Schema on GitHub

JSON Schema

tufin-networkobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NetworkObject",
  "title": "NetworkObject",
  "type": "object",
  "description": "A network object (host, range, or group)",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Object identifier"
    },
    "name": {
      "type": "string",
      "description": "Object name"
    },
    "type": {
      "type": "string",
      "description": "Object type (host, range, group)"
    },
    "ip": {
      "type": "string",
      "description": "IP address or range"
    },
    "netmask": {
      "type": "string",
      "description": "Network mask"
    }
  }
}