Title / descriptions for a mutliselect

Is there a solution to have the title/description for a multiselect to display?

Here’s example schema with corresponding screenshot showing the title/description missing:

{
  "properties": {
    "multiselect_example": {
        "title": "Mutliselect Example Title",
        "description": "Mutliselect Example Description",
        "type": "array",
        "uniqueItems": true,
        "items": {
            "type": "string",
            "oneOf": [
                {
                    "title": "Option 1",
                    "const": "OPTION_1"
                },
                {
                    "title": "Option 2",
                    "const": "OPTION_2"
                }, {
                    "title": "Option 3",
                    "const": "OPTION_3"
                }
            ]
        }
    }      
  }
}

image

Hi @calvert4rent,

Our renderer does not render the label nor the description at the moment. You will need to implement a custom renderer for this, see here for a guide.

If you, or anyone else, would like to contribute the label and description renderering for this control to JSON Forms, we would happily accept such a contribution.