26 lines
614 B
JSON
Raw Normal View History

{
"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": [
"firstName"
]
}