Benchling · Schema

WorkflowStageRun

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

Properties

Name Type Description
createdAt string DateTime at which the the stage run was created
id string ID of the stage run
name string Name of the stage run
status string Status of the stage run
View JSON Schema on GitHub

JSON Schema

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