Companies House · Schema

associatedFiling

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
date string The date the associated filing was processed.
description string A description of the associated filing. For enumeration descriptions see `description` section in the [enumeration mappings](https://github.com/companieshouse/api-enumerations/blob/master/filing_histo
type string The type of the associated filing.
View JSON Schema on GitHub

JSON Schema

associatedfiling.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "associatedFiling",
  "required": [
    "date",
    "description",
    "type"
  ],
  "properties": {
    "date": {
      "description": "The date the associated filing was processed.",
      "type": "string",
      "format": "date"
    },
    "description": {
      "type": "string",
      "description": "A description of the associated filing.\n For enumeration descriptions see `description` section in the [enumeration mappings](https://github.com/companieshouse/api-enumerations/blob/master/filing_history_descriptions.yml) file."
    },
    "type": {
      "description": "The type of the associated filing.",
      "type": "string"
    }
  }
}