Companies House · Schema

companyInsolvency

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
etag string The ETag of the resource.
cases array List of insolvency cases.
status string Company insolvency status details
View JSON Schema on GitHub

JSON Schema

companyinsolvency.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "companyInsolvency",
  "required": [
    "etag",
    "cases"
  ],
  "properties": {
    "etag": {
      "description": "The ETag of the resource.",
      "type": "string"
    },
    "cases": {
      "type": "array",
      "description": "List of insolvency cases.",
      "items": {
        "$ref": "http://127.0.0.1:10000/api.ch.gov.uk-specifications/swagger-2.0/spec/insolvency.json#/definitions/case"
      }
    },
    "status": {
      "type": "string",
      "description": "Company insolvency status details",
      "enum": [
        "administration-order",
        "administrative-receiver",
        "in-administration",
        "liquidation",
        "live-receiver-manager-on-at-least-one-charge",
        "receivership",
        "receiver-manager",
        "voluntary-arrangement",
        "voluntary-arrangement-receivership"
      ]
    }
  }
}