Companies House · Schema

accountingReferenceDate

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
day integer The Accounting Reference Date (ARD) day.
month integer The Accounting Reference Date (ARD) month.
View JSON Schema on GitHub

JSON Schema

accountingreferencedate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "accountingReferenceDate",
  "type": "object",
  "required": [
    "day",
    "month"
  ],
  "properties": {
    "day": {
      "type": "integer",
      "description": "The Accounting Reference Date (ARD) day."
    },
    "month": {
      "type": "integer",
      "description": "The Accounting Reference Date (ARD) month."
    }
  }
}