sample-process-models/misc/radio-buttons-example/radio-button-form-schema.json
2024-04-22 14:11:50 -04:00

23 lines
596 B
JSON

{
"title": "Radio Button Examples",
"description": "Some examples for radio buttons",
"type": "object",
"properties": {
"inline_radio": {
"type": "string",
"title": "The inline options",
"oneOf": [
{ "const": "option_one", "title": "Option One"},
{ "const": "option_two", "title": "Option Two"}
]
},
"non_inline_radio": {
"type": "string",
"title": "The non-inline options",
"oneOf": [
{ "const": "option_one", "title": "Option One"},
{ "const": "option_two", "title": "Option Two"}
]
}
}
}