22 lines
630 B
JSON
22 lines
630 B
JSON
{
|
|
"title": "Please Enter Your Daily Record",
|
|
"description": "A dropdown list with options pulled form existing Task Data. IMPORTANT - Add 'fruits' to Task Data before using this component!!!",
|
|
"type": "object",
|
|
"properties": {
|
|
"thoughts": {
|
|
"type": "string",
|
|
"title": "Thoughts For the Day, how are you feeling?"
|
|
},
|
|
"done": {
|
|
"type": "boolean",
|
|
"title": "Done?",
|
|
"default": false
|
|
},
|
|
"delivery_date": {
|
|
"type": "string",
|
|
"format": "date",
|
|
"title": "Preferred Delivery Date",
|
|
"validationErrorMessage": "Date must be today's date or later"
|
|
}
|
|
}
|
|
} |