Workday Tracking System · JSON Structure

Absence Management Leave Of Absence Input Structure

Input for creating a leave of absence request

Type: object Properties: 5 Required: 3
Absence ManagementAttendanceEnterpriseHCMHuman Capital ManagementPayrollSchedulingTime TrackingTimesheetsWorkforce Management

LeaveOfAbsenceInput is a JSON Structure definition published by Workday Tracking System, describing 5 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

leaveType startDate expectedEndDate reason continuousOrIntermittent

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workday-tracking-system/refs/heads/main/json-structure/absence-management-leave-of-absence-input-structure.json",
  "name": "LeaveOfAbsenceInput",
  "description": "Input for creating a leave of absence request",
  "type": "object",
  "properties": {
    "leaveType": {
      "type": "string",
      "description": "Type of leave"
    },
    "startDate": {
      "type": "date",
      "description": "Leave start date"
    },
    "expectedEndDate": {
      "type": "date",
      "description": "Expected return date"
    },
    "reason": {
      "type": "string",
      "description": "Reason for the leave"
    },
    "continuousOrIntermittent": {
      "type": "string",
      "description": "Leave continuity type",
      "enum": [
        "Continuous",
        "Intermittent"
      ],
      "default": "Continuous"
    }
  },
  "required": [
    "leaveType",
    "startDate",
    "expectedEndDate"
  ]
}