Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| payPeriodStartDate | string | |
| payPeriodEndDate | string | |
| payDate | string | |
| grossPay | number | |
| netPay | number | |
| totalDeductions | number | |
| totalTaxes | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PaySlip",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"descriptor": {
"type": "string"
},
"payPeriodStartDate": {
"type": "string"
},
"payPeriodEndDate": {
"type": "string"
},
"payDate": {
"type": "string"
},
"grossPay": {
"type": "number"
},
"netPay": {
"type": "number"
},
"totalDeductions": {
"type": "number"
},
"totalTaxes": {
"type": "number"
}
}
}