{ "$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" }