Workday Tracking System · JSON Structure

Absence Management Accrual Overrides Response Structure

Response containing accrual overrides

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

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

Properties

total data

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-overrides-response-structure.json",
  "name": "AccrualOverridesResponse",
  "description": "Response containing accrual overrides",
  "type": "object",
  "properties": {
    "total": {
      "type": "int32"
    },
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "description": "An accrual override record",
        "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"
          }
        }
      }
    }
  }
}