Vacation Request
Description
Vacation Request document is submitted by an employee to request time off from work. It typically includes desired leave dates, duration, reason for the request, and any relevant supporting information.
Schema Information
{
"type": "object",
"title": "Vacation Request",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"employeeName",
"vacationStartDate",
"vacationEndDate"
],
"properties": {
"remarks": {
"type": "string"
},
"department": {
"type": "string"
},
"employeeID": {
"type": "string"
},
"employeeName": {
"type": "string"
},
"vacationEndDate": {
"type": "string",
"format": "date"
},
"vacationStartDate": {
"type": "string",
"format": "date"
},
"additionalInformation": {
"type": "object"
}
},
"additionalProperties": false
}