Companies House · Schema

Registered Office Address

This will only appear if there are ROA details in the company record

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
address_line_1 string The first line of the address e.g Crown Way
address_line_2 string The second line of the address
locality string The town associated to the ROA e.g Cardiff
postal_code string The postal code e.g CF14 3UZ
region string The region e.g Surrey.
country string The country.
View JSON Schema on GitHub

JSON Schema

advanced_company_registered_office_address.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Registered Office Address",
  "description": "This will only appear if there are ROA details in the company record",
  "properties": {
    "address_line_1": {
      "type": "string",
      "description": "The first line of the address e.g Crown Way"
    },
    "address_line_2": {
      "type": "string",
      "description": "The second line of the address"
    },
    "locality": {
      "type": "string",
      "description": "The town associated to the ROA e.g Cardiff"
    },
    "postal_code": {
      "type": "string",
      "description": "The postal code e.g CF14 3UZ"
    },
    "region": {
      "description": "The region e.g Surrey.",
      "type": "string"
    },
    "country": {
      "description": "The country.",
      "enum": [
        "Wales",
        "England",
        "Scotland",
        "Great Britain",
        "Not specified",
        "United Kingdom",
        "Northern Ireland"
      ],
      "type": "string"
    }
  }
}