Companies House · Schema

dateOfBirth

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
month integer The month of date of birth.
year integer The year of date of birth.
View JSON Schema on GitHub

JSON Schema

dateofbirth.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "dateOfBirth",
  "properties": {
    "month": {
      "description": "The month of date of birth.",
      "type": "integer"
    },
    "year": {
      "description": "The year of date of birth.",
      "type": "integer"
    }
  },
  "required": [
    "month",
    "year"
  ]
}