Select Control Schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "bricks://controls/select", "schemaVersion": "2.2.1", "title": "Select Control", "description": "Value schema for select control type", "oneOf": [ { "type": "string", "description": "Single selection" }, { "type": "array", "items": { "type": "string" }, "description": "Multiple selection" } ], "controlProperties": [ "type", "label", "group", "placeholder", "default", "inline", "options", "hasRequired", "tab", "css", "multiple", "deprecated" ]} Was this page helpful?