HR Partner · Schema

Absence

HRHRISHuman ResourcesEmployee RecordsLeave ManagementRecruitmentApplicant TrackingOnboardingPerformance ManagementTimesheetsExpense ManagementDocument LibraryeSignatureSaaSAustralia

Properties

Name Type Description
id string
leave_type string
absence_reason string
description string
absence_date string
return_date string
duration number
physician string
certificate_number string
absence_status string
comments string
employee object
View JSON Schema on GitHub

JSON Schema

hr-partner-absence-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Absence",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "leave_type": { "type": "string" },
    "absence_reason": { "type": "string" },
    "description": { "type": "string" },
    "absence_date": { "type": "string", "format": "date" },
    "return_date": { "type": "string", "format": "date" },
    "duration": { "type": "number" },
    "physician": { "type": "string" },
    "certificate_number": { "type": "string" },
    "absence_status": { "type": "string" },
    "comments": { "type": "string" },
    "employee": { "$ref": "hr-partner-employee-ref-schema.json" }
  }
}