Workday · Schema

LeaveOfAbsenceRequest

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSoftware-as-a-Service

Properties

Name Type Description
leaveType object
firstDayOfLeave string
estimatedLastDayOfLeave string
lastDayOfWork string
firstDayBackAtWork string
reason object
comment string
View JSON Schema on GitHub

JSON Schema

workday-leaveofabsencerequest-schema.json Raw ↑
{
  "$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"
  ]
}