Tax Worker Tax Summary Structure
WorkerTaxSummary schema from Workday Payroll Workday Tax API
Type: object
Properties: 11
CompensationEnterpriseHuman ResourcesPayrollSaaSTax
WorkerTaxSummary is a JSON Structure definition published by Workday Payroll, describing 11 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/workday-payroll/refs/heads/main/json-structure/tax-worker-tax-summary-structure.json",
"name": "WorkerTaxSummary",
"description": "WorkerTaxSummary schema from Workday Payroll Workday Tax API",
"type": "object",
"properties": {
"worker": {
"$ref": "#/$defs/WorkerRef"
},
"taxYear": {
"type": "int32",
"description": "Tax year for the summary",
"example": 2026
},
"totalGrossWages": {
"type": "double",
"description": "Year-to-date gross wages",
"example": 245000.0
},
"totalTaxableWages": {
"type": "double",
"description": "Year-to-date taxable wages",
"example": 235000.0
},
"totalFederalWithholding": {
"type": "double",
"description": "Year-to-date federal income tax withheld",
"example": 14250.0
},
"totalStateWithholding": {
"type": "double",
"description": "Year-to-date state income tax withheld",
"example": 6480.0
},
"totalLocalWithholding": {
"type": "double",
"description": "Year-to-date local tax withheld",
"example": 1240.0
},
"totalSocialSecurity": {
"type": "double",
"description": "Year-to-date Social Security tax",
"example": 5890.0
},
"totalMedicare": {
"type": "double",
"description": "Year-to-date Medicare tax",
"example": 1380.0
},
"currency": {
"type": "string",
"description": "ISO 4217 currency code",
"example": "USD"
},
"jurisdictionBreakdown": {
"type": "array",
"items": {
"$ref": "#/$defs/TaxResult"
},
"description": "Breakdown by jurisdiction"
}
},
"definitions": {
"WorkerRef": {
"name": "WorkerRef",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Worker identifier",
"example": "w_100542"
},
"descriptor": {
"type": "string",
"description": "Worker display name",
"example": "Weekly USD Pay Group"
}
}
},
"TaxResult": {
"name": "TaxResult",
"type": "object",
"properties": {
"jurisdiction": {
"$ref": "#/$defs/TaxJurisdictionRef"
},
"taxType": {
"type": "string",
"description": "Type of tax",
"example": "FederalIncome"
},
"employeeAmount": {
"type": "double",
"description": "Employee tax amount",
"example": 287.5
},
"employerAmount": {
"type": "double",
"description": "Employer tax amount",
"example": 287.5
},
"taxableWages": {
"type": "double",
"description": "Taxable wages for this tax type",
"example": 4750.0
},
"currency": {
"type": "string",
"description": "ISO 4217 currency code",
"example": "USD"
}
}
},
"TaxJurisdictionRef": {
"name": "TaxJurisdictionRef",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Jurisdiction identifier",
"example": "tjur_us_federal"
},
"descriptor": {
"type": "string",
"description": "Jurisdiction display name",
"example": "Weekly USD Pay Group"
}
}
}
}
}