Zoho People · Schema

ZohoPeopleLeaveRequest

HRHRMSHuman ResourcesHRISEmployee ManagementAttendanceLeave ManagementTime TrackingPerformance ManagementOnboardingZohoOAuth 2.0

Properties

Name Type Description
EmployeeID string
Leavetype string Name or id of a configured leave type.
From string
To string
DayType string
Reason string
ApprovalStatus string
View JSON Schema on GitHub

JSON Schema

zoho-people-leave-request-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-request-schema.json",
  "title": "ZohoPeopleLeaveRequest",
  "type": "object",
  "required": ["EmployeeID", "Leavetype", "From", "To"],
  "properties": {
    "EmployeeID":     { "type": "string" },
    "Leavetype":      { "type": "string", "description": "Name or id of a configured leave type." },
    "From":           { "type": "string", "format": "date" },
    "To":             { "type": "string", "format": "date" },
    "DayType":        { "type": "string", "enum": ["FullDay", "FirstHalf", "SecondHalf"] },
    "Reason":         { "type": "string" },
    "ApprovalStatus": { "type": "string", "enum": ["Pending", "Approved", "Rejected", "Cancelled"] }
  }
}