The viewer's home browse area and search radius.
Properties
displayName
string
Optional
Human-readable area name from reverse-geocoding the cell. Display only; absent when the cell has no name.
geohash
string
Required
The viewer's home area as a geohash, precision 6 (~1.2 km privacy-floor cell).
precision
integer
Required
Search radius as geohash precision (gh-6 ~1.2 km / gh-5 ~5 km); lower = wider.
View raw schema
{
"type": "object",
"required": [
"geohash",
"precision"
],
"properties": {
"geohash": {
"type": "string",
"description": "The viewer's home area as a geohash, precision 6 (~1.2 km privacy-floor cell)."
},
"precision": {
"type": "integer",
"description": "Search radius as geohash precision (gh-6 ~1.2 km / gh-5 ~5 km); lower = wider."
},
"displayName": {
"type": "string",
"description": "Human-readable area name from reverse-geocoding the cell. Display only; absent when the cell has no name."
}
},
"description": "The viewer's home browse area and search radius."
}