Benchling · Schema

WorkflowFlowchart

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

Properties

Name Type Description
createdAt string The ISO formatted date and time that the flowchart was created
edgeConfigs array The edges of the flowchart
id string The ID of the flowchart
migratedFromFlowchartId string The ID of the flowchart that this was migrated from
migratedToFlowchartId string The ID of the flowchart that this was migrated to
modifiedAt string The ISO formatted date and time that the flowchart was last modified
nodeConfigs array The nodes of the flowchart
View JSON Schema on GitHub

JSON Schema

WorkflowFlowchart.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/WorkflowFlowchart.json",
  "title": "WorkflowFlowchart",
  "properties": {
    "createdAt": {
      "description": "The ISO formatted date and time that the flowchart was created",
      "example": "2020-08-01T00:00:00.000Z",
      "nullable": false,
      "type": "string"
    },
    "edgeConfigs": {
      "description": "The edges of the flowchart",
      "items": {
        "$ref": "#/components/schemas/WorkflowFlowchartEdgeConfig"
      },
      "readOnly": true,
      "type": "array"
    },
    "id": {
      "description": "The ID of the flowchart",
      "example": "wffc_7fc412",
      "readOnly": true,
      "type": "string"
    },
    "migratedFromFlowchartId": {
      "description": "The ID of the flowchart that this was migrated from",
      "example": "wffc_1de847",
      "nullable": true,
      "readOnly": true,
      "type": "string"
    },
    "migratedToFlowchartId": {
      "description": "The ID of the flowchart that this was migrated to",
      "example": "wffc_df2993",
      "nullable": true,
      "readOnly": true,
      "type": "string"
    },
    "modifiedAt": {
      "description": "The ISO formatted date and time that the flowchart was last modified",
      "example": "2020-08-01T00:00:00.000Z",
      "nullable": false,
      "type": "string"
    },
    "nodeConfigs": {
      "description": "The nodes of the flowchart",
      "items": {
        "$ref": "#/components/schemas/WorkflowFlowchartNodeConfig"
      },
      "readOnly": true,
      "type": "array"
    }
  },
  "type": "object"
}