Companies House · Schema

permission_to_act

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
company_names array The companies for which the disqualified officer has permission to act.
court_name string The name of the court that granted the permission to act.
expires_on string The date that the permission ends.
granted_on string The date that the permission starts.
View JSON Schema on GitHub

JSON Schema

permission_to_act.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "permission_to_act",
  "required": [
    "expires_on",
    "granted_on"
  ],
  "properties": {
    "company_names": {
      "description": "The companies for which the disqualified officer has permission to act.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "court_name": {
      "description": "The name of the court that granted the permission to act.",
      "type": "string"
    },
    "expires_on": {
      "description": "The date that the permission ends.",
      "type": "string",
      "format": "date"
    },
    "granted_on": {
      "description": "The date that the permission starts.",
      "type": "string",
      "format": "date"
    }
  }
}