Tufin · Schema

Service

A service object (protocol/port combination)

Cloud SecurityComplianceFirewall ManagementNetwork SecurityNetwork TopologyPolicy OrchestrationRisk ManagementSecurity Policy ManagementZero Trust

Properties

Name Type Description
id integer Service identifier
name string Service name
protocol string Protocol (TCP, UDP, ICMP)
port string Port number or range
View JSON Schema on GitHub

JSON Schema

tufin-service-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Service",
  "title": "Service",
  "type": "object",
  "description": "A service object (protocol/port combination)",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Service identifier"
    },
    "name": {
      "type": "string",
      "description": "Service name"
    },
    "protocol": {
      "type": "string",
      "description": "Protocol (TCP, UDP, ICMP)"
    },
    "port": {
      "type": "string",
      "description": "Port number or range"
    }
  }
}