Benchling · Schema

Folder

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

Properties

Name Type Description
archiveRecord object
id string
name string
parentFolderId string ID of the parent folder, if it exists
projectId string ID of the containing project
View JSON Schema on GitHub

JSON Schema

Folder.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/Folder.json",
  "title": "Folder",
  "properties": {
    "archiveRecord": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ArchiveRecord"
        }
      ],
      "nullable": true,
      "readOnly": true
    },
    "id": {
      "readOnly": true,
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "parentFolderId": {
      "description": "ID of the parent folder, if it exists",
      "nullable": true,
      "type": "string"
    },
    "projectId": {
      "description": "ID of the containing project",
      "readOnly": true,
      "type": "string"
    }
  }
}