{ "title": "Multiple Choice List", "description": "Build a multiple choice list with a predefined list of options", "properties": { "yes": { "type": "boolean", "title": "Yes?", "default": false }, "no": { "type": "boolean", "title": "No?", "default": false }, "attend": { "type": "array", "title": "A multiple choices list", "items": { "type": "string", "enum": [ "foo", "bar", "fuzz", "qux" ] }, "uniqueItems": true } }, "type": "object" }