Benchling · Schema

DatasetUpdate

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

Properties

Name Type Description
customFields object Custom field values to add to the dataset
folderId string ID of the folder that contains the file
name string New display name for the dataset
View JSON Schema on GitHub

JSON Schema

DatasetUpdate.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/DatasetUpdate.json",
  "title": "DatasetUpdate",
  "properties": {
    "customFields": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CustomFields"
        }
      ],
      "description": "Custom field values to add to the dataset"
    },
    "folderId": {
      "description": "ID of the folder that contains the file",
      "example": "dset_LlDFupKyErxx",
      "type": "string"
    },
    "name": {
      "description": "New display name for the dataset",
      "example": "My Dataset",
      "type": "string"
    }
  },
  "type": "object"
}