Zoho People · Schema

ZohoPeopleLeaveType

HRHRMSHuman ResourcesHRISEmployee ManagementAttendanceLeave ManagementTime TrackingPerformance ManagementOnboardingZohoOAuth 2.0

Properties

Name Type Description
Id string
Name string
Unit string
IsPaid boolean
IsHalfDayAllowed boolean
Balance number
AccrualRule string
View JSON Schema on GitHub

JSON Schema

zoho-people-leave-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zoho-people/main/json-schema/zoho-people-leave-type-schema.json",
  "title": "ZohoPeopleLeaveType",
  "type": "object",
  "required": ["Id", "Name"],
  "properties": {
    "Id":               { "type": "string" },
    "Name":             { "type": "string" },
    "Unit":             { "type": "string", "enum": ["Days", "Hours"] },
    "IsPaid":           { "type": "boolean" },
    "IsHalfDayAllowed": { "type": "boolean" },
    "Balance":          { "type": "number" },
    "AccrualRule":      { "type": "string" }
  }
}