RTI NVR Job Instructions
RtiNvrJobInstruction [Schema]
Name | Type | Required | Description |
---|---|---|---|
HoldingDate | xsd:dateTime | no | Optional date, used to defer execution of the job until a future point in time. |
Generate | xsd:boolean | yes | Flag to indicate if the job should generate the message. |
Transmit | xsd:boolean | yes | Flag to indicate if the message should be transmitted to HMRC via the RTI gateway. |
TaxYear | TaxYear | yes | The tax year the message relates to. |
Employer | Link | yes | A link to the associated Employer resource. |
Timestamp | xsd:dateTime | no | The timestamp that is transmitted on the RTI message. |
Example
<?xml version="1.0"?>
<RtiNvrJobInstruction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<HoldingDate>2019-12-05T00:00:00+00:00</HoldingDate>
<Generate>true</Generate>
<Transmit>true</Transmit>
<TaxYear>123</TaxYear>
<Employer title="string" href="string" rel="string" />
<Timestamp>2019-12-05T00:00:00+00:00</Timestamp>
</RtiNvrJobInstruction>
{
"RtiNvrJobInstruction": {
"HoldingDate": "2019-12-05T00:00:00+00:00",
"Generate": "true",
"Transmit": "true",
"TaxYear": "123",
"Employer": {
"@title": "string",
"@href": "string",
"@rel": "string"
},
"Timestamp": "2019-12-05T00:00:00+00:00"
}
}