πŸ—ΊοΈFinancial Zip Code Distribution

View the financial distribution to understand where the customers are coming from.

Attribute
Description
Type
Example

poi_id

Unique UUID of the POI

String

001dd142-4627-4bcf-be8a-b048eb11ed29

start_at

Start date of the reporting period

Date

2024-03-01

end_at

End date of the reporting period

Date

2024-03-31

zip_code_distribution

Distribution of financials by zip code

Array of Json

{
[
 {
   "latitude": x1,
   "longitude": y1,
   "city": "Los Angeles",
   "state" : "CA",
   "zip": "8799",
   "transactions": 1009,
   "customers": 1000,
   "revenue": 9000,
   ...
 },
 {
   "latitude": x2,
   "longitude": y2,
   "city": "Los Angeles",
   "state" : "CA",
   "zip": "9876",
   "transactions": 800,
   "customers": 750,
   "revenue": 5000,
   ...
 },
...
],
}

Last updated