Companies House · Schema

confirmationOfStatementInformation

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
last_made_up_to string The date to which the company last made a confirmation statement.
next_due string The date by which the next confimation statement must be received.
next_made_up_to string The date to which the company must next make a confirmation statement.
overdue boolean Flag indicating if the confirmation statement is overdue
View JSON Schema on GitHub

JSON Schema

confirmationofstatementinformation.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "confirmationOfStatementInformation",
  "required": [
    "next_made_up_to",
    "next_due"
  ],
  "properties": {
    "last_made_up_to": {
      "description": "The date to which the company last made a confirmation statement.",
      "type": "string",
      "format": "date"
    },
    "next_due": {
      "description": "The date by which the next confimation statement must be received.",
      "type": "string",
      "format": "date"
    },
    "next_made_up_to": {
      "description": "The date to which the company must next make a confirmation statement.",
      "type": "string",
      "format": "date"
    },
    "overdue": {
      "description": "Flag indicating if the confirmation statement is overdue",
      "type": "boolean"
    }
  }
}