{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/WorkflowTaskStatus.json", "title": "WorkflowTaskStatus", "properties": { "displayName": { "description": "The status label", "example": "Pending", "readOnly": true, "type": "string" }, "id": { "description": "The ID of the workflow task status", "example": "wfts_wQzUCsW0", "readOnly": true, "type": "string" }, "statusType": { "description": "The status type", "enum": [ "PENDING", "IN_PROGRESS", "FAILED", "CANCELLED", "INVALID", "COMPLETED" ], "example": "PENDING", "readOnly": true, "type": "string" } }, "type": "object" }