{ "title": "Multiple Choice List", "description": "Build a multiple choice list with a predefined list of options", "type": "object", "properties": { "pizza_size": { "title": "Select your pizza size", "type": "string", "anyOf": [ "options_from_task_data_var:pizza_sizes" ] }, "multipleChoicesList": { "type": "array", "title": "A multiple choices list", "items": { "type": "string", "enum": [ "foo", "bar", "fuzz", "qux" ] }, "uniqueItems": true } } }