{ "$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" }