Conductor · Schema

EventHandlerAction

AutomationOrchestrationStateTasksWorkflows

Properties

Name Type Description
action string The action type
start_workflow object Start workflow action parameters
complete_task object Complete task action parameters
fail_task object Fail task action parameters
expandInlineJSON boolean Whether to expand inline JSON strings
View JSON Schema on GitHub

JSON Schema

conductor-conductor-event-handler-action-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EventHandlerAction",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "description": "The action type"
    },
    "start_workflow": {
      "type": "object",
      "description": "Start workflow action parameters"
    },
    "complete_task": {
      "type": "object",
      "description": "Complete task action parameters"
    },
    "fail_task": {
      "type": "object",
      "description": "Fail task action parameters"
    },
    "expandInlineJSON": {
      "type": "boolean",
      "description": "Whether to expand inline JSON strings"
    }
  }
}