Companies House · Schema

lastAccounts

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
made_up_to string Deprecated. Please use accounts.last_accounts.period_end_on
period_end_on string The last day of the most recently filed accounting period.
period_start_on string The first day of the most recently filed accounting period.
type object The type of the last company accounts filed. For enumeration descriptions see `account_type` section in the [enumeration mappings](https://github.com/companieshouse/api-enumerations/blob/master/consta
View JSON Schema on GitHub

JSON Schema

lastaccounts.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "lastAccounts",
  "properties": {
    "made_up_to": {
      "type": "string",
      "format": "date",
      "description": "Deprecated. Please use accounts.last_accounts.period_end_on"
    },
    "period_end_on": {
      "type": "string",
      "format": "date",
      "description": "The last day of the most recently filed accounting period."
    },
    "period_start_on": {
      "type": "string",
      "format": "date",
      "description": "The first day of the most recently filed accounting period."
    },
    "type": {
      "description": "The type of the last company accounts filed.  \n For enumeration descriptions see `account_type` section in the [enumeration mappings](https://github.com/companieshouse/api-enumerations/blob/master/constants.yml).    ",
      "enum": [
        "null",
        "full",
        "small",
        "medium",
        "group",
        "dormant",
        "interim",
        "initial",
        "total-exemption-full",
        "total-exemption-small",
        "partial-exemption",
        "audit-exemption-subsidiary",
        "filing-exemption-subsidiary",
        "micro-entity",
        "no-accounts-type-available",
        "audited-abridged",
        "unaudited-abridged"
      ]
    }
  },
  "type": "string",
  "required": [
    "type",
    "made_up_to"
  ]
}