Benchling · Schema

ContainersCheckout

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

Properties

Name Type Description
assigneeId string User or Team API ID.
comment string
containerIds array Array of container IDs.
View JSON Schema on GitHub

JSON Schema

ContainersCheckout.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/ContainersCheckout.json",
  "title": "ContainersCheckout",
  "additionalProperties": false,
  "properties": {
    "assigneeId": {
      "description": "User or Team API ID.",
      "type": "string"
    },
    "comment": {
      "type": "string"
    },
    "containerIds": {
      "description": "Array of container IDs.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "containerIds",
    "assigneeId"
  ],
  "type": "object"
}