Benchling · Schema

BenchlingAppsArchive

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

Properties

Name Type Description
appIds array Array of app IDs
reason string Reason that apps are being archived. Actual reason enum varies by tenant.
View JSON Schema on GitHub

JSON Schema

BenchlingAppsArchive.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/BenchlingAppsArchive.json",
  "title": "BenchlingAppsArchive",
  "additionalProperties": false,
  "properties": {
    "appIds": {
      "description": "Array of app IDs",
      "example": [
        "app_J39na03L1nsLS34o",
        "app_ae92kBv9aNSl593z",
        "app_e59sjL23Pqn30xHg"
      ],
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "reason": {
      "description": "Reason that apps are being archived. Actual reason enum varies by tenant.",
      "enum": [
        "Made in error",
        "Retired",
        "Other"
      ],
      "type": "string"
    }
  },
  "required": [
    "reason",
    "appIds"
  ],
  "type": "object"
}