Tufin · Schema

TaskUpdate

Input for updating a task

Cloud SecurityComplianceFirewall ManagementNetwork SecurityNetwork TopologyPolicy OrchestrationRisk ManagementSecurity Policy ManagementZero Trust

Properties

Name Type Description
status string New task status
comment string Comment to add to the task
fields array Updated field values
View JSON Schema on GitHub

JSON Schema

tufin-taskupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskUpdate",
  "title": "TaskUpdate",
  "type": "object",
  "description": "Input for updating a task",
  "properties": {
    "status": {
      "type": "string",
      "description": "New task status"
    },
    "comment": {
      "type": "string",
      "description": "Comment to add to the task"
    },
    "fields": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Updated field values"
    }
  }
}