Matchcode360 AddressBase Integration Guide
AddressBase Core within Matchcode is a simple, accessible addressing data product giving plug and play access to Great Britain addressing data and additional attribution, without being overly difficult or complex.
It provides live addressing records for England, Wales and Scotland based on local authority holdings of the Local Land and Property Gazetteer (LLPG).
Other attribution includes secondary level classifications (detailing the use / type of an address) and a representative point code describing the positional quality of coordinates.
It includes:
- 33m+ records
- Unique Property Reference Number (UPRN) - which remains constant for the entire lifecycle of all buildings in the UK
- Geocodes accurate to 1m
About This Guide
This guide explains how to access GBGroup's web service products using their Identity Management Platform (IdM), available via SOAP web services. The document provides a general description of the available functionality along with a definition of the corresponding interfaces used to access different datasets and services.
The fundamentals of integrating with the service are described here: Integration Fundamentals
Section 2 of the document gives product specific details regarding the use of the Matchcode AddressBase Core Web Service products via IdM.
The Matchcode AddressBase Core service provides access to the AddressBase Core data, in a similar manner to Matchcode UK Address searching (see Matchcode UK Address Integration Guide ).
The Matchcode AddressBase Core web service products are available via the Identity Management ExecuteCapture web service method.
Please note: Wherever <LatestWSDLVersion> is shown in Example Code below, please replace this with GlobalServices21a.wsdl.
Input Format
The ExecuteCapture method takes in a ExecuteCaptureRequest data structure, which contains all the information neccessary to carry out the request.
Type: ExecuteCaptureRequest
Field Name | Type | Description |
---|---|---|
securityHeader | SecurityHeader | The username and authentication token used to access the system. |
profileRequest | ProfileRequestCapture | Details of the request |
The SecurityHeader structure holds security data to access products and services in the IdM Platform.
The ProfileRequestCapture structure contains the criteria to identify the target product being called and the search data for the product request.
Within the profileRequest element, the profileGuid element should contain the GUID value listed below:
Profile | GUID |
---|---|
AddressBase Core | BCB96C1A-BC4C-4110-8A9E-A097B55380BB |
Search Criteria
The address search criteria should be entered into the IdmDataSearchAddress data structure, which is located within the input details as follows:
ExecuteCapture → ProfileRequestCapture → ProfileRequestCaptureData → address
Alternative Search Criteria
Along with the standard address search criteria, this service supports address searching by one of the address identifiers listed below.
This search criteria is specified by using the additionalItems property of the search address. To carry out a search with one of these identifiers, a key-value pair must be included in the additional items property, with the key being the identifier and the value being the search value. Only one identifier can be used in a search, if more than one are specified the others will be ignored.
This alternative search criteria overrides the standard address search criteria, which will be ignored if a valid identifier is provided in the IDM request.
Key | Description |
---|---|
UPRN | Unique property reference number |
USRN | Unique Street Reference Number |
UDPRN | Royal Mail unique delivery point reference number |
PARENT_UPRN | Parent Unique property reference number |
OS_ADDRESS_TOID | OS Address Toid |
Additional Request Options
The additional search options, used for configuring options such as casing or transliteration of output results, can be set in the IdmRequestOptions structure located in the ProfileRequestCaptureData.options property.
Additional Return Data
Additional data can be returned, or excluded from being returned, for each address by providing one or more values in the IdmRequestOption.relatedDataItems property.
For each value provided, the corresponding additional data is returned, and the corresponding additional data for all the values not provided, are not returned.
The following values are supported by this service.
Key Mnemonic | Description | Returned By Default? |
---|---|---|
COUNTRYCODE | Country code |
Yes
|
UPRN | Unique property reference number from Ordnance Survey | Yes |
UDPRN | Royal Mail Unique Delivery Point Reference Number from Royal Mail PAF or Not-Yet-Built file | Yes |
USRN | Unique Street Reference Number | Yes |
PARENT_UPRN | Parent UPRN. | Yes |
X_COORDINATE | Easting | Yes |
Y_COORDINATE | Northing | Yes |
OS_LATITUDE | Easting | Yes |
OS_LONGITUDE | Northing | Yes |
OS_ADDRESS_TOID | OS Address Toid |
Yes
|
RPC | Representative Point Code | Yes |
OS_COUNTRY | OS Country Code | Yes |
OS_CLASS | OS Class | Yes |
LAST_UPDATE_DATE | Last Update Date | Yes |
TOWN_NAME | Town Name | Yes |
PO_BOX | PO Box | Yes |
GSS_CODE | ONS GSS Code | Yes |
ISLAND | Island | Yes |
Request Additional Datasets
Data from additional datasets can be enabled or disabled for an address search, by populating the ProfileRequestCaptureData.additionalData property with key-value pairs from the applicable list table below. To use a particular dataset, the user must be subscribed to the dataset.
This information should be entered into the IdmDataArrayAdditionalData data structure, which is located within the input details as follows:
ExecuteCapture → ProfileRequestCapture → ProfileRequestCaptureData → additionalData
Key | Possible Values | Description |
---|---|---|
LOC_INT | "Yes" or "No" | Request Property Intelligence information to be returned |
PREMISE_GEOCODE | "Yes" or "No" | Request Premise Level Geocode information to be returned |
CONGESTION_ZONES | "Yes" or "No" | Request Congestion Zone information to be returned |
RED_ROUTE | "Yes" or "No" | Request Red Route information to be returned |
Location Intelligence
The location intelligence dataset is detailed here.
Premise Level Geocodes
The premise level geocodes dataset is detailed here.
Congestion Zone
The congestion zone dataset is detailed here.
Red Route
The red route dataset is detailed here.
Address Filters
Addresses which have been found by the web service, which match a particular kind of address, can be filtered out from the search results by using the address filters functionality described here.
Output Format
The results of the Addressbase Core web service search are returned in a ProfileResponseDetails structure with a ProfileResponseDetail.responseType of 'CAPTURE'.
The ProfileResponseDetails structure contains a single CaptureResponse data structure which holds an array of IdmDataAddress records containing the returned address data.
ExecuteCaptureResponse > ProfileResponse [0] > ProfileResponseDetails [0] > CaptureResponse > CaptureResponseData > IdmDataAddress [n]
Additional data from a search may be returned in the additionalItems or the groupedAdditionalItems of the IdmDataAddress.
Output Fields
Apart from the standard address fields, the following additional fields are returned by the service:
Example Requests & Responses
Example Requests
The following example shows how to use the alternative search criteria mentioned previously, to to search for an address by its LPI_KEY value.
SOAP
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:b="http://gbworld.gb.co.uk/idm-globalservices/messages/<LatestWSDLVersion>/" xmlns:head="http://gbworld.gb.co.uk/types/header/" xmlns:req="http://gbworld.gb.co.uk/types/core/request/" xmlns:data="http://gbworld.gb.co.uk/types/core/data/">
<soapenv:Header/>
<soapenv:Body>
<b:ExecuteCaptureRequest>
<b:securityHeader>
<head:authenticationToken>F869C1D7-688D-4CD1-AD63-A55AB04EEEC2</head:authenticationToken>
<head:username>xxxxxx</head:username>
</b:securityHeader>
<b:profileRequest>
<req:customerReference>Test</req:customerReference>
<req:profileGuid>BCB96C1A-BC4C-4110-8A9E-A097B55380BB</req:profileGuid>
<req:configurationId>2</req:configurationId>
<req:requestData>
<req:address>
<data:street/>
<data:town/>
<data:postCode>CH4 9GB</data:postCode>
<data:building/>
<data:countryCode>UK</data:countryCode>
<data:freeFormatAddress></data:freeFormatAddress>
</req:address>
<req:filters xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
<req:options>
<req:addressEnvelopeFormat>A4P</req:addressEnvelopeFormat>
<req:offset>0</req:offset>
<req:maxReturn>100</req:maxReturn>
<req:casing>MIXED</req:casing>
<req:transliteration>INPUT</req:transliteration>
</req:options>
<req:additionalData>
<data:item>
<data:key>LOC_INT</data:key>
<data:value>yes</data:value>
</data:item>
<data:item>
<data:key>CONGESTION_ZONES</data:key>
<data:value>yes</data:value>
</data:item>
<data:item>
<data:key>RED_ROUTE</data:key>
<data:value>yes</data:value>
</data:item>
<data:item>
<data:key>PREMISE_GEOCODE</data:key>
<data:value>yes</data:value>
</data:item>
</req:additionalData>
</req:requestData>
</b:profileRequest>
</b:ExecuteCaptureRequest>
</soapenv:Body>
</soapenv:Envelope>
Example Responses
SOAP
SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<mes:ExecuteCaptureResponse xmlns:alu="http://gbworld.gb.co.uk/types/core/request/alu/" xmlns:common="http://gbworld.gb.co.uk/types/common/" xmlns:comp="http://gbworld.gb.co.uk/types/component/" xmlns:data="http://gbworld.gb.co.uk/types/core/data/" xmlns:datatypes="http://gbworld.gb.co.uk/types/datatypes/" xmlns:faults="http://gbworld.gb.co.uk/types/faults/" xmlns:head="http://gbworld.gb.co.uk/types/header/" xmlns:mes="http://gbworld.gb.co.uk/idm-globalservices/messages/<LatestWSDLVersion>/" xmlns:prop="http://gbworld.gb.co.uk/idm-core/component/properties/" xmlns:req="http://gbworld.gb.co.uk/types/core/request/" xmlns:trace="http://gbworld.gb.co.uk/types/core/data/trace/" xmlns:ver="http://gbworld.gb.co.uk/types/core/request/verify/">
<mes:securityHeader>
<head:authenticationToken xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">F869C1D7-688D-4CD1-AD63-A55AB04EEEC2</head:authenticationToken>
<head:authenticationTime xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">2021-02-26T16:27:00.966Z</head:authenticationTime>
<head:sessionExpiryTime xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">2021-02-26T17:40:39.909Z</head:sessionExpiryTime>
</mes:securityHeader>
<mes:transactionGuid>E4B12D00-62EE-4DF5-9EC7-4FA6063014C9</mes:transactionGuid>
<mes:profileResponse>
<req:profileHeader>
<req:profileGuid>BCB96C1A-BC4C-4110-8A9E-A097B55380BB</req:profileGuid>
<req:profileName>Matchcode AddressBase</req:profileName>
<req:transactionGuid>E4B12D00-62EE-4DF5-9EC7-4FA6063014C9</req:transactionGuid>
<req:transactionTimeStamp>2021-02-26T16:35:39.027Z</req:transactionTimeStamp>
<req:profileStatus>SUCCESS</req:profileStatus>
</req:profileHeader>
<req:profileResponseDetails>
<req:transactionGuid>FCB08227-7425-431A-A82A-BF88A2A343E3</req:transactionGuid>
<req:componentName>AddressBase</req:componentName>
<req:componentStatus>SUCCESS</req:componentStatus>
<req:componentAction>VERIFY</req:componentAction>
<req:responseType>CAPTURE</req:responseType>
<req:notes>[]</req:notes>
<req:invoice>
<req:invoiceList>
<req:invoiceGuid>6811DB7D-EF5C-4D17-A214-577A9E8055EA</req:invoiceGuid>
<req:billingInformationGuid>9F924855-8360-4925-B67C-9DF57E21E1DF</req:billingInformationGuid>
<req:billingPoints>1</req:billingPoints>
<req:creditsUsed>1</req:creditsUsed>
<req:dataSetInvoices>
<req:dataSetCode>ABC</req:dataSetCode>
<req:billingPoints>1</req:billingPoints>
<req:recordsReturned>1</req:recordsReturned>
<req:dataLicenceGuid>9F924855-8360-4925-B67C-9DF57E21E1DF</req:dataLicenceGuid>
</req:dataSetInvoices>
</req:invoiceList>
<req:invoiceList>
<req:invoiceGuid>9EEFA11B-4825-41F1-9BA9-4679A8F18935</req:invoiceGuid>
<req:billingInformationGuid>D6307962-8C7F-4D53-94AB-966976604129</req:billingInformationGuid>
<req:billingPoints>1</req:billingPoints>
<req:dataSetInvoices>
<req:dataSetCode>CONGESTION_ZONES</req:dataSetCode>
<req:billingPoints>1</req:billingPoints>
<req:recordsReturned>1</req:recordsReturned>
<req:dataLicenceGuid>D6307962-8C7F-4D53-94AB-966976604129</req:dataLicenceGuid>
</req:dataSetInvoices>
</req:invoiceList>
<req:invoiceList>
<req:invoiceGuid>39CE721E-DAA9-4EDA-B844-CAFD90D841A1</req:invoiceGuid>
<req:billingInformationGuid>92D9A6F4-97FB-4033-A1A1-31819A7F1947</req:billingInformationGuid>
<req:billingPoints>1</req:billingPoints>
<req:dataSetInvoices>
<req:dataSetCode>LOC_INT</req:dataSetCode>
<req:billingPoints>1</req:billingPoints>
<req:recordsReturned>1</req:recordsReturned>
<req:dataLicenceGuid>92D9A6F4-97FB-4033-A1A1-31819A7F1947</req:dataLicenceGuid>
</req:dataSetInvoices>
</req:invoiceList>
<req:invoiceList>
<req:invoiceGuid>D00D87B7-E281-4FC2-96A2-332EB46ACF85</req:invoiceGuid>
<req:billingInformationGuid>D87D49AA-D3A1-4AF8-8CE8-687CB931BD14</req:billingInformationGuid>
<req:billingPoints>1</req:billingPoints>
<req:dataSetInvoices>
<req:dataSetCode>RED_ROUTE</req:dataSetCode>
<req:billingPoints>1</req:billingPoints>
<req:recordsReturned>1</req:recordsReturned>
<req:dataLicenceGuid>D87D49AA-D3A1-4AF8-8CE8-687CB931BD14</req:dataLicenceGuid>
</req:dataSetInvoices>
</req:invoiceList>
<req:invoiceList>
<req:invoiceGuid>6FBEF607-B4E6-4D4E-B354-48B70EAC5D0B</req:invoiceGuid>
<req:billingInformationGuid>4699715C-E7BD-4470-BC4C-CEE908FEB54D</req:billingInformationGuid>
<req:billingPoints>1</req:billingPoints>
<req:dataSetInvoices>
<req:dataSetCode>PREMISE_GEOCODE</req:dataSetCode>
<req:billingPoints>1</req:billingPoints>
<req:recordsReturned>1</req:recordsReturned>
<req:dataLicenceGuid>4699715C-E7BD-4470-BC4C-CEE908FEB54D</req:dataLicenceGuid>
</req:dataSetInvoices>
</req:invoiceList>
</req:invoice>
<req:captureResponse>
<req:resultStatus>SINGLE</req:resultStatus>
<req:recordsReturned>1</req:recordsReturned>
<req:moreData>false</req:moreData>
<req:totalRecordCount>1</req:totalRecordCount>
<req:totalPages>1</req:totalPages>
<req:matchScore>0</req:matchScore>
<req:matchLevel>NA</req:matchLevel>
<req:outputStatus>NOTMATCHED</req:outputStatus>
<req:fieldStatus>55555555</req:fieldStatus>
<req:responseCount>1</req:responseCount>
<req:response>
<req:address>
<data:organisation>Gb Group Plc</data:organisation>
<data:street>Kingsfield Court</data:street>
<data:town>CHESTER</data:town>
<data:postCode>CH4 9GB</data:postCode>
<data:locality>Eccleston</data:locality>
<data:buildingName>Nextgear House</data:buildingName>
<data:stateRegion>Cheshire</data:stateRegion>
<data:countryCode>GBR</data:countryCode>
<data:dpsZipPlus>1AR</data:dpsZipPlus>
<data:formattedAddress>Gb Group Plc,Nextgear House,Kingsfield Court Eccleston,Chester Cheshire,CH4 9GB</data:formattedAddress>
<data:geographicInformation>
<data:easting>340009</data:easting>
<data:northing>363191</data:northing>
<data:latitude>53.1624611</data:latitude>
<data:longitude>-2.8987275</data:longitude>
</data:geographicInformation>
<data:additionalItems>
<data:item>
<data:key>DATASOURCE</data:key>
<data:value>ABC</data:value>
</data:item>
</data:additionalItems>
<data:groupedAdditionalItems>
<data:name>LocationIntelligence</data:name>
<data:item>
<data:key>ADULTOCC</data:key>
<data:value>2</data:value>
</data:item>
<data:item>
<data:key>ADULTOCCC</data:key>
<data:value>0.8</data:value>
</data:item>
<data:item>
<data:key>ADULTOCCS</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>AVERAGE_ROOF_SLOPE</data:key>
<data:value>0.22</data:value>
</data:item>
<data:item>
<data:key>AVERAGE_ROOF_SLOPEC</data:key>
<data:value>0.8</data:value>
</data:item>
<data:item>
<data:key>AVERAGE_ROOF_SLOPES</data:key>
<data:value>7</data:value>
</data:item>
<data:item>
<data:key>BATHROOMS</data:key>
<data:value>1</data:value>
</data:item>
<data:item>
<data:key>BATHROOMSC</data:key>
<data:value>0.73</data:value>
</data:item>
<data:item>
<data:key>BATHROOMSS</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>BEDROOMS</data:key>
<data:value>2</data:value>
</data:item>
<data:item>
<data:key>BEDROOMSC</data:key>
<data:value>0.6</data:value>
</data:item>
<data:item>
<data:key>BEDROOMSS</data:key>
<data:value>30</data:value>
</data:item>
<data:item>
<data:key>BHEIGHT</data:key>
<data:value>9.22</data:value>
</data:item>
<data:item>
<data:key>BHEIGHTC</data:key>
<data:value>0.95</data:value>
</data:item>
<data:item>
<data:key>BHEIGHTS</data:key>
<data:value>7</data:value>
</data:item>
<data:item>
<data:key>BUILD_CNT</data:key>
<data:value>1</data:value>
</data:item>
<data:item>
<data:key>BUILD_CNTC</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>BUILD_CNTS</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>BURG_RATE</data:key>
<data:value>0.0208</data:value>
</data:item>
<data:item>
<data:key>BURG_RATEC</data:key>
<data:value>0.9</data:value>
</data:item>
<data:item>
<data:key>BURG_RATES</data:key>
<data:value>29</data:value>
</data:item>
<data:item>
<data:key>BUS_USAGE</data:key>
<data:value>1</data:value>
</data:item>
<data:item>
<data:key>BUS_USAGEC</data:key>
<data:value>0.95</data:value>
</data:item>
<data:item>
<data:key>BUS_USAGES</data:key>
<data:value>36</data:value>
</data:item>
<data:item>
<data:key>DIST_ROAD</data:key>
<data:value>46</data:value>
</data:item>
<data:item>
<data:key>DIST_ROADC</data:key>
<data:value>0.95</data:value>
</data:item>
<data:item>
<data:key>DIST_ROADS</data:key>
<data:value>35</data:value>
</data:item>
<data:item>
<data:key>DISTANCE_TO_TREE</data:key>
<data:value>79.32</data:value>
</data:item>
<data:item>
<data:key>DISTANCE_TO_TREEC</data:key>
<data:value>0.8</data:value>
</data:item>
<data:item>
<data:key>DISTANCE_TO_TREES</data:key>
<data:value>7</data:value>
</data:item>
<data:item>
<data:key>DISTANCE_TO_WATER</data:key>
<data:value>0.0</data:value>
</data:item>
<data:item>
<data:key>DISTANCE_TO_WATERC</data:key>
<data:value>0.0</data:value>
</data:item>
<data:item>
<data:key>DISTANCE_TO_WATERS</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>ESTCTAX</data:key>
<data:value>7</data:value>
</data:item>
<data:item>
<data:key>ESTCTAXBAND</data:key>
<data:value>H</data:value>
</data:item>
<data:item>
<data:key>ESTCTAXC</data:key>
<data:value>0.5</data:value>
</data:item>
<data:item>
<data:key>ESTCTAXS</data:key>
<data:value>2</data:value>
</data:item>
<data:item>
<data:key>ESTVAL</data:key>
<data:value>10443680</data:value>
</data:item>
<data:item>
<data:key>ESTVALC</data:key>
<data:value>0.5</data:value>
</data:item>
<data:item>
<data:key>ESTVALS</data:key>
<data:value>2</data:value>
</data:item>
<data:item>
<data:key>EXTENSIONS</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>EXTENSIONSC</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>EXTENSIONSS</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>FLAT_FLOOR</data:key>
<data:value>N/A</data:value>
</data:item>
<data:item>
<data:key>FLAT_FLOORC</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>FLAT_FLOORS</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>FLAT_ROOF_FRACTION</data:key>
<data:value>0.01</data:value>
</data:item>
<data:item>
<data:key>FLAT_ROOF_FRACTIONC</data:key>
<data:value>0.8</data:value>
</data:item>
<data:item>
<data:key>FLAT_ROOF_FRACTIONS</data:key>
<data:value>7</data:value>
</data:item>
<data:item>
<data:key>FLOOR_AREA</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>FLOOR_AREAC</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>FLOOR_AREAS</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>FLOORS</data:key>
<data:value>2</data:value>
</data:item>
<data:item>
<data:key>FLOORSC</data:key>
<data:value>0.9</data:value>
</data:item>
<data:item>
<data:key>FLOORSS</data:key>
<data:value>7</data:value>
</data:item>
<data:item>
<data:key>FOOTPRINT</data:key>
<data:value>1022.5</data:value>
</data:item>
<data:item>
<data:key>FOOTPRINTC</data:key>
<data:value>0.85</data:value>
</data:item>
<data:item>
<data:key>FOOTPRINTS</data:key>
<data:value>7</data:value>
</data:item>
<data:item>
<data:key>GEOCODE_MULTIPLIC</data:key>
<data:value>2</data:value>
</data:item>
<data:item>
<data:key>GEOCODE_MULTIPLICC</data:key>
<data:value>0.95</data:value>
</data:item>
<data:item>
<data:key>GEOCODE_MULTIPLICS</data:key>
<data:value>7</data:value>
</data:item>
<data:item>
<data:key>LASTDATE</data:key>
<data:value>2017-07-01</data:value>
</data:item>
<data:item>
<data:key>LASTDATEC</data:key>
<data:value>0.95</data:value>
</data:item>
<data:item>
<data:key>LASTDATES</data:key>
<data:value>2</data:value>
</data:item>
<data:item>
<data:key>LASTPRICE</data:key>
<data:value>10468876</data:value>
</data:item>
<data:item>
<data:key>LASTPRICEC</data:key>
<data:value>0.95</data:value>
</data:item>
<data:item>
<data:key>LASTPRICES</data:key>
<data:value>2</data:value>
</data:item>
<data:item>
<data:key>LISTED</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>LISTEDC</data:key>
<data:value>0.95</data:value>
</data:item>
<data:item>
<data:key>LISTEDS</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>LISTED_YN</data:key>
<data:value>No</data:value>
</data:item>
<data:item>
<data:key>LSOA11</data:key>
<data:value>E01018335</data:value>
</data:item>
<data:item>
<data:key>MAIN_FUEL</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>MAIN_FUELC</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>MAIN_FUELS</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>MAIN_FUELD</data:key>
<data:value>Gas</data:value>
</data:item>
<data:item>
<data:key>MULTIPLIC</data:key>
<data:value>1</data:value>
</data:item>
<data:item>
<data:key>MULTIPLICC</data:key>
<data:value>0.6</data:value>
</data:item>
<data:item>
<data:key>MULTIPLICS</data:key>
<data:value>5</data:value>
</data:item>
<data:item>
<data:key>N_TRANSACTIONS</data:key>
<data:value>1</data:value>
</data:item>
<data:item>
<data:key>N_TRANSACTIONSC</data:key>
<data:value>0.95</data:value>
</data:item>
<data:item>
<data:key>N_TRANSACTIONSS</data:key>
<data:value>2</data:value>
</data:item>
<data:item>
<data:key>OA11</data:key>
<data:value>E00092477</data:value>
</data:item>
<data:item>
<data:key>PLANNING_CLASS</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>PLANNING_CLASSC</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>PLANNING_CLASSS</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>PLANNING_CLASSD</data:key>
<data:value>Not known</data:value>
</data:item>
<data:item>
<data:key>PROPAGE</data:key>
<data:value>5</data:value>
</data:item>
<data:item>
<data:key>PROPAGEC</data:key>
<data:value>0.56</data:value>
</data:item>
<data:item>
<data:key>PROPAGED</data:key>
<data:value>1980 to date (Modern)</data:value>
</data:item>
<data:item>
<data:key>PROPAGES</data:key>
<data:value>17</data:value>
</data:item>
<data:item>
<data:key>PROPTYPE</data:key>
<data:value>3</data:value>
</data:item>
<data:item>
<data:key>PROPTYPEC</data:key>
<data:value>0.7</data:value>
</data:item>
<data:item>
<data:key>PROPTYPED</data:key>
<data:value>Flat</data:value>
</data:item>
<data:item>
<data:key>PROPTYPES</data:key>
<data:value>36</data:value>
</data:item>
<data:item>
<data:key>ROAD_CLASS</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>ROAD_CLASSC</data:key>
<data:value>0.95</data:value>
</data:item>
<data:item>
<data:key>ROAD_CLASSS</data:key>
<data:value>35</data:value>
</data:item>
<data:item>
<data:key>ROAD_CLASSD</data:key>
<data:value>Unclassified</data:value>
</data:item>
<data:item>
<data:key>ROOMS</data:key>
<data:value>4</data:value>
</data:item>
<data:item>
<data:key>ROOMSC</data:key>
<data:value>0.76</data:value>
</data:item>
<data:item>
<data:key>ROOMSS</data:key>
<data:value>14</data:value>
</data:item>
<data:item>
<data:key>TENANCY</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>TENANCYC</data:key>
<data:value>0.66</data:value>
</data:item>
<data:item>
<data:key>TENANCYS</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>TOP_FLOOR_FLAT</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>TOP_FLOOR_FLAT_YN</data:key>
<data:value>No</data:value>
</data:item>
<data:item>
<data:key>TOP_FLOOR_FLATC</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>TOP_FLOOR_FLATS</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>VOLUME</data:key>
<data:value>8300.15</data:value>
</data:item>
<data:item>
<data:key>VOLUMEC</data:key>
<data:value>0.85</data:value>
</data:item>
<data:item>
<data:key>VOLUMES</data:key>
<data:value>7</data:value>
</data:item>
<data:item>
<data:key>WALL_TYPE</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>WALL_TYPES</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>WALL_TYPEC</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>WALL_TYPED</data:key>
<data:value>Cavity wall</data:value>
</data:item>
<data:item>
<data:key>WAT200</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>WAT200C</data:key>
<data:value>0.95</data:value>
</data:item>
<data:item>
<data:key>WAT200S</data:key>
<data:value>21</data:value>
</data:item>
<data:item>
<data:key>WAT200_YN</data:key>
<data:value>No</data:value>
</data:item>
<data:item>
<data:key>YEAR_BUILT</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>YEAR_BUILTC</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>YEAR_BUILTS</data:key>
<data:value>0</data:value>
</data:item>
</data:groupedAdditionalItems>
<data:groupedAdditionalItems>
<data:name>PremiseLevelGeocode</data:name>
<data:item>
<data:key>LICOUNTRY</data:key>
<data:value>England</data:value>
</data:item>
<data:item>
<data:key>LIEASTING</data:key>
<data:value>339493.0</data:value>
</data:item>
<data:item>
<data:key>LINORTHING</data:key>
<data:value>363064.0</data:value>
</data:item>
<data:item>
<data:key>LILAT</data:key>
<data:value>53.161261</data:value>
</data:item>
<data:item>
<data:key>LILONG</data:key>
<data:value>-2.906420</data:value>
</data:item>
<data:item>
<data:key>LIGEOACC</data:key>
<data:value>1</data:value>
</data:item>
</data:groupedAdditionalItems>
<data:groupedAdditionalItems>
<data:name>Congestion</data:name>
<data:item>
<data:key>CON_ZONE</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>CON_ZONEC</data:key>
<data:value>0.95</data:value>
</data:item>
<data:item>
<data:key>CON_ZONES</data:key>
<data:value>28</data:value>
</data:item>
<data:item>
<data:key>CON_ZONE_YN</data:key>
<data:value>No</data:value>
</data:item>
</data:groupedAdditionalItems>
<data:groupedAdditionalItems>
<data:name>RedRoute</data:name>
<data:item>
<data:key>RED_ROUTE</data:key>
<data:value>0</data:value>
</data:item>
<data:item>
<data:key>RED_ROUTEC</data:key>
<data:value>0.95</data:value>
</data:item>
<data:item>
<data:key>RED_ROUTES</data:key>
<data:value>28</data:value>
</data:item>
</data:groupedAdditionalItems>
<data:uprn>10012220430</data:uprn>
<data:rmUDPRN>04624695</data:rmUDPRN>
<data:addressBaseCoreInformation>
<data:usrn>6903078</data:usrn>
<data:osAddressToid>osgb1000035247650</data:osAddressToid>
<data:rpc>2</data:rpc>
<data:osClass>CO</data:osClass>
<data:lastUpdateDate>2020-01-06</data:lastUpdateDate>
<data:townName>CHESTER</data:townName>
<data:gssCode>E06000050</data:gssCode>
</data:addressBaseCoreInformation>
</req:address>
</req:response>
</req:captureResponse>
</req:profileResponseDetails>
</mes:profileResponse>
</mes:ExecuteCaptureResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
<br><br>