Benchling · Schema

PlatesArchive

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

Properties

Name Type Description
plateIds array Array of plate IDs
reason string Reason that plates are being archived.
shouldRemoveBarcodes boolean Remove barcodes. Removing barcodes from archived inventory that contain items will also remove barcodes from the contained items.
View JSON Schema on GitHub

JSON Schema

PlatesArchive.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/PlatesArchive.json",
  "title": "PlatesArchive",
  "additionalProperties": false,
  "properties": {
    "plateIds": {
      "description": "Array of plate IDs",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "reason": {
      "description": "Reason that plates are being archived.\n",
      "enum": [
        "Made in error",
        "Retired",
        "Expended",
        "Shipped",
        "Contaminated",
        "Expired",
        "Missing",
        "Other"
      ],
      "type": "string"
    },
    "shouldRemoveBarcodes": {
      "description": "Remove barcodes. Removing barcodes from archived inventory that contain items will also remove barcodes from the contained items.\n",
      "type": "boolean"
    }
  },
  "required": [
    "plateIds",
    "reason",
    "shouldRemoveBarcodes"
  ],
  "type": "object"
}