HR Partner · Schema

LeaveRequest

HRHRISHuman ResourcesEmployee RecordsLeave ManagementRecruitmentApplicant TrackingOnboardingPerformance ManagementTimesheetsExpense ManagementDocument LibraryeSignatureSaaSAustralia

Properties

Name Type Description
id string
leave_type string
description string
start_date string
end_date string
duration number
leave_status string
comments string
employee object
View JSON Schema on GitHub

JSON Schema

hr-partner-leave-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LeaveRequest",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "leave_type": { "type": "string" },
    "description": { "type": "string" },
    "start_date": { "type": "string", "format": "date" },
    "end_date": { "type": "string", "format": "date" },
    "duration": { "type": "number" },
    "leave_status": { "type": "string" },
    "comments": { "type": "string" },
    "employee": { "$ref": "hr-partner-employee-ref-schema.json" }
  }
}