Tufin · Schema

WorkflowDefinition

A workflow template definition in SecureChange

Cloud SecurityComplianceFirewall ManagementNetwork SecurityNetwork TopologyPolicy OrchestrationRisk ManagementSecurity Policy ManagementZero Trust

Properties

Name Type Description
id integer Workflow definition identifier
name string Workflow definition name
description string Description of when to use this workflow
enabled boolean Whether this workflow is available for new tickets
steps array Workflow step definitions
View JSON Schema on GitHub

JSON Schema

tufin-workflowdefinition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowDefinition",
  "title": "WorkflowDefinition",
  "type": "object",
  "description": "A workflow template definition in SecureChange",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Workflow definition identifier"
    },
    "name": {
      "type": "string",
      "description": "Workflow definition name"
    },
    "description": {
      "type": "string",
      "description": "Description of when to use this workflow"
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether this workflow is available for new tickets"
    },
    "steps": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Workflow step definitions"
    }
  }
}