Xero · Schema

EmployeeStatutoryLeaveBalance

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
leaveType string The type of statutory leave
balanceRemaining number The balance remaining for the corresponding leave type as of specified date.
units string The units will be "Hours"
View JSON Schema on GitHub

JSON Schema

xero-employeestatutoryleavebalance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmployeeStatutoryLeaveBalance",
  "title": "EmployeeStatutoryLeaveBalance",
  "type": "object",
  "properties": {
    "leaveType": {
      "description": "The type of statutory leave",
      "type": "string",
      "enum": [
        "Sick",
        "Adoption",
        "Maternity",
        "Paternity",
        "Sharedparental"
      ]
    },
    "balanceRemaining": {
      "description": "The balance remaining for the corresponding leave type as of specified date.",
      "type": "number",
      "format": "double",
      "x-is-money": true
    },
    "units": {
      "description": "The units will be \"Hours\"",
      "type": "string",
      "enum": [
        "Hours"
      ]
    }
  }
}