Workday Tracking System · JSON Structure

Absence Management Accrual Override Structure

An accrual override record

Type: object Properties: 8
Absence ManagementAttendanceEnterpriseHCMHuman Capital ManagementPayrollSchedulingTime TrackingTimesheetsWorkforce Management

AccrualOverride is a JSON Structure definition published by Workday Tracking System, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id workerId planId overrideType hours effectiveDate expirationDate reason

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workday-tracking-system/refs/heads/main/json-structure/absence-management-accrual-override-structure.json",
  "name": "AccrualOverride",
  "description": "An accrual override record",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique ID of the accrual override"
    },
    "workerId": {
      "type": "string",
      "description": "Workday ID of the worker"
    },
    "planId": {
      "type": "string",
      "description": "ID of the time off plan"
    },
    "overrideType": {
      "type": "string",
      "description": "Type of override",
      "enum": [
        "Adjustment",
        "Override",
        "Expiration"
      ]
    },
    "hours": {
      "type": "float",
      "description": "Hours of the override"
    },
    "effectiveDate": {
      "type": "date",
      "description": "Date the override takes effect"
    },
    "expirationDate": {
      "type": "date",
      "description": "Date the override expires (if applicable)"
    },
    "reason": {
      "type": "string",
      "description": "Reason for the override"
    }
  }
}