Benchling · Schema

WorkflowTaskGroup

Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks
View JSON Schema on GitHub

JSON Schema

WorkflowTaskGroup.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/WorkflowTaskGroup.json",
  "title": "WorkflowTaskGroup",
  "allOf": [
    {
      "$ref": "#/components/schemas/WorkflowTaskGroupBase"
    },
    {
      "properties": {
        "executionType": {
          "description": "The method by which the workflow is executed",
          "enum": [
            "DIRECT",
            "ENTRY",
            "FLOWCHART",
            "PROCEDURE",
            "PROCEDURE_METHOD",
            "PROCEDURE_STEP"
          ],
          "type": "string"
        },
        "flowchartConfigVersionId": {
          "description": "The flowchart configuration that this task group uses. This will be null if the task group does not have executionType FLOWCHART.",
          "example": "wffccv_giVNQcAF",
          "type": "string"
        },
        "flowchartTaskGroups": {
          "description": "The task groups that are members of the flowchart that this task group is the root of. This will be null this task group is not the root task group of a flowchart (eg if the task group does not have executionType FLOWCHART).",
          "items": {
            "$ref": "#/components/schemas/WorkflowNodeTaskGroupSummary"
          },
          "type": "array"
        },
        "nodeConfig": {
          "allOf": [
            {
              "$ref": "#/components/schemas/WorkflowFlowchartNodeConfig"
            }
          ],
          "description": "The node in a Flowchart that this task group is associated with. This will be null if the task group is not part of a flowchart."
        },
        "rootTaskGroup": {
          "allOf": [
            {
              "$ref": "#/components/schemas/WorkflowTaskGroupSummary"
            }
          ],
          "description": "The task group associated with the root node of the flowchart that this task group is a part of. This will be null if the task group is not part of a flowchart."
        },
        "workflowOutputs": {
          "description": "The outputs of the workflow task group",
          "items": {
            "$ref": "#/components/schemas/WorkflowOutputSummary"
          },
          "type": "array"
        }
      }
    }
  ]
}