User: dan@sartography.com added process model file webinar/1-approval-process-two-eyes/vacation-request-schema.json

This commit is contained in:
sartography-automated-committer 2024-01-25 22:06:56 +00:00
parent 55c59692d9
commit 32dd35ab29

View File

@ -0,0 +1,26 @@
{
"title": "Vacation Request Form",
"description": "Please provide information about your vacation",
"type": "object",
"required": [
"start_date", "end_date"
],
"properties": {
"description": {
"type": "string",
"title": "Description"
},
"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"
}
}
}