sample-process-models/misc/qa/forms/test-multiple-choice-list-1/test-multiple-choice-list-1-schema.json

22 lines
552 B
JSON
Raw Normal View History

2024-07-15 10:51:00 -04:00
{
"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
}
}
}