MtdInvestmentReliefsDto
The investment reliefs HMRC hold for a client and tax year: venture capital trust, enterprise
investment scheme, seed enterprise investment scheme and community investment subscriptions.
Properties
| Name | Type | Description |
|---|---|---|
| clientCode | string | The Sodium client the values belong to, stamped by the API on the way out. |
The Sodium client the values belong to, stamped by the API on the way out. | ||
| taxYear | string | The tax year, in HMRC's format, e.g. 2025-26. |
The tax year, in HMRC's format, e.g. 2025-26. | ||
| isHeld | boolean | Whether HMRC hold anything for this resource and tax year. |
Whether HMRC hold anything for this resource and tax year. | ||
| lastAction | MtdSubmissionStampDto | |
| investment | InvestmentReliefs | |
JSON Example
{
"clientCode": "string",
"taxYear": "string",
"isHeld": false,
"lastAction": {
"kind": "string",
"action": "string",
"reference": "string",
"taxYear": "string",
"performedByUserCode": "string"
},
"investment": {
"submittedOn": "2024-01-01T00:00:00Z",
"vctSubscription": [
"..."
],
"eisSubscription": [
"..."
],
"communityInvestment": [
"..."
],
"seedEnterpriseInvestment": [
"..."
]
}
}