mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-25 14:15:14 +00:00
23 lines
596 B
JSON
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"}
|
|
]
|
|
}
|
|
}
|
|
} |