Companies House · Schema

exemptionItem

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
exempt_from string Exemption valid from.
exempt_to string Exemption valid to.
View JSON Schema on GitHub

JSON Schema

exemptionitem.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "exemptionItem",
  "properties": {
    "exempt_from": {
      "description": "Exemption valid from.",
      "type": "string",
      "format": "date"
    },
    "exempt_to": {
      "description": "Exemption valid to.",
      "type": "string",
      "format": "date"
    }
  },
  "required": [
    "exempt_from"
  ]
}