24 lines
381 B
JSON

{
"title": "Select Product Style",
"type": "object",
"required": [
"product_style"
],
"properties": {
"product_style": {
"title": "Product Style",
"type": "string",
"oneOf": [
{
"const": "short",
"title": "Short"
},
{
"const": "long",
"title": "Long"
}
]
}
}
}