Companies House · Schema

classificationDesc

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
type string The type of charge classication. For enumeration descriptions see `classificationDesc` section in the [enumeration mappings](https://github.com/companieshouse/api-enumerations/blob/master/mortgage_des
description string Details of the charge classification
View JSON Schema on GitHub

JSON Schema

classificationdesc.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "classificationDesc",
  "required": [
    "type",
    "description"
  ],
  "properties": {
    "type": {
      "enum": [
        "charge-description",
        "nature-of-charge"
      ],
      "type": "string",
      "description": "The type of charge classication.\n For enumeration descriptions see `classificationDesc` section in the [enumeration mappings](https://github.com/companieshouse/api-enumerations/blob/master/mortgage_descriptions.yml)"
    },
    "description": {
      "type": "string",
      "description": "Details of the charge classification"
    }
  }
}