Benchling · Schema

WorkflowSample

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

Properties

Name Type Description
batchId string ID of the batch
containerIds array Array of IDs of containers
createdAt string DateTime at which the the sample was created
id string ID of the sample
name string Name of the sample
View JSON Schema on GitHub

JSON Schema

WorkflowSample.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/WorkflowSample.json",
  "title": "WorkflowSample",
  "properties": {
    "batchId": {
      "description": "ID of the batch",
      "type": "string"
    },
    "containerIds": {
      "description": "Array of IDs of containers",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "createdAt": {
      "description": "DateTime at which the the sample was created",
      "format": "date-time",
      "readOnly": true,
      "type": "string"
    },
    "id": {
      "description": "ID of the sample",
      "readOnly": true,
      "type": "string"
    },
    "name": {
      "description": "Name of the sample",
      "type": "string"
    }
  },
  "type": "object"
}