Companies House · Schema

Alphabetical company

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
company_name string The company name associated with the company
company_number string The company number of the company
company_status string The status of the company
ordered_alpha_key_with_id string The alphakey with it's id associated with the company
kind string The type of search result
links object The link to the company
company_type string The type of company associated with the company
View JSON Schema on GitHub

JSON Schema

alphabeticalcompany.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Alphabetical company",
  "required": [
    "company_name",
    "company_number",
    "company_status",
    "company_type",
    "links"
  ],
  "properties": {
    "company_name": {
      "type": "string",
      "description": "The company name associated with the company"
    },
    "company_number": {
      "type": "string",
      "description": "The company number of the company"
    },
    "company_status": {
      "type": "string",
      "description": "The status of the company"
    },
    "ordered_alpha_key_with_id": {
      "type": "string",
      "description": "The alphakey with it's id associated with the company"
    },
    "kind": {
      "type": "string",
      "enum": [
        "search-results#alphabetical-search"
      ],
      "description": "The type of search result"
    },
    "links": {
      "type": "object",
      "description": "The link to the company",
      "properties": {
        "company_profile": {
          "type": "string",
          "description": "The link to the company"
        }
      }
    },
    "company_type": {
      "type": "string",
      "description": "The type of company associated with the company"
    }
  }
}