{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PayrollRun", "title": "PayrollRun", "type": "object", "properties": { "payrollActionId": { "type": "integer", "description": "Payroll action identifier", "example": "500123" }, "payrollId": { "type": "integer", "description": "Payroll identifier", "example": "500123" }, "actionType": { "type": "string", "description": "Action type (R=Run, Q=QuickPay, etc.)", "example": "example_value" }, "actionStatus": { "type": "string", "description": "Action status", "enum": [ "C", "E", "M", "P", "U" ], "example": "C" }, "effectiveDate": { "type": "string", "format": "date", "example": "2026-01-15" }, "dateEarned": { "type": "string", "format": "date", "example": "2026-01-15" }, "periodOfServiceId": { "type": "integer", "example": "500123" }, "businessGroupId": { "type": "integer", "example": "500123" } } }