Benchling · Schema

AutomationOutputProcessorsArchive

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

Properties

Name Type Description
automationOutputProcessorIds array Array of automation output processor IDs
reason string The reason that the output processors are being archived. Accepted reasons may differ based on tenant configuration.
View JSON Schema on GitHub

JSON Schema

AutomationOutputProcessorsArchive.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/AutomationOutputProcessorsArchive.json",
  "title": "AutomationOutputProcessorsArchive",
  "additionalProperties": false,
  "properties": {
    "automationOutputProcessorIds": {
      "description": "Array of automation output processor IDs",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "reason": {
      "description": "The reason that the output processors are being archived. Accepted reasons may differ based on tenant configuration.\n",
      "enum": [
        "Made in error",
        "Retired",
        "Expended",
        "Shipped",
        "Contaminated",
        "Expired",
        "Missing",
        "Other"
      ],
      "type": "string"
    }
  },
  "required": [
    "automationOutputProcessorIds"
  ],
  "type": "object"
}