Utilities Register Integration Guide
This guide explains how to access GBGroup's MatchCode 360 Utilities Register web service product using their Identity Management Platform (IdM), available via SOAP web services.
The fundamentals of integrating with the service are described here: Integration Fundamentals
Please note: Wherever <LatestWSDLVersion> is shown in Example Code below, please replace this with GlobalServices21a.wsdl.
Matchcode Utilities Register Web Service Product Information
The Matchcode Utilities Register Web Service service allows searching on UK Gas and Electricity Meter Data.
The Matchcode Utilities Register web service products are available via the Identity Management ExecuteCapture web service method.
Utilities Register Capture
Method: ExecuteCapture
The ExecuteCapture method takes in a ExecuteCaptureRequest data structure, which contains all the information neccessary to carry out the request.
Input Details
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 |
---|---|
Matchcode360 Utilities Register | 942A500C-F57F-4C7B-9C1D-0F8246CA3890 |
Address 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 → IdMDataSearchAddress
As well as searches on standard address elements, searches can be made on Electricity MPAN, Gas MPRN or either electricity or gas meter serial numbers.
To do this use the IdMDataSearchAddress → IdmDataSearchUtilitiesInformation structure.
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 from OS AddressBase (Utilities Premium Service Only) |
UDPRN | Royal Mail unique delivery point reference number (Utilities Standard Service Only) |
OWNINGUDPRN | Unique Delivery Point Reference Number of owning Delivery Point for Multi Residence properties (Utilities Standard Service Only) |
UMRRN | Unique Multiple Residence Reference Number for Multi Residence properties (Utilities Standard Service Only) |
Utilities Register Sample XML Input
The following XML sample demonstrates a request data object containing a search address.
<!-- Request Input Data - Search Address -->
<req:requestData>
<req:address>
<data:organisation>GB Group plc</data:organisation>
<data:postCode>CH4 9GB</data:postCode>
<data:countryCode>GBR</data:countryCode>
</req:address>
</req:requestData>
{
"requestData": {
"address": {
"organisation": "GB Group plc",
"postCode": "CH4 9GB",
"countryCode": "GBR"
}
}
}
The following XML sample demonstrates a request data object containing a search on an electricity MPAN.
<!-- Request Input Data - Search MPAN-->
<req:requestData>
<req:address>
<data:utilitiesInformation>
<data:mprn></data:mprn>
<data:gasMeterNumber></data:gasMeterNumber>
<data:mpan>1610000344972</data:mpan>
<data:electricityMeterNumber></data:electricityMeterNumber>
</data:utilitiesInformation>
</req:address>
</req:requestData>
{
"requestData": {
"address": {
"utilitiesInformation": {
"mprn": "",
"gasMeterNumber": "",
"mpan": "1610000344972",
"electricityMeterNumber": ""
}
}
}
Output Details
The results of the Utilities Register 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]
Utilities Register Information
The Utilities Register specific business information is returned in the IdmDataAddress → IdmDataUtilitiesInformation structure
Additional Information
Additional information may be returned in the additionalItems of the IdmDataAddress.
Below is a list of expected additional data fields:
Key Mnemonic | Key Value | Description |
---|---|---|
DATASOURCE | UTILITIES_REGISTER or UTILITIES_REGISTER_P | Source of the address information (Utilities Register Standard or Utilities Register Premium |
Sample XML Response
<mes:profileResponse>
<req:profileHeader>
<req:profileGuid>942A500C-F57F-4C7B-9C1D-0F8246CA3890</req:profileGuid>
<req:profileName>Matchcode360 Utilities Register</req:profileName>
<req:transactionGuid>BDC233B7-96AE-40A2-A409-B039B31118D1</req:transactionGuid>
<req:transactionTimeStamp>2016-08-12T15:03:27.469+01:00</req:transactionTimeStamp>
<req:profileStatus>SUCCESS</req:profileStatus>
</req:profileHeader>
<req:profileResponseDetails>
<req:transactionGuid>3C5959EA-9137-4558-B801-02B7AFA1F448</req:transactionGuid>
<req:componentName>Matchcode Utilities Register</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:billingInformationGuid>034D7965-100D-401F-9240-A13D9FEE5928</req:billingInformationGuid>
<req:billingPoints>0</req:billingPoints>
</req:invoiceList>
<req:invoiceList>
<req:billingInformationGuid>539EC977-F1FB-44EC-98E4-9DA9727D7A66</req:billingInformationGuid>
<req:billingPoints>0</req:billingPoints>
</req:invoiceList>
<req:invoiceList>
<req:invoiceGuid>53CC104B-C182-4EED-ADDF-33AB1C64822A</req:invoiceGuid>
<req:billingInformationGuid>947B88FF-9BC1-40A0-926D-05A468FC1839</req:billingInformationGuid>
<req:billingPoints>1</req:billingPoints>
<req:dataSetInvoices>
<req:dataSetCode>UTILITIES_REGISTER</req:dataSetCode>
<req:billingPoints>1</req:billingPoints>
<req:recordsReturned>11</req:recordsReturned>
<req:dataLicenceGuid>947B88FF-9BC1-40A0-926D-05A468FC1839</req:dataLicenceGuid>
</req:dataSetInvoices>
</req:invoiceList>
</req:invoice>
<req:captureResponse>
<req:resultStatus>MULTIPLE</req:resultStatus>
<req:recordsReturned>11</req:recordsReturned>
<req:moreData>false</req:moreData>
<req:totalRecordCount>11</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>Countess Of Chester Hospital</data:organisation>
<data:street>Liverpool Road</data:street>
<data:town>CHESTER</data:town>
<data:postCode>CH2 1UL</data:postCode>
<data:department>Mostyn Lodge</data:department>
<data:buildingName>Countess Of Chester Health Park</data:buildingName>
<data:stateRegion>Cheshire</data:stateRegion>
<data:countryCode>GBR</data:countryCode>
<data:dpsZipPlus>9Z8</data:dpsZipPlus>
<data:formattedAddress>Countess Of Chester Hospital Mostyn Lodge,Countess Of Chester Health Park,Liverpool Road,CHESTER,Cheshire,CH2 1UL</data:formattedAddress>
<data:additionalItems>
<data:item>
<data:key>DATASOURCE</data:key>
<data:value>UTILITIES_REGISTER</data:value>
</data:item>
</data:additionalItems>
<data:utilitiesInformation>
<data:fuelType>GAS</data:fuelType>
<data:gasInformation>
<data:lguf>1</data:lguf>
<data:originalPostcode>CH2 1UL</data:originalPostcode>
<data:meterPointCount>1</data:meterPointCount>
<data:meterPoint>
<data:mprn>0044619607</data:mprn>
<data:meterCount>1</data:meterCount>
<data:meter>
<data:serialNumber>M040K0029812D6</data:serialNumber>
</data:meter>
</data:meterPoint>
</data:gasInformation>
</data:utilitiesInformation>
</req:address>
<req:address>
<data:organisation>Countess Of Chester Hospital</data:organisation>
<data:street>Liverpool Road</data:street>
<data:town>CHESTER</data:town>
<data:postCode>CH2 1UL</data:postCode>
<data:buildingName>Countess Of Chester Health Park</data:buildingName>
<data:stateRegion>Cheshire</data:stateRegion>
<data:countryCode>GBR</data:countryCode>
<data:dpsZipPlus>1AH</data:dpsZipPlus>
<data:formattedAddress>Countess Of Chester Hospital,Countess Of Chester Health Park,Liverpool Road,CHESTER,Cheshire,CH2 1UL</data:formattedAddress>
<data:additionalItems>
<data:item>
<data:key>DATASOURCE</data:key>
<data:value>UTILITIES_REGISTER</data:value>
</data:item>
</data:additionalItems>
<data:rmUDPRN>04584600</data:rmUDPRN>
<data:utilitiesInformation>
<data:fuelType>BOTH</data:fuelType>
<data:gasInformation>
<data:lguf>1</data:lguf>
<data:originalPostcode>CH2 1UL</data:originalPostcode>
<data:meterPointCount>4</data:meterPointCount>
<data:meterPoint>
<data:mprn>0078005206</data:mprn>
<data:meterCount>1</data:meterCount>
<data:meter>
<data:serialNumber>M040K0030412D6</data:serialNumber>
</data:meter>
</data:meterPoint>
<data:meterPoint>
<data:mprn>8904179407</data:mprn>
<data:meterCount>1</data:meterCount>
<data:meter>
<data:serialNumber>M0650D459105B7</data:serialNumber>
</data:meter>
</data:meterPoint>
<data:meterPoint>
<data:mprn>9114012204</data:mprn>
<data:meterCount>1</data:meterCount>
<data:meter>
<data:serialNumber>M065K0662612D6</data:serialNumber>
</data:meter>
</data:meterPoint>
<data:meterPoint>
<data:mprn>0077997606</data:mprn>
<data:meterCount>1</data:meterCount>
<data:meter>
<data:serialNumber>G4K00064461101</data:serialNumber>
</data:meter>
</data:meterPoint>
</data:gasInformation>
<data:electricityInformation>
<data:originalPostcode>CH2 1UL</data:originalPostcode>
<data:meterPointCount>1</data:meterPointCount>
<data:meterPoint>
<data:mpan>1300035359121</data:mpan>
<data:gspid>_D</data:gspid>
<data:distributorId>13</data:distributorId>
<data:profileType>00</data:profileType>
<data:timeSwitchCode>845</data:timeSwitchCode>
<data:lineLossFactorId>515</data:lineLossFactorId>
<data:energisationStatus>E</data:energisationStatus>
<data:energisationEffectiveFromDate>
<data:day>14</data:day>
<data:month>4</data:month>
<data:year>2016</data:year>
</data:energisationEffectiveFromDate>
<data:meterCount>4</data:meterCount>
<data:meter>
<data:serialNumber>N507J20880</data:serialNumber>
<data:type>H</data:type>
</data:meter>
<data:meter>
<data:serialNumber>N507J20878</data:serialNumber>
<data:type>H</data:type>
</data:meter>
<data:meter>
<data:serialNumber>N507J20877</data:serialNumber>
<data:type>H</data:type>
</data:meter>
<data:meter>
<data:serialNumber>N507J20879</data:serialNumber>
<data:type>H</data:type>
</data:meter>
</data:meterPoint>
</data:electricityInformation>
</data:utilitiesInformation>
</req:address>
<req:address>
<data:street>Liverpool Road</data:street>
<data:town>CHESTER</data:town>
<data:postCode>CH2 1UL</data:postCode>
<data:buildingName>Eastway House</data:buildingName>
<data:stateRegion>Cheshire</data:stateRegion>
<data:countryCode>GBR</data:countryCode>
<data:dpsZipPlus>9Z8</data:dpsZipPlus>
<data:formattedAddress>Eastway House,Liverpool Road,,CHESTER,Cheshire,CH2 1UL</data:formattedAddress>
<data:additionalItems>
<data:item>
<data:key>DATASOURCE</data:key>
<data:value>UTILITIES_REGISTER</data:value>
</data:item>
</data:additionalItems>
<data:utilitiesInformation>
<data:fuelType>ELECTRICITY</data:fuelType>
<data:electricityInformation>
<data:originalPostcode>CH2 1UL</data:originalPostcode>
<data:meterPointCount>1</data:meterPointCount>
<data:meterPoint>
<data:mpan>1300010375090</data:mpan>
<data:gspid>_D</data:gspid>
<data:distributorId>13</data:distributorId>
<data:profileType>03</data:profileType>
<data:timeSwitchCode>801</data:timeSwitchCode>
<data:lineLossFactorId>201</data:lineLossFactorId>
<data:standardSettlementConfiguration>0393</data:standardSettlementConfiguration>
<data:energisationStatus>E</data:energisationStatus>
<data:energisationEffectiveFromDate>
<data:day>1</data:day>
<data:month>4</data:month>
<data:year>2012</data:year>
</data:energisationEffectiveFromDate>
<data:meterCount>1</data:meterCount>
<data:meter>
<data:serialNumber>E12Z110765</data:serialNumber>
<data:type>RCAMY</data:type>
</data:meter>
</data:meterPoint>
</data:electricityInformation>
</data:utilitiesInformation>
</req:address>
<req:address>
<data:organisation>Hospital Energy Centre Countess Of Chester Hospital</data:organisation>
<data:street>Liverpool Road</data:street>
<data:town>CHESTER</data:town>
<data:postCode>CH2 1UL</data:postCode>
<data:buildingName>Countess Of Chester Health Park</data:buildingName>
<data:stateRegion>Cheshire</data:stateRegion>
<data:countryCode>GBR</data:countryCode>
<data:dpsZipPlus>9Z8</data:dpsZipPlus>
<data:formattedAddress>Hospital Energy Centre Countess Of Chester Hospital,Countess Of Chester Health Park,Liverpool Road,CHESTER,Cheshire,CH2 1UL</data:formattedAddress>
<data:additionalItems>
<data:item>
<data:key>DATASOURCE</data:key>
<data:value>UTILITIES_REGISTER</data:value>
</data:item>
</data:additionalItems>
<data:utilitiesInformation>
<data:fuelType>GAS</data:fuelType>
<data:gasInformation>
<data:lguf>1</data:lguf>
<data:originalPostcode>CH2 1UL</data:originalPostcode>
<data:meterPointCount>1</data:meterPointCount>
<data:meterPoint>
<data:mprn>9219904005</data:mprn>
<data:meterCount>1</data:meterCount>
<data:meter>
<data:serialNumber>M1075D720809B7</data:serialNumber>
</data:meter>
</data:meterPoint>
</data:gasInformation>
</data:utilitiesInformation>
</req:address>
<req:address>
<data:street>Liverpool Road</data:street>
<data:town>CHESTER</data:town>
<data:postCode>CH2 1UL</data:postCode>
<data:buildingName>Path Lab</data:buildingName>
<data:stateRegion>Cheshire</data:stateRegion>
<data:countryCode>GBR</data:countryCode>
<data:dpsZipPlus>9Z8</data:dpsZipPlus>
<data:formattedAddress>Path Lab,Liverpool Road,,CHESTER,Cheshire,CH2 1UL</data:formattedAddress>
<data:additionalItems>
<data:item>
<data:key>DATASOURCE</data:key>
<data:value>UTILITIES_REGISTER</data:value>
</data:item>
</data:additionalItems>
<data:utilitiesInformation>
<data:fuelType>GAS</data:fuelType>
<data:gasInformation>
<data:lguf>1</data:lguf>
<data:originalPostcode>CH2 1UL</data:originalPostcode>
<data:meterPointCount>1</data:meterPointCount>
<data:meterPoint>
<data:mprn>9106587507</data:mprn>
<data:meterCount>1</data:meterCount>
<data:meter>
<data:serialNumber>M016A1694401A6</data:serialNumber>
</data:meter>
</data:meterPoint>
</data:gasInformation>
</data:utilitiesInformation>
</req:address>
<req:address>
<data:street>Liverpool Road</data:street>
<data:town>CHESTER</data:town>
<data:postCode>CH2 1UL</data:postCode>
<data:subBuilding>Pinetum Nursing Home</data:subBuilding>
<data:buildingName>Countess Of Chester Health Park</data:buildingName>
<data:stateRegion>Cheshire</data:stateRegion>
<data:countryCode>GBR</data:countryCode>
<data:dpsZipPlus>9Z8</data:dpsZipPlus>
<data:formattedAddress>Pinetum Nursing Home,Countess Of Chester Health Park,Liverpool Road,CHESTER,Cheshire,CH2 1UL</data:formattedAddress>
<data:additionalItems>
<data:item>
<data:key>DATASOURCE</data:key>
<data:value>UTILITIES_REGISTER</data:value>
</data:item>
</data:additionalItems>
<data:utilitiesInformation/>
</req:address>
<req:address>
<data:street>Liverpool Road</data:street>
<data:town>CHESTER</data:town>
<data:postCode>CH2 1UL</data:postCode>
<data:buildingName>St Johns Ambulance Building</data:buildingName>
<data:stateRegion>Cheshire</data:stateRegion>
<data:countryCode>GBR</data:countryCode>
<data:dpsZipPlus>9Z8</data:dpsZipPlus>
<data:formattedAddress>St Johns Ambulance Building,Liverpool Road,,CHESTER,Cheshire,CH2 1UL</data:formattedAddress>
<data:additionalItems>
<data:item>
<data:key>DATASOURCE</data:key>
<data:value>UTILITIES_REGISTER</data:value>
</data:item>
</data:additionalItems>
<data:utilitiesInformation>
<data:fuelType>GAS</data:fuelType>
<data:gasInformation>
<data:lguf>1</data:lguf>
<data:originalPostcode>CH2 1UL</data:originalPostcode>
<data:meterPointCount>1</data:meterPointCount>
<data:meterPoint>
<data:mprn>8833875108</data:mprn>
<data:meterCount>1</data:meterCount>
<data:meter>
<data:serialNumber>M016A0465612A6</data:serialNumber>
</data:meter>
</data:meterPoint>
</data:gasInformation>
</data:utilitiesInformation>
</req:address>
<req:address>
<data:organisation>West Cheshire Nhs Trust Countess Of Chester Hospital</data:organisation>
<data:street>Liverpool Road</data:street>
<data:town>CHESTER</data:town>
<data:postCode>CH2 1UL</data:postCode>
<data:buildingName>Countess Of Chester Health Park</data:buildingName>
<data:stateRegion>Cheshire</data:stateRegion>
<data:countryCode>GBR</data:countryCode>
<data:dpsZipPlus>9Z8</data:dpsZipPlus>
<data:formattedAddress>West Cheshire NHS Trust Countess Of Chester Hospital,Countess Of Chester Health Park,Liverpool Road,CHESTER,Cheshire,CH2 1UL</data:formattedAddress>
<data:additionalItems>
<data:item>
<data:key>DATASOURCE</data:key>
<data:value>UTILITIES_REGISTER</data:value>
</data:item>
</data:additionalItems>
<data:utilitiesInformation>
<data:fuelType>GAS</data:fuelType>
<data:gasInformation>
<data:lguf>1</data:lguf>
<data:originalPostcode>CH2 1UL</data:originalPostcode>
<data:meterPointCount>1</data:meterPointCount>
<data:meterPoint>
<data:mprn>0077983000</data:mprn>
<data:meterCount>1</data:meterCount>
<data:meter>
<data:serialNumber>M0650D497913B7</data:serialNumber>
</data:meter>
</data:meterPoint>
</data:gasInformation>
</data:utilitiesInformation>
</req:address>
</req:response>
</req:captureResponse>
</req:profileResponseDetails>
</mes:profileResponse>
{
"profileHeader": {
"profileGuid": "942A500C-F57F-4C7B-9C1D-0F8246CA3890",
"profileName": "Matchcode360 Utilities Register",
"transactionGuid": "8937B0DD-0601-4860-AD67-166CF7EAE95B",
"transactionTimeStamp": "2016-08-12T15:01:39.356Z",
"profileStatus": "SUCCESS"
},
"profileResponseDetails": [ {
"transactionGuid": "D14B1D09-AD67-4482-A628-DE47E43D6876",
"componentName": "Matchcode Utilities Register",
"componentStatus": "SUCCESS",
"componentAction": "VERIFY",
"responseType": "CAPTURE",
"notes": "[]",
"invoice": {"invoiceList": [
{
"billingInformationGuid": "034D7965-100D-401F-9240-A13D9FEE5928",
"billingPoints": 0,
"dataSetInvoices": []
},
{
"billingInformationGuid": "539EC977-F1FB-44EC-98E4-9DA9727D7A66",
"billingPoints": 0,
"dataSetInvoices": []
},
{
"invoiceGuid": "7CA61048-7401-46CC-88C6-65A9A3ACAE42",
"billingInformationGuid": "947B88FF-9BC1-40A0-926D-05A468FC1839",
"billingPoints": 1,
"dataSetInvoices": [ {
"dataSetCode": "UTILITIES_REGISTER",
"billingPoints": 1,
"recordsReturned": 11,
"dataLicenceGuid": "947B88FF-9BC1-40A0-926D-05A468FC1839"
}]
}
]},
"captureResponse": {
"resultStatus": "MULTIPLE",
"recordsReturned": 11,
"moreData": false,
"totalRecordCount": 11,
"totalPages": 1,
"matchScore": 0,
"matchLevel": "NA",
"outputStatus": "NOTMATCHED",
"fieldStatus": "55555555",
"responseCount": 1,
"response": [ {
"address": [ {
"organisation": "Countess Of Chester Hospital",
"street": "Liverpool Road",
"town": "CHESTER",
"postCode": "CH2 1UL",
"department": "Mostyn Lodge",
"buildingName": "Countess Of Chester Health Park",
"stateRegion": "Cheshire",
"countryCode": "GBR",
"dpsZipPlus": "9Z8",
"formattedAddress": "Countess Of Chester Hospital Mostyn Lodge,Countess Of Chester Health Park,Liverpool Road,CHESTER,Cheshire,CH2 1UL",
"additionalItems": {"item": [ {
"key": "DATASOURCE",
"value": "UTILITIES_REGISTER"
}]},
"groupedAdditionalItems": [],
"utilitiesInformation": {
"fuelType": "GAS",
"gasInformation": {
"lguf": "1",
"originalPostcode": "CH2 1UL",
"meterPointCount": 1,
"meterPoint": [ {
"mprn": "0044619607",
"meterCount": 1,
"meter": [{"serialNumber": "M040K0029812D6"}]
}]
}
}
},
{
"organisation": "Countess Of Chester Hospital",
"street": "Liverpool Road",
"town": "CHESTER",
"postCode": "CH2 1UL",
"buildingName": "Countess Of Chester Health Park",
"stateRegion": "Cheshire",
"countryCode": "GBR",
"dpsZipPlus": "1AH",
"formattedAddress": "Countess Of Chester Hospital,Countess Of Chester Health Park,Liverpool Road,CHESTER,Cheshire,CH2 1UL",
"additionalItems": {"item": [ {
"key": "DATASOURCE",
"value": "UTILITIES_REGISTER"
}]},
"groupedAdditionalItems": [],
"rmUDPRN": "04584600",
"utilitiesInformation": {
"fuelType": "BOTH",
"gasInformation": {
"lguf": "1",
"originalPostcode": "CH2 1UL",
"meterPointCount": 4,
"meterPoint": [
{
"mprn": "0078005206",
"meterCount": 1,
"meter": [{"serialNumber": "M040K0030412D6"}]
},
{
"mprn": "8904179407",
"meterCount": 1,
"meter": [{"serialNumber": "M0650D459105B7"}]
},
{
"mprn": "9114012204",
"meterCount": 1,
"meter": [{"serialNumber": "M065K0662612D6"}]
},
{
"mprn": "0077997606",
"meterCount": 1,
"meter": [{"serialNumber": "G4K00064461101"}]
}
]
},
"electricityInformation": {
"originalPostcode": "CH2 1UL",
"meterPointCount": 1,
"meterPoint": [ {
"mpan": "1300035359121",
"gspid": "_D",
"distributorId": "13",
"profileType": "00",
"timeSwitchCode": "845",
"lineLossFactorId": "515",
"energisationStatus": "E",
"energisationEffectiveFromDate": {
"day": 14,
"month": 4,
"year": 2016
},
"meterCount": 4,
"meter": [
{
"serialNumber": "N507J20880",
"type": "H"
},
{
"serialNumber": "N507J20878",
"type": "H"
},
{
"serialNumber": "N507J20877",
"type": "H"
},
{
"serialNumber": "N507J20879",
"type": "H"
}
]
}]
}
}
},
{
"street": "Liverpool Road",
"town": "CHESTER",
"postCode": "CH2 1UL",
"buildingName": "Eastway House",
"stateRegion": "Cheshire",
"countryCode": "GBR",
"dpsZipPlus": "9Z8",
"formattedAddress": "Eastway House,Liverpool Road,,CHESTER,Cheshire,CH2 1UL",
"additionalItems": {"item": [ {
"key": "DATASOURCE",
"value": "UTILITIES_REGISTER"
}]},
"groupedAdditionalItems": [],
"utilitiesInformation": {
"fuelType": "ELECTRICITY",
"electricityInformation": {
"originalPostcode": "CH2 1UL",
"meterPointCount": 1,
"meterPoint": [ {
"mpan": "1300010375090",
"gspid": "_D",
"distributorId": "13",
"profileType": "03",
"timeSwitchCode": "801",
"lineLossFactorId": "201",
"standardSettlementConfiguration": "0393",
"energisationStatus": "E",
"energisationEffectiveFromDate": {
"day": 1,
"month": 4,
"year": 2012
},
"meterCount": 1,
"meter": [ {
"serialNumber": "E12Z110765",
"type": "RCAMY"
}]
}]
}
}
},
{
"organisation": "Hospital Energy Centre Countess Of Chester Hospital",
"street": "Liverpool Road",
"town": "CHESTER",
"postCode": "CH2 1UL",
"buildingName": "Countess Of Chester Health Park",
"stateRegion": "Cheshire",
"countryCode": "GBR",
"dpsZipPlus": "9Z8",
"formattedAddress": "Hospital Energy Centre Countess Of Chester Hospital,Countess Of Chester Health Park,Liverpool Road,CHESTER,Cheshire,CH2 1UL",
"additionalItems": {"item": [ {
"key": "DATASOURCE",
"value": "UTILITIES_REGISTER"
}]},
"groupedAdditionalItems": [],
"utilitiesInformation": {
"fuelType": "GAS",
"gasInformation": {
"lguf": "1",
"originalPostcode": "CH2 1UL",
"meterPointCount": 1,
"meterPoint": [ {
"mprn": "9219904005",
"meterCount": 1,
"meter": [{"serialNumber": "M1075D720809B7"}]
}]
}
}
},
{
"street": "Liverpool Road",
"town": "CHESTER",
"postCode": "CH2 1UL",
"buildingName": "Path Lab",
"stateRegion": "Cheshire",
"countryCode": "GBR",
"dpsZipPlus": "9Z8",
"formattedAddress": "Path Lab,Liverpool Road,,CHESTER,Cheshire,CH2 1UL",
"additionalItems": {"item": [ {
"key": "DATASOURCE",
"value": "UTILITIES_REGISTER"
}]},
"groupedAdditionalItems": [],
"utilitiesInformation": {
"fuelType": "GAS",
"gasInformation": {
"lguf": "1",
"originalPostcode": "CH2 1UL",
"meterPointCount": 1,
"meterPoint": [ {
"mprn": "9106587507",
"meterCount": 1,
"meter": [{"serialNumber": "M016A1694401A6"}]
}]
}
}
},
{
"street": "Liverpool Road",
"town": "CHESTER",
"postCode": "CH2 1UL",
"buildingName": "St Johns Ambulance Building",
"stateRegion": "Cheshire",
"countryCode": "GBR",
"dpsZipPlus": "9Z8",
"formattedAddress": "St Johns Ambulance Building,Liverpool Road,,CHESTER,Cheshire,CH2 1UL",
"additionalItems": {"item": [ {
"key": "DATASOURCE",
"value": "UTILITIES_REGISTER"
}]},
"groupedAdditionalItems": [],
"utilitiesInformation": {
"fuelType": "GAS",
"gasInformation": {
"lguf": "1",
"originalPostcode": "CH2 1UL",
"meterPointCount": 1,
"meterPoint": [ {
"mprn": "8833875108",
"meterCount": 1,
"meter": [{"serialNumber": "M016A0465612A6"}]
}]
}
}
},
{
"organisation": "West Cheshire Nhs Trust Countess Of Chester Hospital",
"street": "Liverpool Road",
"town": "CHESTER",
"postCode": "CH2 1UL",
"buildingName": "Countess Of Chester Health Park",
"stateRegion": "Cheshire",
"countryCode": "GBR",
"dpsZipPlus": "9Z8",
"formattedAddress": "West Cheshire NHS Trust Countess Of Chester Hospital,Countess Of Chester Health Park,Liverpool Road,CHESTER,Cheshire,CH2 1UL",
"additionalItems": {"item": [ {
"key": "DATASOURCE",
"value": "UTILITIES_REGISTER"
}]},
"groupedAdditionalItems": [],
"utilitiesInformation": {
"fuelType": "GAS",
"gasInformation": {
"lguf": "1",
"originalPostcode": "CH2 1UL",
"meterPointCount": 1,
"meterPoint": [ {
"mprn": "0077983000",
"meterCount": 1,
"meter": [{"serialNumber": "M0650D497913B7"}]
}]
}
}
}
],
"groupedRelatedData": []
}]
}
}]
}