Benchling · Schema

WorkflowTaskNodeDetails

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

Properties

Name Type Description
id string The ID of the workflow task node config details
nodeType string The type of the node
taskSchema object
View JSON Schema on GitHub

JSON Schema

WorkflowTaskNodeDetails.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/WorkflowTaskNodeDetails.json",
  "title": "WorkflowTaskNodeDetails",
  "additionalProperties": false,
  "properties": {
    "id": {
      "description": "The ID of the workflow task node config details",
      "example": "wftnd_hbVNQcEM",
      "readOnly": true,
      "type": "string"
    },
    "nodeType": {
      "description": "The type of the node",
      "enum": [
        "TASK"
      ],
      "type": "string"
    },
    "taskSchema": {
      "$ref": "#/components/schemas/WorkflowTaskSchemaSummary"
    }
  },
  "type": "object"
}