Typographic Conventions

Following typographic conventions are used in this document:

Format Description
dot.separator Refers to the association relationship; for example, location.address means referring to the address field of the location object.
monospace Used to represent all "URLs" and "snippets of sample code"; for example:
https://api.precisely.com/places/v1/poi/byaddress?address=2935%20Broadbridge%20Ave%2C%20Stratford%2C%20CT&country=USA&searchRadius=3218.688&searchRadiusUnit=meters&maxCandidates=20&sortBy=relevance&fuzzyOnName=Y&page=1

and

"
{
    "fccId": "6097",
    "type": "Enhanced",
    "agency": "Spartanburg Communications 9-1-1 Department",
    "phone": "864-596-2076",
    "county": {
        "name": "Spartanburg",
        "fips": "45083"
    }
"
monospace Used to represent all "URLs" and "snippets of sample code"; for example:
https://api.precisely.com/typeahead/v1/locations?searchText=26 VICTORIA STREET, WINDSOR, SL4 1EG&country=GBR

and

{
	"location": [
		{
			"address": {
				"formattedAddress": "26 Victoria Street, WINDSOR, SL4 1EG",
				"mainAddressLine": "26 Victoria Street",
				"addressLastLine": "WINDSOR, SL4 1EG",
				"placeName": "",
				"areaName1": "",
				"areaName2": "",
				"areaName3": "WINDSOR",
				"areaName4": "",
				"postCode": "SL4 1EG",
				"postCodeExt": "",
				"country": "GBR",
				"addressNumber": "26",
				"streetName": "Victoria Street",
				"unitType": "",
				"unitValue": ""
			},
			"geometry": {
				"type": "Point",
				"coordinates": [
					-0.61119,
					51.48001
				]
			},
			"totalUnitCount": 0,
			"ranges": []
		}
	]
}