Companies House · Schema

nameElements

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
forename string The forename of the officer.
title string Title of the officer.
other_forenames string Other forenames of the officer.
surname string The surname of the officer.
honours string Honours an officer might have.
View JSON Schema on GitHub

JSON Schema

nameelements.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "nameElements",
  "properties": {
    "forename": {
      "description": "The forename of the officer.",
      "type": "string"
    },
    "title": {
      "description": "Title of the officer.",
      "type": "string"
    },
    "other_forenames": {
      "description": "Other forenames of the officer.",
      "type": "string"
    },
    "surname": {
      "description": "The surname of the officer.",
      "type": "string"
    },
    "honours": {
      "description": "Honours an officer might have.",
      "type": "string"
    }
  },
  "required": [
    "surname"
  ]
}