Benchling · Schema

WorkflowRouterNodeDetails

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

Properties

Name Type Description
id string The ID of the workflow router node config details
name string The name of the router node
nodeType string The type of the node
routerFunctions array Router functions associated with this router node
View JSON Schema on GitHub

JSON Schema

WorkflowRouterNodeDetails.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/WorkflowRouterNodeDetails.json",
  "title": "WorkflowRouterNodeDetails",
  "additionalProperties": false,
  "properties": {
    "id": {
      "description": "The ID of the workflow router node config details",
      "example": "wfrnd_hbVJBcMC",
      "readOnly": true,
      "type": "string"
    },
    "name": {
      "description": "The name of the router node",
      "example": "Router 1",
      "readOnly": true,
      "type": "string"
    },
    "nodeType": {
      "description": "The type of the node",
      "enum": [
        "ROUTER"
      ],
      "type": "string"
    },
    "routerFunctions": {
      "description": "Router functions associated with this router node",
      "items": {
        "$ref": "#/components/schemas/WorkflowRouterFunction"
      },
      "readOnly": true,
      "type": "array"
    }
  },
  "type": "object"
}