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 |
|---|---|---|
| submittedOn | string | When the periods of account were last submitted to HMRC. |
When the periods of account were last submitted to HMRC. | ||
| hasPeriodsOfAccount | boolean | Whether the business draws its accounts to periods other than the tax year. False means it |
Whether the business draws its accounts to periods other than the tax year. False means it | ||
| periods | array 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": "..."
}
]
}