Workday Payroll · Schema

DeductionCodeRef

DeductionCodeRef schema from Workday Payroll API

CompensationEnterpriseHuman ResourcesPayrollSaaSTax

Properties

Name Type Description
id string Deduction code identifier
descriptor string Deduction code display name
View JSON Schema on GitHub

JSON Schema

payroll-deduction-code-ref-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workday-payroll/refs/heads/main/json-schema/payroll-deduction-code-ref-schema.json",
  "title": "DeductionCodeRef",
  "description": "DeductionCodeRef schema from Workday Payroll API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Deduction code identifier",
      "example": "MEDICAL_PRETAX"
    },
    "descriptor": {
      "type": "string",
      "description": "Deduction code display name",
      "example": "Weekly USD Pay Group"
    }
  }
}