mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-24 17:38:13 +00:00
18 lines
375 B
JSON
18 lines
375 B
JSON
{
|
|
"title": "Multiple Choice List",
|
|
"description": "Build a multiple choice list with a predefined list of options",
|
|
"type": "object",
|
|
"properties": {
|
|
"payment_type": {
|
|
"type": "array",
|
|
"title": "A multiple choices list",
|
|
"items": {
|
|
"type": "string",
|
|
"enum": [
|
|
""
|
|
]
|
|
},
|
|
"uniqueItems": true
|
|
}
|
|
}
|
|
} |