Benchling · Schema

WorkflowFlowchartNodeConfig

Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks

Properties

Name Type Description
id string The ID of the workflow flowchart node config
nodeDetails object
nodeType string The type associated with the node config
View JSON Schema on GitHub

JSON Schema

WorkflowFlowchartNodeConfig.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/WorkflowFlowchartNodeConfig.json",
  "title": "WorkflowFlowchartNodeConfig",
  "properties": {
    "id": {
      "description": "The ID of the workflow flowchart node config",
      "readOnly": true,
      "type": "string"
    },
    "nodeDetails": {
      "discriminator": {
        "mapping": {
          "END": "#/components/schemas/WorkflowEndNodeDetails",
          "OUTPUT": "#/components/schemas/WorkflowOutputNodeDetails",
          "ROOT": "#/components/schemas/WorkflowRootNodeDetails",
          "ROUTER": "#/components/schemas/WorkflowRouterNodeDetails",
          "TASK": "#/components/schemas/WorkflowTaskNodeDetails"
        },
        "propertyName": "nodeType"
      },
      "oneOf": [
        {
          "$ref": "#/components/schemas/WorkflowRootNodeDetails"
        },
        {
          "$ref": "#/components/schemas/WorkflowOutputNodeDetails"
        },
        {
          "$ref": "#/components/schemas/WorkflowTaskNodeDetails"
        },
        {
          "$ref": "#/components/schemas/WorkflowRouterNodeDetails"
        },
        {
          "$ref": "#/components/schemas/WorkflowEndNodeDetails"
        }
      ]
    },
    "nodeType": {
      "description": "The type associated with the node config",
      "enum": [
        "ROOT",
        "OUTPUT",
        "TASK",
        "ROUTER",
        "END"
      ],
      "type": "string"
    }
  },
  "type": "object"
}