Benchling · Schema

ProjectsArchive

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

Properties

Name Type Description
projectIds array A list of project IDs to archive.
reason string The reason for archiving the provided projects. Accepted reasons may differ based on tenant configuration.
View JSON Schema on GitHub

JSON Schema

ProjectsArchive.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/ProjectsArchive.json",
  "title": "ProjectsArchive",
  "additionalProperties": false,
  "properties": {
    "projectIds": {
      "description": "A list of project IDs to archive.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "reason": {
      "description": "The reason for archiving the provided projects. Accepted reasons may differ based on tenant configuration.\n",
      "enum": [
        "Made in error",
        "Retired",
        "Other"
      ],
      "type": "string"
    }
  },
  "required": [
    "reason",
    "projectIds"
  ],
  "type": "object"
}