{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/WorkflowStageRun.json", "title": "WorkflowStageRun", "properties": { "createdAt": { "description": "DateTime at which the the stage run was created", "format": "date-time", "readOnly": true, "type": "string" }, "id": { "description": "ID of the stage run", "readOnly": true, "type": "string" }, "name": { "description": "Name of the stage run", "type": "string" }, "status": { "description": "Status of the stage run", "enum": [ "COMPLETED", "DISCARDED", "INITIALIZED" ], "type": "string" } }, "type": "object" }