API Docs / Schemas / SaveMtdInvestmentReliefsRequest

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
vctSubscriptionarray of InvestmentSubscription

Venture capital trust subscriptions.

Venture capital trust subscriptions.

eisSubscriptionarray of InvestmentSubscription

Enterprise investment scheme subscriptions.

Enterprise investment scheme subscriptions.

communityInvestmentarray of InvestmentSubscription

Community investment tax relief subscriptions.

Community investment tax relief subscriptions.

seedEnterpriseInvestmentarray of InvestmentSubscription

Seed enterprise investment scheme subscriptions.

Seed enterprise investment scheme subscriptions.

socialEnterpriseInvestmentarray of InvestmentSubscription

Social enterprise investment (SITR) subscriptions. HMRC dropped these from later tax years —
sending them for a year that no longer defines them is refused by HMRC, not silently ignored.

Social enterprise investment (SITR) subscriptions. HMRC dropped these from later tax years —
sending them for a year that no longer defines them is refused by HMRC, not silently ignored.

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": "..."
    }
  ]
}

Used By Operations