Companies House · Schema

CompanySearch

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
kind string The type of search response returned.
items array The results of the completed search.
View JSON Schema on GitHub

JSON Schema

companysearch.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CompanySearch",
  "allOf": [
    {
      "$ref": "http://127.0.0.1:10000/api.ch.gov.uk-specifications/swagger-2.0/spec/search.json#/definitions/CommonSearch"
    }
  ],
  "properties": {
    "kind": {
      "type": "string",
      "description": "The type of search response returned.",
      "enum": [
        "search#companies"
      ]
    },
    "items": {
      "type": "array",
      "description": "The results of the completed search.",
      "items": {
        "$ref": "http://127.0.0.1:10000/api.ch.gov.uk-specifications/swagger-2.0/spec/search.json#/definitions/CompanySearchItems"
      }
    }
  }
}