{ "title": "Multiple Choice List", "description": "**Build** a multiple choice list with a predefined list of options", "type": "object", "required": [ "firstName" ], "properties": { "firstName": { "type": "string", "title": "First Name", "default": "Chuck" }, "done": { "type": "boolean", "title": "Done?", "default": false }, "multipleChoicesList": { "type": "array", "title": "A multiple choices list", "items": { "type": "string", "enum": [ "foo", "bar", "fuzz", "qux" ] }, "uniqueItems": true } } }