{ "$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" } } } } } }