Benchling · Schema

DropdownOptionUpdate

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

Properties

Name Type Description
id string ID of the dropdown option to update, omitted if creating a new option.
name string Name of the dropdown option.
View JSON Schema on GitHub

JSON Schema

DropdownOptionUpdate.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/DropdownOptionUpdate.json",
  "title": "DropdownOptionUpdate",
  "properties": {
    "id": {
      "description": "ID of the dropdown option to update, omitted if creating a new option.",
      "example": "sfs_9cGQIqS3",
      "pattern": "^sfs_\\w+",
      "type": "string"
    },
    "name": {
      "description": "Name of the dropdown option.",
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}