Benchling · Schema

DropdownCreate

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

Properties

Name Type Description
name string Name of the dropdown
options array Options to set for the dropdown
registryId string ID of registry in which to create the dropdown. Required if multiple registries exist.
View JSON Schema on GitHub

JSON Schema

DropdownCreate.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/DropdownCreate.json",
  "title": "DropdownCreate",
  "additionalProperties": false,
  "properties": {
    "name": {
      "description": "Name of the dropdown",
      "type": "string"
    },
    "options": {
      "description": "Options to set for the dropdown",
      "items": {
        "$ref": "#/components/schemas/DropdownOptionCreate"
      },
      "type": "array"
    },
    "registryId": {
      "description": "ID of registry in which to create the dropdown. Required if multiple registries exist.",
      "nullable": true,
      "pattern": "^src_\\w+",
      "type": "string"
    }
  },
  "required": [
    "name",
    "options"
  ],
  "type": "object"
}