Conductor · JSON Structure

Conductor Conductor Task Result Structure

Type: object Properties: 9
AutomationOrchestrationStateTasksWorkflows

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

Properties

workflowInstanceId taskId status outputData reasonForIncompletion callbackAfterSeconds workerId logs externalOutputPayloadStoragePath

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "TaskResult",
  "type": "object",
  "properties": {
    "workflowInstanceId": {
      "type": "string"
    },
    "taskId": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "outputData": {
      "type": "object"
    },
    "reasonForIncompletion": {
      "type": "string"
    },
    "callbackAfterSeconds": {
      "type": "integer"
    },
    "workerId": {
      "type": "string"
    },
    "logs": {
      "type": "array"
    },
    "externalOutputPayloadStoragePath": {
      "type": "string"
    }
  }
}