mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-24 15:18:17 +00:00
24 lines
381 B
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|