SaveMtdInvestmentReliefsRequest
Saves the year's investment reliefs at HMRC.
A full replacement: every subscription that should survive must be in the
request, because what is absent is cleared. Clearing the year is a delete, not an empty save.
Properties
| Name | Type | Description |
|---|---|---|
| vctSubscription | array of InvestmentSubscription | Venture capital trust subscriptions. |
Venture capital trust subscriptions. | ||
| eisSubscription | array of InvestmentSubscription | Enterprise investment scheme subscriptions. |
Enterprise investment scheme subscriptions. | ||
| communityInvestment | array of InvestmentSubscription | Community investment tax relief subscriptions. |
Community investment tax relief subscriptions. | ||
| seedEnterpriseInvestment | array of InvestmentSubscription | Seed enterprise investment scheme subscriptions. |
Seed enterprise investment scheme subscriptions. | ||
| socialEnterpriseInvestment | array of InvestmentSubscription | Social enterprise investment (SITR) subscriptions. HMRC dropped these from later tax years — |
Social enterprise investment (SITR) subscriptions. HMRC dropped these from later tax years — | ||
JSON Example
{
"vctSubscription": [
{
"uniqueInvestmentRef": "...",
"name": "...",
"knowledgeIntensive": "...",
"dateOfInvestment": "...",
"amountInvested": "..."
}
],
"eisSubscription": [
{
"uniqueInvestmentRef": "...",
"name": "...",
"knowledgeIntensive": "...",
"dateOfInvestment": "...",
"amountInvested": "..."
}
],
"communityInvestment": [
{
"uniqueInvestmentRef": "...",
"name": "...",
"knowledgeIntensive": "...",
"dateOfInvestment": "...",
"amountInvested": "..."
}
],
"seedEnterpriseInvestment": [
{
"uniqueInvestmentRef": "...",
"name": "...",
"knowledgeIntensive": "...",
"dateOfInvestment": "...",
"amountInvested": "..."
}
],
"socialEnterpriseInvestment": [
{
"uniqueInvestmentRef": "...",
"name": "...",
"knowledgeIntensive": "...",
"dateOfInvestment": "...",
"amountInvested": "..."
}
]
}