Skip to main content
A single option within a Combobox.
{
  "type": "object",
  "properties": {
    "type": {
      "const": "ComboboxOption",
      "default": "ComboboxOption",
      "type": "string"
    },
    "cssClass": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "CSS/Tailwind classes for styling"
    },
    "value": {
      "description": "Option value",
      "type": "string"
    },
    "label": {
      "description": "Display label",
      "type": "string"
    },
    "disabled": {
      "default": false,
      "description": "Whether option is disabled",
      "type": "boolean"
    }
  },
  "required": [
    "type",
    "value",
    "label"
  ]
}