Address Autocomplete WADL

Refer 'Locations.xsd' and 'Errors.xsd' for XML schema definition.

<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://wadl.dev.java.net/2009/02" xmlns:xs="http://www.w3.org/2001/XMLSchema">
   <resources base="https://api.precisely.com">
      <resource path="/typeahead/v1">
         <resource path="/locations">
            <method name="GET">
               <request>
					<param name="searchText" style="query" type="xs:string" required="true"/>
					<param name="latitude" style="query" type="xs:string"/>
					<param name="longitude" style="query" type="xs:string"/>
					<param name="searchRadius" style="query" type="xs:string"/>
					<param name="searchRadiusUnit" style="query" type="xs:string"/>
					<param name="maxCandidates" style="query" type="xs:string"/>
					<param name="country" style="query" type="xs:string"/>
					<param name="matchOnAddressNumber" style="query" type="xs:string"/>
					<param name="autoDetectLocation" style="query" type="xs:string"/>
					<param name="ipAddress" style="query" type="xs:string"/>
					<param name="areaName1" style="query" type="xs:string"/>
					<param name="areaName3" style="query" type="xs:string"/>
					<param name="postCode" style="query" type="xs:string"/>
					<param name="returnAdminAreasOnly" style="query" type="xs:string"/>
					<param name="includeRangesDetails" style="query" type="xs:string"/>
				</request>
               <response>
                  <representation mediaType="application/json" element="locations"/>
				  <fault status="400" mediaType="application/json" element="errors"/>
               </response>
            </method>
         </resource>
      </resource>
   </resources>
</application>