HR Partner · Schema

LeaveBalance

HRHRISHuman ResourcesEmployee RecordsLeave ManagementRecruitmentApplicant TrackingOnboardingPerformance ManagementTimesheetsExpense ManagementDocument LibraryeSignatureSaaSAustralia

Properties

Name Type Description
id string
leave_type string
balance number
accrued number
taken number
pending number
employee object
View JSON Schema on GitHub

JSON Schema

hr-partner-leave-balance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LeaveBalance",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "leave_type": { "type": "string" },
    "balance": { "type": "number" },
    "accrued": { "type": "number" },
    "taken": { "type": "number" },
    "pending": { "type": "number" },
    "employee": { "$ref": "hr-partner-employee-ref-schema.json" }
  }
}