ADP · Schema

WorkerPayOutput

BenefitsHCMHRPayrollWorkforce

Properties

Name Type Description
associateOID string
workerID object
payStatementID string
payDate string
regularEarnings array
overtimeEarnings array
otherEarnings array
deductions array
taxes array
View JSON Schema on GitHub

JSON Schema

adp-payroll-worker-pay-output-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "WorkerPayOutput",
  "type": "object",
  "properties": {
    "associateOID": {
      "type": "string"
    },
    "workerID": {
      "type": "object"
    },
    "payStatementID": {
      "type": "string"
    },
    "payDate": {
      "type": "string"
    },
    "regularEarnings": {
      "type": "array"
    },
    "overtimeEarnings": {
      "type": "array"
    },
    "otherEarnings": {
      "type": "array"
    },
    "deductions": {
      "type": "array"
    },
    "taxes": {
      "type": "array"
    }
  }
}