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