User: dan@sartography.com clicked save for examples/2-in-depth/data-stores/json-file-as-data-store/simple-form-schema.json
This commit is contained in:
parent
58289d83ba
commit
581ad3ace1
|
@ -1 +1,16 @@
|
||||||
{}
|
{
|
||||||
|
"fruits": [
|
||||||
|
{
|
||||||
|
"value": "apples",
|
||||||
|
"label": "Apples"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"value": "oranges",
|
||||||
|
"label": "Oranges"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"value": "bananas",
|
||||||
|
"label": "Bananas"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -1 +1,14 @@
|
||||||
{}
|
{
|
||||||
|
"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",
|
||||||
|
"properties": {
|
||||||
|
"favoriteFruit": {
|
||||||
|
"title": "Select your favorite fruit",
|
||||||
|
"type": "string",
|
||||||
|
"anyOf": [
|
||||||
|
"options_from_task_data_var:fruits"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue