Workday · Schema

TimeOffEntry

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string The Workday ID of the time-off entry.
descriptor string
date string The date of the time off.
dailyQuantity number The quantity of time off taken.
status string The status of the time-off entry.
View JSON Schema on GitHub

JSON Schema

absenceManagement-time-off-entry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TimeOffEntry",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The Workday ID of the time-off entry."
    },
    "descriptor": {
      "type": "string"
    },
    "date": {
      "type": "string",
      "description": "The date of the time off."
    },
    "dailyQuantity": {
      "type": "number",
      "description": "The quantity of time off taken."
    },
    "status": {
      "type": "string",
      "description": "The status of the time-off entry."
    }
  }
}