Workday · Schema

AbsenceType

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string The Workday ID of the absence type.
descriptor string A display descriptor for the absence type.
absenceTypeCategory string The category of the absence type (e.g., Vacation, Sick).
unit string The unit of measurement (e.g., Hours, Days).
View JSON Schema on GitHub

JSON Schema

absenceManagement-absence-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AbsenceType",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The Workday ID of the absence type."
    },
    "descriptor": {
      "type": "string",
      "description": "A display descriptor for the absence type."
    },
    "absenceTypeCategory": {
      "type": "string",
      "description": "The category of the absence type (e.g., Vacation, Sick)."
    },
    "unit": {
      "type": "string",
      "description": "The unit of measurement (e.g., Hours, Days)."
    }
  }
}