String Radios
Renders as many radio type inputs as values in the enum constraint. The radio labels can be customized with the enumTitles option.
Activation Conditions
"type": "string""enum": [...]"x-format": "radios"
Example
{
"x-format": "radios",
"type": "string",
"title": "String radios",
"enum": [
"albert",
"betti",
"carl"
],
"x-enumTitles": [
"Albert",
"Betti",
"Carl"
]
}