User: dan@sartography.com clicked save for examples/0-2-basic-example/norris-schema.json

This commit is contained in:
sartography-automated-committer 2023-10-05 15:44:28 +00:00
parent 1212f02789
commit c0c4e4765f
1 changed files with 9 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"title": "Checkbox",
"description": "A super simple checkbox",
"title": "Dropdown list",
"description": "A dropdown list with options pulled form existing Task Data. IMPORTANT - Add 'fruits' to Task Data before using this component!!!",
"type": "object",
"required": [
"firstName",
@ -63,6 +63,13 @@
"type": "boolean",
"title": "Done?",
"default": false
},
"favoriteFruit": {
"title": "Select your favorite fruit",
"type": "string",
"anyOf": [
"options_from_task_data_var:fruits"
]
}
}
}