2023-09-20 18:30:31 +00:00
|
|
|
{
|
2023-09-20 18:30:36 +00:00
|
|
|
"title": "Multiple Choice List",
|
2023-09-20 18:31:16 +00:00
|
|
|
"description": "*Build** a multiple choice list with a predefined list of options",
|
2023-09-20 18:30:31 +00:00
|
|
|
"type": "object",
|
|
|
|
"required": [
|
|
|
|
"firstName"
|
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"firstName": {
|
|
|
|
"type": "string",
|
|
|
|
"title": "First name",
|
|
|
|
"default": "Chuck"
|
2023-09-20 18:30:34 +00:00
|
|
|
},
|
|
|
|
"done": {
|
|
|
|
"type": "boolean",
|
|
|
|
"title": "Done?",
|
|
|
|
"default": false
|
2023-09-20 18:30:36 +00:00
|
|
|
},
|
|
|
|
"multipleChoicesList": {
|
|
|
|
"type": "array",
|
|
|
|
"title": "A multiple choices list",
|
|
|
|
"items": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": [
|
|
|
|
"foo",
|
|
|
|
"bar",
|
|
|
|
"fuzz",
|
|
|
|
"qux"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"uniqueItems": true
|
2023-09-20 18:30:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|