AccrualOverrideInput

Input for creating an accrual override

Absence ManagementAttendanceEnterpriseHCMHuman Capital ManagementPayrollSchedulingTime TrackingTimesheetsWorkforce Management

Properties

Name Type Description
planId string ID of the time off plan
overrideType string Type of override
hours number Hours to adjust or override
effectiveDate string Effective date of the override
expirationDate string Optional expiration date
reason string Reason for the override
View JSON Schema on GitHub

JSON Schema

absence-management-accrual-override-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workday-tracking-system/refs/heads/main/json-schema/absence-management-accrual-override-input-schema.json",
  "title": "AccrualOverrideInput",
  "description": "Input for creating an accrual override",
  "type": "object",
  "properties": {
    "planId": {
      "type": "string",
      "description": "ID of the time off plan"
    },
    "overrideType": {
      "type": "string",
      "description": "Type of override",
      "enum": ["Adjustment", "Override"]
    },
    "hours": {
      "type": "number",
      "format": "float",
      "description": "Hours to adjust or override"
    },
    "effectiveDate": {
      "type": "string",
      "format": "date",
      "description": "Effective date of the override"
    },
    "expirationDate": {
      "type": "string",
      "format": "date",
      "description": "Optional expiration date"
    },
    "reason": {
      "type": "string",
      "description": "Reason for the override"
    }
  },
  "required": ["planId", "overrideType", "hours", "effectiveDate"]
}