mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 06:15:13 +00:00
27 lines
631 B
JSON
27 lines
631 B
JSON
{
|
|
"title": "Text Area",
|
|
"description": "A larger resizable area to enter longer text. (field name will be 'bio')",
|
|
"type": "object",
|
|
"properties": {
|
|
"details": {
|
|
"type": "string",
|
|
"title": "Details"
|
|
},
|
|
"start_date": {
|
|
"type": "string",
|
|
"format": "date",
|
|
"title": "Start Date",
|
|
"validationErrorMessage": "Date must be today's date or later"
|
|
},
|
|
"end_date": {
|
|
"type": "string",
|
|
"format": "date",
|
|
"title": "End Date",
|
|
"validationErrorMessage": "Date must be today's date or later"
|
|
}
|
|
},
|
|
"required": [
|
|
"start_date",
|
|
"end_date",
|
|
]
|
|
} |