Benchling · Schema

FolderCreate

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

Properties

Name Type Description
name string The name of the new folder.
parentFolderId string The ID of the parent folder.
View JSON Schema on GitHub

JSON Schema

FolderCreate.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/FolderCreate.json",
  "title": "FolderCreate",
  "additionalProperties": false,
  "properties": {
    "name": {
      "description": "The name of the new folder.",
      "type": "string"
    },
    "parentFolderId": {
      "description": "The ID of the parent folder.",
      "type": "string"
    }
  },
  "required": [
    "name",
    "parentFolderId"
  ]
}