Workday · Schema
LeaveOfAbsenceRequest
Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS
Properties
| Name | Type | Description |
|---|---|---|
| leaveType | object | |
| firstDayOfLeave | string | |
| estimatedLastDayOfLeave | string | |
| lastDayOfWork | string | |
| firstDayBackAtWork | string | |
| reason | object | |
| comment | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LeaveOfAbsenceRequest",
"title": "LeaveOfAbsenceRequest",
"type": "object",
"properties": {
"leaveType": {
"$ref": "#/components/schemas/ResourceReference"
},
"firstDayOfLeave": {
"type": "string",
"format": "date",
"example": "2026-01-15"
},
"estimatedLastDayOfLeave": {
"type": "string",
"format": "date",
"example": "2026-01-15"
},
"lastDayOfWork": {
"type": "string",
"format": "date",
"example": "2026-01-15"
},
"firstDayBackAtWork": {
"type": "string",
"format": "date",
"example": "2026-01-15"
},
"reason": {
"$ref": "#/components/schemas/ResourceReference"
},
"comment": {
"type": "string",
"example": "example_value"
}
},
"required": [
"leaveType",
"firstDayOfLeave"
]
}