{ "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"} ] } } }