API Docs / Schemas / PeriodsOfAccountResponseDto

PeriodsOfAccountResponseDto

The periods of account HMRC hold for one self-employment income source and tax year — the
accounting periods the business actually draws its accounts to, which need not align with the
tax year.

Properties

Name Type Description
submittedOnstring

When the periods of account were last submitted to HMRC.

When the periods of account were last submitted to HMRC.

hasPeriodsOfAccountboolean

Whether the business draws its accounts to periods other than the tax year. False means it
reports to the tax year and SodiumHQ.DTOs.MtdSubmissions.PeriodsOfAccountResponseDto.Periods is empty — HMRC omit the dates entirely in
that case, so an empty list here is an answer rather than missing data.

Whether the business draws its accounts to periods other than the tax year. False means it
reports to the tax year and SodiumHQ.DTOs.MtdSubmissions.PeriodsOfAccountResponseDto.Periods is empty — HMRC omit the dates entirely in
that case, so an empty list here is an answer rather than missing data.

periodsarray of PeriodOfAccount

The periods themselves, when the business has them.

The periods themselves, when the business has them.

JSON Example

{
  "submittedOn": "2024-01-01T00:00:00Z",
  "hasPeriodsOfAccount": false,
  "periods": [
    {
      "startDate": "...",
      "endDate": "..."
    }
  ]
}

Contained in Schemas