{ "title": "Multiple Choice List", "description": "Build a multiple choice list with a predefined list of options", "type": "object", "properties": { "pizza_size": { "title": "What size pizza would you like?", "type": "string", "anyOf": [ "options_from_task_data_var:pizza_sizes" ] }, "toppings": { "type": "array", "title": "Select Toppings", "items": { "type": "string", "enum": [ "peperon", "bar", "fuzz", "qux" ] }, "uniqueItems": true } } }