Skip to content
Get in touch

Address

An address is a physical location.

PropertyTypeRequiredDescription
Street 1stringYesThe primary street address line.
Street 2stringNoAdditional street address information (e.g., apartment number, suite, etc.).
CitystringYesThe city of the location.
StatestringYesThe state of the location.
ZipstringYesThe postal code of the location.
LatitudenumberYesThe latitude coordinate of the address location.
LongitudenumberYesThe longitude coordinate of the address location.
GeographyRecordNoAdditional geospatial data in GeoJSON format.

A JSON example of this field is:

{
"street1": "123 Main St",
"street2": "Apt 1",
"city": "Anytown",
"stateOrProvince": "CA",
"country": "US",
"postalCode": "12345",
"latitude": 37.7749,
"longitude": -122.4194,
"geography": {
"type": "Point",
"coordinates": [37.7749, -122.4194]
}
}