User: jay.liew@gmail.com clicked save for playground/jay-liew/test-form/test-schema.json

This commit is contained in:
sartography-automated-committer 2023-11-14 02:24:15 +00:00
parent 05dfe10f6b
commit b90b8befd8

View File

@ -1,6 +1,6 @@
{
"title": "Text Field",
"description": "A simple text field that is required, has a default value, sets a placeholder, includes a description. (field name will be 'firstname')",
"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"
@ -10,6 +10,13 @@
"type": "string",
"title": "First name",
"default": "Chuck"
},
"favoriteFruit": {
"title": "Select your favorite fruit",
"type": "string",
"anyOf": [
"options_from_task_data_var:fruits"
]
}
}
}