Report Line Statutory Recovery
The pay run generated object details the amount of recovery made against statutory absence employee payments.
Statutory recovery report lines provide details on the amounts of statutory compensations.
ReportLineStatutoryRecovery [Schema]
Name | Type | Required | Description |
---|---|---|---|
SmallEmployerRelief | xsd:boolean | yes | Indicates if small employers relief is enabled. |
AbsenceReportCode | xsd:string (enumeration)
|
yes | Indicates the absence type the recovery line is for. Either: SAP, ShPP, SMP or SPP. |
StatutoryTotal | Money | yes | The total amount for the specified statutory absence type. |
Compensation | Money | yes | The compensation amount for the statutory absence type. |
Interits from: ReportLine[Schema]
Name | Type | Required | Description |
---|---|---|---|
Value | Money | yes | The monetary value of the reporting line. Maybe positive or negative. |
Description | xsd:string ( max: 100) | yes | The description of the report line. |
Generated | xsd:dateTime | yes | The date and time the report line was generated. |
TaxYear | xsd:integer | yes | The relevant tax year for the report line. |
TaxMonth | xsd:integer | yes | The relevant tax month for the report line. Tax months follow the monthly tax periods. Period 1 = April 6th to May 5th. |
Example
<?xml version="1.0"?>
<ReportLineStatutoryRecovery xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Value>123.99</Value>
<Description>string</Description>
<Generated>2021-01-14T00:00:00+00:00</Generated>
<TaxYear>123</TaxYear>
<TaxMonth>123</TaxMonth>
<SmallEmployerRelief>true</SmallEmployerRelief>
<AbsenceReportCode>string</AbsenceReportCode>
<StatutoryTotal>123.99</StatutoryTotal>
<Compensation>123.99</Compensation>
</ReportLineStatutoryRecovery>
{
"ReportLineStatutoryRecovery": {
"Value": "123.99",
"Description": "string",
"Generated": "2021-01-14T00:00:00+00:00",
"TaxYear": "123",
"TaxMonth": "123",
"SmallEmployerRelief": "true",
"AbsenceReportCode": "string",
"StatutoryTotal": "123.99",
"Compensation": "123.99"
}
}