Benchling · Schema

WorkflowTaskWriteBase

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

Properties

Name Type Description
assigneeId string The id of the user assigned to the task
fields object
scheduledOn string The date on which the task is scheduled to be executed
View JSON Schema on GitHub

JSON Schema

WorkflowTaskWriteBase.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/WorkflowTaskWriteBase.json",
  "title": "WorkflowTaskWriteBase",
  "properties": {
    "assigneeId": {
      "description": "The id of the user assigned to the task",
      "example": "ent_0YuSQS51",
      "type": "string"
    },
    "fields": {
      "$ref": "#/components/schemas/Fields"
    },
    "scheduledOn": {
      "description": "The date on which the task is scheduled to be executed",
      "example": "2020-08-01",
      "format": "date",
      "type": "string"
    }
  }
}