Conductor · JSON Structure

Conductor Conductor Workflow Def Structure

Type: object Properties: 15
AutomationOrchestrationStateTasksWorkflows

WorkflowDef is a JSON Structure definition published by Conductor, describing 15 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

name description version tasks inputParameters outputParameters failureWorkflow schemaVersion restartable workflowStatusListenerEnabled ownerEmail timeoutPolicy timeoutSeconds variables inputTemplate

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "WorkflowDef",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "version": {
      "type": "integer"
    },
    "tasks": {
      "type": "array"
    },
    "inputParameters": {
      "type": "array"
    },
    "outputParameters": {
      "type": "object"
    },
    "failureWorkflow": {
      "type": "string"
    },
    "schemaVersion": {
      "type": "integer"
    },
    "restartable": {
      "type": "boolean"
    },
    "workflowStatusListenerEnabled": {
      "type": "boolean"
    },
    "ownerEmail": {
      "type": "string"
    },
    "timeoutPolicy": {
      "type": "string"
    },
    "timeoutSeconds": {
      "type": "integer"
    },
    "variables": {
      "type": "object"
    },
    "inputTemplate": {
      "type": "object"
    }
  }
}