neighborhood Object

Neighborhoods are geographic communities within a town, suburb, city or rural area.

Neighborhoods are geographic communities within a town, suburb, city or rural area. Generally considered more social than legal, neighborhood boundaries may not be agreed upon by its residents.

Neighborhoods are not the same as MLS-defined subdivisions, which are comprised of legally subdivided lots of land.

FieldTypeRequiredDescription
namestringYes

The name of the neighborhood.

boundariesarray of geoNo

The geographic boundaries of the neighborhood.

1/* neighborhood example */
2
3var bounds = [
4 {"latitude": -84.49941, "longitude": 33.593284},
5 {"latitude": -84.497209, "longitude": 33.593146},
6 {"latitude": -84.499428, "longitude": 33.590944},
7 {"latitude": -84.50412, "longitude": 33.589757},
8 ...
9 {"latitude": -84.584384, "longitude": 33.629605}
10];
11
12var hood = {
13 "name": "Hill Valley",
14 "boundaries": bounds
15}

Updated July 25, 2026