Pay Line Furlough
Implemented to support the emergency furloughed employee scheme introduced in response to the COVID-19 pandemic 2020-03-01.
PayLineFurlough [Schema]
This type is readonly.
Name | Type | Description |
---|---|---|
EntitlementMonthStart | xsd:date | The entitlement period month start date. E.g 2020-03-01 for 1st March 2020. |
Interits from: PayLine[Schema]
Name | Type | Description |
---|---|---|
PayLine | PayLine | |
Description | xsd:string ( max: 100) | The description of the pay line displayed in the payslip report. |
Calculator | xsd:string ( max: 300) | The name of a Calculator responsible for generating the pay line. |
Generated | xsd:dateTime | The date and time the pay line was generated. |
PayCode | xsd:string ( max: 35) | A loose linkage to the type of pay line and it's calculator treatment. |
PayCodeType | SystemCodeType | The category of pay line. |
Value | Money | The monetary value of the pay line; used in the net pay sum. Typically positive for payments and negative for deductions. |
PaymentDate | xsd:date | The date the employees were paid in the pay run. Not applicable for year to date generated lines. |
TaxYear | xsd:integer | The tax year the pay run was in. |
TaxPeriod | xsd:integer | The tax period the pay run was in. |
PayRunSequence | xsd:integer | The sequence number of the owning pay run. |
Example
<?xml version="1.0"?>
<PayLineFurlough xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Description>string</Description>
<Calculator>string</Calculator>
<Generated>2021-02-26T00:00:00+00:00</Generated>
<PayCode>string</PayCode>
<PayCodeType>NotSet</PayCodeType>
<Value>123.99</Value>
<PaymentDate>2021-02-26</PaymentDate>
<TaxYear>123</TaxYear>
<TaxPeriod>123</TaxPeriod>
<PayRunSequence>123</PayRunSequence>
<EntitlementMonthStart>2021-02-26</EntitlementMonthStart>
</PayLineFurlough>
{
"PayLineFurlough": {
"Description": "string",
"Calculator": "string",
"Generated": "2021-02-26T00:00:00+00:00",
"PayCode": "string",
"PayCodeType": "NotSet",
"Value": "123.99",
"PaymentDate": "2021-02-26",
"TaxYear": "123",
"TaxPeriod": "123",
"PayRunSequence": "123",
"EntitlementMonthStart": "2021-02-26"
}
}