Workday · Schema

TimeOffBalance

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string
descriptor string
balance number The current balance.
unit string The unit of the balance (e.g., Hours, Days).
asOfDate string The effective date of the balance.
View JSON Schema on GitHub

JSON Schema

absenceManagement-time-off-balance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TimeOffBalance",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "descriptor": {
      "type": "string"
    },
    "balance": {
      "type": "number",
      "description": "The current balance."
    },
    "unit": {
      "type": "string",
      "description": "The unit of the balance (e.g., Hours, Days)."
    },
    "asOfDate": {
      "type": "string",
      "description": "The effective date of the balance."
    }
  }
}