User: mwilson1962@gmail.com clicked save for playground/safran-federal-systems/daemonbuilder/MyFirstSchema-schema.json

This commit is contained in:
sartography-automated-committer 2023-10-16 00:18:59 +00:00
parent 1a6110705d
commit 9d952b638b
2 changed files with 24 additions and 3 deletions

View File

@ -1,4 +1,18 @@
{
"firstName": "Chuck",
"done": false
"done": false,
"fruits": [
{
"value": "apples",
"label": "Apples"
},
{
"value": "oranges",
"label": "Oranges"
},
{
"value": "bananas",
"label": "Bananas"
}
]
}

View File

@ -1,6 +1,6 @@
{
"title": "Password",
"description": "A password field, with a min length of 3 and a help tip",
"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"
@ -30,6 +30,13 @@
"type": "string",
"title": "Password",
"minLength": 3
},
"favoriteFruit": {
"title": "Select your favorite fruit",
"type": "string",
"anyOf": [
"options_from_task_data_var:fruits"
]
}
}
}