Companies House · Schema

appointedTo

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
company_name string The name of the company the officer is acting for.
company_number string The number of the company the officer is acting for.
company_status string The status of the company the officer is acting for.
View JSON Schema on GitHub

JSON Schema

appointedto.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "appointedTo",
  "properties": {
    "company_name": {
      "description": "The name of the company the officer is acting for.",
      "type": "string"
    },
    "company_number": {
      "description": "The number of the company the officer is acting for.",
      "type": "string"
    },
    "company_status": {
      "description": "The status of the company the officer is acting for.",
      "type": "string"
    }
  },
  "required": [
    "company_number"
  ]
}