mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-25 14:15:14 +00:00
22 lines
552 B
JSON
22 lines
552 B
JSON
|
{
|
||
|
"title": "Nation Parks",
|
||
|
"description": "Build a multiple choice list with a predefined list of options",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"multipleChoicesList": {
|
||
|
"type": "array",
|
||
|
"title": "Where would you like to visit?",
|
||
|
"items": {
|
||
|
"type": "string",
|
||
|
"enum": [
|
||
|
"Grand Teton National Park",
|
||
|
"Grand Canyon National Park",
|
||
|
"Glacier National Park",
|
||
|
"Yellowstone National Park",
|
||
|
"Zion National Park"
|
||
|
]
|
||
|
},
|
||
|
"uniqueItems": true
|
||
|
}
|
||
|
}
|
||
|
}
|