Companies House · Schema

OfficerDateOfBirth

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
month integer The month the officer was born in.
year integer The year the officer was born in.
View JSON Schema on GitHub

JSON Schema

officerdateofbirth.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OfficerDateOfBirth",
  "required": [
    "month",
    "year"
  ],
  "properties": {
    "month": {
      "description": "The month the officer was born in.",
      "type": "integer"
    },
    "year": {
      "description": "The year the officer was born in.",
      "type": "integer"
    }
  }
}