mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 01:38:07 +00:00
22 lines
451 B
JSON
22 lines
451 B
JSON
{
|
|
"title": "Date",
|
|
"description": "Create a date field with a date picker (delivery_date).",
|
|
"type": "object",
|
|
"required": [
|
|
"firstName"
|
|
],
|
|
"properties": {
|
|
"firstName": {
|
|
"type": "string",
|
|
"title": "First name",
|
|
"default": "Jose"
|
|
|
|
},
|
|
"birth_date": {
|
|
"type": "string",
|
|
"format": "date",
|
|
"title": "Birt",
|
|
"validationErrorMessage": "Date must be today's date or later"
|
|
}
|
|
}
|
|
} |