Benchling · Schema

WorkflowTaskStatus

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

Properties

Name Type Description
displayName string The status label
id string The ID of the workflow task status
statusType string The status type
View JSON Schema on GitHub

JSON Schema

WorkflowTaskStatus.json Raw ↑
{
  "$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"
}