Benchling · Schema

AssayRunsArchive

The request body for archiving Assay Runs.

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

Properties

Name Type Description
assayRunIds array
reason string The reason for archiving the provided Assay Runs. Accepted reasons may differ based on tenant configuration.
View JSON Schema on GitHub

JSON Schema

AssayRunsArchive.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/AssayRunsArchive.json",
  "title": "AssayRunsArchive",
  "additionalProperties": false,
  "description": "The request body for archiving Assay Runs.\n",
  "properties": {
    "assayRunIds": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "reason": {
      "description": "The reason for archiving the provided Assay Runs. Accepted reasons may differ based on tenant configuration.\n",
      "enum": [
        "Archived",
        "Made in error",
        "Other"
      ],
      "type": "string"
    }
  },
  "required": [
    "reason",
    "assayRunIds"
  ],
  "type": "object"
}