Multi select not working

I have below schema element. But its not rendered as a check box . I want to select more than one element in the given enum. Please let me know how to do that

“status”: {
“type”: “array”,
“items”: {
“enum”: [
“TLSv1.2”,
“TLSv1.3”
],
“type”: “string”
}
}

hi @vijay ,

I dont think thats the correct format.

Try this one.

{
    "type": "array",
    "description": "Status",
    "uniqueItems": true,
    "items": {
        "type": "string",
        "oneOf": [
            {
                "const": "tl_sv_1_2",
                "title": "TLSv1.2"
            },
            {
                "const": "tl_sv_1_3",
                "title": "TLSv1.3"
            }
        ]
    }
}

No. That does not solve my problem

Hi @vijay,

Which version of JSON Forms and renderer set are you using? The schema posted by @chathuraa should work for example with the latest React Material renderers.

I am using Json forms 3.0 and using default renderers.

@jsonforms/angular”: “^3.0.0”,

renderers = [
…angularMaterialRenderers,
];

I just checkout code from GitHub - eclipsesource/jsonforms-angular-seed: Angular-based JSON Forms seed app and trying

This feature is not (yet) supported by the off-the-shelf Angular Material renderers, see here for the renderer sets overview. If you need it you need to add it yourself with a custom renderer. If you create such a renderer you could think about contributing it back to the main repository.