2023-11-20 21:13:36 +00:00
|
|
|
{
|
2023-11-20 21:22:10 +00:00
|
|
|
"title": "Select A Pizza",
|
2023-11-20 21:22:20 +00:00
|
|
|
"description": "Dan's pizzas are the best!",
|
2023-11-20 21:13:36 +00:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2023-11-20 21:14:54 +00:00
|
|
|
"pizza_size": {
|
2023-11-20 21:15:21 +00:00
|
|
|
"title": "Select your pizza size",
|
2023-11-20 21:13:36 +00:00
|
|
|
"type": "string",
|
|
|
|
"anyOf": [
|
2023-11-20 21:15:38 +00:00
|
|
|
"options_from_task_data_var:pizza_sizes"
|
2023-11-20 21:13:36 +00:00
|
|
|
]
|
2023-11-20 21:13:47 +00:00
|
|
|
},
|
2023-11-20 21:17:48 +00:00
|
|
|
"toppings": {
|
2023-11-20 21:13:47 +00:00
|
|
|
"type": "array",
|
2023-11-20 21:20:40 +00:00
|
|
|
"title": "Please select your favorite toppings",
|
2023-11-20 21:13:47 +00:00
|
|
|
"items": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": [
|
2023-11-20 21:17:58 +00:00
|
|
|
"onions",
|
2023-11-20 21:20:23 +00:00
|
|
|
"pickles",
|
2023-11-20 21:13:47 +00:00
|
|
|
"fuzz",
|
2023-11-20 21:18:11 +00:00
|
|
|
"beer"
|
2023-11-20 21:13:47 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"uniqueItems": true
|
2023-11-20 21:13:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|