A simple checkbox schema:
{
"type": "array",
"format": "checkbox",
"uniqueItems": true,
"items": {
"type": "string",
"enum": ["value1","value2"]
}
}
The page will display value1 and value2 in the same line. Is there a way to modify the schema to let one item one line?
FYI, I am using this JSON EDITOR for Jenkins Extended choice plugin.
Thanks:)