Benchling · Schema

EntriesArchive

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

Properties

Name Type Description
entryIds array Array of entry IDs
reason string Reason that entries are being archived. One of ["Made in error", "Retired", "Other"].
View JSON Schema on GitHub

JSON Schema

EntriesArchive.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/EntriesArchive.json",
  "title": "EntriesArchive",
  "additionalProperties": false,
  "properties": {
    "entryIds": {
      "description": "Array of entry IDs",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "reason": {
      "description": "Reason that entries are being archived. One of [\"Made in error\", \"Retired\", \"Other\"].\n",
      "enum": [
        "Made in error",
        "Retired",
        "Other"
      ],
      "type": "string"
    }
  },
  "required": [
    "entryIds",
    "reason"
  ],
  "type": "object"
}