Workday Payroll · Schema

WorkerRef

WorkerRef schema from Workday Payroll Results API

CompensationEnterpriseHuman ResourcesPayrollSaaSTax

Properties

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

JSON Schema

payroll-results-worker-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-results-worker-ref-schema.json",
  "title": "WorkerRef",
  "description": "WorkerRef schema from Workday Payroll Results API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Worker identifier",
      "example": "w_100542"
    },
    "descriptor": {
      "type": "string",
      "description": "Worker display name",
      "example": "Weekly USD Pay Group"
    }
  }
}