Radio Buttons Number Editor

Presents all available options as individual radio buttons in a vertical list, providing immediate visibility of all choices without interaction.

Activation Conditions

  • "type": "number" or "type": "integer"
  • "enum" array defined
  • "x-format": "radios"

Optional Properties

  • "x-enumTitles" - Descriptive labels shown next to each radio button

Example

{
  "x-format": "radios",
  "type": "number",
  "title": "Quantity",
  "enum": [
    0,
    1,
    2
  ],
  "x-enumTitles": [
    "None",
    "One",
    "A pair"
  ]
}