Companies House · Schema

practitionerAddress

CompaniesUK GovernmentBusiness RegistrationCompany SearchOfficersFiling HistoryInsolvencyChargesPersons of Significant ControlOpen Data

Properties

Name Type Description
address_line_1 string The first line of the address.
address_line_2 string The second line of the address.
locality string The locality. For example London.
region string The region. For example Surrey.
postal_code string The postal code. For example CF14 3UZ.
country string The country.
View JSON Schema on GitHub

JSON Schema

practitioneraddress.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "practitionerAddress",
  "required": [
    "address_line_1"
  ],
  "properties": {
    "address_line_1": {
      "type": "string",
      "description": "The first line of the address."
    },
    "address_line_2": {
      "type": "string",
      "description": "The second line of the address."
    },
    "locality": {
      "type": "string",
      "description": "The locality. For example London."
    },
    "region": {
      "type": "string",
      "description": "The region. For example Surrey."
    },
    "postal_code": {
      "type": "string",
      "description": "The postal code. For example CF14 3UZ."
    },
    "country": {
      "type": "string",
      "description": "The country."
    }
  }
}