Properties
| Name | Type | Description |
|---|---|---|
| associateOID | string | |
| workerID | object | |
| payStatementID | string | |
| payDate | string | |
| regularEarnings | array | |
| overtimeEarnings | array | |
| otherEarnings | array | |
| deductions | array | |
| taxes | array |
JSON Schema
{
"$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"
}
}
}