Companies House · Schema

previousCompanyNames

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
name string The previous company name
effective_from string The date from which the company name was effective.
ceased_on string The date on which the company name ceased.
View JSON Schema on GitHub

JSON Schema

previouscompanynames.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "previousCompanyNames",
  "properties": {
    "name": {
      "description": "The previous company name",
      "type": "string"
    },
    "effective_from": {
      "description": "The date from which the company name was effective.",
      "type": "string",
      "format": "date"
    },
    "ceased_on": {
      "description": "The date on which the company name ceased.",
      "type": "string",
      "format": "date"
    }
  },
  "required": [
    "name",
    "effective_from",
    "ceased_on"
  ]
}