Companies House · Schema

OfficerSearch

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

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

JSON Schema

officersearch.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OfficerSearch",
  "allOf": [
    {
      "$ref": "http://127.0.0.1:10000/api.ch.gov.uk-specifications/swagger-2.0/spec/search.json#/definitions/CommonSearch"
    }
  ],
  "required": [
    "kind"
  ],
  "properties": {
    "kind": {
      "type": "string",
      "description": "The type of response returned.",
      "enum": [
        "search#officers"
      ]
    },
    "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/OfficerSearchItems"
      }
    }
  }
}