Companies House · Schema

nextAccounts

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
due_on string The date the next company accounts are due
overdue boolean Flag indicating if the company accounts are overdue.
period_end_on string The last day of the next accounting period to be filed.
period_start_on string The first day of the next accounting period to be filed.
View JSON Schema on GitHub

JSON Schema

nextaccounts.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "nextAccounts",
  "type": "object",
  "properties": {
    "due_on": {
      "description": "The date the next company accounts are due",
      "type": "string",
      "format": "date"
    },
    "overdue": {
      "description": "Flag indicating if the company accounts are overdue.",
      "type": "boolean"
    },
    "period_end_on": {
      "description": "The last day of the next accounting period to be filed.",
      "type": "string",
      "format": "date"
    },
    "period_start_on": {
      "description": "The first day of the next accounting period to be filed.",
      "type": "string",
      "format": "date"
    }
  }
}