Benchling · Schema

WorkflowFlowchartConfigVersion

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 config version was created
id string The ID of the workflow flowchart config version
modifiedAt string The ISO formatted date and time that the flowchart config version was last modified
templateFlowchart object The default flowchart that tasks using this flowchart configuration will use.
View JSON Schema on GitHub

JSON Schema

WorkflowFlowchartConfigVersion.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/WorkflowFlowchartConfigVersion.json",
  "title": "WorkflowFlowchartConfigVersion",
  "properties": {
    "createdAt": {
      "description": "The ISO formatted date and time that the flowchart config version was created",
      "example": "2020-08-01T00:00:00.000Z",
      "nullable": false,
      "type": "string"
    },
    "id": {
      "description": "The ID of the workflow flowchart config version",
      "example": "wffccv_giVNQcAF",
      "readOnly": true,
      "type": "string"
    },
    "modifiedAt": {
      "description": "The ISO formatted date and time that the flowchart config version was last modified",
      "example": "2020-08-01T00:00:00.000Z",
      "nullable": false,
      "type": "string"
    },
    "templateFlowchart": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowFlowchart"
        }
      ],
      "description": "The default flowchart that tasks using this flowchart configuration will use."
    }
  },
  "type": "object"
}