User: waqqas.jabbar@gmail.com clicked save for playground/nutech/exclusive-gateway-1/issue-form-schema.json

This commit is contained in:
sartography-automated-committer 2024-02-14 10:26:41 +00:00
parent 1ac7ef10ff
commit 91fc698a24
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": "Date",
"description": "Create a date field with a date picker (delivery_date).",
"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"
@ -21,6 +21,13 @@
"format": "date",
"title": "Preferred Delivery Date",
"validationErrorMessage": "Date must be today's date or later"
},
"favoriteFruit": {
"title": "Select your favorite fruit",
"type": "string",
"anyOf": [
"options_from_task_data_var:fruits"
]
}
}
}