Lecture 5: APIs#

Please sign attendance sheet

APIs#

  • They are very powerful

  • Can be used from any programming language

  • Not expecting you to use them in your Final Project

APIs, conceptually#

Diagram showing how online payments work: Expedia talks to Delta, Delta talks to Stripe, Stripe talks to Visa, and Visa talks to Chase

Diagram showing how notifications flow through systems

Diagram showing relationship between human languages, programming languages, and APIs

interactions between systems ↔️

Ways to get data#

Method

How it happens

Pros

Cons

Bulk

Download, someone hands you a flash drive, etc.

Fast, one-time transfer

Can be large; data gets out of date easily

APIs

If organization makes one available

Usually allows some filtering; can always pull latest-and-greatest

Requires network connection for every call; higher barrier to entry (reading documentation); subject to availability and performance of API

Scraping

Data only available through a web site, PDF, or doc

You can turn anything into data

Tedious; fragile

Scraping#

These are open source Python tools, as well as commercial services (with APIs!). Examples:

Web pages#

PDFs#

Please pray to the Demo Gods that these all work and there’s no profanity

Pull table from Wikipedia’s list of countries by area:

import pandas as pd

tables = pd.read_html(
    "https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_area",
    match="Country / dependency",
)
countries = tables[0]
countries
Unnamed: 0 Country / dependency Total in km2 (mi2) Land in km2 (mi2) Water in km2 (mi2) % water Unnamed: 6
0 Earth 510,072,000 (196,940,000) 148,940,000 (57,506,000) 361,132,000 (139,434,000) 70.8 NaN
1 1 Russia 17,098,246 (6,601,667) 16,376,870 (6,323,142) 721,380 (278,530) 4.2 [b]
2 Antarctica 14,200,000 (5,480,000) 14,200,000 (5,480,000) 0 0.0 [c]
3 2 Canada 9,984,670 (3,855,100) 9,093,507 (3,511,021) 891,163 (344,080) 8.9 [d]
4 3/4 [e] China 9,596,960 (3,705,410) 9,326,410 (3,600,950) 270,550 (104,460) 2.8 [f]
... ... ... ... ... ... ... ...
259 Ashmore and Cartier Islands (Australia) 5.0 (1.9) 5.0 (1.9) 0 0.0 [q]
260 Coral Sea Islands (Australia) 3.0 (1.2) 3.0 (1.2) 0 0.0 [db]
261 Spratly Islands (disputed) 2.0 (0.77) 2.0 (0.77) 0 0.0 [55]
262 194 Monaco 2.0 (0.77) 2.0 (0.77) 0 0.0 [dc]
263 195 Vatican City 0.49 (0.19) 0.49 (0.19) 0 0.0 [dd]

264 rows × 7 columns

Data is only available if it’s available#

API calls in the wild#

  1. Go to Candidates page on fec.gov.

  2. Right click and Inspect.

  3. Go to the Network tab and reload.

  4. Filter to XHR.

  5. Click the API call.

We only see this because the tables on fec.gov are rendered client-side using their JSON API. That won’t be the case for all tables on all sites.

Parts of a URL#

URL structure

source

For APIs:

  • Often split into “base URL” + “endpoint”

  • Endpoints are like function names: they represent the information you are retrieving or thing you are trying to do

  • Parameters are like function arguments:

    • They allow options to be specified

    • Some are required, some are optional

    • They will differ from one endpoint/function to another

  • Anchors won’t be used

API documentation#

FEC API

Try it out#

  1. Visit https://www.fec.gov/data/candidates/

  2. Open Developer Tools.

  3. Reload the page.

  4. In the Network tab’s request list:

    1. Filter to Fetch/XHR/AJAX (terminology will differ by browser)

    2. Right-click the API call row.

  5. Click Open in New Tab. You will see an error.

  6. In the URL bar, replace the api_key value with DEMO_KEY. The URL should therefore contain api_key=DEMO_KEY.

You should see a big wall of JSON data.

API calls from Python#

Usually one of two ways:

  • A software development kit (SDK) like sodapy

    • Abstracts the details away

    • Not available for all APIs

    • May have limitations

  • The requests package (nothing to do with 311 requests)

Get Jimmy McMillan’s latest candidacy information:

import requests

jimmy = {
    "api_key": "DEMO_KEY",
    "q": "Jimmy McMillan",
    "sort": "-first_file_date",
}
response = requests.get("https://api.open.fec.gov/v1/candidates/", params=jimmy)
data = response.json()
data
{'api_version': '1.0',
 'pagination': {'count': 2,
  'is_count_exact': True,
  'page': 1,
  'pages': 1,
  'per_page': 20},
 'results': [{'active_through': 2016,
   'candidate_id': 'P60016805',
   'candidate_inactive': False,
   'candidate_status': 'N',
   'cycles': [2016, 2018],
   'district': '00',
   'district_number': 0,
   'election_districts': ['00'],
   'election_years': [2016],
   'federal_funds_flag': False,
   'first_file_date': '2015-10-13',
   'has_raised_funds': False,
   'inactive_election_years': None,
   'incumbent_challenge': 'O',
   'incumbent_challenge_full': 'Open seat',
   'last_f2_date': '2015-10-13',
   'last_file_date': '2015-10-13',
   'load_date': '2018-02-17T09:16:20',
   'name': 'MCMILLAN, JIMMY "RENT IS TOO DAMN HIGH',
   'office': 'P',
   'office_full': 'President',
   'party': 'REP',
   'party_full': 'REPUBLICAN PARTY',
   'state': 'US'},
  {'active_through': 2012,
   'candidate_id': 'P60003290',
   'candidate_inactive': False,
   'candidate_status': 'N',
   'cycles': [1996, 1998, 2012, 2020, 2022],
   'district': '00',
   'district_number': 0,
   'election_districts': ['00', '00'],
   'election_years': [1996, 2012],
   'federal_funds_flag': False,
   'first_file_date': '1995-03-08',
   'has_raised_funds': False,
   'inactive_election_years': None,
   'incumbent_challenge': 'C',
   'incumbent_challenge_full': 'Challenger',
   'last_f2_date': '2011-02-07',
   'last_file_date': '2011-02-07',
   'load_date': '2021-12-08T06:50:50',
   'name': 'MCMILLAN, JIMMY (AKA) JAMES ',
   'office': 'P',
   'office_full': 'President',
   'party': 'REP',
   'party_full': 'REPUBLICAN PARTY',
   'state': 'US'}]}

Retrieving nested data#

data["results"][0]["name"]
'MCMILLAN, JIMMY "RENT IS TOO DAMN HIGH'

In-class exercise#

Open a new notebook in Google Colab, and geocode an address from Python using the Nominatim API. Print out the latitude and longitude. Any address is fine:

  • Your own

  • This building

  • etc.

Per their policies, we’ll need to specify a custom User Agent. Include the following in the call to requests.get():

headers={"user-agent": "Python in-class exercise"}
Hints
  • Try getting the API call working in your browser URL bar before calling it in Python.

  • You’ll need to specify the output format.

Reading into a DataFrame#

candidates_with_funds = {
    "api_key": "DEMO_KEY",
    "has_raised_funds": "true",
}
response = requests.get(
    "https://api.open.fec.gov/v1/candidates/", params=candidates_with_funds
)
data = response.json()

candidates = data["results"]
pd.DataFrame(candidates)
active_through candidate_id candidate_inactive candidate_status cycles district district_number election_districts election_years federal_funds_flag ... incumbent_challenge_full last_f2_date last_file_date load_date name office office_full party party_full state
0 2022 H2CO07170 False P [2022, 2024] 07 7 [07] [2022] False ... Open seat 2022-08-10 2022-08-10 2023-03-09T10:16:03 AADLAND, ERIK H House REP REPUBLICAN PARTY CO
1 2022 H2UT03280 False C [2022] 03 3 [03] [2022] False ... Challenger 2022-03-21 2022-03-21 2022-04-13T21:10:09 AALDERS, TIM H House REP REPUBLICAN PARTY UT
2 2018 S2UT00229 False P [2012, 2014, 2016, 2018, 2020] 00 0 [00, 00] [2012, 2018] False ... Open seat 2018-04-23 2018-04-23 2019-03-27T16:02:41 AALDERS, TIMOTHY NOEL S Senate CON CONSTITUTION PARTY UT
3 2020 H0TX22260 False C [2020] 22 22 [22] [2020] False ... Open seat 2019-10-17 2019-10-17 2020-03-18T21:13:37 AALOORI, BANGAR REDDY H House REP REPUBLICAN PARTY TX
4 1978 H6PA16106 False P [1976, 1978, 1980] 16 16 [16, 16] [1976, 1978] False ... None 1978-07-05 1978-07-05 2002-03-30T00:00:00 AAMODT, NORMAN O. H House REP REPUBLICAN PARTY PA
5 2012 H2CA01110 False P [2012, 2014, 2016] 01 1 [01] [2012] False ... Challenger 2012-02-22 2012-02-22 2013-04-26T09:04:30 AANESTAD, SAMUEL H House REP REPUBLICAN PARTY CA
6 2018 H8CO06237 False C [2018] 06 6 [06] [2018] False ... Challenger 2017-04-26 2017-04-26 2017-08-01T20:57:28 AARESTAD, DAVID H House DEM DEMOCRATIC PARTY CO
7 2008 P80002926 False N [2006, 2008, 2010, 2012, 2014, 2016] 00 0 [00] [2008] False ... Open seat 2007-03-13 2007-03-13 2016-11-17T06:10:48 AARON, LAURA DAVIS P President DEM DEMOCRATIC PARTY US
8 2024 H4OR05312 False C [2024, 2026] 05 5 [05] [2024] False ... Challenger 2023-07-24 2023-07-24 2023-10-16T21:03:02 AASEN, ANDREW J H House NON NON-PARTY OR
9 2024 H2CA30291 False N [2022, 2024] 32 32 [32, 32] [2022, 2024] False ... Challenger 2022-07-15 2022-07-15 2023-01-12T22:24:01 AAZAMI, SHERVIN H House DEM DEMOCRATIC PARTY CA
10 2022 H2MN07162 False P [2022, 2024] 07 7 [07] [2022] False ... Challenger 2022-06-06 2022-06-06 2023-03-09T10:16:03 ABAHSAIN, JILL H House DFL DEMOCRATIC-FARMER-LABOR MN
11 2000 H0MA01024 False P [2000, 2002, 2004] 01 1 [01] [2000] False ... Challenger 2000-02-02 2000-02-02 2002-04-12T00:00:00 ABAIR, PETER JON H House REP REPUBLICAN PARTY MA
12 2008 H6NJ05155 False C [2006, 2008] 05 5 [05, 05] [2006, 2008] False ... Challenger 2007-06-05 2007-06-05 2009-04-29T00:00:00 ABATE, CAMILLE M H House DEM DEMOCRATIC PARTY NJ
13 1992 H2NJ12036 False P [1992, 1994, 1996, 1998] 12 12 [12] [1992] False ... Challenger 1992-04-15 1992-04-15 2002-04-03T00:00:00 ABATE, FRANK G H House DEM DEMOCRATIC PARTY NJ
14 1990 H0IA03071 False C [1990] 03 3 [03] [1990] False ... Challenger 1990-05-01 1990-05-01 2002-03-30T00:00:00 ABBAS, JEFFREY LYN H House REP REPUBLICAN PARTY IA
15 2024 H4CA32152 False N [2024, 2026] 32 32 [32] [2024] False ... Challenger 2024-02-07 2024-02-07 2024-02-08T21:02:32 ABBITT, DAVE H House DEM DEMOCRATIC PARTY CA
16 1994 H4TX15043 False C [1994] 15 15 [15] [1994] False ... Challenger 1994-01-14 1994-01-14 2002-03-30T00:00:00 ABBOTT, BONNIE H House REP REPUBLICAN PARTY TX
17 1996 H6SD00077 False P [1996, 1998] 01 1 [00] [1996] False ... Challenger 1995-10-02 1995-10-02 2002-04-03T00:00:00 ABBOTT, JAMES W H House DEM DEMOCRATIC PARTY SD
18 1992 P80002579 False P [1988, 1990, 1992, 1994, 1996, 1998] 00 0 [00, 00] [1988, 1992] True ... Challenger 1992-06-16 1992-06-16 2002-04-03T00:00:00 ABBOTT, JOHN HANCOCK P President DEM DEMOCRATIC PARTY US
19 1988 S6CA00345 False N [1986, 1988] 00 0 [00, 00] [1986, 1988] False ... Challenger 1988-08-29 1988-08-29 2005-05-26T00:00:00 ABBOTT, JOHN HANCOCK S Senate DEM DEMOCRATIC PARTY CA

20 rows × 24 columns

ELT#

Extract-load-transform. You’ll sometimes see “ETL”.

Back to 311 data#

From NYC Open Data Portal dataset page, click Export -> SODA API -> API Docs.

Most open data sites have APIs#

Often built on platforms that provide them, e.g.

Example: 311 requests from the last week#

The dates shown are from the last time the code was run.

from datetime import datetime, timedelta

now = datetime.utcnow()
now
datetime.datetime(2025, 3, 17, 4, 1, 53, 119072)
start = now - timedelta(weeks=1)
start
datetime.datetime(2025, 3, 10, 4, 1, 53, 119072)
start.isoformat()
'2025-03-10T04:01:53.119072'

Using the Socrata query language (SoQL):

data_id = "erm2-nwe9"
in_past_week = {
    "$where": f"created_date > '{start.isoformat()}'",
}

url = f"https://data.cityofnewyork.us/resource/{data_id}.json"
response = requests.get(url, params=in_past_week)
data = response.json()

data
[{'unique_key': '64308075',
  'created_date': '2025-03-10T04:02:13.000',
  'closed_date': '2025-03-10T08:16:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10467',
  'incident_address': 'PERRY AVENUE',
  'street_name': 'PERRY AVENUE',
  'cross_street_1': 'EAST  206 STREET',
  'cross_street_2': 'PERRY AVENUE',
  'intersection_street_1': 'EAST  206 STREET',
  'intersection_street_2': 'PERRY AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:16:42.000',
  'community_board': '07 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1018269',
  'y_coordinate_state_plane': '258023',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87482233752173',
  'longitude': '-73.87698949491214',
  'location': {'latitude': '40.87482233752173',
   'longitude': '-73.87698949491214',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312949',
  'created_date': '2025-03-10T04:02:34.000',
  'closed_date': '2025-03-10T04:10:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11219',
  'incident_address': '1021 41 STREET',
  'street_name': '41 STREET',
  'cross_street_1': '10 AVENUE',
  'cross_street_2': 'FORT HAMILTON PARKWAY',
  'intersection_street_1': '10 AVENUE',
  'intersection_street_2': 'FORT HAMILTON PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '41 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T04:10:41.000',
  'community_board': '12 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986070',
  'y_coordinate_state_plane': '173586',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64312991049547',
  'longitude': '-73.99344185166251',
  'location': {'latitude': '40.64312991049547',
   'longitude': '-73.99344185166251',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312151',
  'created_date': '2025-03-10T04:02:52.000',
  'closed_date': '2025-03-10T04:39:02.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10468',
  'incident_address': '2790 UNIVERSITY AVENUE',
  'street_name': 'UNIVERSITY AVENUE',
  'cross_street_1': 'STRONG STREET',
  'cross_street_2': 'WEST  197 STREET',
  'intersection_street_1': 'STRONG STREET',
  'intersection_street_2': 'WEST  197 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNIVERSITY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T04:39:05.000',
  'community_board': '08 BRONX',
  'bbl': '2032490044',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012116',
  'y_coordinate_state_plane': '256773',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87141304450811',
  'longitude': '-73.89924352232397',
  'location': {'latitude': '40.87141304450811',
   'longitude': '-73.89924352232397',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308169',
  'created_date': '2025-03-10T04:03:34.000',
  'closed_date': '2025-03-10T04:23:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10034',
  'incident_address': '5060 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  215 STREET',
  'cross_street_2': 'WEST  216 STREET',
  'intersection_street_1': 'WEST  215 STREET',
  'intersection_street_2': 'WEST  216 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T04:23:32.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022320018',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1007550',
  'y_coordinate_state_plane': '256226',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86992493148226',
  'longitude': '-73.91575492583648',
  'location': {'latitude': '40.86992493148226',
   'longitude': '-73.91575492583648',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312020',
  'created_date': '2025-03-10T04:03:46.000',
  'closed_date': '2025-03-13T13:29:24.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '11203',
  'incident_address': '932 SCHENECTADY AVENUE',
  'street_name': 'SCHENECTADY AVENUE',
  'cross_street_1': 'CHURCH AVENUE',
  'cross_street_2': 'SNYDER AVENUE',
  'intersection_street_1': 'CHURCH AVENUE',
  'intersection_street_2': 'SNYDER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SCHENECTADY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-13T13:29:27.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3049000028',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002789',
  'y_coordinate_state_plane': '176282',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65051062961066',
  'longitude': '-73.93318957483186',
  'location': {'latitude': '40.65051062961066',
   'longitude': '-73.93318957483186',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307756',
  'created_date': '2025-03-10T04:03:57.000',
  'closed_date': '2025-03-10T04:38:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10468',
  'incident_address': '2780 UNIVERSITY AVENUE',
  'street_name': 'UNIVERSITY AVENUE',
  'cross_street_1': 'WEST  195 STREET',
  'cross_street_2': 'STRONG STREET',
  'intersection_street_1': 'WEST  195 STREET',
  'intersection_street_2': 'STRONG STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNIVERSITY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T04:38:46.000',
  'community_board': '08 BRONX',
  'bbl': '2032490010',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012077',
  'y_coordinate_state_plane': '256607',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.87095754867087',
  'longitude': '-73.89938522584337',
  'location': {'latitude': '40.87095754867087',
   'longitude': '-73.89938522584337',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312092',
  'created_date': '2025-03-10T04:04:36.000',
  'closed_date': '2025-03-10T05:44:59.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10026',
  'incident_address': '265 WEST  114 STREET',
  'street_name': 'WEST  114 STREET',
  'cross_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'cross_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'intersection_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'intersection_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  114 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T05:45:02.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1018300011',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996586',
  'y_coordinate_state_plane': '231745',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80275381673463',
  'longitude': '-73.95544212929333',
  'location': {'latitude': '40.80275381673463',
   'longitude': '-73.95544212929333',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312972',
  'created_date': '2025-03-10T04:06:24.000',
  'closed_date': '2025-03-10T04:30:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11201',
  'incident_address': '99 AMITY STREET',
  'street_name': 'AMITY STREET',
  'cross_street_1': 'HICKS STREET',
  'cross_street_2': 'HENRY STREET',
  'intersection_street_1': 'HICKS STREET',
  'intersection_street_2': 'HENRY STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AMITY STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T04:30:17.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3002900013',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985016',
  'y_coordinate_state_plane': '190495',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68954150938884',
  'longitude': '-73.997237891064',
  'location': {'latitude': '40.68954150938884',
   'longitude': '-73.997237891064',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306776',
  'created_date': '2025-03-10T04:07:15.000',
  'closed_date': '2025-03-10T05:05:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11226',
  'incident_address': '415 EAST   16 STREET',
  'street_name': 'EAST   16 STREET',
  'cross_street_1': 'CORTELYOU ROAD',
  'cross_street_2': 'DORCHESTER ROAD',
  'intersection_street_1': 'CORTELYOU ROAD',
  'intersection_street_2': 'DORCHESTER ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   16 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T05:05:14.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051590047',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994431',
  'y_coordinate_state_plane': '172599',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64041514286851',
  'longitude': '-73.96331549797361',
  'location': {'latitude': '40.64041514286851',
   'longitude': '-73.96331549797361',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310299',
  'created_date': '2025-03-10T04:07:30.000',
  'closed_date': '2025-03-10T04:07:30.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Special Projects Inspection Team (SPIT)',
  'descriptor': 'Illegal Hotel Rooms In Residential Building',
  'incident_zip': '10030',
  'incident_address': '225 EDGECOMBE AVENUE',
  'street_name': 'EDGECOMBE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'facility_type': 'N/A',
  'status': 'Open',
  'resolution_description': 'Your Service Request has been submitted to the Department of Buildings.  Please check back later for status.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020510063',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999738',
  'y_coordinate_state_plane': '239220',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82326564059799',
  'longitude': '-73.94403979863131',
  'location': {'latitude': '40.82326564059799',
   'longitude': '-73.94403979863131',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311717',
  'created_date': '2025-03-10T04:08:25.000',
  'closed_date': '2025-03-10T04:45:29.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11203',
  'incident_address': '933 EAST   49 STREET',
  'street_name': 'EAST   49 STREET',
  'cross_street_1': 'FOSTER AVENUE',
  'cross_street_2': 'FARRAGUT ROAD',
  'intersection_street_1': 'FOSTER AVENUE',
  'intersection_street_2': 'FARRAGUT ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   49 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T04:45:32.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3047840065',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003684',
  'y_coordinate_state_plane': '171931',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.638566156893745',
  'longitude': '-73.92997672986388',
  'location': {'latitude': '40.638566156893745',
   'longitude': '-73.92997672986388',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306206',
  'created_date': '2025-03-10T04:08:38.000',
  'closed_date': '2025-03-10T04:48:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11219',
  'incident_address': '1053 42 STREET',
  'street_name': '42 STREET',
  'cross_street_1': 'NEW UTRECHT AVENUE',
  'cross_street_2': 'FORT HAMILTON PARKWAY',
  'intersection_street_1': 'NEW UTRECHT AVENUE',
  'intersection_street_2': 'FORT HAMILTON PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '42 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T04:48:26.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3055917501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986060',
  'y_coordinate_state_plane': '173262',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64224060216118',
  'longitude': '-73.99347797236993',
  'location': {'latitude': '40.64224060216118',
   'longitude': '-73.99347797236993',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315826',
  'created_date': '2025-03-10T04:08:41.000',
  'closed_date': '2025-03-10T04:54:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11236',
  'incident_address': '672 EAST   87 STREET',
  'street_name': 'EAST   87 STREET',
  'cross_street_1': 'FARRAGUT ROAD',
  'cross_street_2': 'GLENWOOD ROAD',
  'intersection_street_1': 'FARRAGUT ROAD',
  'intersection_street_2': 'GLENWOOD ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   87 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T04:54:21.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3079910062',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1009105',
  'y_coordinate_state_plane': '172767',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.640847243576154',
  'longitude': '-73.9104410829499',
  'location': {'latitude': '40.640847243576154',
   'longitude': '-73.9104410829499',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306678',
  'created_date': '2025-03-10T04:08:49.000',
  'closed_date': '2025-03-10T04:23:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10034',
  'incident_address': '5060 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  215 STREET',
  'cross_street_2': 'WEST  216 STREET',
  'intersection_street_1': 'WEST  215 STREET',
  'intersection_street_2': 'WEST  216 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T04:23:56.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022320018',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1007550',
  'y_coordinate_state_plane': '256226',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86992493148226',
  'longitude': '-73.91575492583648',
  'location': {'latitude': '40.86992493148226',
   'longitude': '-73.91575492583648',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64325032',
  'created_date': '2025-03-10T04:09:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Out',
  'incident_zip': '11207',
  'intersection_street_1': 'BLAKE AVENUE',
  'intersection_street_2': 'VAN SINDEREN AVENUE',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'status': 'Open',
  'community_board': '05 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1011641',
  'y_coordinate_state_plane': '182254',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6668794909805',
  'longitude': '-73.90126470361102',
  'location': {'latitude': '40.6668794909805',
   'longitude': '-73.90126470361102',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314037',
  'created_date': '2025-03-10T04:10:36.000',
  'closed_date': '2025-03-10T04:49:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10463',
  'incident_address': '3811 CANNON PLACE',
  'street_name': 'CANNON PLACE',
  'cross_street_1': 'WEST  238 STREET',
  'cross_street_2': 'ORLOFF AVENUE',
  'intersection_street_1': 'WEST  238 STREET',
  'intersection_street_2': 'ORLOFF AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CANNON PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T04:49:14.000',
  'community_board': '08 BRONX',
  'bbl': '2032630158',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012757',
  'y_coordinate_state_plane': '260853',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88260932880565',
  'longitude': '-73.89690846731435',
  'location': {'latitude': '40.88260932880565',
   'longitude': '-73.89690846731435',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312978',
  'created_date': '2025-03-10T04:11:52.000',
  'closed_date': '2025-03-10T06:35:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10463',
  'incident_address': '3495 CANNON PLACE',
  'street_name': 'CANNON PLACE',
  'cross_street_1': 'BEND',
  'cross_street_2': 'WEST  238 STREET',
  'intersection_street_1': 'BEND',
  'intersection_street_2': 'WEST  238 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CANNON PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T06:35:35.000',
  'community_board': '08 BRONX',
  'bbl': '2032580144',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012580',
  'y_coordinate_state_plane': '260677',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88212683397139',
  'longitude': '-73.89754930659268',
  'location': {'latitude': '40.88212683397139',
   'longitude': '-73.89754930659268',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307030',
  'created_date': '2025-03-10T04:11:58.000',
  'closed_date': '2025-03-10T19:37:33.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10128',
  'incident_address': '1748 2 AVENUE',
  'street_name': '2 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1015540001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998279',
  'y_coordinate_state_plane': '223875',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.781150266150114',
  'longitude': '-73.94934342061939',
  'location': {'latitude': '40.781150266150114',
   'longitude': '-73.94934342061939',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312282',
  'created_date': '2025-03-10T04:12:15.000',
  'closed_date': '2025-03-12T14:51:28.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11229',
  'incident_address': '2530 OCEAN AVENUE',
  'street_name': 'OCEAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'HPD responded to a complaint of no heat or hot water in the building. An occupant of the building confirmed heat and hot water had been restored when the Inspector attempted to conduct the inspection or contacted you at the phone number associated with the complaint. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3073240036',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997707',
  'y_coordinate_state_plane': '157891',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.600040381009116',
  'longitude': '-73.9515406309319',
  'location': {'latitude': '40.600040381009116',
   'longitude': '-73.9515406309319',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310834',
  'created_date': '2025-03-10T04:12:37.000',
  'closed_date': '2025-03-10T13:26:23.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Storage Area Not Provided',
  'location_type': 'Sidewalk',
  'incident_zip': '11436',
  'incident_address': '140-46 BASCOM AVENUE',
  'street_name': 'BASCOM AVENUE',
  'cross_street_1': '140 STREET',
  'cross_street_2': '142 STREET',
  'intersection_street_1': '140 STREET',
  'intersection_street_2': '142 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'BASCOM AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-10T13:26:28.000',
  'community_board': '12 QUEENS',
  'bbl': '4120570058',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1039740',
  'y_coordinate_state_plane': '184704',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67347265435175',
  'longitude': '-73.79995740154006',
  'location': {'latitude': '40.67347265435175',
   'longitude': '-73.79995740154006',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309547',
  'created_date': '2025-03-10T04:13:58.000',
  'closed_date': '2025-03-10T06:45:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11222',
  'incident_address': '5 BLUE SLIP',
  'street_name': 'BLUE SLIP',
  'cross_street_1': 'COMMERCIAL STREET',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'COMMERCIAL STREET',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BLUE SLIP',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T06:45:59.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3024727502',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995604',
  'y_coordinate_state_plane': '207481',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.736156776263435',
  'longitude': '-73.95903012258638',
  'location': {'latitude': '40.736156776263435',
   'longitude': '-73.95903012258638',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64325508',
  'created_date': '2025-03-10T04:15:00.000',
  'closed_date': '2025-03-10T05:05:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Controller',
  'intersection_street_1': 'FOREST AVE',
  'intersection_street_2': 'WOF BROADWAY',
  'address_type': 'INTERSECTION',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-10T05:05:00.000',
  'community_board': '0 Unspecified',
  'borough': 'Unspecified',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'Unspecified'},
 {'unique_key': '64311788',
  'created_date': '2025-03-10T04:15:07.000',
  'closed_date': '2025-03-10T04:47:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11219',
  'incident_address': '4305 FORT HAMILTON PARKWAY',
  'street_name': 'FORT HAMILTON PARKWAY',
  'cross_street_1': '43 STREET',
  'cross_street_2': '44 STREET',
  'intersection_street_1': '43 STREET',
  'intersection_street_2': '44 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FORT HAMILTON PARKWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T04:47:31.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3056030001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986059',
  'y_coordinate_state_plane': '172867',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64115641211891',
  'longitude': '-73.9934816816124',
  'location': {'latitude': '40.64115641211891',
   'longitude': '-73.9934816816124',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312890',
  'created_date': '2025-03-10T04:15:24.000',
  'closed_date': '2025-03-10T04:47:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper Use',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11222',
  'incident_address': '100 MESEROLE AVENUE',
  'street_name': 'MESEROLE AVENUE',
  'cross_street_1': 'LORIMER STREET',
  'cross_street_2': 'MANHATTAN AVENUE',
  'intersection_street_1': 'LORIMER STREET',
  'intersection_street_2': 'MANHATTAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MESEROLE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T04:47:25.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3026190001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997282',
  'y_coordinate_state_plane': '204143',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.72699247279165',
  'longitude': '-73.95298167828521',
  'location': {'latitude': '40.72699247279165',
   'longitude': '-73.95298167828521',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312543',
  'created_date': '2025-03-10T04:15:47.000',
  'closed_date': '2025-03-10T06:30:52.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper Use',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11101',
  'incident_address': '5-47 50 AVENUE',
  'street_name': '50 AVENUE',
  'cross_street_1': '5 STREET',
  'cross_street_2': 'VERNON BOULEVARD',
  'intersection_street_1': '5 STREET',
  'intersection_street_2': 'VERNON BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'LONG ISLAND CITY',
  'landmark': '50 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T06:30:54.000',
  'community_board': '02 QUEENS',
  'bbl': '4000320006',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '996424',
  'y_coordinate_state_plane': '210017',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74311637505655',
  'longitude': '-73.95606663802941',
  'location': {'latitude': '40.74311637505655',
   'longitude': '-73.95606663802941',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314153',
  'created_date': '2025-03-10T04:16:04.000',
  'closed_date': '2025-03-10T13:17:20.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Commercial Disposal Complaint',
  'descriptor': 'Waste Left in Front of Residence',
  'location_type': 'Sidewalk',
  'incident_zip': '11418',
  'incident_address': '89-00 VAN WYCK EXPRESSWAY SR WEST',
  'street_name': 'VAN WYCK EXPRESSWAY SR WEST',
  'cross_street_1': '89 AVENUE',
  'cross_street_2': 'VAN WYCK EXPWY SB EN JAMAICA AVE',
  'intersection_street_1': '89 AVENUE',
  'intersection_street_2': 'VAN WYCK EXPWY SB EN JAMAICA AVE',
  'address_type': 'ADDRESS',
  'city': 'RICHMOND HILL',
  'landmark': 'VAN WYCK EXPRESSWAY SR WEST',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-10T13:17:23.000',
  'community_board': '09 QUEENS',
  'bbl': '4093640010',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035208',
  'y_coordinate_state_plane': '194803',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70121927969652',
  'longitude': '-73.81621892242292',
  'location': {'latitude': '40.70121927969652',
   'longitude': '-73.81621892242292',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313932',
  'created_date': '2025-03-10T04:16:15.000',
  'closed_date': '2025-03-10T04:47:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper Use',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11205',
  'incident_address': '2 PARK AVENUE',
  'street_name': 'PARK AVENUE',
  'cross_street_1': 'NAVY STREET',
  'cross_street_2': 'MONUMENT WALK',
  'intersection_street_1': 'NAVY STREET',
  'intersection_street_2': 'MONUMENT WALK',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PARK AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T04:47:36.000',
  'community_board': '02 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989818',
  'y_coordinate_state_plane': '192917',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69618762099756',
  'longitude': '-73.97992042327036',
  'location': {'latitude': '40.69618762099756',
   'longitude': '-73.97992042327036',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308315',
  'created_date': '2025-03-10T04:17:31.000',
  'closed_date': '2025-03-10T05:50:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10462',
  'incident_address': '1507 METROPOLITAN AVENUE',
  'street_name': 'METROPOLITAN AVENUE',
  'cross_street_1': 'HAWTHORNE DRIVE',
  'cross_street_2': 'PINE DRIVE',
  'intersection_street_1': 'HAWTHORNE DRIVE',
  'intersection_street_2': 'PINE DRIVE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'METROPOLITAN AVENUE',
  'status': 'Closed',
  'resolution_description': "This complaint does not fall under the Police Department's jurisdiction.",
  'resolution_action_updated_date': '2025-03-10T05:50:04.000',
  'community_board': '09 BRONX',
  'bbl': '2039447501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023386',
  'y_coordinate_state_plane': '245130',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83941375223461',
  'longitude': '-73.85856205857142',
  'location': {'latitude': '40.83941375223461',
   'longitude': '-73.85856205857142',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309028',
  'created_date': '2025-03-10T04:17:54.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Sidewalk Condition',
  'descriptor': 'Broken Sidewalk',
  'location_type': 'Sidewalk',
  'incident_zip': '11385',
  'incident_address': '1611 HANCOCK STREET',
  'street_name': 'HANCOCK STREET',
  'cross_street_1': 'WYCKOFF AVENUE',
  'cross_street_2': 'CYPRESS AVENUE',
  'intersection_street_1': 'WYCKOFF AVENUE',
  'intersection_street_2': 'CYPRESS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'HANCOCK STREET',
  'status': 'In Progress',
  'community_board': '05 QUEENS',
  'bbl': '4035480108',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010205',
  'y_coordinate_state_plane': '193459',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.697638974503256',
  'longitude': '-73.9063978351334',
  'location': {'latitude': '40.697638974503256',
   'longitude': '-73.9063978351334',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313278',
  'created_date': '2025-03-10T04:19:13.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Subway',
  'address_type': 'ADDRESS',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team went to the location provided but could not find the individual that you reported.',
  'resolution_action_updated_date': '2025-03-10T16:33:30.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '982076',
  'y_coordinate_state_plane': '197981',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'bridge_highway_name': 'A',
  'bridge_highway_direction': 'A C platform',
  'bridge_highway_segment': 'Platform',
  'latitude': '40.71008859656407',
  'longitude': '-74.00784161332851',
  'location': {'latitude': '40.71008859656407',
   'longitude': '-74.00784161332851',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316156',
  'created_date': '2025-03-10T04:20:59.000',
  'closed_date': '2025-03-10T05:45:38.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10029',
  'incident_address': '50 EAST  102 STREET',
  'street_name': 'EAST  102 STREET',
  'cross_street_1': 'MADISON AVENUE',
  'cross_street_2': 'PARK AVENUE',
  'intersection_street_1': 'MADISON AVENUE',
  'intersection_street_2': 'PARK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST  102 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2025-03-10T05:45:44.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1016050024',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997725',
  'y_coordinate_state_plane': '227472',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79102393091951',
  'longitude': '-73.9513366142888',
  'location': {'latitude': '40.79102393091951',
   'longitude': '-73.9513366142888',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316398',
  'created_date': '2025-03-10T04:21:04.000',
  'closed_date': '2025-03-15T17:08:33.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11209',
  'incident_address': '8621 4 AVENUE',
  'street_name': '4 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'HPD attempted to conduct an inspection in response to this complaint, but was unable to complete the inspection. Please submit a new service request with 311 if the condition still exists. For more information on the reason why HPD was unable to inspect, contact HPD at the Tenant Information Messaging Service at 212-863-4951.',
  'resolution_action_updated_date': '2025-03-15T00:00:00.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3060450002',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '976319',
  'y_coordinate_state_plane': '165975',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.622235965122165',
  'longitude': '-74.0285694469597',
  'location': {'latitude': '40.622235965122165',
   'longitude': '-74.0285694469597',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308509',
  'created_date': '2025-03-10T04:21:04.000',
  'closed_date': '2025-03-15T17:08:33.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11209',
  'incident_address': '8621 4 AVENUE',
  'street_name': '4 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'HPD attempted to conduct an inspection in response to this complaint, but was unable to complete the inspection. Please submit a new service request with 311 if the condition still exists. For more information on the reason why HPD was unable to inspect, contact HPD at the Tenant Information Messaging Service at 212-863-4951.',
  'resolution_action_updated_date': '2025-03-15T00:00:00.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3060450002',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '976319',
  'y_coordinate_state_plane': '165975',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.622235965122165',
  'longitude': '-74.0285694469597',
  'location': {'latitude': '40.622235965122165',
   'longitude': '-74.0285694469597',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308071',
  'created_date': '2025-03-10T04:21:24.000',
  'closed_date': '2025-03-11T13:36:39.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Chronic Dumping',
  'location_type': 'Sidewalk',
  'incident_zip': '11203',
  'incident_address': '916 BROOKLYN AVENUE',
  'street_name': 'BROOKLYN AVENUE',
  'cross_street_1': 'LINDEN BOULEVARD',
  'cross_street_2': 'CHURCH AVENUE',
  'intersection_street_1': 'LINDEN BOULEVARD',
  'intersection_street_2': 'CHURCH AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BROOKLYN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation periodically conducted surveillance at the location and during those times no violations were observed.',
  'resolution_action_updated_date': '2025-03-11T13:36:42.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3048720032',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999828',
  'y_coordinate_state_plane': '176669',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65157856392098',
  'longitude': '-73.9438594620365',
  'location': {'latitude': '40.65157856392098',
   'longitude': '-73.9438594620365',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307384',
  'created_date': '2025-03-10T04:21:46.000',
  'closed_date': '2025-03-10T05:50:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10469',
  'incident_address': '2435 WESTERVELT AVENUE',
  'street_name': 'WESTERVELT AVENUE',
  'cross_street_1': 'WARING AVENUE',
  'cross_street_2': 'MACE AVENUE',
  'intersection_street_1': 'WARING AVENUE',
  'intersection_street_2': 'MACE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WESTERVELT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2025-03-10T05:50:30.000',
  'community_board': '11 BRONX',
  'bbl': '2044830045',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1028527',
  'y_coordinate_state_plane': '253212',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.8615721320771',
  'longitude': '-73.83992909203954',
  'location': {'latitude': '40.8615721320771',
   'longitude': '-73.83992909203954',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308801',
  'created_date': '2025-03-10T04:22:11.000',
  'closed_date': '2025-03-10T04:49:59.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11221',
  'incident_address': '731 PUTNAM AVENUE',
  'street_name': 'PUTNAM AVENUE',
  'cross_street_1': 'STUYVESANT AVENUE',
  'cross_street_2': 'MALCOLM X BOULEVARD',
  'intersection_street_1': 'STUYVESANT AVENUE',
  'intersection_street_2': 'MALCOLM X BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PUTNAM AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T04:50:04.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3016460072',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003113',
  'y_coordinate_state_plane': '189256',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68612067177877',
  'longitude': '-73.93198564853945',
  'location': {'latitude': '40.68612067177877',
   'longitude': '-73.93198564853945',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310392',
  'created_date': '2025-03-10T04:22:28.000',
  'closed_date': '2025-03-10T06:30:02.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11228',
  'incident_address': '7024 10 AVENUE',
  'street_name': '10 AVENUE',
  'cross_street_1': '70 STREET',
  'cross_street_2': '71 STREET',
  'intersection_street_1': '70 STREET',
  'intersection_street_2': '71 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '10 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T06:30:05.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3058970039',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '981120',
  'y_coordinate_state_plane': '167694',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62695725698555',
  'longitude': '-74.01127584080136',
  'location': {'latitude': '40.62695725698555',
   'longitude': '-74.01127584080136',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312724',
  'created_date': '2025-03-10T04:23:59.000',
  'closed_date': '2025-03-10T04:26:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10031',
  'incident_address': '514 WEST  136 STREET',
  'street_name': 'WEST  136 STREET',
  'cross_street_1': 'AMSTERDAM AVENUE',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': 'AMSTERDAM AVENUE',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  136 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T04:26:29.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1019880118',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997300',
  'y_coordinate_state_plane': '238040',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82003081301524',
  'longitude': '-73.952850909447',
  'location': {'latitude': '40.82003081301524',
   'longitude': '-73.952850909447',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316122',
  'created_date': '2025-03-10T04:24:26.000',
  'closed_date': '2025-03-10T08:31:24.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10029',
  'incident_address': '65 EAST  112 STREET',
  'street_name': 'EAST  112 STREET',
  'cross_street_1': 'MADISON AVENUE',
  'cross_street_2': 'PARK AVENUE',
  'intersection_street_1': 'MADISON AVENUE',
  'intersection_street_2': 'PARK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST  112 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:31:28.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1016200023',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999309',
  'y_coordinate_state_plane': '229648',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79699390401083',
  'longitude': '-73.94561130581198',
  'location': {'latitude': '40.79699390401083',
   'longitude': '-73.94561130581198',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310257',
  'created_date': '2025-03-10T04:24:32.000',
  'closed_date': '2025-03-10T05:08:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11385',
  'incident_address': '64-02 60 PLACE',
  'street_name': '60 PLACE',
  'cross_street_1': 'GROVE STREET',
  'cross_street_2': 'LINDEN STREET',
  'intersection_street_1': 'GROVE STREET',
  'intersection_street_2': 'LINDEN STREET',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': '60 PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T05:08:55.000',
  'community_board': '05 QUEENS',
  'bbl': '4034960030',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011373',
  'y_coordinate_state_plane': '197790',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.709523041821285',
  'longitude': '-73.90216820712654',
  'location': {'latitude': '40.709523041821285',
   'longitude': '-73.90216820712654',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313971',
  'created_date': '2025-03-10T04:24:55.000',
  'closed_date': '2025-03-10T06:18:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '1618 WEST   10 STREET',
  'street_name': 'WEST   10 STREET',
  'cross_street_1': 'AVENUE P',
  'cross_street_2': 'KINGS HIGHWAY',
  'intersection_street_1': 'AVENUE P',
  'intersection_street_2': 'KINGS HIGHWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST   10 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T06:18:23.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3066210013',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988867',
  'y_coordinate_state_plane': '160445',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.607059605097376',
  'longitude': '-73.98337219139579',
  'location': {'latitude': '40.607059605097376',
   'longitude': '-73.98337219139579',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64326254',
  'created_date': '2025-03-10T04:26:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Out',
  'incident_zip': '11370',
  'intersection_street_1': '31 AVENUE',
  'intersection_street_2': '83 STREET',
  'address_type': 'INTERSECTION',
  'city': 'QUEENS',
  'status': 'Open',
  'community_board': '03 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1016080',
  'y_coordinate_state_plane': '215942',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75933008575395',
  'longitude': '-73.88510434923467',
  'location': {'latitude': '40.75933008575395',
   'longitude': '-73.88510434923467',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309559',
  'created_date': '2025-03-10T04:26:10.000',
  'closed_date': '2025-03-10T05:45:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11223',
  'incident_address': '1684 WEST    1 STREET',
  'street_name': 'WEST    1 STREET',
  'cross_street_1': 'AVENUE P',
  'cross_street_2': 'QUENTIN ROAD',
  'intersection_street_1': 'AVENUE P',
  'intersection_street_2': 'QUENTIN ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST    1 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2025-03-10T05:45:22.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3066300039',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991276',
  'y_coordinate_state_plane': '160419',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60698665783536',
  'longitude': '-73.97469637068993',
  'location': {'latitude': '40.60698665783536',
   'longitude': '-73.97469637068993',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306326',
  'created_date': '2025-03-10T04:27:26.000',
  'closed_date': '2025-03-10T08:16:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10467',
  'incident_address': '315 EAST  206 STREET',
  'street_name': 'EAST  206 STREET',
  'cross_street_1': 'BAINBRIDGE AVENUE',
  'cross_street_2': 'PERRY AVENUE',
  'intersection_street_1': 'BAINBRIDGE AVENUE',
  'intersection_street_2': 'PERRY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  206 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:16:21.000',
  'community_board': '07 BRONX',
  'bbl': '2033420051',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1017796',
  'y_coordinate_state_plane': '258064',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.874936680194445',
  'longitude': '-73.87869962484274',
  'location': {'latitude': '40.874936680194445',
   'longitude': '-73.87869962484274',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309695',
  'created_date': '2025-03-10T04:27:52.000',
  'closed_date': '2025-03-10T09:14:02.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10455',
  'incident_address': '725 SOUTHERN BOULEVARD',
  'street_name': 'SOUTHERN BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '02 BRONX',
  'bbl': '2027200030',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012375',
  'y_coordinate_state_plane': '235939',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.814229027226816',
  'longitude': '-73.89839442119357',
  'location': {'latitude': '40.814229027226816',
   'longitude': '-73.89839442119357',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310592',
  'created_date': '2025-03-10T04:28:02.000',
  'closed_date': '2025-03-11T09:35:32.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Defective Hardware',
  'location_type': 'Street',
  'incident_zip': '10314',
  'incident_address': '221 MCVEIGH AVENUE',
  'street_name': 'MCVEIGH AVENUE',
  'cross_street_1': 'DENKER PLACE',
  'cross_street_2': 'NEHRING AVENUE',
  'intersection_street_1': 'DENKER PLACE',
  'intersection_street_2': 'NEHRING AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'MC VEIGH AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected and has requested the Department of Environmental Protection address the issue. The condition will be re-inspected in 60 days.',
  'resolution_action_updated_date': '2025-03-11T09:35:36.000',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5023780038',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '940975',
  'y_coordinate_state_plane': '154368',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.59027503160899',
  'longitude': '-74.15581285038787',
  'location': {'latitude': '40.59027503160899',
   'longitude': '-74.15581285038787',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309033',
  'created_date': '2025-03-10T04:29:15.000',
  'closed_date': '2025-03-10T07:05:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11219',
  'incident_address': '1057 66 STREET',
  'street_name': '66 STREET',
  'cross_street_1': '10 AVENUE',
  'cross_street_2': '11 AVENUE',
  'intersection_street_1': '10 AVENUE',
  'intersection_street_2': '11 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '66 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T07:05:12.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3057510055',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '982158',
  'y_coordinate_state_plane': '168309',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62864560850486',
  'longitude': '-74.00753663120338',
  'location': {'latitude': '40.62864560850486',
   'longitude': '-74.00753663120338',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314552',
  'created_date': '2025-03-10T04:30:30.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Subway',
  'address_type': 'ADDRESS',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team went to the location provided but could not find the individual that you reported.',
  'resolution_action_updated_date': '2025-03-10T16:01:27.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '982076',
  'y_coordinate_state_plane': '197981',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'bridge_highway_name': '4',
  'bridge_highway_segment': 'Other',
  'latitude': '40.71008859656407',
  'longitude': '-74.00784161332851',
  'location': {'latitude': '40.71008859656407',
   'longitude': '-74.00784161332851',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312192',
  'created_date': '2025-03-10T04:30:51.000',
  'closed_date': '2025-03-10T06:57:38.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10039',
  'incident_address': '301 WEST  153 STREET',
  'street_name': 'WEST  153 STREET',
  'cross_street_1': 'FREDERICK DOUGLASS BOULEVARD',
  'cross_street_2': 'BRADHURST AVENUE',
  'intersection_street_1': 'FREDERICK DOUGLASS BOULEVARD',
  'intersection_street_2': 'BRADHURST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  153 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T06:57:43.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020470007',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001302',
  'y_coordinate_state_plane': '240927',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82794798801569',
  'longitude': '-73.93838452238118',
  'location': {'latitude': '40.82794798801569',
   'longitude': '-73.93838452238118',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310459',
  'created_date': '2025-03-10T04:31:31.000',
  'closed_date': '2025-03-10T04:50:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Residential Building/House',
  'incident_zip': '10468',
  'incident_address': '2400 WALTON AVENUE',
  'street_name': 'WALTON AVENUE',
  'cross_street_1': 'EAST  184 STREET',
  'cross_street_2': 'EAST FORDHAM ROAD',
  'intersection_street_1': 'EAST  184 STREET',
  'intersection_street_2': 'EAST FORDHAM ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WALTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and no Encampment was found.',
  'resolution_action_updated_date': '2025-03-10T04:50:51.000',
  'community_board': '05 BRONX',
  'bbl': '2031840012',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011599',
  'y_coordinate_state_plane': '253005',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8610726526304',
  'longitude': '-73.90112824093595',
  'location': {'latitude': '40.8610726526304',
   'longitude': '-73.90112824093595',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306199',
  'created_date': '2025-03-10T04:31:46.000',
  'closed_date': '2025-03-10T04:54:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11385',
  'incident_address': '70-25 71 PLACE',
  'street_name': '71 PLACE',
  'cross_street_1': 'EDSALL AVENUE',
  'cross_street_2': 'CENTRAL AVENUE',
  'intersection_street_1': 'EDSALL AVENUE',
  'intersection_street_2': 'CENTRAL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': '71 PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T04:55:04.000',
  'community_board': '05 QUEENS',
  'bbl': '4036630050',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1017328',
  'y_coordinate_state_plane': '196453',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70583303756391',
  'longitude': '-73.88069530501365',
  'location': {'latitude': '40.70583303756391',
   'longitude': '-73.88069530501365',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310654',
  'created_date': '2025-03-10T04:32:23.000',
  'closed_date': '2025-03-10T06:42:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10455',
  'incident_address': '721 CAULDWELL AVENUE',
  'street_name': 'CAULDWELL AVENUE',
  'cross_street_1': 'WESTCHESTER AVENUE',
  'cross_street_2': 'EAST  156 STREET',
  'intersection_street_1': 'WESTCHESTER AVENUE',
  'intersection_street_2': 'EAST  156 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CAULDWELL AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T06:42:04.000',
  'community_board': '01 BRONX',
  'bbl': '2026240155',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009446',
  'y_coordinate_state_plane': '237401',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81825064470082',
  'longitude': '-73.90897035526082',
  'location': {'latitude': '40.81825064470082',
   'longitude': '-73.90897035526082',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306191',
  'created_date': '2025-03-10T04:32:32.000',
  'closed_date': '2025-03-10T07:04:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11219',
  'incident_address': '6614 12 AVENUE',
  'street_name': '12 AVENUE',
  'cross_street_1': '66 STREET',
  'cross_street_2': '67 STREET',
  'intersection_street_1': '66 STREET',
  'intersection_street_2': '67 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '12 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T07:04:47.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3057590043',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '982999',
  'y_coordinate_state_plane': '167555',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62657619580762',
  'longitude': '-74.00450670807388',
  'location': {'latitude': '40.62657619580762',
   'longitude': '-74.00450670807388',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310623',
  'created_date': '2025-03-10T04:32:55.000',
  'closed_date': '2025-03-10T06:37:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10026',
  'incident_address': '200 WEST  112 STREET',
  'street_name': 'WEST  112 STREET',
  'cross_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'cross_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'intersection_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'intersection_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  112 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T06:37:59.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1018270036',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996825',
  'y_coordinate_state_plane': '231007',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.80072787216845',
  'longitude': '-73.95458023898993',
  'location': {'latitude': '40.80072787216845',
   'longitude': '-73.95458023898993',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308722',
  'created_date': '2025-03-10T04:33:49.000',
  'closed_date': '2025-03-10T06:42:20.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11207',
  'incident_address': '624 MILLER AVENUE',
  'street_name': 'MILLER AVENUE',
  'cross_street_1': 'LIVONIA AVENUE',
  'cross_street_2': 'RIVERDALE AVENUE',
  'intersection_street_1': 'LIVONIA AVENUE',
  'intersection_street_2': 'RIVERDALE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MILLER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T06:42:24.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3038270031',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1014959',
  'y_coordinate_state_plane': '181614',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66511194768984',
  'longitude': '-73.88930736242348',
  'location': {'latitude': '40.66511194768984',
   'longitude': '-73.88930736242348',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310801',
  'created_date': '2025-03-10T04:34:42.000',
  'closed_date': '2025-03-10T05:42:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11232',
  'incident_address': '4314 3 AVENUE',
  'street_name': '3 AVENUE',
  'cross_street_1': '43 STREET',
  'cross_street_2': '44 STREET',
  'intersection_street_1': '43 STREET',
  'intersection_street_2': '44 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '3 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T05:42:37.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3007270045',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '981242',
  'y_coordinate_state_plane': '176562',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65129806307794',
  'longitude': '-74.01084028868104',
  'location': {'latitude': '40.65129806307794',
   'longitude': '-74.01084028868104',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310724',
  'created_date': '2025-03-10T04:34:55.000',
  'closed_date': '2025-03-10T13:23:15.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Waste Left in Front of Other Residence',
  'location_type': 'Sidewalk',
  'incident_zip': '11419',
  'incident_address': '108-17 LIBERTY AVENUE',
  'street_name': 'LIBERTY AVENUE',
  'cross_street_1': '109 STREET',
  'cross_street_2': '109 STREET',
  'intersection_street_1': '109 STREET',
  'intersection_street_2': '109 STREET',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': 'LIBERTY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-10T13:23:19.000',
  'community_board': '10 QUEENS',
  'bbl': '4095130028',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1030589',
  'y_coordinate_state_plane': '188538',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68404872730099',
  'longitude': '-73.83292049520077',
  'location': {'latitude': '40.68404872730099',
   'longitude': '-73.83292049520077',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308139',
  'created_date': '2025-03-10T04:35:32.000',
  'closed_date': '2025-03-10T05:21:16.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Talking',
  'location_type': 'Store/Commercial',
  'incident_zip': '10001',
  'incident_address': '548 WEST   28 STREET',
  'street_name': 'WEST   28 STREET',
  'cross_street_1': 'HIGH LINE',
  'cross_street_2': '11 AVENUE',
  'intersection_street_1': 'HIGH LINE',
  'intersection_street_2': '11 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   28 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T05:21:18.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1006990005',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983285',
  'y_coordinate_state_plane': '213066',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75149344063823',
  'longitude': '-74.00348291636898',
  'location': {'latitude': '40.75149344063823',
   'longitude': '-74.00348291636898',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308224',
  'created_date': '2025-03-10T04:36:41.000',
  'closed_date': '2025-03-10T05:22:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10304',
  'incident_address': '722 BAY STREET',
  'street_name': 'BAY STREET',
  'cross_street_1': 'DOCK STREET',
  'cross_street_2': 'VANDERBILT AVENUE',
  'intersection_street_1': 'DOCK STREET',
  'intersection_street_2': 'VANDERBILT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'BAY STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T05:22:12.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5005280056',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '963576',
  'y_coordinate_state_plane': '166834',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.62457316762375',
  'longitude': '-74.07447553777165',
  'location': {'latitude': '40.62457316762375',
   'longitude': '-74.07447553777165',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309653',
  'created_date': '2025-03-10T04:37:20.000',
  'closed_date': '2025-03-10T06:03:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11102',
  'incident_address': '30-40 32 STREET',
  'street_name': '32 STREET',
  'cross_street_1': '30 AVENUE',
  'cross_street_2': '31 AVENUE',
  'intersection_street_1': '30 AVENUE',
  'intersection_street_2': '31 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '32 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T06:04:01.000',
  'community_board': '01 QUEENS',
  'bbl': '4006150052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1005995',
  'y_coordinate_state_plane': '218147',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.765412796352464',
  'longitude': '-73.92150066847839',
  'location': {'latitude': '40.765412796352464',
   'longitude': '-73.92150066847839',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314846',
  'created_date': '2025-03-10T04:40:10.000',
  'closed_date': '2025-03-10T04:42:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10452',
  'incident_address': '963 WOODCREST AVENUE',
  'street_name': 'WOODCREST AVENUE',
  'cross_street_1': 'WEST  162 STREET',
  'cross_street_2': 'WEST  163 STREET',
  'intersection_street_1': 'WEST  162 STREET',
  'intersection_street_2': 'WEST  163 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WOODYCREST AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T04:42:10.000',
  'community_board': '04 BRONX',
  'bbl': '2025110068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003966',
  'y_coordinate_state_plane': '242285',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.831669762919574',
  'longitude': '-73.9287544719845',
  'location': {'latitude': '40.831669762919574',
   'longitude': '-73.9287544719845',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313569',
  'created_date': '2025-03-10T04:40:14.000',
  'closed_date': '2025-03-10T08:20:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11372',
  'incident_address': '35-51 95 STREET',
  'street_name': '95 STREET',
  'cross_street_1': '35 AVENUE',
  'cross_street_2': '37 AVENUE',
  'intersection_street_1': '35 AVENUE',
  'intersection_street_2': '37 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JACKSON HEIGHTS',
  'landmark': '95 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:20:57.000',
  'community_board': '03 QUEENS',
  'bbl': '4014690050',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1019565',
  'y_coordinate_state_plane': '213555',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75276515250264',
  'longitude': '-73.872537219612',
  'location': {'latitude': '40.75276515250264',
   'longitude': '-73.872537219612',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316036',
  'created_date': '2025-03-10T04:40:54.000',
  'closed_date': '2025-03-10T05:00:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Non-Emergency Police Matter',
  'descriptor': 'Other (complaint details)',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11432',
  'incident_address': '89-25 PARSONS BOULEVARD',
  'street_name': 'PARSONS BOULEVARD',
  'cross_street_1': '89 AVENUE',
  'cross_street_2': '90 AVENUE',
  'intersection_street_1': '89 AVENUE',
  'intersection_street_2': '90 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'PARSONS BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T05:00:21.000',
  'community_board': '12 QUEENS',
  'bbl': '4097580001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1039294',
  'y_coordinate_state_plane': '196361',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70547113992042',
  'longitude': '-73.80146999300568',
  'location': {'latitude': '40.70547113992042',
   'longitude': '-73.80146999300568',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309642',
  'created_date': '2025-03-10T04:41:53.000',
  'closed_date': '2025-03-10T06:31:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10040',
  'incident_address': '165 NAGLE AVENUE',
  'street_name': 'NAGLE AVENUE',
  'cross_street_1': 'THAYER STREET',
  'cross_street_2': 'HILLSIDE AVENUE',
  'intersection_street_1': 'THAYER STREET',
  'intersection_street_2': 'HILLSIDE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'NAGLE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T06:31:04.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021730029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004835',
  'y_coordinate_state_plane': '253074',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86128040014401',
  'longitude': '-73.9255811426087',
  'location': {'latitude': '40.86128040014401',
   'longitude': '-73.9255811426087',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313550',
  'created_date': '2025-03-10T04:42:05.000',
  'closed_date': '2025-03-10T05:16:20.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10458',
  'incident_address': '2501 HOFFMAN STREET',
  'street_name': 'HOFFMAN STREET',
  'cross_street_1': 'EAST  189 STREET',
  'cross_street_2': 'EAST FORDHAM ROAD',
  'intersection_street_1': 'EAST  189 STREET',
  'intersection_street_2': 'EAST FORDHAM ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'HOFFMAN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2025-03-10T05:16:23.000',
  'community_board': '06 BRONX',
  'bbl': '2030670024',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015664',
  'y_coordinate_state_plane': '252010',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.858328149845164',
  'longitude': '-73.8864371830908',
  'location': {'latitude': '40.858328149845164',
   'longitude': '-73.8864371830908',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314880',
  'created_date': '2025-03-10T04:42:11.000',
  'closed_date': '2025-03-11T10:22:26.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11691',
  'incident_address': '11-10 NEILSON STREET',
  'street_name': 'NEILSON STREET',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '14 QUEENS',
  'bbl': '4155420004',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1054125',
  'y_coordinate_state_plane': '159884',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.60524549275085',
  'longitude': '-73.74835647680511',
  'location': {'latitude': '40.60524549275085',
   'longitude': '-73.74835647680511',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312351',
  'created_date': '2025-03-10T04:42:21.000',
  'closed_date': '2025-03-10T13:01:40.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11428',
  'incident_address': '90-10 WINCHESTER BOULEVARD',
  'street_name': 'WINCHESTER BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'QUEENS VILLAGE',
  'status': 'Closed',
  'resolution_description': 'HPD responded to a complaint of no heat or hot water in the building. An occupant of the building confirmed heat and hot water had been restored when the Inspector attempted to conduct the inspection or contacted you at the phone number associated with the complaint. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '13 QUEENS',
  'bbl': '4107230001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1057114',
  'y_coordinate_state_plane': '204699',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72822805120004',
  'longitude': '-73.73710777368713',
  'location': {'latitude': '40.72822805120004',
   'longitude': '-73.73710777368713',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307933',
  'created_date': '2025-03-10T04:42:31.000',
  'closed_date': '2025-03-10T04:52:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Subway',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and no Encampment was found.',
  'resolution_action_updated_date': '2025-03-10T04:52:49.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991113',
  'y_coordinate_state_plane': '216227',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'bridge_highway_name': 'E',
  'bridge_highway_direction': 'E M to Queens',
  'bridge_highway_segment': 'Platform',
  'latitude': '40.76016696972007',
  'longitude': '-73.97522656163717',
  'location': {'latitude': '40.76016696972007',
   'longitude': '-73.97522656163717',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64327192',
  'created_date': '2025-03-10T04:45:00.000',
  'closed_date': '2025-03-10T06:00:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Controller',
  'incident_zip': '11206',
  'intersection_street_1': 'THROOP AVENUE',
  'intersection_street_2': 'PULASKI STREET',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-10T06:00:00.000',
  'community_board': '03 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000070',
  'y_coordinate_state_plane': '191793',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69309011367243',
  'longitude': '-73.94295183799464',
  'location': {'latitude': '40.69309011367243',
   'longitude': '-73.94295183799464',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64327193',
  'created_date': '2025-03-10T04:45:00.000',
  'closed_date': '2025-03-10T06:00:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Controller',
  'incident_zip': '11206',
  'intersection_street_1': 'THROOP AVENUE',
  'intersection_street_2': 'PULASKI STREET',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportation\'s website. Please click the "Learn More" link below.',
  'resolution_action_updated_date': '2025-03-10T06:00:00.000',
  'community_board': '03 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000070',
  'y_coordinate_state_plane': '191793',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69309011367243',
  'longitude': '-73.94295183799464',
  'location': {'latitude': '40.69309011367243',
   'longitude': '-73.94295183799464',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312053',
  'created_date': '2025-03-10T04:45:07.000',
  'closed_date': '2025-03-10T06:46:20.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11222',
  'incident_address': '5 BLUE SLIP',
  'street_name': 'BLUE SLIP',
  'cross_street_1': 'COMMERCIAL STREET',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'COMMERCIAL STREET',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BLUE SLIP',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T06:46:24.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3024727502',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995604',
  'y_coordinate_state_plane': '207481',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.736156776263435',
  'longitude': '-73.95903012258638',
  'location': {'latitude': '40.736156776263435',
   'longitude': '-73.95903012258638',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308761',
  'created_date': '2025-03-10T04:45:08.000',
  'closed_date': '2025-03-10T05:12:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11231',
  'incident_address': '25 2 PLACE',
  'street_name': '2 PLACE',
  'cross_street_1': 'HENRY STREET',
  'cross_street_2': 'CLINTON STREET',
  'intersection_street_1': 'HENRY STREET',
  'intersection_street_2': 'CLINTON STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '2 PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T05:12:31.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3003600042',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984213',
  'y_coordinate_state_plane': '187129',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68030264145511',
  'longitude': '-74.00013339931088',
  'location': {'latitude': '40.68030264145511',
   'longitude': '-74.00013339931088',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311063',
  'created_date': '2025-03-10T04:45:09.000',
  'closed_date': '2025-03-12T14:20:52.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11234',
  'incident_address': '1252 RYDER STREET',
  'street_name': 'RYDER STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3078160130',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1001634',
  'y_coordinate_state_plane': '165769',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62165703277294',
  'longitude': '-73.93737902008561',
  'location': {'latitude': '40.62165703277294',
   'longitude': '-73.93737902008561',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309737',
  'created_date': '2025-03-10T04:45:41.000',
  'closed_date': '2025-03-10T12:33:20.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10467',
  'incident_address': '3322 DECATUR AVENUE',
  'street_name': 'DECATUR AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '07 BRONX',
  'bbl': '2033550090',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1019313',
  'y_coordinate_state_plane': '258813',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87698655588999',
  'longitude': '-73.87321032891688',
  'location': {'latitude': '40.87698655588999',
   'longitude': '-73.87321032891688',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315263',
  'created_date': '2025-03-10T04:45:45.000',
  'closed_date': '2025-03-10T08:39:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10455',
  'incident_address': '775 FOX STREET',
  'street_name': 'FOX STREET',
  'cross_street_1': 'EAST  156 STREET',
  'cross_street_2': 'LONGWOOD AVENUE',
  'intersection_street_1': 'EAST  156 STREET',
  'intersection_street_2': 'LONGWOOD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'FOX STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:39:27.000',
  'community_board': '02 BRONX',
  'bbl': '2027070074',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012549',
  'y_coordinate_state_plane': '236628',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.816119582516095',
  'longitude': '-73.89776291680815',
  'location': {'latitude': '40.816119582516095',
   'longitude': '-73.89776291680815',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312744',
  'created_date': '2025-03-10T04:46:12.000',
  'closed_date': '2025-03-10T08:38:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10455',
  'incident_address': '753 FOX STREET',
  'street_name': 'FOX STREET',
  'cross_street_1': 'EAST  156 STREET',
  'cross_street_2': 'LONGWOOD AVENUE',
  'intersection_street_1': 'EAST  156 STREET',
  'intersection_street_2': 'LONGWOOD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'FOX STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:38:44.000',
  'community_board': '02 BRONX',
  'bbl': '2027070085',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012422',
  'y_coordinate_state_plane': '236467',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8156780888314',
  'longitude': '-73.89822241087543',
  'location': {'latitude': '40.8156780888314',
   'longitude': '-73.89822241087543',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315293',
  'created_date': '2025-03-10T04:46:30.000',
  'closed_date': '2025-03-10T07:46:16.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Rodent',
  'descriptor': 'Rat Sighting',
  'location_type': '3+ Family Apt. Building',
  'incident_zip': '10452',
  'incident_address': '963 WOODYCREST AVENUE',
  'street_name': 'WOODYCREST AVENUE',
  'cross_street_1': 'WEST 162 STREET',
  'cross_street_2': 'WEST 163 STREET',
  'intersection_street_1': 'WEST  162 STREET',
  'intersection_street_2': 'WEST  163 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WOODYCREST AVENUE',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'This service request was closed because the Department of Health and Mental Hygiene received an earlier complaint about the same location.  You can find inspection results for this address by going to the online Rat Portal at www.nyc.gov/rats.',
  'resolution_action_updated_date': '2025-03-10T04:46:30.000',
  'community_board': '04 BRONX',
  'bbl': '2025110068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003966',
  'y_coordinate_state_plane': '242285',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.831669762919574',
  'longitude': '-73.9287544719845',
  'location': {'latitude': '40.831669762919574',
   'longitude': '-73.9287544719845',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307481',
  'created_date': '2025-03-10T04:46:31.000',
  'closed_date': '2025-03-10T09:02:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11234',
  'incident_address': 'AVENUE T',
  'street_name': 'AVENUE T',
  'cross_street_1': 'AVENUE T',
  'cross_street_2': 'HENDRICKSON STREET',
  'intersection_street_1': 'AVENUE T',
  'intersection_street_2': 'HENDRICKSON STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T09:02:52.000',
  'community_board': '18 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1005014',
  'y_coordinate_state_plane': '161853',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61090115082939',
  'longitude': '-73.92521556733281',
  'location': {'latitude': '40.61090115082939',
   'longitude': '-73.92521556733281',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312378',
  'created_date': '2025-03-10T04:47:52.000',
  'closed_date': '2025-03-10T19:03:04.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '957 WOODYCREST AVENUE',
  'street_name': 'WOODYCREST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "The Department of Housing Preservation and Development conducted or attempted to conduct an inspection.  More information about inspection results can be found through HPD's website at www.nyc.gov/hpd by using HPDONLINE (enter your address on the home page) and entering your SR number under the complaint status option.",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2025110068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003936',
  'y_coordinate_state_plane': '242233',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8315271048226',
  'longitude': '-73.92886303221528',
  'location': {'latitude': '40.8315271048226',
   'longitude': '-73.92886303221528',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309660',
  'created_date': '2025-03-10T04:48:11.000',
  'closed_date': '2025-03-11T15:00:16.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11207',
  'incident_address': '473 PENNSYLVANIA AVENUE',
  'street_name': 'PENNSYLVANIA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3038060015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1013584',
  'y_coordinate_state_plane': '181811',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66565733091582',
  'longitude': '-73.89426277950494',
  'location': {'latitude': '40.66565733091582',
   'longitude': '-73.89426277950494',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310999',
  'created_date': '2025-03-10T04:48:12.000',
  'closed_date': '2025-03-12T12:07:16.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10128',
  'incident_address': '1125 PARK AVENUE',
  'street_name': 'PARK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1015190001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996670',
  'y_coordinate_state_plane': '224538',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78297243240181',
  'longitude': '-73.95515204746957',
  'location': {'latitude': '40.78297243240181',
   'longitude': '-73.95515204746957',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311370',
  'created_date': '2025-03-10T04:48:19.000',
  'closed_date': '2025-03-10T06:51:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11209',
  'incident_address': '8025 FOURTH AVENUE',
  'street_name': 'FOURTH AVENUE',
  'cross_street_1': '80 STREET',
  'cross_street_2': '81 STREET',
  'intersection_street_1': '80 STREET',
  'intersection_street_2': '81 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '4 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T06:51:31.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3059890001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '976854',
  'y_coordinate_state_plane': '167693',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62695197778201',
  'longitude': '-74.0266441255674',
  'location': {'latitude': '40.62695197778201',
   'longitude': '-74.0266441255674',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314229',
  'created_date': '2025-03-10T04:48:43.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Rodent',
  'descriptor': 'Rat Sighting',
  'location_type': 'Other (Explain Below)',
  'incident_zip': '10016',
  'incident_address': '101 EAST   33 STREET',
  'street_name': 'EAST   33 STREET',
  'cross_street_1': 'PARK AVENUE',
  'cross_street_2': 'LEXINGTON AVENUE',
  'intersection_street_1': 'PARK AVENUE',
  'intersection_street_2': 'LEXINGTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   33 STREET',
  'status': 'In Progress',
  'community_board': '05 MANHATTAN',
  'bbl': '1008897501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989369',
  'y_coordinate_state_plane': '211173',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74629620350457',
  'longitude': '-73.98152574285997',
  'location': {'latitude': '40.74629620350457',
   'longitude': '-73.98152574285997',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311138',
  'created_date': '2025-03-10T04:48:46.000',
  'closed_date': '2025-03-10T20:54:07.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'WATER SUPPLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11208',
  'incident_address': '1429 STANLEY AVENUE',
  'street_name': 'STANLEY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3045190126',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1024015',
  'y_coordinate_state_plane': '182324',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66702469563999',
  'longitude': '-73.85666027056774',
  'location': {'latitude': '40.66702469563999',
   'longitude': '-73.85666027056774',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314150',
  'created_date': '2025-03-10T04:49:17.000',
  'closed_date': '2025-03-11T00:00:00.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Building/Use',
  'descriptor': 'Zoning - Non-Conforming/Illegal Vehicle Storage',
  'incident_zip': '10452',
  'incident_address': '963 WOODYCREST AVENUE',
  'street_name': 'WOODYCREST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Buildings reviewed this complaint and closed it. If the problem still exists, please call 311 and file a new complaint. If you are outside of New York City, please call (212) NEW-YORK (212-639-9675).',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2025110068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003966',
  'y_coordinate_state_plane': '242285',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.831669762919574',
  'longitude': '-73.9287544719845',
  'location': {'latitude': '40.831669762919574',
   'longitude': '-73.9287544719845',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313090',
  'created_date': '2025-03-10T04:49:42.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Residential Building/House',
  'incident_zip': '11103',
  'incident_address': '28-46 34 STREET',
  'street_name': '34 STREET',
  'cross_street_1': '28 AVENUE',
  'cross_street_2': '30 AVENUE',
  'intersection_street_1': '28 AVENUE',
  'intersection_street_2': '30 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '34 STREET',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team went to the location provided but could not find the individual that you reported.',
  'resolution_action_updated_date': '2025-03-10T09:46:31.000',
  'community_board': '01 QUEENS',
  'bbl': '4006270039',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1006982',
  'y_coordinate_state_plane': '218754',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.767076370721966',
  'longitude': '-73.91793555303344',
  'location': {'latitude': '40.767076370721966',
   'longitude': '-73.91793555303344',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315210',
  'created_date': '2025-03-10T04:50:58.000',
  'closed_date': '2025-03-10T05:27:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10452',
  'incident_address': '97 WEST  163 STREET',
  'street_name': 'WEST  163 STREET',
  'cross_street_1': 'WOODYCREST AVENUE',
  'cross_street_2': 'OGDEN AVENUE',
  'intersection_street_1': 'WOODYCREST AVENUE',
  'intersection_street_2': 'OGDEN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST  163 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T05:28:03.000',
  'community_board': '04 BRONX',
  'bbl': '2025110153',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003827',
  'y_coordinate_state_plane': '242454',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83213392840631',
  'longitude': '-73.92925626748782',
  'location': {'latitude': '40.83213392840631',
   'longitude': '-73.92925626748782',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306406',
  'created_date': '2025-03-10T04:51:34.000',
  'closed_date': '2025-03-10T11:57:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Vehicle',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10452',
  'incident_address': '1158 GERARD AVENUE',
  'street_name': 'GERARD AVENUE',
  'cross_street_1': 'MCCLELLAN STREET',
  'cross_street_2': 'EAST  167 STREET',
  'intersection_street_1': 'MCCLELLAN STREET',
  'intersection_street_2': 'EAST  167 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GERARD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T11:57:55.000',
  'community_board': '04 BRONX',
  'bbl': '2024790001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006131',
  'y_coordinate_state_plane': '243252',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.834318800045416',
  'longitude': '-73.92092790077417',
  'location': {'latitude': '40.834318800045416',
   'longitude': '-73.92092790077417',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308765',
  'created_date': '2025-03-10T04:51:37.000',
  'closed_date': '2025-03-10T06:02:38.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '7608 BAY PARKWAY',
  'street_name': 'BAY PARKWAY',
  'cross_street_1': '76 STREET',
  'cross_street_2': 'AVENUE P',
  'intersection_street_1': '76 STREET',
  'intersection_street_2': 'AVENUE P',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAY PARKWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T06:02:43.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3062417502',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987531',
  'y_coordinate_state_plane': '160556',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60736487275759',
  'longitude': '-73.98818364970174',
  'location': {'latitude': '40.60736487275759',
   'longitude': '-73.98818364970174',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315721',
  'created_date': '2025-03-10T04:52:18.000',
  'closed_date': '2025-03-10T04:52:18.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Elevator',
  'descriptor': 'Elevator - Multiple Devices On Property',
  'incident_zip': '10460',
  'incident_address': '1759 WEST FARMS ROAD',
  'street_name': 'WEST FARMS ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'Your Service Request has been submitted to the Department of Buildings.  Please check back later for status.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '03 BRONX',
  'bbl': '2030150097',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016856',
  'y_coordinate_state_plane': '243737',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83561689944004',
  'longitude': '-73.88216829216293',
  'location': {'latitude': '40.83561689944004',
   'longitude': '-73.88216829216293',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311967',
  'created_date': '2025-03-10T04:53:30.000',
  'closed_date': '2025-03-12T07:15:00.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Illegal Tree Damage',
  'descriptor': 'Trunk Damaged',
  'location_type': 'Street',
  'incident_zip': '10452',
  'incident_address': '100 WEST  163 STREET',
  'street_name': 'WEST  163 STREET',
  'cross_street_1': 'WOODYCREST AVENUE',
  'cross_street_2': 'OGDEN AVENUE',
  'intersection_street_1': 'WOODYCREST AVENUE',
  'intersection_street_2': 'OGDEN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST  163 STREET',
  'status': 'Closed',
  'resolution_description': 'NYC Parks visited the site and inspected the condition. No work is necessary at this time.',
  'resolution_action_updated_date': '2025-03-12T07:15:03.000',
  'community_board': '04 BRONX',
  'bbl': '2025110064',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003804',
  'y_coordinate_state_plane': '242458',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83214495820546',
  'longitude': '-73.9293393689272',
  'location': {'latitude': '40.83214495820546',
   'longitude': '-73.9293393689272',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313395',
  'created_date': '2025-03-10T04:53:32.000',
  'closed_date': '2025-03-10T05:11:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10032',
  'incident_address': '548 WEST  164 STREET',
  'street_name': 'WEST  164 STREET',
  'cross_street_1': 'ST NICHOLAS AVENUE',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': 'ST NICHOLAS AVENUE',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  164 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T05:11:52.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021220110',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000693',
  'y_coordinate_state_plane': '244570',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.837948126788284',
  'longitude': '-73.94057614461808',
  'location': {'latitude': '40.837948126788284',
   'longitude': '-73.94057614461808',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306732',
  'created_date': '2025-03-10T04:53:58.000',
  'closed_date': '2025-03-10T05:57:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10460',
  'incident_address': '980 JENNINGS STREET',
  'street_name': 'JENNINGS STREET',
  'cross_street_1': 'BRYANT AVENUE',
  'cross_street_2': 'LONGFELLOW AVENUE',
  'intersection_street_1': 'BRYANT AVENUE',
  'intersection_street_2': 'LONGFELLOW AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'JENNINGS STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T05:57:36.000',
  'community_board': '03 BRONX',
  'bbl': '2029990024',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015256',
  'y_coordinate_state_plane': '242217',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83145070316409',
  'longitude': '-73.88795739869181',
  'location': {'latitude': '40.83145070316409',
   'longitude': '-73.88795739869181',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313605',
  'created_date': '2025-03-10T04:54:50.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'ELECTRIC',
  'descriptor': 'NO LIGHTING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10460',
  'incident_address': '1759 WEST FARMS ROAD',
  'street_name': 'WEST FARMS ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '03 BRONX',
  'bbl': '2030150097',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016856',
  'y_coordinate_state_plane': '243737',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83561689944004',
  'longitude': '-73.88216829216293',
  'location': {'latitude': '40.83561689944004',
   'longitude': '-73.88216829216293',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312563',
  'created_date': '2025-03-10T04:55:16.000',
  'closed_date': '2025-03-10T06:44:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11208',
  'incident_address': '528 RIDGEWOOD AVENUE',
  'street_name': 'RIDGEWOOD AVENUE',
  'cross_street_1': 'LINCOLN AVENUE',
  'cross_street_2': 'NICHOLS AVENUE',
  'intersection_street_1': 'LINCOLN AVENUE',
  'intersection_street_2': 'NICHOLS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'RIDGEWOOD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T06:44:54.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3041340020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020408',
  'y_coordinate_state_plane': '189297',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68617945158653',
  'longitude': '-73.86962488740929',
  'location': {'latitude': '40.68617945158653',
   'longitude': '-73.86962488740929',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315396',
  'created_date': '2025-03-10T04:56:24.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Sidewalk Condition',
  'descriptor': 'Blocked - Construction',
  'location_type': 'Sidewalk',
  'incident_zip': '10452',
  'incident_address': 'WEST  163 STREET',
  'street_name': 'WEST  163 STREET',
  'cross_street_1': 'WEST  163 STREET',
  'cross_street_2': 'WOODYCREST AVENUE',
  'intersection_street_1': 'WEST  163 STREET',
  'intersection_street_2': 'WOODYCREST AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '04 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004019',
  'y_coordinate_state_plane': '242369',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.831900200234024',
  'longitude': '-73.92856270428858',
  'location': {'latitude': '40.831900200234024',
   'longitude': '-73.92856270428858',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306368',
  'created_date': '2025-03-10T04:57:58.000',
  'closed_date': '2025-03-10T08:01:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10470',
  'incident_address': '4310 KEPLER AVENUE',
  'street_name': 'KEPLER AVENUE',
  'cross_street_1': 'EAST  237 STREET',
  'cross_street_2': 'EAST  238 STREET',
  'intersection_street_1': 'EAST  237 STREET',
  'intersection_street_2': 'EAST  238 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'KEPLER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:01:05.000',
  'community_board': '12 BRONX',
  'bbl': '2033780001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1019952',
  'y_coordinate_state_plane': '266721',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.89868894316991',
  'longitude': '-73.87085751628919',
  'location': {'latitude': '40.89868894316991',
   'longitude': '-73.87085751628919',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316071',
  'created_date': '2025-03-10T04:58:50.000',
  'closed_date': '2025-03-11T15:13:23.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Removal Request',
  'location_type': 'Sidewalk',
  'incident_zip': '10452',
  'incident_address': '90 WEST  164 STREET',
  'street_name': 'WEST  164 STREET',
  'cross_street_1': 'WOODYCREST AVENUE',
  'cross_street_2': 'NELSON AVENUE',
  'intersection_street_1': 'WOODYCREST AVENUE',
  'intersection_street_2': 'NELSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST  164 STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-11T07:09:59.000',
  'community_board': '04 BRONX',
  'bbl': '2025110090',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004090',
  'y_coordinate_state_plane': '242609',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8325587717979',
  'longitude': '-73.92830542885041',
  'location': {'latitude': '40.8325587717979',
   'longitude': '-73.92830542885041',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308581',
  'created_date': '2025-03-10T04:59:00.000',
  'closed_date': '2025-03-11T01:00:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '11215',
  'incident_address': '247 7 STREET',
  'street_name': '7 STREET',
  'cross_street_1': '3 AVE',
  'cross_street_2': '4 AVE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': "The Department of Environmental Protection (DEP) didn't observe a violation of the NYC Air or Noise Code at the time of inspection and couldn't issue a summons.  If the problem still exists, please go to nyc.gov/311 or call 311 to file a new Service Request. If you're outside of New York City, please call (212) NEW-YORK (212-639-9675).",
  'resolution_action_updated_date': '2025-03-11T01:00:00.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3009920049',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987421',
  'y_coordinate_state_plane': '184097',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67197991737195',
  'longitude': '-73.98856874512559',
  'location': {'latitude': '40.67197991737195',
   'longitude': '-73.98856874512559',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314695',
  'created_date': '2025-03-10T04:59:02.000',
  'closed_date': '2025-03-10T05:57:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10460',
  'incident_address': '980 JENNINGS STREET',
  'street_name': 'JENNINGS STREET',
  'cross_street_1': 'BRYANT AVENUE',
  'cross_street_2': 'LONGFELLOW AVENUE',
  'intersection_street_1': 'BRYANT AVENUE',
  'intersection_street_2': 'LONGFELLOW AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'JENNINGS STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T05:57:08.000',
  'community_board': '03 BRONX',
  'bbl': '2029990024',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015256',
  'y_coordinate_state_plane': '242217',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83145070316409',
  'longitude': '-73.88795739869181',
  'location': {'latitude': '40.83145070316409',
   'longitude': '-73.88795739869181',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309847',
  'created_date': '2025-03-10T04:59:15.000',
  'closed_date': '2025-03-11T15:31:52.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10470',
  'incident_address': '707 EAST  242 STREET',
  'street_name': 'EAST  242 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '12 BRONX',
  'bbl': '2051150024',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1025983',
  'y_coordinate_state_plane': '269265',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.905644928726716',
  'longitude': '-73.84902615882892',
  'location': {'latitude': '40.905644928726716',
   'longitude': '-73.84902615882892',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310054',
  'created_date': '2025-03-10T04:59:53.000',
  'closed_date': '2025-03-10T05:43:42.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10463',
  'incident_address': '3075 HEATH AVENUE',
  'street_name': 'HEATH AVENUE',
  'cross_street_1': 'ALBANY CRESCENT',
  'cross_street_2': 'SUMMIT PLACE',
  'intersection_street_1': 'ALBANY CRESCENT',
  'intersection_street_2': 'SUMMIT PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'HEATH AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T05:43:45.000',
  'community_board': '08 BRONX',
  'bbl': '2032610061',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011434',
  'y_coordinate_state_plane': '259036',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87762640571195',
  'longitude': '-73.90170027928347',
  'location': {'latitude': '40.87762640571195',
   'longitude': '-73.90170027928347',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315474',
  'created_date': '2025-03-10T05:00:40.000',
  'closed_date': '2025-03-10T08:50:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11234',
  'incident_address': '1728 EAST   54 STREET',
  'street_name': 'EAST   54 STREET',
  'cross_street_1': 'AVENUE O',
  'cross_street_2': 'FILLMORE AVENUE',
  'intersection_street_1': 'AVENUE O',
  'intersection_street_2': 'FILLMORE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   54 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:50:03.000',
  'community_board': '18 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1005730',
  'y_coordinate_state_plane': '163556',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.615573826010845',
  'longitude': '-73.9226313777324',
  'location': {'latitude': '40.615573826010845',
   'longitude': '-73.9226313777324',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315562',
  'created_date': '2025-03-10T05:00:53.000',
  'closed_date': '2025-03-10T08:35:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11228',
  'incident_address': '71 STREET',
  'street_name': '71 STREET',
  'cross_street_1': '14 AVENUE',
  'cross_street_2': '15 AVENUE',
  'intersection_street_1': '14 AVENUE',
  'intersection_street_2': '15 AVENUE',
  'address_type': 'BLOCKFACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:35:51.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN'},
 {'unique_key': '64308340',
  'created_date': '2025-03-10T05:00:54.000',
  'closed_date': '2025-03-13T17:57:53.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'GENERAL',
  'descriptor': 'CABINET',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11102',
  'incident_address': '30-40 32 STREET',
  'street_name': '32 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '01 QUEENS',
  'bbl': '4006150052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1005995',
  'y_coordinate_state_plane': '218147',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.765412796352464',
  'longitude': '-73.92150066847839',
  'location': {'latitude': '40.765412796352464',
   'longitude': '-73.92150066847839',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309722',
  'created_date': '2025-03-10T05:00:54.000',
  'closed_date': '2025-03-13T17:45:42.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PAINT/PLASTER',
  'descriptor': 'CEILING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11102',
  'incident_address': '30-40 32 STREET',
  'street_name': '32 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '01 QUEENS',
  'bbl': '4006150052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1005995',
  'y_coordinate_state_plane': '218147',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.765412796352464',
  'longitude': '-73.92150066847839',
  'location': {'latitude': '40.765412796352464',
   'longitude': '-73.92150066847839',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309724',
  'created_date': '2025-03-10T05:00:54.000',
  'closed_date': '2025-03-13T17:45:41.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'GENERAL',
  'descriptor': 'VENTILATION SYSTEM',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11102',
  'incident_address': '30-40 32 STREET',
  'street_name': '32 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '01 QUEENS',
  'bbl': '4006150052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1005995',
  'y_coordinate_state_plane': '218147',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.765412796352464',
  'longitude': '-73.92150066847839',
  'location': {'latitude': '40.765412796352464',
   'longitude': '-73.92150066847839',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309725',
  'created_date': '2025-03-10T05:00:54.000',
  'closed_date': '2025-03-13T17:45:41.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PAINT/PLASTER',
  'descriptor': 'RADIATOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11102',
  'incident_address': '30-40 32 STREET',
  'street_name': '32 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development inspected the following conditions. Violations were issued. Information about specific violations is available at www.nyc.gov/hpd',
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '01 QUEENS',
  'bbl': '4006150052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1005995',
  'y_coordinate_state_plane': '218147',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.765412796352464',
  'longitude': '-73.92150066847839',
  'location': {'latitude': '40.765412796352464',
   'longitude': '-73.92150066847839',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309876',
  'created_date': '2025-03-10T05:00:54.000',
  'closed_date': '2025-03-13T17:45:42.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'BATHTUB/SHOWER',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11102',
  'incident_address': '30-40 32 STREET',
  'street_name': '32 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '01 QUEENS',
  'bbl': '4006150052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1005995',
  'y_coordinate_state_plane': '218147',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.765412796352464',
  'longitude': '-73.92150066847839',
  'location': {'latitude': '40.765412796352464',
   'longitude': '-73.92150066847839',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312184',
  'created_date': '2025-03-10T05:00:54.000',
  'closed_date': '2025-03-13T17:57:53.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'DOOR/WINDOW',
  'descriptor': 'DOOR FRAME',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11102',
  'incident_address': '30-40 32 STREET',
  'street_name': '32 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '01 QUEENS',
  'bbl': '4006150052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1005995',
  'y_coordinate_state_plane': '218147',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.765412796352464',
  'longitude': '-73.92150066847839',
  'location': {'latitude': '40.765412796352464',
   'longitude': '-73.92150066847839',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312218',
  'created_date': '2025-03-10T05:00:54.000',
  'closed_date': '2025-03-13T17:57:53.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'FLOORING/STAIRS',
  'descriptor': 'FLOOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11102',
  'incident_address': '30-40 32 STREET',
  'street_name': '32 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '01 QUEENS',
  'bbl': '4006150052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1005995',
  'y_coordinate_state_plane': '218147',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.765412796352464',
  'longitude': '-73.92150066847839',
  'location': {'latitude': '40.765412796352464',
   'longitude': '-73.92150066847839',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313271',
  'created_date': '2025-03-10T05:00:54.000',
  'closed_date': '2025-03-13T17:45:41.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'SAFETY',
  'descriptor': 'WINDOW GUARD BROKEN/MISSING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11102',
  'incident_address': '30-40 32 STREET',
  'street_name': '32 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '01 QUEENS',
  'bbl': '4006150052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1005995',
  'y_coordinate_state_plane': '218147',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.765412796352464',
  'longitude': '-73.92150066847839',
  'location': {'latitude': '40.765412796352464',
   'longitude': '-73.92150066847839',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313509',
  'created_date': '2025-03-10T05:00:54.000',
  'closed_date': '2025-03-13T17:57:53.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'GENERAL',
  'descriptor': 'CABINET',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11102',
  'incident_address': '30-40 32 STREET',
  'street_name': '32 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '01 QUEENS',
  'bbl': '4006150052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1005995',
  'y_coordinate_state_plane': '218147',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.765412796352464',
  'longitude': '-73.92150066847839',
  'location': {'latitude': '40.765412796352464',
   'longitude': '-73.92150066847839',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316105',
  'created_date': '2025-03-10T05:00:54.000',
  'closed_date': '2025-03-13T17:45:42.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'APPLIANCE',
  'descriptor': 'REFRIGERATOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11102',
  'incident_address': '30-40 32 STREET',
  'street_name': '32 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '01 QUEENS',
  'bbl': '4006150052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1005995',
  'y_coordinate_state_plane': '218147',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.765412796352464',
  'longitude': '-73.92150066847839',
  'location': {'latitude': '40.765412796352464',
   'longitude': '-73.92150066847839',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313032',
  'created_date': '2025-03-10T05:01:09.000',
  'closed_date': '2025-03-12T07:37:04.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Chronic Dumping',
  'location_type': 'Sidewalk',
  'incident_zip': '11368',
  'incident_address': '107-17 NORTHERN BOULEVARD',
  'street_name': 'NORTHERN BOULEVARD',
  'cross_street_1': '107 STREET',
  'cross_street_2': '108 STREET',
  'intersection_street_1': '107 STREET',
  'intersection_street_2': '108 STREET',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': 'NORTHERN BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation periodically conducted surveillance at the location and during those times no violations were observed.',
  'resolution_action_updated_date': '2025-03-12T07:37:08.000',
  'community_board': '03 QUEENS',
  'bbl': '4017020058',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1022574',
  'y_coordinate_state_plane': '215398',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75781118274916',
  'longitude': '-73.86166631858694',
  'location': {'latitude': '40.75781118274916',
   'longitude': '-73.86166631858694',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306241',
  'created_date': '2025-03-10T05:01:25.000',
  'closed_date': '2025-03-10T06:17:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10463',
  'incident_address': '3400 CANNON PLACE',
  'street_name': 'CANNON PLACE',
  'cross_street_1': 'GILES PLACE',
  'cross_street_2': 'BEND',
  'intersection_street_1': 'GILES PLACE',
  'intersection_street_2': 'BEND',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CANNON PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T06:17:35.000',
  'community_board': '08 BRONX',
  'bbl': '2032580162',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012468',
  'y_coordinate_state_plane': '259893',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87997535815203',
  'longitude': '-73.89795763818005',
  'location': {'latitude': '40.87997535815203',
   'longitude': '-73.89795763818005',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313591',
  'created_date': '2025-03-10T05:01:34.000',
  'closed_date': '2025-03-10T09:58:01.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10461',
  'incident_address': '3120 WILKINSON AVENUE',
  'street_name': 'WILKINSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '10 BRONX',
  'bbl': '2042380027',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1031673',
  'y_coordinate_state_plane': '249604',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85165293060271',
  'longitude': '-73.82858117650478',
  'location': {'latitude': '40.85165293060271',
   'longitude': '-73.82858117650478',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314558',
  'created_date': '2025-03-10T05:01:42.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Damaged Tree',
  'descriptor': 'Tree Alive - in Poor Condition',
  'location_type': 'Street',
  'incident_zip': '11213',
  'incident_address': '1671 UNION STREET',
  'street_name': 'UNION STREET',
  'cross_street_1': 'TROY AVENUE',
  'cross_street_2': 'SCHENECTADY AVENUE',
  'intersection_street_1': 'TROY AVENUE',
  'intersection_street_2': 'SCHENECTADY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'UNION STREET',
  'status': 'In Progress',
  'resolution_description': 'NYC Parks created a work order for the tree condition and expects to address the issue within 120 days from the date of the tree assessment, barring any weather-related requests.   NYC Parks work priority categories range from Category A through D, with A being the most critical and time-sensitive. We will complete all work in Category A first and address work in lower priority categories in accordance with available resources. For more information about the Tree Risk Management Program, visit the NYC Urban Forest page on the NYC Parks website at nyc.gov/parks/trees.',
  'resolution_action_updated_date': '2025-03-12T11:09:18.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3013950054',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002292',
  'y_coordinate_state_plane': '182668',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66803981614694',
  'longitude': '-73.93496356492368',
  'location': {'latitude': '40.66803981614694',
   'longitude': '-73.93496356492368',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309608',
  'created_date': '2025-03-10T05:02:03.000',
  'closed_date': '2025-03-11T11:26:54.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'ELECTRIC',
  'descriptor': 'NO LIGHTING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '957 WOODYCREST AVENUE',
  'street_name': 'WOODYCREST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2025110068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003936',
  'y_coordinate_state_plane': '242233',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8315271048226',
  'longitude': '-73.92886303221528',
  'location': {'latitude': '40.8315271048226',
   'longitude': '-73.92886303221528',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313895',
  'created_date': '2025-03-10T05:02:53.000',
  'closed_date': '2025-03-10T09:04:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Unauthorized Bus Layover',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11210',
  'incident_address': '2601 GLENWOOD ROAD',
  'street_name': 'GLENWOOD ROAD',
  'cross_street_1': 'EAST   26 STREET',
  'cross_street_2': 'AMERSFORT PLACE',
  'intersection_street_1': 'EAST   26 STREET',
  'intersection_street_2': 'AMERSFORT PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GLENWOOD ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T09:04:16.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3052470001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997609',
  'y_coordinate_state_plane': '170101',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.633554443130755',
  'longitude': '-73.95186937519672',
  'location': {'latitude': '40.633554443130755',
   'longitude': '-73.95186937519672',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311397',
  'created_date': '2025-03-10T05:03:29.000',
  'closed_date': '2025-03-10T11:29:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10034',
  'incident_address': '3884 9 AVENUE',
  'street_name': '9 AVENUE',
  'cross_street_1': 'WEST  207 STREET',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'WEST  207 STREET',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '9 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T11:29:25.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021890001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1007306',
  'y_coordinate_state_plane': '254169',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86427973540261',
  'longitude': '-73.91664422570291',
  'location': {'latitude': '40.86427973540261',
   'longitude': '-73.91664422570291',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308871',
  'created_date': '2025-03-10T05:04:20.000',
  'closed_date': '2025-03-10T05:04:20.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Boilers',
  'descriptor': 'Boiler - Defective/Inoperative/No Permit',
  'incident_zip': '10452',
  'incident_address': '957 WOODYCREST AVENUE',
  'street_name': 'WOODYCREST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'facility_type': 'N/A',
  'status': 'Open',
  'resolution_description': 'Your Service Request has been submitted to the Department of Buildings.  Please check back later for status.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2025110068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003936',
  'y_coordinate_state_plane': '242233',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8315271048226',
  'longitude': '-73.92886303221528',
  'location': {'latitude': '40.8315271048226',
   'longitude': '-73.92886303221528',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308181',
  'created_date': '2025-03-10T05:04:24.000',
  'closed_date': '2025-03-10T05:56:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10460',
  'incident_address': '980 JENNINGS STREET',
  'street_name': 'JENNINGS STREET',
  'cross_street_1': 'BRYANT AVENUE',
  'cross_street_2': 'LONGFELLOW AVENUE',
  'intersection_street_1': 'BRYANT AVENUE',
  'intersection_street_2': 'LONGFELLOW AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'JENNINGS STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T05:56:46.000',
  'community_board': '03 BRONX',
  'bbl': '2029990024',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015256',
  'y_coordinate_state_plane': '242217',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83145070316409',
  'longitude': '-73.88795739869181',
  'location': {'latitude': '40.83145070316409',
   'longitude': '-73.88795739869181',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315529',
  'created_date': '2025-03-10T05:05:29.000',
  'closed_date': '2025-03-10T06:51:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10471',
  'incident_address': '5535 NETHERLAND AVENUE',
  'street_name': 'NETHERLAND AVENUE',
  'cross_street_1': 'BEND',
  'cross_street_2': 'WEST  256 STREET',
  'intersection_street_1': 'BEND',
  'intersection_street_2': 'WEST  256 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'NETHERLAND AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T06:51:26.000',
  'community_board': '08 BRONX',
  'bbl': '2059500430',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010114',
  'y_coordinate_state_plane': '268519',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.903658196293335',
  'longitude': '-73.90643688418457',
  'location': {'latitude': '40.903658196293335',
   'longitude': '-73.90643688418457',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306779',
  'created_date': '2025-03-10T05:05:30.000',
  'closed_date': '2025-03-10T11:47:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10452',
  'incident_address': '957 WOODYCREST AVENUE',
  'street_name': 'WOODYCREST AVENUE',
  'cross_street_1': 'WEST  162 STREET',
  'cross_street_2': 'WEST  163 STREET',
  'intersection_street_1': 'WEST  162 STREET',
  'intersection_street_2': 'WEST  163 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WOODYCREST AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T11:47:57.000',
  'community_board': '04 BRONX',
  'bbl': '2025110068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003936',
  'y_coordinate_state_plane': '242233',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8315271048226',
  'longitude': '-73.92886303221528',
  'location': {'latitude': '40.8315271048226',
   'longitude': '-73.92886303221528',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309639',
  'created_date': '2025-03-10T05:05:34.000',
  'closed_date': '2025-03-10T13:19:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10456',
  'incident_address': '1162 SHERIDAN AVENUE',
  'street_name': 'SHERIDAN AVENUE',
  'cross_street_1': 'MCCLELLAN STREET',
  'cross_street_2': 'EAST  167 STREET',
  'intersection_street_1': 'MCCLELLAN STREET',
  'intersection_street_2': 'EAST  167 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'SHERIDAN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T13:19:48.000',
  'community_board': '04 BRONX',
  'bbl': '2024560214',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007114',
  'y_coordinate_state_plane': '242767',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83298512522835',
  'longitude': '-73.91737725609177',
  'location': {'latitude': '40.83298512522835',
   'longitude': '-73.91737725609177',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314727',
  'created_date': '2025-03-10T05:05:39.000',
  'closed_date': '2025-03-10T05:36:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10462',
  'incident_address': '2059 ST RAYMOND AVENUE',
  'street_name': 'ST RAYMOND AVENUE',
  'cross_street_1': 'OLMSTEAD AVENUE',
  'cross_street_2': 'ODELL STREET',
  'intersection_street_1': 'OLMSTEAD AVENUE',
  'intersection_street_2': 'ODELL STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ST RAYMOND AVENUE',
  'status': 'Closed',
  'resolution_description': "This complaint does not fall under the Police Department's jurisdiction.",
  'resolution_action_updated_date': '2025-03-10T05:36:34.000',
  'community_board': '09 BRONX',
  'bbl': '2039437501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024309',
  'y_coordinate_state_plane': '244433',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8374965535623',
  'longitude': '-73.85523049527997',
  'location': {'latitude': '40.8374965535623',
   'longitude': '-73.85523049527997',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310265',
  'created_date': '2025-03-10T05:05:47.000',
  'closed_date': '2025-03-10T07:15:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10472',
  'incident_address': '2120 CHATTERTON AVENUE',
  'street_name': 'CHATTERTON AVENUE',
  'cross_street_1': 'OLMSTEAD AVENUE',
  'cross_street_2': 'CASTLE HILL AVENUE',
  'intersection_street_1': 'OLMSTEAD AVENUE',
  'intersection_street_2': 'CASTLE HILL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CHATTERTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T07:15:48.000',
  'community_board': '09 BRONX',
  'bbl': '2038060018',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1025108',
  'y_coordinate_state_plane': '240986',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'SUV',
  'latitude': '40.828031883469045',
  'longitude': '-73.85236398410798',
  'location': {'latitude': '40.828031883469045',
   'longitude': '-73.85236398410798',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312798',
  'created_date': '2025-03-10T05:06:03.000',
  'closed_date': '2025-03-10T06:51:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10471',
  'incident_address': '548 WEST  256 STREET',
  'street_name': 'WEST  256 STREET',
  'cross_street_1': 'RIVERDALE AVENUE',
  'cross_street_2': 'NETHERLAND AVENUE',
  'intersection_street_1': 'RIVERDALE AVENUE',
  'intersection_street_2': 'NETHERLAND AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST  256 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T06:51:51.000',
  'community_board': '08 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010225',
  'y_coordinate_state_plane': '268746',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.90428091154132',
  'longitude': '-73.90603446070851',
  'location': {'latitude': '40.90428091154132',
   'longitude': '-73.90603446070851',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312137',
  'created_date': '2025-03-10T05:07:20.000',
  'closed_date': '2025-03-10T05:15:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11369',
  'incident_address': '24-19 98 STREET',
  'street_name': '98 STREET',
  'cross_street_1': '24 AVENUE',
  'cross_street_2': '25 AVENUE',
  'intersection_street_1': '24 AVENUE',
  'intersection_street_2': '25 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': '98 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T05:15:41.000',
  'community_board': '03 QUEENS',
  'bbl': '4011090048',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1019716',
  'y_coordinate_state_plane': '218287',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76575266283668',
  'longitude': '-73.8719672514411',
  'location': {'latitude': '40.76575266283668',
   'longitude': '-73.8719672514411',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316181',
  'created_date': '2025-03-10T05:08:05.000',
  'closed_date': '2025-03-10T06:04:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10019',
  'incident_address': '15 WEST   53 STREET',
  'street_name': 'WEST   53 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'AVENUE OF THE AMERICAS',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'AVENUE OF THE AMERICAS',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   53 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T06:05:44.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1012697501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990544',
  'y_coordinate_state_plane': '216544',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.7610374767395',
  'longitude': '-73.97728018962987',
  'location': {'latitude': '40.7610374767395',
   'longitude': '-73.97728018962987',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312039',
  'created_date': '2025-03-10T05:08:07.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Subway',
  'address_type': 'ADDRESS',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team went to the location provided but could not find the individual that you reported.',
  'resolution_action_updated_date': '2025-03-11T08:07:04.000',
  'community_board': 'Unspecified QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1000087',
  'y_coordinate_state_plane': '214058',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'bridge_highway_name': 'F',
  'bridge_highway_segment': 'Mezzanine',
  'latitude': '40.754202099104',
  'longitude': '-73.94283814161533',
  'location': {'latitude': '40.754202099104',
   'longitude': '-73.94283814161533',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315979',
  'created_date': '2025-03-10T05:08:20.000',
  'closed_date': '2025-03-10T05:28:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11249',
  'incident_address': '75 WILSON STREET',
  'street_name': 'WILSON STREET',
  'cross_street_1': 'WYTHE PLACE',
  'cross_street_2': 'BEDFORD AVENUE',
  'intersection_street_1': 'WYTHE PLACE',
  'intersection_street_2': 'BEDFORD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WILSON STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T05:28:57.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3021760001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994234',
  'y_coordinate_state_plane': '195909',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.704396080630595',
  'longitude': '-73.96399080765072',
  'location': {'latitude': '40.704396080630595',
   'longitude': '-73.96399080765072',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307728',
  'created_date': '2025-03-10T05:08:41.000',
  'closed_date': '2025-03-10T06:36:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11218',
  'incident_address': '3803 FT HAMILTON PARKWAY',
  'street_name': 'FT HAMILTON PARKWAY',
  'cross_street_1': '38 STREET',
  'cross_street_2': '39 STREET',
  'intersection_street_1': '38 STREET',
  'intersection_street_2': '39 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FORT HAMILTON PARKWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T06:36:45.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3052900035',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987056',
  'y_coordinate_state_plane': '173743',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.643560584226485',
  'longitude': '-73.98988885547509',
  'location': {'latitude': '40.643560584226485',
   'longitude': '-73.98988885547509',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307478',
  'created_date': '2025-03-10T05:09:11.000',
  'closed_date': '2025-03-11T00:00:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Graffiti',
  'descriptor': 'Graffiti',
  'location_type': 'Comercial',
  'incident_zip': '11206',
  'incident_address': '18 GRAHAM AVENUE',
  'street_name': 'GRAHAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'due_date': '2025-04-09T05:09:11.000',
  'resolution_description': 'The City inspected the property for cleaning, but no graffiti was found.',
  'resolution_action_updated_date': '2025-03-12T06:16:12.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3031270008',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000268',
  'y_coordinate_state_plane': '194810',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.7013707186618',
  'longitude': '-73.94223065972913',
  'location': {'latitude': '40.7013707186618',
   'longitude': '-73.94223065972913',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316160',
  'created_date': '2025-03-10T05:09:33.000',
  'closed_date': '2025-03-10T05:28:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11249',
  'incident_address': '75 WILSON STREET',
  'street_name': 'WILSON STREET',
  'cross_street_1': 'WYTHE PLACE',
  'cross_street_2': 'BEDFORD AVENUE',
  'intersection_street_1': 'WYTHE PLACE',
  'intersection_street_2': 'BEDFORD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WILSON STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T05:28:39.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3021760001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994234',
  'y_coordinate_state_plane': '195909',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.704396080630595',
  'longitude': '-73.96399080765072',
  'location': {'latitude': '40.704396080630595',
   'longitude': '-73.96399080765072',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306941',
  'created_date': '2025-03-10T05:10:18.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'APPLIANCE',
  'descriptor': 'ELECTRIC/GAS RANGE',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10034',
  'incident_address': '686 ACADEMY STREET',
  'street_name': 'ACADEMY STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022370041',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004833',
  'y_coordinate_state_plane': '255239',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86722267218133',
  'longitude': '-73.92558172365244',
  'location': {'latitude': '40.86722267218133',
   'longitude': '-73.92558172365244',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306979',
  'created_date': '2025-03-10T05:10:18.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'FLOORING/STAIRS',
  'descriptor': 'FLOOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10034',
  'incident_address': '686 ACADEMY STREET',
  'street_name': 'ACADEMY STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022370041',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004833',
  'y_coordinate_state_plane': '255239',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86722267218133',
  'longitude': '-73.92558172365244',
  'location': {'latitude': '40.86722267218133',
   'longitude': '-73.92558172365244',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307159',
  'created_date': '2025-03-10T05:10:18.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10034',
  'incident_address': '686 ACADEMY STREET',
  'street_name': 'ACADEMY STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022370041',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004833',
  'y_coordinate_state_plane': '255239',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86722267218133',
  'longitude': '-73.92558172365244',
  'location': {'latitude': '40.86722267218133',
   'longitude': '-73.92558172365244',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308201',
  'created_date': '2025-03-10T05:10:18.000',
  'closed_date': '2025-03-10T05:29:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11201',
  'incident_address': '177 SANDS STREET',
  'street_name': 'SANDS STREET',
  'cross_street_1': 'BQE WESTBOUND ENTRANCE SANDS ST',
  'cross_street_2': 'BIKE PATH',
  'intersection_street_1': 'BQE WESTBOUND ENTRANCE SANDS ST',
  'intersection_street_2': 'BIKE PATH',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SANDS STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T05:29:29.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3000680001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988793',
  'y_coordinate_state_plane': '194233',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.699800319891985',
  'longitude': '-73.98361593748928',
  'location': {'latitude': '40.699800319891985',
   'longitude': '-73.98361593748928',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308545',
  'created_date': '2025-03-10T05:10:18.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'MOLD',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10034',
  'incident_address': '686 ACADEMY STREET',
  'street_name': 'ACADEMY STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022370041',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004833',
  'y_coordinate_state_plane': '255239',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86722267218133',
  'longitude': '-73.92558172365244',
  'location': {'latitude': '40.86722267218133',
   'longitude': '-73.92558172365244',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316223',
  'created_date': '2025-03-10T05:10:18.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'ELECTRIC',
  'descriptor': 'OUTLET/SWITCH',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10034',
  'incident_address': '686 ACADEMY STREET',
  'street_name': 'ACADEMY STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022370041',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004833',
  'y_coordinate_state_plane': '255239',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86722267218133',
  'longitude': '-73.92558172365244',
  'location': {'latitude': '40.86722267218133',
   'longitude': '-73.92558172365244',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316361',
  'created_date': '2025-03-10T05:10:18.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PAINT/PLASTER',
  'descriptor': 'WALL',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10034',
  'incident_address': '686 ACADEMY STREET',
  'street_name': 'ACADEMY STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022370041',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004833',
  'y_coordinate_state_plane': '255239',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86722267218133',
  'longitude': '-73.92558172365244',
  'location': {'latitude': '40.86722267218133',
   'longitude': '-73.92558172365244',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314497',
  'created_date': '2025-03-10T05:10:28.000',
  'closed_date': '2025-03-10T08:28:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11419',
  'incident_address': '107-48 132 STREET',
  'street_name': '132 STREET',
  'cross_street_1': '107 AVENUE',
  'cross_street_2': '109 AVENUE',
  'intersection_street_1': '107 AVENUE',
  'intersection_street_2': '109 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': '132 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:28:30.000',
  'community_board': '10 QUEENS',
  'bbl': '4096110031',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036293',
  'y_coordinate_state_plane': '189668',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68711861193038',
  'longitude': '-73.8123455325584',
  'location': {'latitude': '40.68711861193038',
   'longitude': '-73.8123455325584',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311127',
  'created_date': '2025-03-10T05:10:52.000',
  'closed_date': '2025-03-10T09:26:27.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10471',
  'incident_address': '215 WEST  242 STREET',
  'street_name': 'WEST  242 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '08 BRONX',
  'bbl': '2058011054',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012162',
  'y_coordinate_state_plane': '263386',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88956351662188',
  'longitude': '-73.8990496421183',
  'location': {'latitude': '40.88956351662188',
   'longitude': '-73.8990496421183',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306134',
  'created_date': '2025-03-10T05:10:54.000',
  'closed_date': '2025-03-10T06:17:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Paper License Plates',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11435',
  'incident_address': '107-62 REMINGTON STREET',
  'street_name': 'REMINGTON STREET',
  'cross_street_1': 'LUX ROAD',
  'cross_street_2': 'LAKEWOOD AVENUE',
  'intersection_street_1': 'LUX ROAD',
  'intersection_street_2': 'LAKEWOOD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'REMINGTON STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T06:17:32.000',
  'community_board': '12 QUEENS',
  'bbl': '4100700143',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1038344',
  'y_coordinate_state_plane': '190322',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.688901389951354',
  'longitude': '-73.80494489574812',
  'location': {'latitude': '40.688901389951354',
   'longitude': '-73.80494489574812',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310948',
  'created_date': '2025-03-10T05:10:59.000',
  'closed_date': '2025-03-10T05:29:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11201',
  'incident_address': '177 SANDS STREET',
  'street_name': 'SANDS STREET',
  'cross_street_1': 'BQE WESTBOUND ENTRANCE SANDS ST',
  'cross_street_2': 'BIKE PATH',
  'intersection_street_1': 'BQE WESTBOUND ENTRANCE SANDS ST',
  'intersection_street_2': 'BIKE PATH',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SANDS STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T05:29:58.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3000680001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988793',
  'y_coordinate_state_plane': '194233',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.699800319891985',
  'longitude': '-73.98361593748928',
  'location': {'latitude': '40.699800319891985',
   'longitude': '-73.98361593748928',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314803',
  'created_date': '2025-03-10T05:11:46.000',
  'closed_date': '2025-03-10T11:48:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10452',
  'incident_address': '957 WOODYCREST AVENUE',
  'street_name': 'WOODYCREST AVENUE',
  'cross_street_1': 'WEST  162 STREET',
  'cross_street_2': 'WEST  163 STREET',
  'intersection_street_1': 'WEST  162 STREET',
  'intersection_street_2': 'WEST  163 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WOODYCREST AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T11:48:21.000',
  'community_board': '04 BRONX',
  'bbl': '2025110068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003936',
  'y_coordinate_state_plane': '242233',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8315271048226',
  'longitude': '-73.92886303221528',
  'location': {'latitude': '40.8315271048226',
   'longitude': '-73.92886303221528',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311888',
  'created_date': '2025-03-10T05:12:23.000',
  'closed_date': '2025-03-10T12:36:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11101',
  'intersection_street_1': 'QUEENS PLAZA',
  'intersection_street_2': 'QUEENS BOULEVARD',
  'address_type': 'INTERSECTION',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected this complaint and repaired the problem.',
  'resolution_action_updated_date': '2025-03-10T12:36:00.000',
  'community_board': '02 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1001596',
  'y_coordinate_state_plane': '212133',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74891563083155',
  'longitude': '-73.93739654434637',
  'location': {'latitude': '40.74891563083155',
   'longitude': '-73.93739654434637',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307316',
  'created_date': '2025-03-10T05:13:03.000',
  'closed_date': '2025-03-10T05:33:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Panhandling',
  'descriptor': 'N/A',
  'location_type': 'Subway',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T05:33:29.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002091',
  'y_coordinate_state_plane': '193294',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'bridge_highway_name': 'J',
  'bridge_highway_segment': 'Entrance',
  'latitude': '40.69720616598545',
  'longitude': '-73.93565998016544',
  'location': {'latitude': '40.69720616598545',
   'longitude': '-73.93565998016544',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313564',
  'created_date': '2025-03-10T05:13:12.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10454',
  'incident_address': '521 EAST  145 STREET',
  'street_name': 'EAST  145 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '01 BRONX',
  'bbl': '2022720038',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007587',
  'y_coordinate_state_plane': '235145',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.812063665451184',
  'longitude': '-73.91569450379949',
  'location': {'latitude': '40.812063665451184',
   'longitude': '-73.91569450379949',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307613',
  'created_date': '2025-03-10T05:13:22.000',
  'closed_date': '2025-03-10T06:46:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '11226',
  'incident_address': '287 LINDEN BOULEVARD',
  'street_name': 'LINDEN BOULEVARD',
  'cross_street_1': 'NOSTRAND AVENUE',
  'cross_street_2': 'NEW YORK AVENUE',
  'intersection_street_1': 'NOSTRAND AVENUE',
  'intersection_street_2': 'NEW YORK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LINDEN BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2025-03-10T06:46:59.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3048530090',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998557',
  'y_coordinate_state_plane': '177085',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.652722537752325',
  'longitude': '-73.9484390524703',
  'location': {'latitude': '40.652722537752325',
   'longitude': '-73.9484390524703',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315206',
  'created_date': '2025-03-10T05:13:27.000',
  'closed_date': '2025-03-10T05:51:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11365',
  'incident_address': '71-44 160 STREET',
  'street_name': '160 STREET',
  'cross_street_1': 'PARK AVENUE',
  'cross_street_2': '72 AVENUE',
  'intersection_street_1': 'PARK AVENUE',
  'intersection_street_2': '72 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FRESH MEADOWS',
  'landmark': '160 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T05:51:30.000',
  'community_board': '08 QUEENS',
  'bbl': '4067980084',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037170',
  'y_coordinate_state_plane': '204777',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72858394471258',
  'longitude': '-73.80906454423807',
  'location': {'latitude': '40.72858394471258',
   'longitude': '-73.80906454423807',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313548',
  'created_date': '2025-03-10T05:13:33.000',
  'closed_date': '2025-03-10T05:52:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11218',
  'incident_address': '113 CLARA STREET',
  'street_name': 'CLARA STREET',
  'cross_street_1': 'CHESTER AVENUE',
  'cross_street_2': '36 STREET',
  'intersection_street_1': 'CHESTER AVENUE',
  'intersection_street_2': '36 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CLARA STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T05:52:51.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3053100007',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988644',
  'y_coordinate_state_plane': '173512',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64292589342707',
  'longitude': '-73.98416680449647',
  'location': {'latitude': '40.64292589342707',
   'longitude': '-73.98416680449647',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309382',
  'created_date': '2025-03-10T05:13:53.000',
  'closed_date': '2025-03-13T15:03:42.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Removal Request',
  'location_type': 'Sidewalk',
  'incident_zip': '11238',
  'incident_address': '581 PARK PLACE',
  'street_name': 'PARK PLACE',
  'cross_street_1': 'CLASSON AVENUE',
  'cross_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'intersection_street_1': 'CLASSON AVENUE',
  'intersection_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PARK PLACE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation cleaned the location.',
  'resolution_action_updated_date': '2025-03-10T20:11:05.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011630081',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995700',
  'y_coordinate_state_plane': '185052',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67459434104121',
  'longitude': '-73.95872185314518',
  'location': {'latitude': '40.67459434104121',
   'longitude': '-73.95872185314518',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312060',
  'created_date': '2025-03-10T05:14:21.000',
  'closed_date': '2025-03-10T10:14:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10034',
  'incident_address': '204 SHERMAN AVENUE',
  'street_name': 'SHERMAN AVENUE',
  'cross_street_1': 'WEST  204 STREET',
  'cross_street_2': 'WEST  207 STREET',
  'intersection_street_1': 'WEST  204 STREET',
  'intersection_street_2': 'WEST  207 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'SHERMAN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2025-03-10T10:14:12.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022260035',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1006080',
  'y_coordinate_state_plane': '254579',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8654081776248',
  'longitude': '-73.92107532086888',
  'location': {'latitude': '40.8654081776248',
   'longitude': '-73.92107532086888',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311395',
  'created_date': '2025-03-10T05:15:04.000',
  'closed_date': '2025-03-10T06:27:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11354',
  'incident_address': '34-02 149 PLACE',
  'street_name': '149 PLACE',
  'cross_street_1': '34 AVENUE',
  'cross_street_2': '35 AVENUE',
  'intersection_street_1': '34 AVENUE',
  'intersection_street_2': '35 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '149 PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T06:27:29.000',
  'community_board': '07 QUEENS',
  'bbl': '4049980022',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035084',
  'y_coordinate_state_plane': '218926',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.767431538774666',
  'longitude': '-73.81648386479573',
  'location': {'latitude': '40.767431538774666',
   'longitude': '-73.81648386479573',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312945',
  'created_date': '2025-03-10T05:15:12.000',
  'closed_date': '2025-03-10T08:59:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '184 BAY   26 STREET',
  'street_name': 'BAY   26 STREET',
  'cross_street_1': 'BATH AVENUE',
  'cross_street_2': 'CROPSEY AVENUE',
  'intersection_street_1': 'BATH AVENUE',
  'intersection_street_2': 'CROPSEY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAY   26 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:59:07.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3064430042',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984053',
  'y_coordinate_state_plane': '157861',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59996825172298',
  'longitude': '-74.00070940662158',
  'location': {'latitude': '40.59996825172298',
   'longitude': '-74.00070940662158',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311281',
  'created_date': '2025-03-10T05:15:27.000',
  'closed_date': '2025-03-10T06:16:39.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper Use',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11414',
  'incident_address': '155-03 79 STREET',
  'street_name': '79 STREET',
  'cross_street_1': '155 AVENUE',
  'cross_street_2': '156 AVENUE',
  'intersection_street_1': '155 AVENUE',
  'intersection_street_2': '156 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'HOWARD BEACH',
  'landmark': '79 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T06:16:45.000',
  'community_board': '10 QUEENS',
  'bbl': '4114590001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024589',
  'y_coordinate_state_plane': '181113',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.663698177350994',
  'longitude': '-73.85459843920157',
  'location': {'latitude': '40.663698177350994',
   'longitude': '-73.85459843920157',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309514',
  'created_date': '2025-03-10T05:15:50.000',
  'closed_date': '2025-03-10T06:57:24.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10039',
  'incident_address': '301 WEST  151 STREET',
  'street_name': 'WEST  151 STREET',
  'cross_street_1': 'FREDERICK DOUGLASS BOULEVARD',
  'cross_street_2': 'BRADHURST AVENUE',
  'intersection_street_1': 'FREDERICK DOUGLASS BOULEVARD',
  'intersection_street_2': 'BRADHURST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  151 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T06:57:30.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020460028',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001051',
  'y_coordinate_state_plane': '240470',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82669413470208',
  'longitude': '-73.93929262667247',
  'location': {'latitude': '40.82669413470208',
   'longitude': '-73.93929262667247',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307866',
  'created_date': '2025-03-10T05:16:20.000',
  'closed_date': '2025-03-10T07:46:16.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Rodent',
  'descriptor': 'Rat Sighting',
  'location_type': '3+ Family Apt. Building',
  'incident_zip': '10452',
  'incident_address': '957 WOODYCREST AVENUE',
  'street_name': 'WOODYCREST AVENUE',
  'cross_street_1': 'WEST 162 STREET',
  'cross_street_2': 'WEST 163 STREET',
  'intersection_street_1': 'WEST  162 STREET',
  'intersection_street_2': 'WEST  163 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WOODYCREST AVENUE',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'This service request was closed because the Department of Health and Mental Hygiene received an earlier complaint about the same location.  You can find inspection results for this address by going to the online Rat Portal at www.nyc.gov/rats.',
  'resolution_action_updated_date': '2025-03-10T05:16:20.000',
  'community_board': '04 BRONX',
  'bbl': '2025110068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003936',
  'y_coordinate_state_plane': '242233',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8315271048226',
  'longitude': '-73.92886303221528',
  'location': {'latitude': '40.8315271048226',
   'longitude': '-73.92886303221528',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311102',
  'created_date': '2025-03-10T05:16:42.000',
  'closed_date': '2025-03-11T14:56:15.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'WATER SUPPLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '35 CLARKE PLACE EAST',
  'street_name': 'CLARKE PLACE EAST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2028400022',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007006',
  'y_coordinate_state_plane': '244558',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8379011793687',
  'longitude': '-73.91776145510242',
  'location': {'latitude': '40.8379011793687',
   'longitude': '-73.91776145510242',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311116',
  'created_date': '2025-03-10T05:16:42.000',
  'closed_date': '2025-03-11T14:56:16.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '35 CLARKE PLACE EAST',
  'street_name': 'CLARKE PLACE EAST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2028400022',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007006',
  'y_coordinate_state_plane': '244558',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8379011793687',
  'longitude': '-73.91776145510242',
  'location': {'latitude': '40.8379011793687',
   'longitude': '-73.91776145510242',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316306',
  'created_date': '2025-03-10T05:16:42.000',
  'closed_date': '2025-03-11T14:56:15.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'WATER SUPPLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '35 CLARKE PLACE EAST',
  'street_name': 'CLARKE PLACE EAST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2028400022',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007006',
  'y_coordinate_state_plane': '244558',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8379011793687',
  'longitude': '-73.91776145510242',
  'location': {'latitude': '40.8379011793687',
   'longitude': '-73.91776145510242',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314809',
  'created_date': '2025-03-10T05:17:07.000',
  'closed_date': '2025-03-10T05:37:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10035',
  'incident_address': '241 EAST  121 STREET',
  'street_name': 'EAST  121 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '2 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '2 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST  121 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2025-03-10T05:37:34.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1017860018',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001773',
  'y_coordinate_state_plane': '231013',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80073591333251',
  'longitude': '-73.93670850084222',
  'location': {'latitude': '40.80073591333251',
   'longitude': '-73.93670850084222',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307616',
  'created_date': '2025-03-10T05:17:13.000',
  'closed_date': '2025-03-10T09:31:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10462',
  'incident_address': '2152 MULINER AVENUE',
  'street_name': 'MULINER AVENUE',
  'cross_street_1': 'LYDIG AVENUE',
  'cross_street_2': 'PELHAM PARKWAY SOUTH',
  'intersection_street_1': 'LYDIG AVENUE',
  'intersection_street_2': 'PELHAM PARKWAY SOUTH',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MULINER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T09:31:18.000',
  'community_board': '11 BRONX',
  'bbl': '2043240016',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022440',
  'y_coordinate_state_plane': '251040',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85563908210871',
  'longitude': '-73.86194724608197',
  'location': {'latitude': '40.85563908210871',
   'longitude': '-73.86194724608197',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309546',
  'created_date': '2025-03-10T05:17:24.000',
  'closed_date': '2025-03-10T05:54:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11385',
  'incident_address': '1723 HARMAN STREET',
  'street_name': 'HARMAN STREET',
  'cross_street_1': 'CYPRESS AVENUE',
  'cross_street_2': 'SENECA AVENUE',
  'intersection_street_1': 'CYPRESS AVENUE',
  'intersection_street_2': 'SENECA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'HARMAN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T05:54:57.000',
  'community_board': '05 QUEENS',
  'bbl': '4034320058',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008182',
  'y_coordinate_state_plane': '196175',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70509945699176',
  'longitude': '-73.91368377410855',
  'location': {'latitude': '40.70509945699176',
   'longitude': '-73.91368377410855',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314161',
  'created_date': '2025-03-10T05:17:59.000',
  'closed_date': '2025-03-10T05:37:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10312',
  'incident_address': '44 MYRNA LANE',
  'street_name': 'MYRNA LANE',
  'cross_street_1': 'LISA LANE',
  'cross_street_2': 'EBEY LANE',
  'intersection_street_1': 'LISA LANE',
  'intersection_street_2': 'EBEY LANE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'MYRNA LANE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T05:37:16.000',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5060240223',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '929268',
  'y_coordinate_state_plane': '139295',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'vehicle_type': 'SUV',
  'latitude': '40.54883780145036',
  'longitude': '-74.19784153156888',
  'location': {'latitude': '40.54883780145036',
   'longitude': '-74.19784153156888',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309349',
  'created_date': '2025-03-10T05:19:21.000',
  'closed_date': '2025-03-10T05:19:21.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Rodent',
  'descriptor': 'Rat Sighting',
  'location_type': '3+ Family Mixed Use Building',
  'incident_zip': '10470',
  'incident_address': '4429 CARPENTER AVENUE',
  'street_name': 'CARPENTER AVENUE',
  'cross_street_1': 'NEREID AVENUE',
  'cross_street_2': 'EAST 239 STREET',
  'intersection_street_1': 'NEREID AVENUE',
  'intersection_street_2': 'EAST  239 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CARPENTER AVENUE',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Health and Mental Hygiene found violations on the property you reported. Follow-up inspections will be scheduled.',
  'resolution_action_updated_date': '2025-03-13T11:20:38.000',
  'community_board': '12 BRONX',
  'bbl': '2050660056',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023911',
  'y_coordinate_state_plane': '267242',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.90010201132255',
  'longitude': '-73.85653382517042',
  'location': {'latitude': '40.90010201132255',
   'longitude': '-73.85653382517042',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314185',
  'created_date': '2025-03-10T05:19:31.000',
  'closed_date': '2025-03-10T05:55:20.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10463',
  'incident_address': '67 STEVENSON PLACE',
  'street_name': 'STEVENSON PLACE',
  'cross_street_1': 'BEND',
  'cross_street_2': 'SEDGWICK AVENUE',
  'intersection_street_1': 'BEND',
  'intersection_street_2': 'SEDGWICK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'STEVENSON PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T05:55:22.000',
  'community_board': '08 BRONX',
  'bbl': '2032460076',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013437',
  'y_coordinate_state_plane': '260789',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88243144617686',
  'longitude': '-73.89444962474693',
  'location': {'latitude': '40.88243144617686',
   'longitude': '-73.89444962474693',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311004',
  'created_date': '2025-03-10T05:19:37.000',
  'closed_date': '2025-03-10T15:38:02.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10467',
  'incident_address': '3544 WAYNE AVENUE',
  'street_name': 'WAYNE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "The Department of Housing Preservation and Development conducted or attempted to conduct an inspection.  More information about inspection results can be found through HPD's website at www.nyc.gov/hpd by using HPDONLINE (enter your address on the home page) and entering your SR number under the complaint status option.",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '07 BRONX',
  'bbl': '2033440056',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1018153',
  'y_coordinate_state_plane': '260374',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88127554468646',
  'longitude': '-73.87739704460235',
  'location': {'latitude': '40.88127554468646',
   'longitude': '-73.87739704460235',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309704',
  'created_date': '2025-03-10T05:19:54.000',
  'closed_date': '2025-03-10T15:38:02.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10467',
  'incident_address': '3544 WAYNE AVENUE',
  'street_name': 'WAYNE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "The Department of Housing Preservation and Development conducted or attempted to conduct an inspection.  More information about inspection results can be found through HPD's website at www.nyc.gov/hpd by using HPDONLINE (enter your address on the home page) and entering your SR number under the complaint status option.",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '07 BRONX',
  'bbl': '2033440056',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1018153',
  'y_coordinate_state_plane': '260374',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88127554468646',
  'longitude': '-73.87739704460235',
  'location': {'latitude': '40.88127554468646',
   'longitude': '-73.87739704460235',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308711',
  'created_date': '2025-03-10T05:19:57.000',
  'closed_date': '2025-03-10T09:22:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'License Plate Obscured',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11357',
  'incident_address': '21-17 PARSONS BOULEVARD',
  'street_name': 'PARSONS BOULEVARD',
  'cross_street_1': '21 AVENUE',
  'cross_street_2': '22 AVENUE',
  'intersection_street_1': '21 AVENUE',
  'intersection_street_2': '22 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'WHITESTONE',
  'landmark': 'PARSONS BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T09:22:13.000',
  'community_board': '07 QUEENS',
  'bbl': '4046340005',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033266',
  'y_coordinate_state_plane': '223604',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.780281664096556',
  'longitude': '-73.82301289784321',
  'location': {'latitude': '40.780281664096556',
   'longitude': '-73.82301289784321',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307582',
  'created_date': '2025-03-10T05:20:08.000',
  'closed_date': '2025-03-10T08:28:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11420',
  'incident_address': '131-11 132 STREET',
  'street_name': '132 STREET',
  'cross_street_1': '131 AVENUE',
  'cross_street_2': '133 AVENUE',
  'intersection_street_1': '131 AVENUE',
  'intersection_street_2': '133 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': '132 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:28:53.000',
  'community_board': '10 QUEENS',
  'bbl': '4117770021',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037929',
  'y_coordinate_state_plane': '183615',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67049476708896',
  'longitude': '-73.80649474478385',
  'location': {'latitude': '40.67049476708896',
   'longitude': '-73.80649474478385',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315583',
  'created_date': '2025-03-10T05:21:02.000',
  'closed_date': '2025-03-10T09:18:16.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11228',
  'incident_address': '242 BAY   10 STREET',
  'street_name': 'BAY   10 STREET',
  'cross_street_1': 'CROPSEY AVENUE',
  'cross_street_2': 'INDEPENDENCE AVENUE',
  'intersection_street_1': 'CROPSEY AVENUE',
  'intersection_street_2': 'INDEPENDENCE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAY   10 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T09:18:19.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3064270001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '980294',
  'y_coordinate_state_plane': '159952',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.605706740604845',
  'longitude': '-74.01424697374709',
  'location': {'latitude': '40.605706740604845',
   'longitude': '-74.01424697374709',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315079',
  'created_date': '2025-03-10T05:21:06.000',
  'closed_date': '2025-03-10T05:36:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Panhandling',
  'descriptor': 'N/A',
  'location_type': 'Subway',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T05:36:25.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986905',
  'y_coordinate_state_plane': '207081',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'bridge_highway_name': '4',
  'bridge_highway_segment': 'Mezzanine',
  'latitude': '40.7350657642674',
  'longitude': '-73.99041983091914',
  'location': {'latitude': '40.7350657642674',
   'longitude': '-73.99041983091914',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313557',
  'created_date': '2025-03-10T05:21:47.000',
  'closed_date': '2025-03-10T06:58:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11421',
  'incident_address': '80-31 90 ROAD',
  'street_name': '90 ROAD',
  'cross_street_1': '80 STREET',
  'cross_street_2': '84 STREET',
  'intersection_street_1': '80 STREET',
  'intersection_street_2': '84 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODHAVEN',
  'landmark': '90 ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T06:58:20.000',
  'community_board': '09 QUEENS',
  'bbl': '4089640044',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1023117',
  'y_coordinate_state_plane': '189785',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.687507416772235',
  'longitude': '-73.85985423117774',
  'location': {'latitude': '40.687507416772235',
   'longitude': '-73.85985423117774',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308204',
  'created_date': '2025-03-10T05:22:04.000',
  'closed_date': '2025-03-10T06:16:42.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11210',
  'incident_address': '1996 NOSTRAND AVENUE',
  'street_name': 'NOSTRAND AVENUE',
  'cross_street_1': 'FOSTER AVENUE',
  'cross_street_2': 'FARRAGUT ROAD',
  'intersection_street_1': 'FOSTER AVENUE',
  'intersection_street_2': 'FARRAGUT ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NOSTRAND AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T06:16:45.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3052310056',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998653',
  'y_coordinate_state_plane': '171363',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63701672817101',
  'longitude': '-73.94810529515341',
  'location': {'latitude': '40.63701672817101',
   'longitude': '-73.94810529515341',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311126',
  'created_date': '2025-03-10T05:22:31.000',
  'closed_date': '2025-03-10T15:38:02.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10467',
  'incident_address': '3544 WAYNE AVENUE',
  'street_name': 'WAYNE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "The Department of Housing Preservation and Development conducted or attempted to conduct an inspection.  More information about inspection results can be found through HPD's website at www.nyc.gov/hpd by using HPDONLINE (enter your address on the home page) and entering your SR number under the complaint status option.",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '07 BRONX',
  'bbl': '2033440056',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1018153',
  'y_coordinate_state_plane': '260374',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88127554468646',
  'longitude': '-73.87739704460235',
  'location': {'latitude': '40.88127554468646',
   'longitude': '-73.87739704460235',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314014',
  'created_date': '2025-03-10T05:22:48.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Sidewalk Condition',
  'descriptor': 'Broken Sidewalk',
  'location_type': 'Sidewalk',
  'incident_zip': '10464',
  'incident_address': '191 SCHOFIELD STREET',
  'street_name': 'SCHOFIELD STREET',
  'cross_street_1': 'CITY ISLAND AVENUE',
  'cross_street_2': 'LANDING WAY',
  'intersection_street_1': 'CITY ISLAND AVENUE',
  'intersection_street_2': 'LANDING WAY',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'SCHOFIELD STREET',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2056420103',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1043946',
  'y_coordinate_state_plane': '247366',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8454358504074',
  'longitude': '-73.78423833334247',
  'location': {'latitude': '40.8454358504074',
   'longitude': '-73.78423833334247',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308499',
  'created_date': '2025-03-10T05:23:39.000',
  'closed_date': '2025-03-10T19:30:47.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11385',
  'incident_address': '1713 HARMAN STREET',
  'street_name': 'HARMAN STREET',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'status': 'Closed',
  'resolution_description': "The Department of Housing Preservation and Development conducted or attempted to conduct an inspection.  More information about inspection results can be found through HPD's website at www.nyc.gov/hpd by using HPDONLINE (enter your address on the home page) and entering your SR number under the complaint status option.",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '05 QUEENS',
  'bbl': '4034320068',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008159',
  'y_coordinate_state_plane': '196146',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.705019921035245',
  'longitude': '-73.91376683177621',
  'location': {'latitude': '40.705019921035245',
   'longitude': '-73.91376683177621',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308810',
  'created_date': '2025-03-10T05:24:48.000',
  'closed_date': '2025-03-10T09:18:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11207',
  'incident_address': 'VAN SICLEN AVENUE',
  'street_name': 'VAN SICLEN AVENUE',
  'cross_street_1': 'ARLINGTON AVENUE',
  'cross_street_2': 'VAN SICLEN AVENUE',
  'intersection_street_1': 'ARLINGTON AVENUE',
  'intersection_street_2': 'VAN SICLEN AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T09:18:18.000',
  'community_board': '05 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1014173',
  'y_coordinate_state_plane': '186943',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.679741537688244',
  'longitude': '-73.89211689180948',
  'location': {'latitude': '40.679741537688244',
   'longitude': '-73.89211689180948',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312576',
  'created_date': '2025-03-10T05:24:51.000',
  'closed_date': '2025-03-10T08:29:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11419',
  'incident_address': '104-47 LEFFERTS BOULEVARD',
  'street_name': 'LEFFERTS BOULEVARD',
  'cross_street_1': 'LIBERTY AVENUE',
  'cross_street_2': '107 AVENUE',
  'intersection_street_1': 'LIBERTY AVENUE',
  'intersection_street_2': '107 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': 'LEFFERTS BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:29:21.000',
  'community_board': '10 QUEENS',
  'bbl': '4095730058',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033058',
  'y_coordinate_state_plane': '189229',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68593209037025',
  'longitude': '-73.82401330766655',
  'location': {'latitude': '40.68593209037025',
   'longitude': '-73.82401330766655',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307557',
  'created_date': '2025-03-10T05:25:44.000',
  'closed_date': '2025-03-10T06:27:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11413',
  'incident_address': '130-27 SPRINGFIELD BOULEVARD',
  'street_name': 'SPRINGFIELD BOULEVARD',
  'cross_street_1': '130 AVENUE',
  'cross_street_2': '193 STREET',
  'intersection_street_1': '130 AVENUE',
  'intersection_street_2': '193 STREET',
  'address_type': 'ADDRESS',
  'city': 'SPRINGFIELD GARDENS',
  'landmark': 'SPRINGFIELD BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T06:27:20.000',
  'community_board': '13 QUEENS',
  'bbl': '4128920028',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1053407',
  'y_coordinate_state_plane': '188901',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68489620574573',
  'longitude': '-73.75064475361545',
  'location': {'latitude': '40.68489620574573',
   'longitude': '-73.75064475361545',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310036',
  'created_date': '2025-03-10T05:25:55.000',
  'closed_date': '2025-03-10T09:22:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11207',
  'incident_address': 'HENDRIX STREET',
  'street_name': 'HENDRIX STREET',
  'cross_street_1': 'ATLANTIC AVENUE',
  'cross_street_2': 'HENDRIX STREET',
  'intersection_street_1': 'ATLANTIC AVENUE',
  'intersection_street_2': 'HENDRIX STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T09:22:33.000',
  'community_board': '05 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1014657',
  'y_coordinate_state_plane': '185798',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67659712477811',
  'longitude': '-73.89037706677782',
  'location': {'latitude': '40.67659712477811',
   'longitude': '-73.89037706677782',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308863',
  'created_date': '2025-03-10T05:26:09.000',
  'closed_date': '2025-03-10T05:26:09.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Rodent',
  'descriptor': 'Rat Sighting',
  'location_type': 'Other (Explain Below)',
  'incident_zip': '10472',
  'incident_address': 'ELDER AVENUE',
  'street_name': 'ELDER AVENUE',
  'cross_street_1': 'ELDER AVENUE',
  'cross_street_2': 'WESTCHESTER AVENUE',
  'intersection_street_1': 'ELDER AVENUE',
  'intersection_street_2': 'WESTCHESTER AVENUE',
  'address_type': 'INTERSECTION',
  'city': 'BRONX',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_action_updated_date': '2025-03-10T12:41:19.000',
  'community_board': '09 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1017689',
  'y_coordinate_state_plane': '241175',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82858183785002',
  'longitude': '-73.87917076783573',
  'location': {'latitude': '40.82858183785002',
   'longitude': '-73.87917076783573',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310553',
  'created_date': '2025-03-10T05:27:42.000',
  'closed_date': '2025-03-10T07:09:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '274 AVENUE W',
  'street_name': 'AVENUE W',
  'cross_street_1': 'MCDONALD AVENUE',
  'cross_street_2': 'STRYKER STREET',
  'intersection_street_1': 'MCDONALD AVENUE',
  'intersection_street_2': 'STRYKER STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AVENUE W',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T07:09:56.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3071730009',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991734',
  'y_coordinate_state_plane': '155101',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.592389450703614',
  'longitude': '-73.97305280879024',
  'location': {'latitude': '40.592389450703614',
   'longitude': '-73.97305280879024',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314850',
  'created_date': '2025-03-10T05:28:01.000',
  'closed_date': '2025-03-10T06:30:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11237',
  'incident_address': '345 ELDERT STREET',
  'street_name': 'ELDERT STREET',
  'cross_street_1': 'KNICKERBOCKER AVENUE',
  'cross_street_2': 'IRVING AVENUE',
  'intersection_street_1': 'KNICKERBOCKER AVENUE',
  'intersection_street_2': 'IRVING AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ELDERT STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T06:30:30.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3034130041',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1010240',
  'y_coordinate_state_plane': '192007',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69365347114017',
  'longitude': '-73.90627721641019',
  'location': {'latitude': '40.69365347114017',
   'longitude': '-73.90627721641019',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309504',
  'created_date': '2025-03-10T05:28:15.000',
  'closed_date': '2025-03-10T06:57:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10039',
  'incident_address': '301 WEST  151 STREET',
  'street_name': 'WEST  151 STREET',
  'cross_street_1': 'FREDERICK DOUGLASS BOULEVARD',
  'cross_street_2': 'BRADHURST AVENUE',
  'intersection_street_1': 'FREDERICK DOUGLASS BOULEVARD',
  'intersection_street_2': 'BRADHURST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  151 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T06:57:11.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020460028',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001051',
  'y_coordinate_state_plane': '240470',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82669413470208',
  'longitude': '-73.93929262667247',
  'location': {'latitude': '40.82669413470208',
   'longitude': '-73.93929262667247',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311152',
  'created_date': '2025-03-10T05:28:56.000',
  'closed_date': '2025-03-11T20:19:01.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'GARBAGE/RECYCLING STORAGE',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10467',
  'incident_address': '3544 WAYNE AVENUE',
  'street_name': 'WAYNE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '07 BRONX',
  'bbl': '2033440056',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1018153',
  'y_coordinate_state_plane': '260374',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88127554468646',
  'longitude': '-73.87739704460235',
  'location': {'latitude': '40.88127554468646',
   'longitude': '-73.87739704460235',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316335',
  'created_date': '2025-03-10T05:29:00.000',
  'closed_date': '2025-03-11T13:03:50.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11435',
  'incident_address': '141-55 85 ROAD',
  'street_name': '85 ROAD',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '08 QUEENS',
  'bbl': '4097120102',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035681',
  'y_coordinate_state_plane': '197871',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70963746155313',
  'longitude': '-73.81448961062027',
  'location': {'latitude': '40.70963746155313',
   'longitude': '-73.81448961062027',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315528',
  'created_date': '2025-03-10T05:29:24.000',
  'closed_date': '2025-03-10T06:24:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11414',
  'incident_address': '84-14 160 AVENUE',
  'street_name': '160 AVENUE',
  'cross_street_1': '84 STREET',
  'cross_street_2': '85 STREET',
  'intersection_street_1': '84 STREET',
  'intersection_street_2': '85 STREET',
  'address_type': 'ADDRESS',
  'city': 'HOWARD BEACH',
  'landmark': '160 AVENUE',
  'status': 'Closed',
  'resolution_description': "This complaint does not fall under the Police Department's jurisdiction.",
  'resolution_action_updated_date': '2025-03-10T06:24:40.000',
  'community_board': '10 QUEENS',
  'bbl': '4140220006',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1026532',
  'y_coordinate_state_plane': '178431',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.656327623677505',
  'longitude': '-73.84761174465109',
  'location': {'latitude': '40.656327623677505',
   'longitude': '-73.84761174465109',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312066',
  'created_date': '2025-03-10T05:29:51.000',
  'closed_date': '2025-03-10T05:53:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10314',
  'incident_address': '20 POLAND PLACE',
  'street_name': 'POLAND PLACE',
  'cross_street_1': 'TODT HILL ROAD',
  'cross_street_2': 'LA GUARDIA AVENUE',
  'intersection_street_1': 'TODT HILL ROAD',
  'intersection_street_2': 'LA GUARDIA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'POLAND PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T05:53:28.000',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5007050222',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '951696',
  'y_coordinate_state_plane': '160609',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.60745115775784',
  'longitude': '-74.11724171851718',
  'location': {'latitude': '40.60745115775784',
   'longitude': '-74.11724171851718',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313453',
  'created_date': '2025-03-10T05:30:21.000',
  'closed_date': '2025-03-10T07:39:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11385',
  'incident_address': '64-51 CENTRAL AVENUE',
  'street_name': 'CENTRAL AVENUE',
  'cross_street_1': '64 PLACE',
  'cross_street_2': '65 STREET',
  'intersection_street_1': '64 PLACE',
  'intersection_street_2': '65 STREET',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'CENTRAL AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T07:39:43.000',
  'community_board': '05 QUEENS',
  'bbl': '4036420022',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014390',
  'y_coordinate_state_plane': '195130',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.702212211706936',
  'longitude': '-73.89129790145294',
  'location': {'latitude': '40.702212211706936',
   'longitude': '-73.89129790145294',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307134',
  'created_date': '2025-03-10T05:30:25.000',
  'closed_date': '2025-03-11T11:26:54.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'GARBAGE/RECYCLING STORAGE',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '957 WOODYCREST AVENUE',
  'street_name': 'WOODYCREST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2025110068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003936',
  'y_coordinate_state_plane': '242233',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8315271048226',
  'longitude': '-73.92886303221528',
  'location': {'latitude': '40.8315271048226',
   'longitude': '-73.92886303221528',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312369',
  'created_date': '2025-03-10T05:30:34.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'WATER SUPPLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10460',
  'incident_address': '1700 LONGFELLOW AVENUE',
  'street_name': 'LONGFELLOW AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '03 BRONX',
  'bbl': '2030100017',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016126',
  'y_coordinate_state_plane': '243597',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83523530526357',
  'longitude': '-73.88480703164998',
  'location': {'latitude': '40.83523530526357',
   'longitude': '-73.88480703164998',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313223',
  'created_date': '2025-03-10T05:31:24.000',
  'closed_date': '2025-03-10T05:31:24.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Building/Use',
  'descriptor': 'Illegal Conversion Of Residential Building/Space',
  'incident_zip': '11421',
  'incident_address': '80-31 90 ROAD',
  'street_name': '90 ROAD',
  'address_type': 'ADDRESS',
  'city': 'WOODHAVEN',
  'status': 'Open',
  'resolution_description': 'Your Service Request has been submitted to the Department of Buildings.  Please check back later for status.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '09 QUEENS',
  'bbl': '4089640044',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1023117',
  'y_coordinate_state_plane': '189785',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.687507416772235',
  'longitude': '-73.85985423117774',
  'location': {'latitude': '40.687507416772235',
   'longitude': '-73.85985423117774',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315511',
  'created_date': '2025-03-10T05:31:24.000',
  'closed_date': '2025-03-11T00:00:00.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Building/Use',
  'descriptor': 'Zoning - Non-Conforming/Illegal Vehicle Storage',
  'incident_zip': '10452',
  'incident_address': '957 WOODYCREST AVENUE',
  'street_name': 'WOODYCREST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Buildings reviewed this complaint and closed it. If the problem still exists, please call 311 and file a new complaint. If you are outside of New York City, please call (212) NEW-YORK (212-639-9675).',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2025110068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003936',
  'y_coordinate_state_plane': '242233',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8315271048226',
  'longitude': '-73.92886303221528',
  'location': {'latitude': '40.8315271048226',
   'longitude': '-73.92886303221528',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309990',
  'created_date': '2025-03-10T05:31:28.000',
  'closed_date': '2025-03-10T06:16:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'License Plate Obscured',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11435',
  'incident_address': '107-55 REMINGTON STREET',
  'street_name': 'REMINGTON STREET',
  'cross_street_1': 'SHORE AVENUE',
  'cross_street_2': 'LUX ROAD',
  'intersection_street_1': 'SHORE AVENUE',
  'intersection_street_2': 'LUX ROAD',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'REMINGTON STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T06:16:58.000',
  'community_board': '12 QUEENS',
  'bbl': '4100730018',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1038281',
  'y_coordinate_state_plane': '190387',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68908018439236',
  'longitude': '-73.80517154255057',
  'location': {'latitude': '40.68908018439236',
   'longitude': '-73.80517154255057',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316382',
  'created_date': '2025-03-10T05:31:33.000',
  'closed_date': '2025-03-11T14:56:16.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'WATER SUPPLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '35 CLARKE PLACE EAST',
  'street_name': 'CLARKE PLACE EAST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development inspected the following conditions. Violations were previously issued for these conditions. Information about specific violations is available at www.nyc.gov/hpd.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2028400022',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007006',
  'y_coordinate_state_plane': '244558',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8379011793687',
  'longitude': '-73.91776145510242',
  'location': {'latitude': '40.8379011793687',
   'longitude': '-73.91776145510242',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307174',
  'created_date': '2025-03-10T05:31:33.000',
  'closed_date': '2025-03-11T14:56:16.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'GARBAGE/RECYCLING STORAGE',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '35 CLARKE PLACE EAST',
  'street_name': 'CLARKE PLACE EAST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2028400022',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007006',
  'y_coordinate_state_plane': '244558',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8379011793687',
  'longitude': '-73.91776145510242',
  'location': {'latitude': '40.8379011793687',
   'longitude': '-73.91776145510242',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308466',
  'created_date': '2025-03-10T05:31:33.000',
  'closed_date': '2025-03-11T14:56:15.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'WATER SUPPLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '35 CLARKE PLACE EAST',
  'street_name': 'CLARKE PLACE EAST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2028400022',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007006',
  'y_coordinate_state_plane': '244558',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8379011793687',
  'longitude': '-73.91776145510242',
  'location': {'latitude': '40.8379011793687',
   'longitude': '-73.91776145510242',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314928',
  'created_date': '2025-03-10T05:31:33.000',
  'closed_date': '2025-03-11T14:56:16.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'ELECTRIC',
  'descriptor': 'POWER OUTAGE',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '35 CLARKE PLACE EAST',
  'street_name': 'CLARKE PLACE EAST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2028400022',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007006',
  'y_coordinate_state_plane': '244558',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8379011793687',
  'longitude': '-73.91776145510242',
  'location': {'latitude': '40.8379011793687',
   'longitude': '-73.91776145510242',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315132',
  'created_date': '2025-03-10T05:31:33.000',
  'closed_date': '2025-03-10T05:31:33.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'GENERAL',
  'descriptor': 'SIGNAGE MISSING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '35 CLARKE PLACE EAST',
  'street_name': 'CLARKE PLACE EAST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2028400022',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007006',
  'y_coordinate_state_plane': '244558',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8379011793687',
  'longitude': '-73.91776145510242',
  'location': {'latitude': '40.8379011793687',
   'longitude': '-73.91776145510242',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315959',
  'created_date': '2025-03-10T05:31:33.000',
  'closed_date': '2025-03-11T14:56:16.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'SAFETY',
  'descriptor': 'FIRE ESCAPE',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '35 CLARKE PLACE EAST',
  'street_name': 'CLARKE PLACE EAST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2028400022',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007006',
  'y_coordinate_state_plane': '244558',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8379011793687',
  'longitude': '-73.91776145510242',
  'location': {'latitude': '40.8379011793687',
   'longitude': '-73.91776145510242',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316337',
  'created_date': '2025-03-10T05:31:33.000',
  'closed_date': '2025-03-11T14:56:16.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '35 CLARKE PLACE EAST',
  'street_name': 'CLARKE PLACE EAST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2028400022',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007006',
  'y_coordinate_state_plane': '244558',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8379011793687',
  'longitude': '-73.91776145510242',
  'location': {'latitude': '40.8379011793687',
   'longitude': '-73.91776145510242',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308393',
  'created_date': '2025-03-10T05:31:40.000',
  'closed_date': '2025-03-11T08:49:21.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11209',
  'incident_address': '6902 RIDGE BOULEVARD',
  'street_name': 'RIDGE BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3058700037',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '976284',
  'y_coordinate_state_plane': '171160',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63646766454153',
  'longitude': '-74.0287016455361',
  'location': {'latitude': '40.63646766454153',
   'longitude': '-74.0287016455361',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308149',
  'created_date': '2025-03-10T05:31:46.000',
  'closed_date': '2025-03-10T06:40:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11207',
  'incident_address': '526 WILLIAMS AVENUE',
  'street_name': 'WILLIAMS AVENUE',
  'cross_street_1': 'LIVONIA AVENUE',
  'cross_street_2': 'RIVERDALE AVENUE',
  'intersection_street_1': 'LIVONIA AVENUE',
  'intersection_street_2': 'RIVERDALE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WILLIAMS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T06:41:01.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3038180049',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1012694',
  'y_coordinate_state_plane': '180859',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66304720771052',
  'longitude': '-73.89747488337834',
  'location': {'latitude': '40.66304720771052',
   'longitude': '-73.89747488337834',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312363',
  'created_date': '2025-03-10T05:31:55.000',
  'closed_date': '2025-03-10T15:38:02.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'WATER SUPPLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10467',
  'incident_address': '3544 WAYNE AVENUE',
  'street_name': 'WAYNE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD attempted to conduct an inspection in response to this complaint, but was unable to complete the inspection. Please submit a new service request with 311 if the condition still exists. For more information on the reason why HPD was unable to inspect, contact HPD at the Tenant Information Messaging Service at 212-863-4951.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '07 BRONX',
  'bbl': '2033440056',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1018153',
  'y_coordinate_state_plane': '260374',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88127554468646',
  'longitude': '-73.87739704460235',
  'location': {'latitude': '40.88127554468646',
   'longitude': '-73.87739704460235',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307438',
  'created_date': '2025-03-10T05:32:39.000',
  'closed_date': '2025-03-10T06:47:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11421',
  'incident_address': '91-15 86 AVENUE',
  'street_name': '86 AVENUE',
  'cross_street_1': '91 STREET',
  'cross_street_2': 'WOODHAVEN BOULEVARD',
  'intersection_street_1': '91 STREET',
  'intersection_street_2': 'WOODHAVEN BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'WOODHAVEN',
  'landmark': '86 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T06:47:51.000',
  'community_board': '09 QUEENS',
  'bbl': '4088750027',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024741',
  'y_coordinate_state_plane': '192629',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.6953062493824',
  'longitude': '-73.85398136443762',
  'location': {'latitude': '40.6953062493824',
   'longitude': '-73.85398136443762',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306397',
  'created_date': '2025-03-10T05:32:45.000',
  'closed_date': '2025-03-10T06:04:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11231',
  'incident_address': '363 BOND STREET',
  'street_name': 'BOND STREET',
  'cross_street_1': 'CARROLL STREET',
  'cross_street_2': '1 STREET',
  'intersection_street_1': 'CARROLL STREET',
  'intersection_street_2': '1 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BOND STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T06:04:14.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3004520001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986794',
  'y_coordinate_state_plane': '186359',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.678188800410695',
  'longitude': '-73.99082818673837',
  'location': {'latitude': '40.678188800410695',
   'longitude': '-73.99082818673837',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306354',
  'created_date': '2025-03-10T05:32:46.000',
  'closed_date': '2025-03-10T05:52:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '2611 SHORE PW',
  'street_name': 'SHORE PW',
  'cross_street_1': 'SHELL ROAD',
  'intersection_street_1': 'SHELL ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SHORE PARKWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T05:52:47.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3072330008',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991353',
  'y_coordinate_state_plane': '151810',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.583356625922804',
  'longitude': '-73.97442811185861',
  'location': {'latitude': '40.583356625922804',
   'longitude': '-73.97442811185861',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306395',
  'created_date': '2025-03-10T05:33:22.000',
  'closed_date': '2025-03-10T12:46:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11365',
  'incident_address': '192-15 64 AVENUE',
  'street_name': '64 AVENUE',
  'cross_street_1': '188 STREET',
  'cross_street_2': '64 CIRCLE',
  'intersection_street_1': '188 STREET',
  'intersection_street_2': '64 CIRCLE',
  'address_type': 'ADDRESS',
  'city': 'FRESH MEADOWS',
  'landmark': '64 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T12:46:29.000',
  'community_board': '08 QUEENS',
  'bbl': '4071170003',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1044415',
  'y_coordinate_state_plane': '208921',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73991185751994',
  'longitude': '-73.78288761390193',
  'location': {'latitude': '40.73991185751994',
   'longitude': '-73.78288761390193',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314795',
  'created_date': '2025-03-10T05:33:25.000',
  'closed_date': '2025-03-10T05:59:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11385',
  'incident_address': '503 SENECA AVENUE',
  'street_name': 'SENECA AVENUE',
  'cross_street_1': 'GREENE AVENUE',
  'cross_street_2': 'BLEECKER STREET',
  'intersection_street_1': 'GREENE AVENUE',
  'intersection_street_2': 'BLEECKER STREET',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'SENECA AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T06:00:00.000',
  'community_board': '05 QUEENS',
  'bbl': '4034340010',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008650',
  'y_coordinate_state_plane': '196273',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.705367165633646',
  'longitude': '-73.91199547120387',
  'location': {'latitude': '40.705367165633646',
   'longitude': '-73.91199547120387',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312527',
  'created_date': '2025-03-10T05:35:00.000',
  'closed_date': '2025-03-10T06:00:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Dirty Water (WE)',
  'incident_zip': '11367',
  'incident_address': '147-23 78 AVENUE',
  'street_name': '78 AVENUE',
  'cross_street_1': '147 ST',
  'cross_street_2': '150 ST',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection investigated this complaint and found it to be a temporary condition.',
  'resolution_action_updated_date': '2025-03-10T06:00:00.000',
  'community_board': '08 QUEENS',
  'bbl': '4066880057',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035251',
  'y_coordinate_state_plane': '201909',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72072327058941',
  'longitude': '-73.81601001343203',
  'location': {'latitude': '40.72072327058941',
   'longitude': '-73.81601001343203',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315099',
  'created_date': '2025-03-10T05:35:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Hydrant Leaking (WC1)',
  'incident_zip': '11366',
  'incident_address': '79-84 179 STREET',
  'street_name': '179 STREET',
  'cross_street_1': '75 AVE',
  'cross_street_2': 'SURREY PL',
  'address_type': 'ADDRESS',
  'city': 'FRESH MEADOWS',
  'status': 'Open',
  'community_board': '08 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1042620',
  'y_coordinate_state_plane': '204314',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72727884142307',
  'longitude': '-73.78940502270846',
  'location': {'latitude': '40.72727884142307',
   'longitude': '-73.78940502270846',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310868',
  'created_date': '2025-03-10T05:35:04.000',
  'closed_date': '2025-03-10T14:16:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10461',
  'incident_address': '1601 PLYMOUTH AVENUE',
  'street_name': 'PLYMOUTH AVENUE',
  'cross_street_1': 'MIDDLETOWN ROAD',
  'cross_street_2': 'DANIEL STREET',
  'intersection_street_1': 'MIDDLETOWN ROAD',
  'intersection_street_2': 'DANIEL STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'PLYMOUTH AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T14:16:16.000',
  'community_board': '10 BRONX',
  'bbl': '2041650001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1030733',
  'y_coordinate_state_plane': '246720',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.843742214108765',
  'longitude': '-73.83199895775188',
  'location': {'latitude': '40.843742214108765',
   'longitude': '-73.83199895775188',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311420',
  'created_date': '2025-03-10T05:35:10.000',
  'closed_date': '2025-03-10T09:19:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11207',
  'incident_address': '192 SUNNYSIDE AVENUE',
  'street_name': 'SUNNYSIDE AVENUE',
  'cross_street_1': 'HENDRIX STREET',
  'cross_street_2': 'BARBEY STREET',
  'intersection_street_1': 'HENDRIX STREET',
  'intersection_street_2': 'BARBEY STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SUNNYSIDE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T09:19:09.000',
  'community_board': '05 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1014587',
  'y_coordinate_state_plane': '187882',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68231746822207',
  'longitude': '-73.89062004812436',
  'location': {'latitude': '40.68231746822207',
   'longitude': '-73.89062004812436',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307351',
  'created_date': '2025-03-10T05:36:19.000',
  'closed_date': '2025-03-10T06:05:16.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11365',
  'incident_address': '70-30 PARSONS BOULEVARD',
  'street_name': 'PARSONS BOULEVARD',
  'cross_street_1': 'JEWEL AVENUE',
  'cross_street_2': '71 AVENUE',
  'intersection_street_1': 'JEWEL AVENUE',
  'intersection_street_2': '71 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FRESH MEADOWS',
  'landmark': 'PARSONS BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T06:06:39.000',
  'community_board': '08 QUEENS',
  'bbl': '4067920001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036669',
  'y_coordinate_state_plane': '205675',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'SUV',
  'latitude': '40.731051712529165',
  'longitude': '-73.81086515192234',
  'location': {'latitude': '40.731051712529165',
   'longitude': '-73.81086515192234',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313610',
  'created_date': '2025-03-10T05:37:34.000',
  'closed_date': '2025-03-10T08:54:01.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '530 EAST  169 STREET',
  'street_name': 'EAST  169 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '03 BRONX',
  'bbl': '2026100012',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010629',
  'y_coordinate_state_plane': '242635',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83261302416413',
  'longitude': '-73.90467576630016',
  'location': {'latitude': '40.83261302416413',
   'longitude': '-73.90467576630016',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313609',
  'created_date': '2025-03-10T05:37:53.000',
  'closed_date': '2025-03-10T19:03:40.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10468',
  'incident_address': '2856 WEBB AVENUE',
  'street_name': 'WEBB AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "The Department of Housing Preservation and Development conducted or attempted to conduct an inspection.  More information about inspection results can be found through HPD's website at www.nyc.gov/hpd by using HPDONLINE (enter your address on the home page) and entering your SR number under the complaint status option.",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '08 BRONX',
  'bbl': '2032500071',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011734',
  'y_coordinate_state_plane': '257483',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87336297316026',
  'longitude': '-73.90062182502744',
  'location': {'latitude': '40.87336297316026',
   'longitude': '-73.90062182502744',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308356',
  'created_date': '2025-03-10T05:37:58.000',
  'closed_date': '2025-03-11T13:51:08.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11368',
  'incident_address': '97-07 HORACE HARDING EXPRESSWAY',
  'street_name': 'HORACE HARDING EXPRESSWAY',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'status': 'Closed',
  'resolution_description': 'HPD responded to a complaint of no heat or hot water in the building. An occupant of the building confirmed heat and hot water had been restored when the Inspector attempted to conduct the inspection or contacted you at the phone number associated with the complaint. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 QUEENS',
  'bbl': '4019180110',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1022434',
  'y_coordinate_state_plane': '207083',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73498922816328',
  'longitude': '-73.86221886775529',
  'location': {'latitude': '40.73498922816328',
   'longitude': '-73.86221886775529',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310031',
  'created_date': '2025-03-10T05:39:49.000',
  'closed_date': '2025-03-10T15:03:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11230',
  'incident_address': '746 ARGYLE ROAD',
  'street_name': 'ARGYLE ROAD',
  'cross_street_1': 'GLENWOOD ROAD',
  'cross_street_2': 'AVENUE H',
  'intersection_street_1': 'GLENWOOD ROAD',
  'intersection_street_2': 'AVENUE H',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ARGYLE ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T15:03:10.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3066870023',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994134',
  'y_coordinate_state_plane': '169153',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63095694320563',
  'longitude': '-73.96439070521919',
  'location': {'latitude': '40.63095694320563',
   'longitude': '-73.96439070521919',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313054',
  'created_date': '2025-03-10T05:40:25.000',
  'closed_date': '2025-03-10T08:29:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11419',
  'incident_address': '104-47 LEFFERTS BOULEVARD',
  'street_name': 'LEFFERTS BOULEVARD',
  'cross_street_1': 'LIBERTY AVENUE',
  'cross_street_2': '107 AVENUE',
  'intersection_street_1': 'LIBERTY AVENUE',
  'intersection_street_2': '107 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': 'LEFFERTS BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:29:50.000',
  'community_board': '10 QUEENS',
  'bbl': '4095730058',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033058',
  'y_coordinate_state_plane': '189229',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68593209037025',
  'longitude': '-73.82401330766655',
  'location': {'latitude': '40.68593209037025',
   'longitude': '-73.82401330766655',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307065',
  'created_date': '2025-03-10T05:41:02.000',
  'closed_date': '2025-03-10T19:03:40.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10468',
  'incident_address': '2856 WEBB AVENUE',
  'street_name': 'WEBB AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "The Department of Housing Preservation and Development conducted or attempted to conduct an inspection.  More information about inspection results can be found through HPD's website at www.nyc.gov/hpd by using HPDONLINE (enter your address on the home page) and entering your SR number under the complaint status option.",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '08 BRONX',
  'bbl': '2032500071',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011734',
  'y_coordinate_state_plane': '257483',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87336297316026',
  'longitude': '-73.90062182502744',
  'location': {'latitude': '40.87336297316026',
   'longitude': '-73.90062182502744',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307654',
  'created_date': '2025-03-10T05:41:46.000',
  'closed_date': '2025-03-10T06:05:02.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11365',
  'incident_address': '70-30 PARSONS BOULEVARD',
  'street_name': 'PARSONS BOULEVARD',
  'cross_street_1': 'JEWEL AVENUE',
  'cross_street_2': '71 AVENUE',
  'intersection_street_1': 'JEWEL AVENUE',
  'intersection_street_2': '71 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FRESH MEADOWS',
  'landmark': 'PARSONS BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T06:05:46.000',
  'community_board': '08 QUEENS',
  'bbl': '4067920001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036669',
  'y_coordinate_state_plane': '205675',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.731051712529165',
  'longitude': '-73.81086515192234',
  'location': {'latitude': '40.731051712529165',
   'longitude': '-73.81086515192234',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311833',
  'created_date': '2025-03-10T05:42:24.000',
  'closed_date': '2025-03-10T12:45:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '10306',
  'incident_address': 'MILL ROAD',
  'street_name': 'MILL ROAD',
  'cross_street_1': 'ISABELLA AVENUE',
  'cross_street_2': 'OAK AVENUE',
  'address_type': 'BLOCKFACE',
  'city': 'STATEN ISLAND',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected this complaint and repaired the problem.',
  'resolution_action_updated_date': '2025-03-10T12:45:00.000',
  'community_board': '03 STATEN ISLAND',
  'borough': 'STATEN ISLAND',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND'},
 {'unique_key': '64309521',
  'created_date': '2025-03-10T05:42:30.000',
  'closed_date': '2025-03-10T06:33:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10040',
  'incident_address': '27 SICKLES STREET',
  'street_name': 'SICKLES STREET',
  'cross_street_1': 'NAGLE AVENUE',
  'cross_street_2': 'SHERMAN AVENUE',
  'intersection_street_1': 'NAGLE AVENUE',
  'intersection_street_2': 'SHERMAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'SICKLES STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T06:33:49.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021740145',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004247',
  'y_coordinate_state_plane': '253063',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86125155997211',
  'longitude': '-73.92770691106014',
  'location': {'latitude': '40.86125155997211',
   'longitude': '-73.92770691106014',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313392',
  'created_date': '2025-03-10T05:43:09.000',
  'closed_date': '2025-03-10T06:27:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10456',
  'incident_address': 'LAFAYETTE STREET',
  'street_name': 'LAFAYETTE STREET',
  'cross_street_1': 'LAFAYETTE STREET',
  'cross_street_2': 'PROSPECT AVENUE',
  'intersection_street_1': 'LAFAYETTE STREET',
  'intersection_street_2': 'PROSPECT AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T06:27:57.000',
  'community_board': '03 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012812',
  'y_coordinate_state_plane': '243188',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83412405878921',
  'longitude': '-73.89678484057282',
  'location': {'latitude': '40.83412405878921',
   'longitude': '-73.89678484057282',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314368',
  'created_date': '2025-03-10T05:43:33.000',
  'closed_date': '2025-03-10T08:30:39.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11420',
  'incident_address': '109-27 116 STREET',
  'street_name': '116 STREET',
  'cross_street_1': '109 AVENUE',
  'cross_street_2': '111 AVENUE',
  'intersection_street_1': '109 AVENUE',
  'intersection_street_2': '111 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': '116 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:30:42.000',
  'community_board': '10 QUEENS',
  'bbl': '4115970054',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032906',
  'y_coordinate_state_plane': '187518',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68123663178162',
  'longitude': '-73.82457372661635',
  'location': {'latitude': '40.68123663178162',
   'longitude': '-73.82457372661635',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312836',
  'created_date': '2025-03-10T05:43:45.000',
  'closed_date': '2025-03-10T05:43:45.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Elevator',
  'descriptor': 'Elevator - Multiple Devices On Property',
  'incident_zip': '10460',
  'incident_address': '1759 WESTFARMS ROAD',
  'street_name': 'WESTFARMS ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'Your Service Request has been submitted to the Department of Buildings.  Please check back later for status.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '03 BRONX',
  'bbl': '2030150097',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016856',
  'y_coordinate_state_plane': '243737',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83561689944004',
  'longitude': '-73.88216829216293',
  'location': {'latitude': '40.83561689944004',
   'longitude': '-73.88216829216293',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315714',
  'created_date': '2025-03-10T05:43:50.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Food Establishment',
  'descriptor': 'Food Contains Foreign Object',
  'location_type': 'Restaurant/Bar/Deli/Bakery',
  'incident_zip': '10038',
  'incident_address': '58 FULTON STREET',
  'street_name': 'FULTON STREET',
  'cross_street_1': 'CLIFF STREET',
  'cross_street_2': 'RYDERS ALLEY',
  'intersection_street_1': 'CLIFF STREET',
  'intersection_street_2': 'RYDERS ALLEY',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'FULTON STREET',
  'status': 'In Progress',
  'community_board': '01 MANHATTAN',
  'bbl': '1000760006',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '982873',
  'y_coordinate_state_plane': '197425',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.70856266826735',
  'longitude': '-74.00496672233865',
  'location': {'latitude': '40.70856266826735',
   'longitude': '-74.00496672233865',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315549',
  'created_date': '2025-03-10T05:44:37.000',
  'closed_date': '2025-03-10T09:07:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '11223',
  'incident_address': '710 AVENUE S',
  'street_name': 'AVENUE S',
  'cross_street_1': 'EAST    7 STREET',
  'cross_street_2': 'EAST    8 STREET',
  'intersection_street_1': 'EAST    7 STREET',
  'intersection_street_2': 'EAST    8 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AVENUE S',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T09:07:24.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3070890001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994039',
  'y_coordinate_state_plane': '158840',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60265000373804',
  'longitude': '-73.96474791605162',
  'location': {'latitude': '40.60265000373804',
   'longitude': '-73.96474791605162',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315855',
  'created_date': '2025-03-10T05:45:29.000',
  'closed_date': '2025-03-10T11:30:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '10306',
  'incident_address': 'TYSENS LANE',
  'street_name': 'TYSENS LANE',
  'cross_street_1': 'JOHN JACK HYNES WAY',
  'cross_street_2': 'MILL ROAD',
  'address_type': 'BLOCKFACE',
  'city': 'STATEN ISLAND',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected this complaint and repaired the problem.',
  'resolution_action_updated_date': '2025-03-10T11:30:00.000',
  'community_board': '03 STATEN ISLAND',
  'borough': 'STATEN ISLAND',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND'},
 {'unique_key': '64315080',
  'created_date': '2025-03-10T05:45:57.000',
  'closed_date': '2025-03-11T11:26:54.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'GARBAGE/RECYCLING STORAGE',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '957 WOODYCREST AVENUE',
  'street_name': 'WOODYCREST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2025110068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003936',
  'y_coordinate_state_plane': '242233',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8315271048226',
  'longitude': '-73.92886303221528',
  'location': {'latitude': '40.8315271048226',
   'longitude': '-73.92886303221528',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314459',
  'created_date': '2025-03-10T05:46:26.000',
  'closed_date': '2025-03-12T00:00:00.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Elevator',
  'descriptor': 'Elevator - Single Device On Property/No Alternate Service',
  'incident_zip': '10452',
  'incident_address': '1491 MACOMBS ROAD',
  'street_name': 'MACOMBS ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Buildings reviewed this complaint and closed it. If the problem still exists, please call 311 and file a new complaint. If you are outside of New York City, please call (212) NEW-YORK (212-639-9675).',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2028720320',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007019',
  'y_coordinate_state_plane': '246566',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84341251819143',
  'longitude': '-73.9177076567708',
  'location': {'latitude': '40.84341251819143',
   'longitude': '-73.9177076567708',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313928',
  'created_date': '2025-03-10T05:47:05.000',
  'closed_date': '2025-03-10T13:20:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10457',
  'incident_address': 'EAST  174 STREET',
  'street_name': 'EAST  174 STREET',
  'cross_street_1': 'EAST  174 STREET',
  'cross_street_2': 'SELWYN AVENUE',
  'intersection_street_1': 'EAST  174 STREET',
  'intersection_street_2': 'SELWYN AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T13:20:09.000',
  'community_board': '04 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009075',
  'y_coordinate_state_plane': '247104',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.844883629009736',
  'longitude': '-73.91027481856923',
  'location': {'latitude': '40.844883629009736',
   'longitude': '-73.91027481856923',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310478',
  'created_date': '2025-03-10T05:47:21.000',
  'closed_date': '2025-03-10T13:15:29.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11203',
  'incident_address': '4702 SNYDER AVENUE',
  'street_name': 'SNYDER AVENUE',
  'cross_street_1': 'SCHENECTADY AVENUE',
  'cross_street_2': 'EAST   48 STREET',
  'intersection_street_1': 'SCHENECTADY AVENUE',
  'intersection_street_2': 'EAST   48 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SNYDER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T13:15:33.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3047190001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002854',
  'y_coordinate_state_plane': '176071',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64993134429173',
  'longitude': '-73.93295591138954',
  'location': {'latitude': '40.64993134429173',
   'longitude': '-73.93295591138954',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310767',
  'created_date': '2025-03-10T05:47:27.000',
  'closed_date': '2025-03-10T07:08:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11225',
  'incident_address': '845 NOSTRAND AVENUE',
  'street_name': 'NOSTRAND AVENUE',
  'cross_street_1': 'PRESIDENT STREET',
  'cross_street_2': 'CARROLL STREET',
  'intersection_street_1': 'PRESIDENT STREET',
  'intersection_street_2': 'CARROLL STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NOSTRAND AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T07:09:01.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3012830001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997930',
  'y_coordinate_state_plane': '182558',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66774570527043',
  'longitude': '-73.95068759150737',
  'location': {'latitude': '40.66774570527043',
   'longitude': '-73.95068759150737',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315548',
  'created_date': '2025-03-10T05:47:53.000',
  'closed_date': '2025-03-10T06:33:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Vehicle',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11691',
  'incident_address': '110 BEACH    8 STREET',
  'street_name': 'BEACH    8 STREET',
  'cross_street_1': 'DEAD END',
  'cross_street_2': 'SEAGIRT AVENUE',
  'intersection_street_1': 'DEAD END',
  'intersection_street_2': 'SEAGIRT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'landmark': 'BEACH    8 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T06:34:00.000',
  'community_board': '14 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1055702',
  'y_coordinate_state_plane': '156193',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'SUV',
  'latitude': '40.59510191446776',
  'longitude': '-73.74271624009992',
  'location': {'latitude': '40.59510191446776',
   'longitude': '-73.74271624009992',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310664',
  'created_date': '2025-03-10T05:48:31.000',
  'closed_date': '2025-03-13T13:00:16.000',
  'agency': 'OTI',
  'agency_name': 'Office of Technology and Innovation',
  'complaint_type': 'LinkNYC',
  'descriptor': 'Damaged/Defective',
  'location_type': 'Sidewalk',
  'incident_zip': '10024',
  'incident_address': '462 COLUMBUS AVENUE',
  'street_name': 'COLUMBUS AVENUE',
  'cross_street_1': 'WEST   82 STREET',
  'cross_street_2': 'WEST   83 STREET',
  'intersection_street_1': 'WEST   82 STREET',
  'intersection_street_2': 'WEST   83 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'COLUMBUS AVENUE',
  'status': 'Closed',
  'resolution_description': 'Your complaint was referred to the vendor, CityBridge.',
  'resolution_action_updated_date': '2025-03-13T13:00:22.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1012130030',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991461',
  'y_coordinate_state_plane': '224928',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78404866354462',
  'longitude': '-73.97396104640299',
  'location': {'latitude': '40.78404866354462',
   'longitude': '-73.97396104640299',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314532',
  'created_date': '2025-03-10T05:49:06.000',
  'closed_date': '2025-03-10T06:29:39.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11219',
  'incident_address': '1045 40 STREET',
  'street_name': '40 STREET',
  'cross_street_1': '10 AVENUE',
  'cross_street_2': 'FORT HAMILTON PARKWAY',
  'intersection_street_1': '10 AVENUE',
  'intersection_street_2': 'FORT HAMILTON PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '40 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T06:29:42.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3055840056',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986353',
  'y_coordinate_state_plane': '173695',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.64342902937891',
  'longitude': '-73.99242206165663',
  'location': {'latitude': '40.64342902937891',
   'longitude': '-73.99242206165663',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314912',
  'created_date': '2025-03-10T05:49:07.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'GENERAL',
  'descriptor': 'JANITOR/SUPER',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '957 WOODYCREST AVENUE',
  'street_name': 'WOODYCREST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2025110068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003936',
  'y_coordinate_state_plane': '242233',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8315271048226',
  'longitude': '-73.92886303221528',
  'location': {'latitude': '40.8315271048226',
   'longitude': '-73.92886303221528',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307037',
  'created_date': '2025-03-10T05:49:11.000',
  'closed_date': '2025-03-12T11:36:18.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11354',
  'incident_address': '34-02 153 STREET',
  'street_name': '153 STREET',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'status': 'Closed',
  'resolution_description': 'HPD responded to a complaint of no heat or hot water in the building. An occupant of the building confirmed heat and hot water had been restored when the Inspector attempted to conduct the inspection or contacted you at the phone number associated with the complaint. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '07 QUEENS',
  'bbl': '4052370030',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036416',
  'y_coordinate_state_plane': '218774',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76700657949269',
  'longitude': '-73.81167639776895',
  'location': {'latitude': '40.76700657949269',
   'longitude': '-73.81167639776895',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315523',
  'created_date': '2025-03-10T05:49:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Animal-Abuse',
  'descriptor': 'Neglected',
  'location_type': 'Residential Building/House',
  'incident_zip': '10459',
  'incident_address': '852 UNION AVENUE',
  'street_name': 'UNION AVENUE',
  'cross_street_1': 'EAST  160 STREET',
  'cross_street_2': 'EAST  161 STREET',
  'intersection_street_1': 'EAST  160 STREET',
  'intersection_street_2': 'EAST  161 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNION AVENUE',
  'status': 'In Progress',
  'community_board': '01 BRONX',
  'bbl': '2026770107',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011145',
  'y_coordinate_state_plane': '238183',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.820392003761526',
  'longitude': '-73.90282897532892',
  'location': {'latitude': '40.820392003761526',
   'longitude': '-73.90282897532892',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64305995',
  'created_date': '2025-03-10T05:50:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Sewer',
  'descriptor': 'Street Flooding (SJ)',
  'incident_zip': '10306',
  'incident_address': '536 OAK AVENUE',
  'street_name': 'OAK AVENUE',
  'cross_street_1': 'RIGA ST',
  'cross_street_2': 'MILL RD',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'status': 'Open',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5040240028',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '952720',
  'y_coordinate_state_plane': '143056',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.55927539749165',
  'longitude': '-74.1134719450088',
  'location': {'latitude': '40.55927539749165',
   'longitude': '-74.1134719450088',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312561',
  'created_date': '2025-03-10T05:50:37.000',
  'closed_date': '2025-03-10T06:58:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11229',
  'incident_address': '2118 EAST   19 STREET',
  'street_name': 'EAST   19 STREET',
  'cross_street_1': 'AVENUE U',
  'cross_street_2': 'AVENUE V',
  'intersection_street_1': 'AVENUE U',
  'intersection_street_2': 'AVENUE V',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   19 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T06:58:10.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3073510014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997439',
  'y_coordinate_state_plane': '157387',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.598657406136645',
  'longitude': '-73.95250669693752',
  'location': {'latitude': '40.598657406136645',
   'longitude': '-73.95250669693752',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308574',
  'created_date': '2025-03-10T05:53:00.000',
  'closed_date': '2025-03-11T06:24:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Air Quality',
  'descriptor': 'Air: Odor/Fumes, Vehicle Idling (AD3)',
  'incident_zip': '11222',
  'incident_address': '63 INDIA STREET',
  'street_name': 'INDIA STREET',
  'cross_street_1': 'WEST ST',
  'cross_street_2': 'FRANKLIN ST',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection will keep the location under observation for idling commercial vehicles.Â\xa0Summonses will be issued when warranted.',
  'resolution_action_updated_date': '2025-03-11T06:24:00.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3025310029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995837',
  'y_coordinate_state_plane': '205964',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.73199268297365',
  'longitude': '-73.95819197596836',
  'location': {'latitude': '40.73199268297365',
   'longitude': '-73.95819197596836',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309705',
  'created_date': '2025-03-10T05:53:31.000',
  'closed_date': '2025-03-10T17:21:47.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11435',
  'incident_address': '148-25 89 AVENUE',
  'street_name': '89 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'status': 'Closed',
  'resolution_description': 'HPD responded to a complaint of no heat or hot water in the building. An occupant of the building confirmed heat and hot water had been restored when the Inspector attempted to conduct the inspection or contacted you at the phone number associated with the complaint. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '12 QUEENS',
  'bbl': '4096930051',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037688',
  'y_coordinate_state_plane': '195910',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70424309880807',
  'longitude': '-73.80726599526653',
  'location': {'latitude': '40.70424309880807',
   'longitude': '-73.80726599526653',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308408',
  'created_date': '2025-03-10T05:54:11.000',
  'closed_date': '2025-03-10T19:03:04.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '957 WOODYCREST AVENUE',
  'street_name': 'WOODYCREST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "The Department of Housing Preservation and Development conducted or attempted to conduct an inspection.  More information about inspection results can be found through HPD's website at www.nyc.gov/hpd by using HPDONLINE (enter your address on the home page) and entering your SR number under the complaint status option.",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2025110068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003936',
  'y_coordinate_state_plane': '242233',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8315271048226',
  'longitude': '-73.92886303221528',
  'location': {'latitude': '40.8315271048226',
   'longitude': '-73.92886303221528',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314854',
  'created_date': '2025-03-10T05:54:17.000',
  'closed_date': '2025-03-10T15:11:51.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11375',
  'incident_address': '108-50 71 AVENUE',
  'street_name': '71 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FOREST HILLS',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '06 QUEENS',
  'bbl': '4022240028',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027678',
  'y_coordinate_state_plane': '202277',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72177375793944',
  'longitude': '-73.84332774912357',
  'location': {'latitude': '40.72177375793944',
   'longitude': '-73.84332774912357',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311661',
  'created_date': '2025-03-10T05:54:30.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10075',
  'incident_address': '1523 2 AVENUE',
  'street_name': '2 AVENUE',
  'cross_street_1': 'EAST   79 STREET',
  'cross_street_2': 'EAST   80 STREET',
  'intersection_street_1': 'EAST   79 STREET',
  'intersection_street_2': 'EAST   80 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '2 AVENUE',
  'status': 'In Progress',
  'community_board': '08 MANHATTAN',
  'bbl': '1015250021',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996728',
  'y_coordinate_state_plane': '221085',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77349477777517',
  'longitude': '-73.95494902518257',
  'location': {'latitude': '40.77349477777517',
   'longitude': '-73.95494902518257',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309279',
  'created_date': '2025-03-10T05:54:30.000',
  'closed_date': '2025-03-10T09:13:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10075',
  'incident_address': '1523 2 AVENUE',
  'street_name': '2 AVENUE',
  'cross_street_1': 'EAST   79 STREET',
  'cross_street_2': 'EAST   80 STREET',
  'intersection_street_1': 'EAST   79 STREET',
  'intersection_street_2': 'EAST   80 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '2 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and has referred the complaint to the Department of Homeless Services (DHS) for further action. DHS will inspect the condition and update your Service Request with more information.',
  'resolution_action_updated_date': '2025-03-10T09:13:09.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1015250021',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996728',
  'y_coordinate_state_plane': '221085',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77349477777517',
  'longitude': '-73.95494902518257',
  'location': {'latitude': '40.77349477777517',
   'longitude': '-73.95494902518257',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311725',
  'created_date': '2025-03-10T05:54:38.000',
  'closed_date': '2025-03-10T07:08:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10458',
  'incident_address': '2448 PROSPECT AVENUE',
  'street_name': 'PROSPECT AVENUE',
  'cross_street_1': 'EAST  187 STREET',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'EAST  187 STREET',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'PROSPECT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:08:12.000',
  'community_board': '06 BRONX',
  'bbl': '2031150020',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016849',
  'y_coordinate_state_plane': '250689',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85469810701118',
  'longitude': '-73.88215979183165',
  'location': {'latitude': '40.85469810701118',
   'longitude': '-73.88215979183165',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310057',
  'created_date': '2025-03-10T05:55:23.000',
  'closed_date': '2025-03-10T06:30:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10019',
  'incident_address': '7 AVENUE',
  'street_name': '7 AVENUE',
  'cross_street_1': '7 AVENUE',
  'cross_street_2': 'WEST   58 STREET',
  'intersection_street_1': '7 AVENUE',
  'intersection_street_2': 'WEST   58 STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T06:30:09.000',
  'community_board': '05 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989916',
  'y_coordinate_state_plane': '218424',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.76619801677359',
  'longitude': '-73.97954553226921',
  'location': {'latitude': '40.76619801677359',
   'longitude': '-73.97954553226921',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306934',
  'created_date': '2025-03-10T05:55:31.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Subway',
  'address_type': 'ADDRESS',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team offered services to the individual, but the individual did not accept assistance.',
  'resolution_action_updated_date': '2025-03-13T09:08:12.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1002621',
  'y_coordinate_state_plane': '248782',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'bridge_highway_name': '1',
  'bridge_highway_segment': 'Platform',
  'latitude': '40.84950502947927',
  'longitude': '-73.93359695065767',
  'location': {'latitude': '40.84950502947927',
   'longitude': '-73.93359695065767',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310241',
  'created_date': '2025-03-10T05:55:35.000',
  'closed_date': '2025-03-10T06:35:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11204',
  'incident_address': '1464 WEST    5 STREET',
  'street_name': 'WEST    5 STREET',
  'cross_street_1': '65 STREET',
  'cross_street_2': 'AVENUE O',
  'intersection_street_1': '65 STREET',
  'intersection_street_2': 'AVENUE O',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST    5 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T06:35:09.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3065790038',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989987',
  'y_coordinate_state_plane': '162067',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.611511007888105',
  'longitude': '-73.97933721048216',
  'location': {'latitude': '40.611511007888105',
   'longitude': '-73.97933721048216',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309836',
  'created_date': '2025-03-10T05:56:23.000',
  'closed_date': '2025-03-11T10:35:53.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'WATER LEAK',
  'descriptor': 'HEAVY FLOW',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11223',
  'incident_address': '1741 OCEAN PARKWAY',
  'street_name': 'OCEAN PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3066630023',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993398',
  'y_coordinate_state_plane': '160133',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.606199709810596',
  'longitude': '-73.96705452965197',
  'location': {'latitude': '40.606199709810596',
   'longitude': '-73.96705452965197',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308487',
  'created_date': '2025-03-10T05:56:25.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10460',
  'incident_address': '2359 SOUTHERN BOULEVARD',
  'street_name': 'SOUTHERN BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'An HPD Inspector was not able to gain access to inspect this complaint sometime within the last 10 days. If the conditions still exist and an inspection is required, please contact HPD with your complaint number to schedule an appointment at  718 579-6777 (BRONX).',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '06 BRONX',
  'bbl': '2031140071',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016919',
  'y_coordinate_state_plane': '249905',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85254600355295',
  'longitude': '-73.88191057380214',
  'location': {'latitude': '40.85254600355295',
   'longitude': '-73.88191057380214',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312451',
  'created_date': '2025-03-10T05:56:25.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'APPLIANCE',
  'descriptor': 'REFRIGERATOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10460',
  'incident_address': '2359 SOUTHERN BOULEVARD',
  'street_name': 'SOUTHERN BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'An HPD Inspector was not able to gain access to inspect this complaint sometime within the last 10 days. If the conditions still exist and an inspection is required, please contact HPD with your complaint number to schedule an appointment at  718 579-6777 (BRONX).',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '06 BRONX',
  'bbl': '2031140071',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016919',
  'y_coordinate_state_plane': '249905',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85254600355295',
  'longitude': '-73.88191057380214',
  'location': {'latitude': '40.85254600355295',
   'longitude': '-73.88191057380214',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308421',
  'created_date': '2025-03-10T05:56:26.000',
  'closed_date': '2025-03-12T13:46:22.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10002',
  'incident_address': '207 MADISON STREET',
  'street_name': 'MADISON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1002710037',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987155',
  'y_coordinate_state_plane': '198930',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71269316612326',
  'longitude': '-73.98952126178614',
  'location': {'latitude': '40.71269316612326',
   'longitude': '-73.98952126178614',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308254',
  'created_date': '2025-03-10T05:56:37.000',
  'closed_date': '2025-03-10T08:50:16.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11234',
  'incident_address': 'AVENUE S',
  'street_name': 'AVENUE S',
  'cross_street_1': 'AVENUE S',
  'cross_street_2': 'EAST   52 STREET',
  'intersection_street_1': 'AVENUE S',
  'intersection_street_2': 'EAST   52 STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:50:20.000',
  'community_board': '18 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1005263',
  'y_coordinate_state_plane': '162683',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61317874208056',
  'longitude': '-73.92431617685934',
  'location': {'latitude': '40.61317874208056',
   'longitude': '-73.92431617685934',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311100',
  'created_date': '2025-03-10T05:56:54.000',
  'closed_date': '2025-03-11T17:09:46.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11374',
  'incident_address': '96-09 66 AVENUE',
  'street_name': '66 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'REGO PARK',
  'status': 'Closed',
  'resolution_description': 'HPD responded to a complaint of no heat or hot water in the building. An occupant of the building confirmed heat and hot water had been restored when the Inspector attempted to conduct the inspection or contacted you at the phone number associated with the complaint. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '06 QUEENS',
  'bbl': '4030870033',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1023967',
  'y_coordinate_state_plane': '204028',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72659726146033',
  'longitude': '-73.85670531368736',
  'location': {'latitude': '40.72659726146033',
   'longitude': '-73.85670531368736',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315532',
  'created_date': '2025-03-10T05:56:55.000',
  'closed_date': '2025-03-10T17:25:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11420',
  'incident_address': '115 AVENUE',
  'street_name': '115 AVENUE',
  'cross_street_1': '115 AVENUE',
  'cross_street_2': '125 STREET',
  'intersection_street_1': '115 AVENUE',
  'intersection_street_2': '125 STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T17:25:29.000',
  'community_board': '10 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035747',
  'y_coordinate_state_plane': '186530',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67850872956214',
  'longitude': '-73.81433825229212',
  'location': {'latitude': '40.67850872956214',
   'longitude': '-73.81433825229212',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308628',
  'created_date': '2025-03-10T05:59:00.000',
  'closed_date': '2025-03-12T03:45:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Hydrant Running (WC3)',
  'incident_zip': '11229',
  'incident_address': '2222 KNAPP STREET',
  'street_name': 'KNAPP STREET',
  'cross_street_1': 'AVENUE V',
  'cross_street_2': 'WHITNEY AVE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection investigated this complaint and shut the running hydrant.',
  'resolution_action_updated_date': '2025-03-12T03:45:00.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3073930001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002628',
  'y_coordinate_state_plane': '157467',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59886774871107',
  'longitude': '-73.93382100890058',
  'location': {'latitude': '40.59886774871107',
   'longitude': '-73.93382100890058',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315895',
  'created_date': '2025-03-10T05:59:01.000',
  'closed_date': '2025-03-10T07:18:53.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Rough, Pitted or Cracked Roads',
  'location_type': 'Street',
  'incident_zip': '10306',
  'incident_address': '578 TYSENS LANE',
  'street_name': 'TYSENS LANE',
  'cross_street_1': 'HYLAN BOULEVARD',
  'cross_street_2': 'PRIMROSE PLACE',
  'intersection_street_1': 'HYLAN BOULEVARD',
  'intersection_street_2': 'PRIMROSE PLACE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'TYSENS LANE',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation investigated this request and determined this street requires a reconstruction project. This location is part of an existing project or may be included in a future project. These projects are long term and vary in length.',
  'resolution_action_updated_date': '2025-03-10T07:19:01.000',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5040010001',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '952168',
  'y_coordinate_state_plane': '144549',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.56337141114987',
  'longitude': '-74.11546559400347',
  'location': {'latitude': '40.56337141114987',
   'longitude': '-74.11546559400347',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314994',
  'created_date': '2025-03-10T05:59:47.000',
  'closed_date': '2025-03-11T08:49:21.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11209',
  'incident_address': '6902 RIDGE BOULEVARD',
  'street_name': 'RIDGE BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3058700037',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '976284',
  'y_coordinate_state_plane': '171160',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63646766454153',
  'longitude': '-74.0287016455361',
  'location': {'latitude': '40.63646766454153',
   'longitude': '-74.0287016455361',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315582',
  'created_date': '2025-03-10T05:59:47.000',
  'closed_date': '2025-03-10T14:17:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10461',
  'incident_address': '1735 PARKVIEW AVENUE',
  'street_name': 'PARKVIEW AVENUE',
  'cross_street_1': 'ROBERTS AVENUE',
  'cross_street_2': 'BUHRE AVENUE',
  'intersection_street_1': 'ROBERTS AVENUE',
  'intersection_street_2': 'BUHRE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'PARKVIEW AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T14:17:51.000',
  'community_board': '10 BRONX',
  'bbl': '2041770016',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1031787',
  'y_coordinate_state_plane': '248002',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.847255309595425',
  'longitude': '-73.82818046269905',
  'location': {'latitude': '40.847255309595425',
   'longitude': '-73.82818046269905',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310992',
  'created_date': '2025-03-10T05:59:52.000',
  'closed_date': '2025-03-12T12:45:00.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10034',
  'incident_address': '241 SHERMAN AVENUE',
  'street_name': 'SHERMAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022230005',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1006543',
  'y_coordinate_state_plane': '254798',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86600810878767',
  'longitude': '-73.9194006525354',
  'location': {'latitude': '40.86600810878767',
   'longitude': '-73.9194006525354',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316308',
  'created_date': '2025-03-10T05:59:57.000',
  'closed_date': '2025-03-11T17:09:46.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11374',
  'incident_address': '96-09 66 AVENUE',
  'street_name': '66 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'REGO PARK',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '06 QUEENS',
  'bbl': '4030870033',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1023967',
  'y_coordinate_state_plane': '204028',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72659726146033',
  'longitude': '-73.85670531368736',
  'location': {'latitude': '40.72659726146033',
   'longitude': '-73.85670531368736',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311275',
  'created_date': '2025-03-10T06:02:00.000',
  'closed_date': '2025-03-10T07:10:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'LOW WATER PRESSURE - WLWP',
  'incident_zip': '11367',
  'incident_address': '147-30 78 AVENUE',
  'street_name': '78 AVENUE',
  'cross_street_1': '147 ST',
  'cross_street_2': '150 ST',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection investigated this complaint and found it to be a temporary condition.',
  'resolution_action_updated_date': '2025-03-10T07:10:00.000',
  'community_board': '08 QUEENS',
  'bbl': '4066890015',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035255',
  'y_coordinate_state_plane': '201904',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72070952376404',
  'longitude': '-73.81599562106007',
  'location': {'latitude': '40.72070952376404',
   'longitude': '-73.81599562106007',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311825',
  'created_date': '2025-03-10T06:02:08.000',
  'closed_date': '2025-03-10T13:25:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11365',
  'incident_address': '61-31 162 STREET',
  'street_name': '162 STREET',
  'cross_street_1': 'HORACE HARDING EXPRESSWAY',
  'cross_street_2': '65 AVENUE',
  'intersection_street_1': 'HORACE HARDING EXPRESSWAY',
  'intersection_street_2': '65 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FRESH MEADOWS',
  'landmark': '162 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T13:25:18.000',
  'community_board': '08 QUEENS',
  'bbl': '4067590016',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037842',
  'y_coordinate_state_plane': '208203',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.737983403575505',
  'longitude': '-73.80661268563682',
  'location': {'latitude': '40.737983403575505',
   'longitude': '-73.80661268563682',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315286',
  'created_date': '2025-03-10T06:02:22.000',
  'closed_date': '2025-03-10T07:22:35.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11228',
  'incident_address': '901 77 STREET',
  'street_name': '77 STREET',
  'cross_street_1': 'FORT HAMILTON PARKWAY',
  'cross_street_2': '10 AVENUE',
  'intersection_street_1': 'FORT HAMILTON PARKWAY',
  'intersection_street_2': '10 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '77 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:22:38.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3059540001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '979376',
  'y_coordinate_state_plane': '166816',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62454654340271',
  'longitude': '-74.01755797547641',
  'location': {'latitude': '40.62454654340271',
   'longitude': '-74.01755797547641',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308337',
  'created_date': '2025-03-10T06:02:31.000',
  'closed_date': '2025-03-10T06:16:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11385',
  'incident_address': '80-12 CYPRESS HILLS STREET',
  'street_name': 'CYPRESS HILLS STREET',
  'cross_street_1': '80 AVENUE',
  'cross_street_2': 'CYPRESS AVENUE',
  'intersection_street_1': '80 AVENUE',
  'intersection_street_2': 'CYPRESS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'CYPRESS HILLS STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T06:16:23.000',
  'community_board': '05 QUEENS',
  'bbl': '4037320203',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1015763',
  'y_coordinate_state_plane': '193014',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69639950748596',
  'longitude': '-73.88635598340055',
  'location': {'latitude': '40.69639950748596',
   'longitude': '-73.88635598340055',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64318135',
  'created_date': '2025-03-10T06:03:00.000',
  'closed_date': '2025-03-10T08:15:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Pedestrian Signal',
  'incident_zip': '11101',
  'intersection_street_1': '48 AVENUE',
  'intersection_street_2': '33 STREET',
  'address_type': 'INTERSECTION',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-10T08:15:00.000',
  'community_board': '02 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1002968',
  'y_coordinate_state_plane': '209182',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.740813079155004',
  'longitude': '-73.93245307312951',
  'location': {'latitude': '40.740813079155004',
   'longitude': '-73.93245307312951',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307909',
  'created_date': '2025-03-10T06:03:32.000',
  'closed_date': '2025-03-10T13:15:04.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Removal Request',
  'location_type': 'Sidewalk',
  'incident_zip': '11217',
  'incident_address': '51 4 AVENUE',
  'street_name': '4 AVENUE',
  'cross_street_1': 'DEAN STREET',
  'cross_street_2': 'BERGEN STREET',
  'intersection_street_1': 'DEAN STREET',
  'intersection_street_2': 'BERGEN STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '4 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation will address the situation at the location by providing educational outreach about proper sanitation procedures.',
  'resolution_action_updated_date': '2025-03-10T10:11:17.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3009300003',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989966',
  'y_coordinate_state_plane': '188042',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68280677338634',
  'longitude': '-73.9793908350934',
  'location': {'latitude': '40.68280677338634',
   'longitude': '-73.9793908350934',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307448',
  'created_date': '2025-03-10T06:03:34.000',
  'closed_date': '2025-03-10T06:51:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11209',
  'incident_address': '8025 FOURTH AVENUE',
  'street_name': 'FOURTH AVENUE',
  'cross_street_1': '80 STREET',
  'cross_street_2': '81 STREET',
  'intersection_street_1': '80 STREET',
  'intersection_street_2': '81 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '4 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T06:51:40.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3059890001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '976854',
  'y_coordinate_state_plane': '167693',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62695197778201',
  'longitude': '-74.0266441255674',
  'location': {'latitude': '40.62695197778201',
   'longitude': '-74.0266441255674',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315636',
  'created_date': '2025-03-10T06:03:54.000',
  'agency': 'EDC',
  'agency_name': 'Economic Development Corporation',
  'complaint_type': 'Noise - Helicopter',
  'descriptor': 'News Gathering',
  'location_type': 'Above Address',
  'incident_zip': '11238',
  'incident_address': '34 BUTLER PLACE',
  'street_name': 'BUTLER PLACE',
  'cross_street_1': 'PLAZA ST EAST',
  'cross_street_2': 'STERLING PLACE',
  'intersection_street_1': 'PLAZA ST EAST',
  'intersection_street_2': 'STERLING PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BUTLER PLACE',
  'status': 'In Progress',
  'community_board': '08 BROOKLYN',
  'bbl': '3011717502',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993089',
  'y_coordinate_state_plane': '185256',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.675157267134466',
  'longitude': '-73.96813444417421',
  'location': {'latitude': '40.675157267134466',
   'longitude': '-73.96813444417421',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64323530',
  'created_date': '2025-03-10T06:04:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Out',
  'incident_zip': '10304',
  'intersection_street_1': 'RICHMOND ROAD',
  'intersection_street_2': 'FOREST ROAD',
  'address_type': 'INTERSECTION',
  'city': 'STATEN ISLAND',
  'status': 'Open',
  'community_board': '02 STATEN ISLAND',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '956248',
  'y_coordinate_state_plane': '155212',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.592653049714016',
  'longitude': '-74.10082554538602',
  'location': {'latitude': '40.592653049714016',
   'longitude': '-74.10082554538602',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64326540',
  'created_date': '2025-03-10T06:04:00.000',
  'closed_date': '2025-03-10T07:30:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Pedestrian Signal',
  'incident_zip': '11215',
  'intersection_street_1': 'HAMILTON AVENUE',
  'intersection_street_2': '14 STREET',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Assigned',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportation\'s website. Please click the "Learn More" link below.',
  'resolution_action_updated_date': '2025-03-10T07:30:00.000',
  'community_board': '06 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984911',
  'y_coordinate_state_plane': '183472',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67026497550874',
  'longitude': '-73.99761719799153',
  'location': {'latitude': '40.67026497550874',
   'longitude': '-73.99761719799153',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307886',
  'created_date': '2025-03-10T06:04:50.000',
  'agency': 'EDC',
  'agency_name': 'Economic Development Corporation',
  'complaint_type': 'Noise - Helicopter',
  'descriptor': 'News Gathering',
  'location_type': 'Above Address',
  'incident_zip': '10314',
  'incident_address': '170 QUINLAN AVENUE',
  'street_name': 'QUINLAN AVENUE',
  'cross_street_1': 'SOUTH GANNON AVENUE',
  'cross_street_2': 'WESTWOOD AVENUE',
  'intersection_street_1': 'SOUTH GANNON AVENUE',
  'intersection_street_2': 'WESTWOOD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'QUINLAN AVENUE',
  'status': 'In Progress',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5007640053',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '948517',
  'y_coordinate_state_plane': '160691',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.60766398186747',
  'longitude': '-74.12869115743761',
  'location': {'latitude': '40.60766398186747',
   'longitude': '-74.12869115743761',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311261',
  'created_date': '2025-03-10T06:05:00.000',
  'closed_date': '2025-03-14T06:21:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '10016',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'EAST 28 STREET',
  'address_type': 'INTERSECTION',
  'city': 'MANHATTAN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-14T06:21:00.000',
  'community_board': '05 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987770',
  'y_coordinate_state_plane': '210584',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.744680327141786',
  'longitude': '-73.98729677522071',
  'location': {'latitude': '40.744680327141786',
   'longitude': '-73.98729677522071',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314597',
  'created_date': '2025-03-10T06:05:00.000',
  'closed_date': '2025-03-10T07:49:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '10473',
  'incident_address': '700 SOUNDVIEW AVENUE',
  'street_name': 'SOUNDVIEW AVENUE',
  'cross_street_1': 'SEWARD AVENUE',
  'cross_street_2': 'ST LAWRENCE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'DSNY already has a request to investigate this reportedly abandoned vehicle and cannot open multiple service requests for the same vehicle at once. Your request is being closed while we action the prior report.',
  'resolution_action_updated_date': '2025-03-10T12:00:00.000',
  'community_board': '09 BRONX',
  'bbl': '2035970004',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021943',
  'y_coordinate_state_plane': '237764',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81920249184053',
  'longitude': '-73.86381845368497',
  'location': {'latitude': '40.81920249184053',
   'longitude': '-73.86381845368497',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64323239',
  'created_date': '2025-03-10T06:05:00.000',
  'closed_date': '2025-03-13T08:35:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Support Bracket',
  'incident_zip': '11229',
  'intersection_street_1': 'GRAVESEND NECK ROAD',
  'intersection_street_2': 'OCEAN AVENUE',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Assigned',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-13T08:35:00.000',
  'community_board': '15 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997891',
  'y_coordinate_state_plane': '156641',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.5966091029645',
  'longitude': '-73.95088056140999',
  'location': {'latitude': '40.5966091029645',
   'longitude': '-73.95088056140999',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310879',
  'created_date': '2025-03-10T06:06:26.000',
  'closed_date': '2025-03-10T06:16:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11385',
  'incident_address': 'CYPRESS HILLS STREET',
  'street_name': 'CYPRESS HILLS STREET',
  'cross_street_1': 'CYPRESS AVENUE',
  'cross_street_2': 'CYPRESS HILLS STREET',
  'intersection_street_1': 'CYPRESS AVENUE',
  'intersection_street_2': 'CYPRESS HILLS STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T06:16:43.000',
  'community_board': '05 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1016785',
  'y_coordinate_state_plane': '191528',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69231708717993',
  'longitude': '-73.8826775691776',
  'location': {'latitude': '40.69231708717993',
   'longitude': '-73.8826775691776',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307530',
  'created_date': '2025-03-10T06:07:06.000',
  'closed_date': '2025-03-10T09:23:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11208',
  'incident_address': '1389 STANLEY AVENUE',
  'street_name': 'STANLEY AVENUE',
  'cross_street_1': 'EMERALD STREET',
  'cross_street_2': 'AMBER STREET',
  'intersection_street_1': 'EMERALD STREET',
  'intersection_street_2': 'AMBER STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'STANLEY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:23:39.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3045180128',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1023662',
  'y_coordinate_state_plane': '182262',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.66685609809009',
  'longitude': '-73.8579330795346',
  'location': {'latitude': '40.66685609809009',
   'longitude': '-73.8579330795346',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311714',
  'created_date': '2025-03-10T06:07:13.000',
  'closed_date': '2025-03-10T06:23:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11414',
  'incident_address': '160-39 96 STREET',
  'street_name': '96 STREET',
  'cross_street_1': '160 AVENUE',
  'cross_street_2': '161 AVENUE',
  'intersection_street_1': '160 AVENUE',
  'intersection_street_2': '161 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'HOWARD BEACH',
  'landmark': '96 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T06:23:13.000',
  'community_board': '10 QUEENS',
  'bbl': '4141860042',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1029630',
  'y_coordinate_state_plane': '178757',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.6572070859321',
  'longitude': '-73.83644409619929',
  'location': {'latitude': '40.6572070859321',
   'longitude': '-73.83644409619929',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314095',
  'created_date': '2025-03-10T06:07:39.000',
  'closed_date': '2025-03-11T02:07:35.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11207',
  'incident_address': '375 JAMAICA AVENUE',
  'street_name': 'JAMAICA AVENUE',
  'cross_street_1': 'WARWICK STREET',
  'cross_street_2': 'ASHFORD STREET',
  'intersection_street_1': 'WARWICK STREET',
  'intersection_street_2': 'ASHFORD STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'JAMAICA AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-11T02:07:40.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3038890001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1015294',
  'y_coordinate_state_plane': '187994',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68262243113261',
  'longitude': '-73.8880704487505',
  'location': {'latitude': '40.68262243113261',
   'longitude': '-73.8880704487505',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310390',
  'created_date': '2025-03-10T06:08:32.000',
  'closed_date': '2025-03-10T06:51:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11204',
  'incident_address': '5811 21 AVENUE',
  'street_name': '21 AVENUE',
  'cross_street_1': '58 STREET',
  'cross_street_2': '59 STREET',
  'intersection_street_1': '58 STREET',
  'intersection_street_2': '59 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '21 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T06:51:54.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3055080006',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989909',
  'y_coordinate_state_plane': '164819',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61906472863649',
  'longitude': '-73.97961583434197',
  'location': {'latitude': '40.61906472863649',
   'longitude': '-73.97961583434197',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316001',
  'created_date': '2025-03-10T06:08:35.000',
  'closed_date': '2025-03-10T06:16:52.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11385',
  'incident_address': 'VERMONT PLACE',
  'street_name': 'VERMONT PLACE',
  'cross_street_1': 'CYPRESS AVENUE',
  'cross_street_2': 'VERMONT PLACE',
  'intersection_street_1': 'CYPRESS AVENUE',
  'intersection_street_2': 'VERMONT PLACE',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T06:16:54.000',
  'community_board': '05 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014582',
  'y_coordinate_state_plane': '191204',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.691435607096956',
  'longitude': '-73.89062312013306',
  'location': {'latitude': '40.691435607096956',
   'longitude': '-73.89062312013306',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307400',
  'created_date': '2025-03-10T06:08:42.000',
  'closed_date': '2025-03-10T08:39:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10455',
  'incident_address': '774 FOX STREET',
  'street_name': 'FOX STREET',
  'cross_street_1': 'EAST  156 STREET',
  'cross_street_2': 'LONGWOOD AVENUE',
  'intersection_street_1': 'EAST  156 STREET',
  'intersection_street_2': 'LONGWOOD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'FOX STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:39:52.000',
  'community_board': '02 BRONX',
  'bbl': '2027200057',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012553',
  'y_coordinate_state_plane': '236624',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81610859082967',
  'longitude': '-73.89774848270802',
  'location': {'latitude': '40.81610859082967',
   'longitude': '-73.89774848270802',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315858',
  'created_date': '2025-03-10T06:08:58.000',
  'closed_date': '2025-03-10T07:07:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10458',
  'incident_address': '2474 CROTONA AVENUE',
  'street_name': 'CROTONA AVENUE',
  'cross_street_1': 'EAST  187 STREET',
  'cross_street_2': 'EAST  189 STREET',
  'intersection_street_1': 'EAST  187 STREET',
  'intersection_street_2': 'EAST  189 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CROTONA AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:07:53.000',
  'community_board': '06 BRONX',
  'bbl': '2031040007',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016695',
  'y_coordinate_state_plane': '251053',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.855697744782695',
  'longitude': '-73.8827147149622',
  'location': {'latitude': '40.855697744782695',
   'longitude': '-73.8827147149622',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311313',
  'created_date': '2025-03-10T06:09:57.000',
  'closed_date': '2025-03-10T08:38:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10455',
  'incident_address': '753 FOX STREET',
  'street_name': 'FOX STREET',
  'cross_street_1': 'EAST  156 STREET',
  'cross_street_2': 'LONGWOOD AVENUE',
  'intersection_street_1': 'EAST  156 STREET',
  'intersection_street_2': 'LONGWOOD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'FOX STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:38:48.000',
  'community_board': '02 BRONX',
  'bbl': '2027070085',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012422',
  'y_coordinate_state_plane': '236467',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8156780888314',
  'longitude': '-73.89822241087543',
  'location': {'latitude': '40.8156780888314',
   'longitude': '-73.89822241087543',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312977',
  'created_date': '2025-03-10T06:10:03.000',
  'closed_date': '2025-03-10T07:23:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11436',
  'incident_address': '141-03 116 AVENUE',
  'street_name': '116 AVENUE',
  'cross_street_1': '141 STREET',
  'cross_street_2': '142 STREET',
  'intersection_street_1': '141 STREET',
  'intersection_street_2': '142 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '116 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T07:23:49.000',
  'community_board': '12 QUEENS',
  'bbl': '4119850039',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1039513',
  'y_coordinate_state_plane': '187218',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68037441887649',
  'longitude': '-73.80075512408732',
  'location': {'latitude': '40.68037441887649',
   'longitude': '-73.80075512408732',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315780',
  'created_date': '2025-03-10T06:10:29.000',
  'closed_date': '2025-03-10T06:10:29.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Elevator',
  'descriptor': 'Elevator - Multiple Devices On Property',
  'incident_zip': '10009',
  'incident_address': '515 EAST   14 STREET',
  'street_name': 'EAST   14 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'Your Service Request has been submitted to the Department of Buildings.  Please check back later for status.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '06 MANHATTAN',
  'bbl': '1009720001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989929',
  'y_coordinate_state_plane': '205270',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73009358944979',
  'longitude': '-73.97950970957208',
  'location': {'latitude': '40.73009358944979',
   'longitude': '-73.97950970957208',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311821',
  'created_date': '2025-03-10T06:10:38.000',
  'closed_date': '2025-03-10T10:07:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Vehicle',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10304',
  'incident_address': '2 CHESTNUT STREET',
  'street_name': 'CHESTNUT STREET',
  'cross_street_1': 'VAN DUZER STREET',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'VAN DUZER STREET',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'CHESTNUT STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T10:07:26.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5005670018',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '960476',
  'y_coordinate_state_plane': '165298',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'vehicle_type': 'Car',
  'latitude': '40.62034939382926',
  'longitude': '-74.08563748971272',
  'location': {'latitude': '40.62034939382926',
   'longitude': '-74.08563748971272',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310637',
  'created_date': '2025-03-10T06:11:23.000',
  'closed_date': '2025-03-10T08:32:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '1883 WEST    4 STREET',
  'street_name': 'WEST    4 STREET',
  'cross_street_1': 'HIGHLAWN AVENUE',
  'cross_street_2': 'AVENUE S',
  'intersection_street_1': 'HIGHLAWN AVENUE',
  'intersection_street_2': 'AVENUE S',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST    4 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:32:13.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3066770047',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990757',
  'y_coordinate_state_plane': '158595',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6019805461178',
  'longitude': '-73.97656726869101',
  'location': {'latitude': '40.6019805461178',
   'longitude': '-73.97656726869101',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307025',
  'created_date': '2025-03-10T06:11:57.000',
  'closed_date': '2025-03-10T19:03:47.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10027',
  'incident_address': '192 CLAREMONT AVENUE',
  'street_name': 'CLAREMONT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1019930102',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '995288',
  'y_coordinate_state_plane': '236188',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81495033685791',
  'longitude': '-73.96012322412237',
  'location': {'latitude': '40.81495033685791',
   'longitude': '-73.96012322412237',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308779',
  'created_date': '2025-03-10T06:11:57.000',
  'closed_date': '2025-03-10T09:19:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '122 BAY   13 STREET',
  'street_name': 'BAY   13 STREET',
  'cross_street_1': 'BENSON AVENUE',
  'cross_street_2': 'BATH AVENUE',
  'intersection_street_1': 'BENSON AVENUE',
  'intersection_street_2': 'BATH AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAY   13 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:19:09.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3063970060',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '981735',
  'y_coordinate_state_plane': '160467',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60712083647698',
  'longitude': '-74.00905760814771',
  'location': {'latitude': '40.60712083647698',
   'longitude': '-74.00905760814771',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310717',
  'created_date': '2025-03-10T06:12:00.000',
  'closed_date': '2025-03-10T22:17:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '10473',
  'incident_address': '700 SOUNDVIEW AVENUE',
  'street_name': 'SOUNDVIEW AVENUE',
  'cross_street_1': 'SEWARD AVENUE',
  'cross_street_2': 'ST LAWRENCE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation does NOT have jurisdiction over vehicles (abandoned or otherwise) that have license plates affixed to them. Your request will be referred to the NYPD for further action.',
  'resolution_action_updated_date': '2025-03-10T12:00:00.000',
  'community_board': '09 BRONX',
  'bbl': '2035970004',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021943',
  'y_coordinate_state_plane': '237764',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81920249184053',
  'longitude': '-73.86381845368497',
  'location': {'latitude': '40.81920249184053',
   'longitude': '-73.86381845368497',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312320',
  'created_date': '2025-03-10T06:12:10.000',
  'closed_date': '2025-03-11T15:01:42.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10466',
  'incident_address': '634 EAST  233 STREET',
  'street_name': 'EAST  233 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '12 BRONX',
  'bbl': '2048350054',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023103',
  'y_coordinate_state_plane': '265037',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.894053593243704',
  'longitude': '-73.85946940346797',
  'location': {'latitude': '40.894053593243704',
   'longitude': '-73.85946940346797',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311531',
  'created_date': '2025-03-10T06:12:16.000',
  'closed_date': '2025-03-14T15:21:11.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Sidewalk Condition',
  'descriptor': 'Blocked - Construction',
  'location_type': 'Sidewalk',
  'incident_zip': '11222',
  'incident_address': '141 BANKER STREET',
  'street_name': 'BANKER STREET',
  'cross_street_1': 'NORTH   15 STREET',
  'cross_street_2': 'NORMAN AVENUE',
  'intersection_street_1': 'NORTH   15 STREET',
  'intersection_street_2': 'NORMAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BANKER STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected the condition you reported and found that the condition meets its standards and/or there is a valid permit to conduct work.',
  'resolution_action_updated_date': '2025-03-14T15:21:13.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3026420052',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996770',
  'y_coordinate_state_plane': '202984',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.72381203921281',
  'longitude': '-73.95483108558582',
  'location': {'latitude': '40.72381203921281',
   'longitude': '-73.95483108558582',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313666',
  'created_date': '2025-03-10T06:12:18.000',
  'closed_date': '2025-03-10T12:03:40.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10468',
  'incident_address': '2764 UNIVERSITY AVENUE',
  'street_name': 'UNIVERSITY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '08 BRONX',
  'bbl': '2032490006',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012040',
  'y_coordinate_state_plane': '256453',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.870534982633956',
  'longitude': '-73.8995196462581',
  'location': {'latitude': '40.870534982633956',
   'longitude': '-73.8995196462581',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314660',
  'created_date': '2025-03-10T06:12:33.000',
  'closed_date': '2025-03-10T06:37:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10026',
  'incident_address': '313 WEST  114 STREET',
  'street_name': 'WEST  114 STREET',
  'cross_street_1': 'FREDERICK DOUGLASS BOULEVARD',
  'cross_street_2': 'MANHATTAN AVENUE',
  'intersection_street_1': 'FREDERICK DOUGLASS BOULEVARD',
  'intersection_street_2': 'MANHATTAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  114 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T06:37:39.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1018480006',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996213',
  'y_coordinate_state_plane': '231952',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80332248776049',
  'longitude': '-73.95678904346106',
  'location': {'latitude': '40.80332248776049',
   'longitude': '-73.95678904346106',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310238',
  'created_date': '2025-03-10T06:14:26.000',
  'closed_date': '2025-03-10T08:58:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10461',
  'incident_address': '1025 ESPLANADE',
  'street_name': 'ESPLANADE',
  'cross_street_1': 'PAULDING AVENUE',
  'cross_street_2': 'HONE AVENUE',
  'intersection_street_1': 'PAULDING AVENUE',
  'intersection_street_2': 'HONE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ESPLANADE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:59:01.000',
  'community_board': '11 BRONX',
  'bbl': '2043280023',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023108',
  'y_coordinate_state_plane': '250863',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85515035576741',
  'longitude': '-73.85953352784013',
  'location': {'latitude': '40.85515035576741',
   'longitude': '-73.85953352784013',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306031',
  'created_date': '2025-03-10T06:14:35.000',
  'closed_date': '2025-03-10T08:17:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper Use',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11210',
  'incident_address': '1168 EAST   38 STREET',
  'street_name': 'EAST   38 STREET',
  'cross_street_1': 'AVENUE J',
  'cross_street_2': 'AVENUE K',
  'intersection_street_1': 'AVENUE J',
  'intersection_street_2': 'AVENUE K',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   38 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:17:56.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3076190050',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1001107',
  'y_coordinate_state_plane': '167564',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62658494919724',
  'longitude': '-73.93927290646143',
  'location': {'latitude': '40.62658494919724',
   'longitude': '-73.93927290646143',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310955',
  'created_date': '2025-03-10T06:15:17.000',
  'closed_date': '2025-03-11T13:51:51.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10039',
  'incident_address': '2588 7 AVENUE',
  'street_name': '7 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'HPD responded to a complaint of no heat or hot water in the building. An occupant of the building confirmed heat and hot water had been restored when the Inspector attempted to conduct the inspection or contacted you at the phone number associated with the complaint. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020350001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001677',
  'y_coordinate_state_plane': '239663',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82447793690331',
  'longitude': '-73.93703278577436',
  'location': {'latitude': '40.82447793690331',
   'longitude': '-73.93703278577436',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306359',
  'created_date': '2025-03-10T06:16:53.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Food Poisoning',
  'descriptor': '3 or More',
  'location_type': 'Restaurant/Bar/Deli/Bakery',
  'incident_zip': '11420',
  'incident_address': '114-45 LEFFERTS BOULEVARD',
  'street_name': 'LEFFERTS BOULEVARD',
  'cross_street_1': 'LINDEN BOULEVARD',
  'cross_street_2': '115 AVENUE',
  'intersection_street_1': 'LINDEN BOULEVARD',
  'intersection_street_2': '115 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': 'LEFFERTS BOULEVARD',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'bbl': '4116460040',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1034152',
  'y_coordinate_state_plane': '186319',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67793871876881',
  'longitude': '-73.82009023977501',
  'location': {'latitude': '40.67793871876881',
   'longitude': '-73.82009023977501',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310307',
  'created_date': '2025-03-10T06:17:00.000',
  'closed_date': '2025-03-11T10:48:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: air condition/ventilation equipment (NV1)',
  'incident_zip': '10013',
  'incident_address': '50 BAYARD STREET',
  'street_name': 'BAYARD STREET',
  'cross_street_1': 'BOWERY',
  'cross_street_2': 'ELIZABETH ST',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-11T10:48:00.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1002027501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984967',
  'y_coordinate_state_plane': '199864',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.715257221061',
  'longitude': '-73.99741358199292',
  'location': {'latitude': '40.715257221061',
   'longitude': '-73.99741358199292',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314343',
  'created_date': '2025-03-10T06:17:08.000',
  'closed_date': '2025-03-10T06:37:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11204',
  'incident_address': '1760 60 STREET',
  'street_name': '60 STREET',
  'cross_street_1': '17 AVENUE',
  'cross_street_2': '18 AVENUE',
  'intersection_street_1': '17 AVENUE',
  'intersection_street_2': '18 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '60 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T06:38:01.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3055180032',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987525',
  'y_coordinate_state_plane': '166101',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.622584753403586',
  'longitude': '-73.98820256886238',
  'location': {'latitude': '40.622584753403586',
   'longitude': '-73.98820256886238',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307586',
  'created_date': '2025-03-10T06:17:47.000',
  'closed_date': '2025-03-10T06:56:29.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10306',
  'incident_address': 'COLFAX AVENUE',
  'street_name': 'COLFAX AVENUE',
  'cross_street_1': 'COLFAX AVENUE',
  'cross_street_2': 'EDISON STREET',
  'intersection_street_1': 'COLFAX AVENUE',
  'intersection_street_2': 'EDISON STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T06:56:35.000',
  'community_board': '02 STATEN ISLAND',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '954682',
  'y_coordinate_state_plane': '150312',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'vehicle_type': 'Car',
  'latitude': '40.5791984485906',
  'longitude': '-74.10644272701394',
  'location': {'latitude': '40.5791984485906',
   'longitude': '-74.10644272701394',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314903',
  'created_date': '2025-03-10T06:18:22.000',
  'closed_date': '2025-03-10T09:26:56.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10461',
  'incident_address': '1025 ESPLANADE',
  'street_name': 'ESPLANADE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '11 BRONX',
  'bbl': '2043280023',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023099',
  'y_coordinate_state_plane': '250853',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85512294839281',
  'longitude': '-73.85956611953316',
  'location': {'latitude': '40.85512294839281',
   'longitude': '-73.85956611953316',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315285',
  'created_date': '2025-03-10T06:18:24.000',
  'closed_date': '2025-03-10T08:46:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '8762 20 AVENUE',
  'street_name': '20 AVENUE',
  'cross_street_1': 'BATH AVENUE',
  'cross_street_2': 'CROPSEY AVENUE',
  'intersection_street_1': 'BATH AVENUE',
  'intersection_street_2': 'CROPSEY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '20 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:46:31.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3064410035',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '983757',
  'y_coordinate_state_plane': '158321',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60123084691857',
  'longitude': '-74.00177535065045',
  'location': {'latitude': '40.60123084691857',
   'longitude': '-74.00177535065045',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306518',
  'created_date': '2025-03-10T06:19:11.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Subway',
  'address_type': 'ADDRESS',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team went to the location provided but could not find the individual that you reported.',
  'resolution_action_updated_date': '2025-03-12T12:46:47.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988035',
  'y_coordinate_state_plane': '214568',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'bridge_highway_name': '2',
  'road_ramp': 'W 42 St & Broadway SE corner',
  'bridge_highway_segment': 'Entrance',
  'latitude': '40.75561529206571',
  'longitude': '-73.98633818212886',
  'location': {'latitude': '40.75561529206571',
   'longitude': '-73.98633818212886',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311345',
  'created_date': '2025-03-10T06:19:36.000',
  'closed_date': '2025-03-10T07:02:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11215',
  'incident_address': '599 10 STREET',
  'street_name': '10 STREET',
  'cross_street_1': '7 AVENUE',
  'cross_street_2': '8 AVENUE',
  'intersection_street_1': '7 AVENUE',
  'intersection_street_2': '8 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '10 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:02:30.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3010920045',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989624',
  'y_coordinate_state_plane': '181775',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66560548235201',
  'longitude': '-73.98062892043745',
  'location': {'latitude': '40.66560548235201',
   'longitude': '-73.98062892043745',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315160',
  'created_date': '2025-03-10T06:20:00.000',
  'closed_date': '2025-03-14T07:00:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '11215',
  'incident_address': '284 3 AVENUE',
  'street_name': '3 AVENUE',
  'cross_street_1': 'PRESIDENT ST',
  'cross_street_2': 'CARROLL ST',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': "The Department of Environmental Protection (DEP) didn't observe a violation of the NYC Air or Noise Code at the time of inspection and couldn't issue a summons.  If the problem still exists, please go to nyc.gov/311 or call 311 to file a new Service Request. If you're outside of New York City, please call (212) NEW-YORK (212-639-9675).",
  'resolution_action_updated_date': '2025-03-14T07:00:00.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3004470035',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988102',
  'y_coordinate_state_plane': '186062',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67737313001664',
  'longitude': '-73.98611266011812',
  'location': {'latitude': '40.67737313001664',
   'longitude': '-73.98611266011812',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310240',
  'created_date': '2025-03-10T06:20:14.000',
  'closed_date': '2025-03-10T08:47:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '8801 20 AVENUE',
  'street_name': '20 AVENUE',
  'cross_street_1': 'BATH AVENUE',
  'cross_street_2': 'CROPSEY AVENUE',
  'intersection_street_1': 'BATH AVENUE',
  'intersection_street_2': 'CROPSEY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '20 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:47:05.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3064420012',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '983584',
  'y_coordinate_state_plane': '158089',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60059404267213',
  'longitude': '-74.00239832100644',
  'location': {'latitude': '40.60059404267213',
   'longitude': '-74.00239832100644',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308182',
  'created_date': '2025-03-10T06:20:28.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Residential Building/House',
  'incident_zip': '11217',
  'incident_address': '170 HOYT STREET',
  'street_name': 'HOYT STREET',
  'cross_street_1': 'WYCKOFF STREET',
  'cross_street_2': 'WARREN STREET',
  'intersection_street_1': 'WYCKOFF STREET',
  'intersection_street_2': 'WARREN STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HOYT STREET',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team offered services to the individual, but the individual did not accept assistance.',
  'resolution_action_updated_date': '2025-03-10T10:08:56.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3003910038',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987368',
  'y_coordinate_state_plane': '188902',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68516857360094',
  'longitude': '-73.98875758367168',
  'location': {'latitude': '40.68516857360094',
   'longitude': '-73.98875758367168',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307511',
  'created_date': '2025-03-10T06:20:41.000',
  'closed_date': '2025-03-11T01:18:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11229',
  'incident_address': '2110 AVENUE T',
  'street_name': 'AVENUE T',
  'cross_street_1': 'EAST   21 STREET',
  'cross_street_2': 'EAST   22 STREET',
  'intersection_street_1': 'EAST   21 STREET',
  'intersection_street_2': 'EAST   22 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AVENUE T',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-11T01:18:30.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3073260004',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997969',
  'y_coordinate_state_plane': '158519',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60176371163046',
  'longitude': '-73.95059587982102',
  'location': {'latitude': '40.60176371163046',
   'longitude': '-73.95059587982102',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310997',
  'created_date': '2025-03-10T06:21:25.000',
  'closed_date': '2025-03-12T14:59:42.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11226',
  'incident_address': '358 EAST   17 STREET',
  'street_name': 'EAST   17 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051470038',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994589',
  'y_coordinate_state_plane': '173344',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64245982487001',
  'longitude': '-73.96274504575779',
  'location': {'latitude': '40.64245982487001',
   'longitude': '-73.96274504575779',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306927',
  'created_date': '2025-03-10T06:21:54.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Store/Commercial',
  'incident_zip': '10036',
  'incident_address': '302 WEST   46 STREET',
  'street_name': 'WEST   46 STREET',
  'cross_street_1': '8 AVENUE',
  'cross_street_2': '9 AVENUE',
  'intersection_street_1': '8 AVENUE',
  'intersection_street_2': '9 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   46 STREET',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team went to the location provided but could not find the individual that you reported.',
  'resolution_action_updated_date': '2025-03-10T11:00:50.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010360036',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987465',
  'y_coordinate_state_plane': '216158',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75997966154446',
  'longitude': '-73.9883948157466',
  'location': {'latitude': '40.75997966154446',
   'longitude': '-73.9883948157466',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311013',
  'created_date': '2025-03-10T06:22:01.000',
  'closed_date': '2025-03-12T12:45:00.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10034',
  'incident_address': '241 SHERMAN AVENUE',
  'street_name': 'SHERMAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022230005',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1006543',
  'y_coordinate_state_plane': '254798',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86600810878767',
  'longitude': '-73.9194006525354',
  'location': {'latitude': '40.86600810878767',
   'longitude': '-73.9194006525354',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307510',
  'created_date': '2025-03-10T06:22:29.000',
  'closed_date': '2025-03-10T09:38:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10460',
  'incident_address': '1504 VYSE AVENUE',
  'street_name': 'VYSE AVENUE',
  'cross_street_1': 'JENNINGS STREET',
  'cross_street_2': 'EAST  172 STREET',
  'intersection_street_1': 'JENNINGS STREET',
  'intersection_street_2': 'EAST  172 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'VYSE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:38:30.000',
  'community_board': '03 BRONX',
  'bbl': '2029950122',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015218',
  'y_coordinate_state_plane': '242849',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83318549333037',
  'longitude': '-73.88809179690804',
  'location': {'latitude': '40.83318549333037',
   'longitude': '-73.88809179690804',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312043',
  'created_date': '2025-03-10T06:23:00.000',
  'closed_date': '2025-03-10T07:49:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '10473',
  'incident_address': '702 BEACH AVENUE',
  'street_name': 'BEACH AVENUE',
  'cross_street_1': 'SEWARD AVENUE',
  'cross_street_2': 'LAFAYETTE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'DSNY already has a request to investigate this reportedly abandoned vehicle and cannot open multiple service requests for the same vehicle at once. Your request is being closed while we action the prior report.',
  'resolution_action_updated_date': '2025-03-10T12:00:00.000',
  'community_board': '09 BRONX',
  'bbl': '2035980007',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022054',
  'y_coordinate_state_plane': '237793',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81928161424015',
  'longitude': '-73.86341725757647',
  'location': {'latitude': '40.81928161424015',
   'longitude': '-73.86341725757647',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64327770',
  'created_date': '2025-03-10T06:23:19.000',
  'closed_date': '2025-03-11T06:15:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11234',
  'intersection_street_1': 'AVENUE T',
  'intersection_street_2': 'EAST 63 STREET',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected this complaint and repaired the problem.',
  'resolution_action_updated_date': '2025-03-11T06:15:00.000',
  'community_board': '18 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1007868',
  'y_coordinate_state_plane': '164282',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.617561103574744',
  'longitude': '-73.91492799945173',
  'location': {'latitude': '40.617561103574744',
   'longitude': '-73.91492799945173',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315888',
  'created_date': '2025-03-10T06:24:19.000',
  'closed_date': '2025-03-10T10:55:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '10306',
  'incident_address': 'CLARKE AVENUE',
  'street_name': 'CLARKE AVENUE',
  'cross_street_1': 'MONTREAL AVENUE',
  'cross_street_2': 'WOLVERINE STREET',
  'address_type': 'BLOCKFACE',
  'city': 'STATEN ISLAND',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected this complaint and repaired the problem.',
  'resolution_action_updated_date': '2025-03-10T10:55:00.000',
  'community_board': '03 STATEN ISLAND',
  'borough': 'STATEN ISLAND',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND'},
 {'unique_key': '64311944',
  'created_date': '2025-03-10T06:24:33.000',
  'closed_date': '2025-03-10T08:26:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10455',
  'incident_address': '540 TIMPSON PLACE',
  'street_name': 'TIMPSON PLACE',
  'cross_street_1': 'EAST  149 STREET',
  'cross_street_2': 'AVENUE ST JOHN',
  'intersection_street_1': 'EAST  149 STREET',
  'intersection_street_2': 'AVENUE ST JOHN',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'TIMPSON PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and no Encampment was found.',
  'resolution_action_updated_date': '2025-03-10T08:26:46.000',
  'community_board': '02 BRONX',
  'bbl': '2026030055',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011084',
  'y_coordinate_state_plane': '234980',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.811600856920045',
  'longitude': '-73.90306217310074',
  'location': {'latitude': '40.811600856920045',
   'longitude': '-73.90306217310074',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314596',
  'created_date': '2025-03-10T06:24:34.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'House of Worship',
  'incident_zip': '10022',
  'incident_address': '325 PARK AVENUE',
  'street_name': 'PARK AVENUE',
  'cross_street_1': 'EAST 50 STREET',
  'cross_street_2': 'EAST 51 STREET',
  'intersection_street_1': 'EAST   50 STREET',
  'intersection_street_2': 'EAST   51 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'PARK AVENUE',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team went to the location provided but could not find the individual that you reported.',
  'resolution_action_updated_date': '2025-03-10T11:55:35.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1013050001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991499',
  'y_coordinate_state_plane': '215208',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75736976745487',
  'longitude': '-73.9738343124578',
  'location': {'latitude': '40.75736976745487',
   'longitude': '-73.9738343124578',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310807',
  'created_date': '2025-03-10T06:25:08.000',
  'closed_date': '2025-03-10T08:26:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10032',
  'incident_address': '476 WEST  165 STREET',
  'street_name': 'WEST  165 STREET',
  'cross_street_1': 'EDGECOMBE AVENUE',
  'cross_street_2': 'AMSTERDAM AVENUE',
  'intersection_street_1': 'EDGECOMBE AVENUE',
  'intersection_street_2': 'AMSTERDAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  165 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:26:36.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021110010',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001450',
  'y_coordinate_state_plane': '244474',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.837683192768885',
  'longitude': '-73.93784064649216',
  'location': {'latitude': '40.837683192768885',
   'longitude': '-73.93784064649216',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311703',
  'created_date': '2025-03-10T06:25:49.000',
  'closed_date': '2025-03-11T13:33:50.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Sidewalk',
  'incident_zip': '10036',
  'incident_address': '609 9 AVENUE',
  'street_name': '9 AVENUE',
  'cross_street_1': 'WEST   43 STREET',
  'cross_street_2': 'WEST   44 STREET',
  'intersection_street_1': 'WEST   43 STREET',
  'intersection_street_2': 'WEST   44 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '9 AVENUE',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) visited the business. They didn't find the condition you reported. Your Service Request has been closed.",
  'resolution_action_updated_date': '2025-03-10T10:12:16.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010530029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986466',
  'y_coordinate_state_plane': '215914',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75931025087965',
  'longitude': '-73.99200098606264',
  'location': {'latitude': '40.75931025087965',
   'longitude': '-73.99200098606264',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308838',
  'created_date': '2025-03-10T06:25:51.000',
  'closed_date': '2025-03-10T10:07:38.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Vehicle',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10304',
  'incident_address': '2 CHESTNUT STREET',
  'street_name': 'CHESTNUT STREET',
  'cross_street_1': 'VAN DUZER STREET',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'VAN DUZER STREET',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'CHESTNUT STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T10:07:42.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5005670018',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '960476',
  'y_coordinate_state_plane': '165298',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'vehicle_type': 'Car',
  'latitude': '40.62034939382926',
  'longitude': '-74.08563748971272',
  'location': {'latitude': '40.62034939382926',
   'longitude': '-74.08563748971272',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313412',
  'created_date': '2025-03-10T06:25:52.000',
  'closed_date': '2025-03-10T09:15:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11212',
  'incident_address': 'NEWPORT STREET',
  'street_name': 'NEWPORT STREET',
  'cross_street_1': 'NEWPORT STREET',
  'cross_street_2': 'STRAUSS STREET',
  'intersection_street_1': 'NEWPORT STREET',
  'intersection_street_2': 'STRAUSS STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T09:15:32.000',
  'community_board': '16 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1008184',
  'y_coordinate_state_plane': '179250',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Other',
  'latitude': '40.65864419955954',
  'longitude': '-73.91373667495783',
  'location': {'latitude': '40.65864419955954',
   'longitude': '-73.91373667495783',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308840',
  'created_date': '2025-03-10T06:25:57.000',
  'closed_date': '2025-03-11T13:33:32.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Street',
  'incident_zip': '10036',
  'incident_address': '576 9 AVENUE',
  'street_name': '9 AVENUE',
  'cross_street_1': 'WEST   41 STREET',
  'cross_street_2': 'WEST   42 STREET',
  'intersection_street_1': 'WEST   41 STREET',
  'intersection_street_2': 'WEST   42 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '9 AVENUE',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) visited the business. They didn't find the condition you reported. Your Service Request has been closed.",
  'resolution_action_updated_date': '2025-03-10T10:14:31.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010320162',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986259',
  'y_coordinate_state_plane': '215529',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75825357382946',
  'longitude': '-73.99274830141556',
  'location': {'latitude': '40.75825357382946',
   'longitude': '-73.99274830141556',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313338',
  'created_date': '2025-03-10T06:26:00.000',
  'closed_date': '2025-03-10T07:48:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '10473',
  'incident_address': '700 SOUNDVIEW AVENUE',
  'street_name': 'SOUNDVIEW AVENUE',
  'cross_street_1': 'SEWARD AVENUE',
  'cross_street_2': 'ST LAWRENCE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'DSNY already has a request to investigate this reportedly abandoned vehicle and cannot open multiple service requests for the same vehicle at once. Your request is being closed while we action the prior report.',
  'resolution_action_updated_date': '2025-03-10T12:00:00.000',
  'community_board': '09 BRONX',
  'bbl': '2035970004',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021943',
  'y_coordinate_state_plane': '237764',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81920249184053',
  'longitude': '-73.86381845368497',
  'location': {'latitude': '40.81920249184053',
   'longitude': '-73.86381845368497',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306735',
  'created_date': '2025-03-10T06:26:31.000',
  'closed_date': '2025-03-10T06:56:52.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - House of Worship',
  'descriptor': 'Loud Talking',
  'location_type': 'House of Worship',
  'incident_zip': '10037',
  'incident_address': '527 LENOX AVENUE',
  'street_name': 'LENOX AVENUE',
  'cross_street_1': 'WEST  136 STREET',
  'cross_street_2': 'WEST  137 STREET',
  'intersection_street_1': 'WEST  136 STREET',
  'intersection_street_2': 'WEST  137 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'LENOX AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T06:56:59.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019210032',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000811',
  'y_coordinate_state_plane': '236232',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.815062477207334',
  'longitude': '-73.94017028205934',
  'location': {'latitude': '40.815062477207334',
   'longitude': '-73.94017028205934',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307678',
  'created_date': '2025-03-10T06:26:47.000',
  'closed_date': '2025-03-11T03:18:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11377',
  'incident_address': '73-02 41 AVENUE',
  'street_name': '41 AVENUE',
  'cross_street_1': '73 STREET',
  'cross_street_2': '74 STREET',
  'intersection_street_1': '73 STREET',
  'intersection_street_2': '74 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '41 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-11T03:18:21.000',
  'community_board': '04 QUEENS',
  'bbl': '4013130027',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014216',
  'y_coordinate_state_plane': '210761',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74511607755651',
  'longitude': '-73.8918558469079',
  'location': {'latitude': '40.74511607755651',
   'longitude': '-73.8918558469079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315298',
  'created_date': '2025-03-10T06:26:54.000',
  'closed_date': '2025-03-10T06:58:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11210',
  'incident_address': '1565 NEW YORK AVENUE',
  'street_name': 'NEW YORK AVENUE',
  'cross_street_1': 'FARRAGUT ROAD',
  'cross_street_2': 'GLENWOOD ROAD',
  'intersection_street_1': 'FARRAGUT ROAD',
  'intersection_street_2': 'GLENWOOD ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NEW YORK AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T06:58:15.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3050080011',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999534',
  'y_coordinate_state_plane': '170545',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63477001630498',
  'longitude': '-73.94493286318902',
  'location': {'latitude': '40.63477001630498',
   'longitude': '-73.94493286318902',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308099',
  'created_date': '2025-03-10T06:27:19.000',
  'closed_date': '2025-03-11T13:34:57.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Litter Basket Request',
  'descriptor': 'Replacement Basket',
  'location_type': 'Street',
  'incident_zip': '11218',
  'incident_address': '2903 FORT HAMILTON PARKWAY',
  'street_name': 'FORT HAMILTON PARKWAY',
  'cross_street_1': 'EAST    4 STREET',
  'cross_street_2': 'EAST    3 STREET',
  'intersection_street_1': 'EAST    4 STREET',
  'intersection_street_2': 'EAST    3 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FORT HAMILTON PARKWAY',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation collected the requested items.',
  'resolution_action_updated_date': '2025-03-10T14:47:43.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3052820057',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990456',
  'y_coordinate_state_plane': '175639',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64876296485011',
  'longitude': '-73.9776355465727',
  'location': {'latitude': '40.64876296485011',
   'longitude': '-73.9776355465727',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308472',
  'created_date': '2025-03-10T06:27:22.000',
  'closed_date': '2025-03-12T14:31:05.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10014',
  'incident_address': '641 HUDSON STREET',
  'street_name': 'HUDSON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1006270013',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '982735',
  'y_coordinate_state_plane': '208517',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73900749789771',
  'longitude': '-74.00546697355306',
  'location': {'latitude': '40.73900749789771',
   'longitude': '-74.00546697355306',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309636',
  'created_date': '2025-03-10T06:27:27.000',
  'closed_date': '2025-03-10T16:20:36.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'ELECTRIC',
  'descriptor': 'LIGHTING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11215',
  'incident_address': '280 14 STREET',
  'street_name': '14 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3010420018',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987610',
  'y_coordinate_state_plane': '181814',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66571352207079',
  'longitude': '-73.98788854997578',
  'location': {'latitude': '40.66571352207079',
   'longitude': '-73.98788854997578',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313247',
  'created_date': '2025-03-10T06:27:27.000',
  'closed_date': '2025-03-10T16:20:36.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'ELECTRIC',
  'descriptor': 'POWER OUTAGE',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11215',
  'incident_address': '280 14 STREET',
  'street_name': '14 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3010420018',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987610',
  'y_coordinate_state_plane': '181814',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66571352207079',
  'longitude': '-73.98788854997578',
  'location': {'latitude': '40.66571352207079',
   'longitude': '-73.98788854997578',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313274',
  'created_date': '2025-03-10T06:27:27.000',
  'closed_date': '2025-03-10T16:20:36.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'WATER SUPPLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11215',
  'incident_address': '280 14 STREET',
  'street_name': '14 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3010420018',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987610',
  'y_coordinate_state_plane': '181814',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66571352207079',
  'longitude': '-73.98788854997578',
  'location': {'latitude': '40.66571352207079',
   'longitude': '-73.98788854997578',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314893',
  'created_date': '2025-03-10T06:27:27.000',
  'closed_date': '2025-03-10T16:20:36.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'ELECTRIC',
  'descriptor': 'LIGHTING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11215',
  'incident_address': '280 14 STREET',
  'street_name': '14 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3010420018',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987610',
  'y_coordinate_state_plane': '181814',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66571352207079',
  'longitude': '-73.98788854997578',
  'location': {'latitude': '40.66571352207079',
   'longitude': '-73.98788854997578',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315125',
  'created_date': '2025-03-10T06:27:27.000',
  'closed_date': '2025-03-10T16:20:36.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'WATER LEAK',
  'descriptor': 'SLOW LEAK',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11215',
  'incident_address': '280 14 STREET',
  'street_name': '14 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3010420018',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987610',
  'y_coordinate_state_plane': '181814',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66571352207079',
  'longitude': '-73.98788854997578',
  'location': {'latitude': '40.66571352207079',
   'longitude': '-73.98788854997578',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316349',
  'created_date': '2025-03-10T06:27:27.000',
  'closed_date': '2025-03-10T16:20:36.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PAINT/PLASTER',
  'descriptor': 'CEILING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11215',
  'incident_address': '280 14 STREET',
  'street_name': '14 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3010420018',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987610',
  'y_coordinate_state_plane': '181814',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66571352207079',
  'longitude': '-73.98788854997578',
  'location': {'latitude': '40.66571352207079',
   'longitude': '-73.98788854997578',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314240',
  'created_date': '2025-03-10T06:27:32.000',
  'closed_date': '2025-03-10T07:00:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11228',
  'incident_address': '662 90 STREET',
  'street_name': '90 STREET',
  'cross_street_1': 'BATTERY AVENUE',
  'cross_street_2': 'PARROTT PLACE',
  'intersection_street_1': 'BATTERY AVENUE',
  'intersection_street_2': 'PARROTT PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '90 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:00:25.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3060930124',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '977845',
  'y_coordinate_state_plane': '163923',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61660488679439',
  'longitude': '-74.02307046653742',
  'location': {'latitude': '40.61660488679439',
   'longitude': '-74.02307046653742',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312810',
  'created_date': '2025-03-10T06:27:45.000',
  'closed_date': '2025-03-10T13:18:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11374',
  'incident_address': '65-38 AUSTIN STREET',
  'street_name': 'AUSTIN STREET',
  'cross_street_1': '65 ROAD',
  'cross_street_2': '66 AVENUE',
  'intersection_street_1': '65 ROAD',
  'intersection_street_2': '66 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'REGO PARK',
  'landmark': 'AUSTIN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T13:18:49.000',
  'community_board': '06 QUEENS',
  'bbl': '4031047501',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1023161',
  'y_coordinate_state_plane': '203740',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72581035470789',
  'longitude': '-73.85961493565311',
  'location': {'latitude': '40.72581035470789',
   'longitude': '-73.85961493565311',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314500',
  'created_date': '2025-03-10T06:27:47.000',
  'closed_date': '2025-03-10T08:45:51.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10463',
  'incident_address': '311 WEST  236 STREET',
  'street_name': 'WEST  236 STREET',
  'cross_street_1': 'TIBBETT AVENUE',
  'cross_street_2': 'IRWIN AVENUE',
  'intersection_street_1': 'TIBBETT AVENUE',
  'intersection_street_2': 'IRWIN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST  236 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:45:55.000',
  'community_board': '08 BRONX',
  'bbl': '2057680869',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010749',
  'y_coordinate_state_plane': '261679',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8848826971021',
  'longitude': '-73.90416684127365',
  'location': {'latitude': '40.8848826971021',
   'longitude': '-73.90416684127365',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306841',
  'created_date': '2025-03-10T06:28:01.000',
  'closed_date': '2025-03-10T07:18:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11226',
  'incident_address': '179 LINDEN BOULEVARD',
  'street_name': 'LINDEN BOULEVARD',
  'cross_street_1': 'ROGERS AVENUE',
  'cross_street_2': 'NOSTRAND AVENUE',
  'intersection_street_1': 'ROGERS AVENUE',
  'intersection_street_2': 'NOSTRAND AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LINDEN BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T07:19:01.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3050850090',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997612',
  'y_coordinate_state_plane': '177018',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65254011371671',
  'longitude': '-73.95184486671171',
  'location': {'latitude': '40.65254011371671',
   'longitude': '-73.95184486671171',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310587',
  'created_date': '2025-03-10T06:28:10.000',
  'closed_date': '2025-03-10T08:42:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Subway',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and no Encampment was found.',
  'resolution_action_updated_date': '2025-03-10T08:43:01.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003844',
  'y_coordinate_state_plane': '250987',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'bridge_highway_name': '1',
  'road_ramp': 'St Nicholas Av & W 191 St',
  'bridge_highway_segment': 'Entrance',
  'latitude': '40.85555446812677',
  'longitude': '-73.92916990327326',
  'location': {'latitude': '40.85555446812677',
   'longitude': '-73.92916990327326',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315818',
  'created_date': '2025-03-10T06:28:40.000',
  'closed_date': '2025-03-11T13:33:14.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Sidewalk',
  'incident_zip': '10018',
  'incident_address': '337 WEST   36 STREET',
  'street_name': 'WEST   36 STREET',
  'cross_street_1': '8 AVENUE',
  'cross_street_2': '9 AVENUE',
  'intersection_street_1': '8 AVENUE',
  'intersection_street_2': '9 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   36 STREET',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) visited the business. They didn't find the condition you reported. Your Service Request has been closed.",
  'resolution_action_updated_date': '2025-03-10T10:16:01.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1007600020',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986003',
  'y_coordinate_state_plane': '213971',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.753977315195876',
  'longitude': '-73.99367276677485',
  'location': {'latitude': '40.753977315195876',
   'longitude': '-73.99367276677485',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314585',
  'created_date': '2025-03-10T06:28:51.000',
  'closed_date': '2025-03-11T13:23:20.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '10036',
  'incident_address': '694 8 AVENUE',
  'street_name': '8 AVENUE',
  'cross_street_1': 'WEST   43 STREET',
  'cross_street_2': 'WEST   44 STREET',
  'intersection_street_1': 'WEST   43 STREET',
  'intersection_street_2': 'WEST   44 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '8 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-11T13:23:24.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1010150061',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987314',
  'y_coordinate_state_plane': '215576',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75838227415155',
  'longitude': '-73.9889401456307',
  'location': {'latitude': '40.75838227415155',
   'longitude': '-73.9889401456307',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308742',
  'created_date': '2025-03-10T06:28:54.000',
  'closed_date': '2025-03-10T08:58:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '2266 CROPSEY AVENUE',
  'street_name': 'CROPSEY AVENUE',
  'cross_street_1': 'BAY   32 STREET',
  'cross_street_2': '23 AVENUE',
  'intersection_street_1': 'BAY   32 STREET',
  'intersection_street_2': '23 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CROPSEY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:58:12.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3064710013',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985014',
  'y_coordinate_state_plane': '156435',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.596054139165936',
  'longitude': '-73.99724895995726',
  'location': {'latitude': '40.596054139165936',
   'longitude': '-73.99724895995726',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308580',
  'created_date': '2025-03-10T06:29:00.000',
  'closed_date': '2025-03-11T06:30:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '11201',
  'incident_address': '240 WILLOUGHBY STREET',
  'street_name': 'WILLOUGHBY STREET',
  'cross_street_1': 'ASHLAND PL',
  'cross_street_2': 'ST EDWARDS ST',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': "The Department of Environmental Protection (DEP) didn't observe a violation of the NYC Air or Noise Code at the time of inspection and couldn't issue a summons.  If the problem still exists, please go to nyc.gov/311 or call 311 to file a new Service Request. If you're outside of New York City, please call (212) NEW-YORK (212-639-9675).",
  'resolution_action_updated_date': '2025-03-11T06:30:00.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3020880025',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990276',
  'y_coordinate_state_plane': '191356',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.691902737628915',
  'longitude': '-73.97827015919647',
  'location': {'latitude': '40.691902737628915',
   'longitude': '-73.97827015919647',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307373',
  'created_date': '2025-03-10T06:29:02.000',
  'closed_date': '2025-03-11T13:35:22.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Sidewalk',
  'incident_zip': '10001',
  'incident_address': '42 WEST   35 STREET',
  'street_name': 'WEST   35 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'AVENUE OF THE AMERICAS',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'AVENUE OF THE AMERICAS',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   35 STREET',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) inspected but didn't see a violation of their rules. Your Service Request has been closed.",
  'resolution_action_updated_date': '2025-03-10T11:00:16.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008360065',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988235',
  'y_coordinate_state_plane': '212427',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74973870175156',
  'longitude': '-73.98561755834392',
  'location': {'latitude': '40.74973870175156',
   'longitude': '-73.98561755834392',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313213',
  'created_date': '2025-03-10T06:29:13.000',
  'closed_date': '2025-03-11T13:34:57.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Sidewalk',
  'incident_zip': '10001',
  'incident_address': '56 WEST   35 STREET',
  'street_name': 'WEST   35 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'AVENUE OF THE AMERICAS',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'AVENUE OF THE AMERICAS',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   35 STREET',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) inspected but didn't see a violation of their rules. Your Service Request has been closed.",
  'resolution_action_updated_date': '2025-03-10T10:59:15.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008360010',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988130',
  'y_coordinate_state_plane': '212485',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74989794381453',
  'longitude': '-73.98599648506749',
  'location': {'latitude': '40.74989794381453',
   'longitude': '-73.98599648506749',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308729',
  'created_date': '2025-03-10T06:30:44.000',
  'closed_date': '2025-03-10T08:32:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '1846 WEST    6 STREET',
  'street_name': 'WEST    6 STREET',
  'cross_street_1': 'HIGHLAWN AVENUE',
  'cross_street_2': 'AVENUE S',
  'intersection_street_1': 'HIGHLAWN AVENUE',
  'intersection_street_2': 'AVENUE S',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST    6 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:32:43.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3066740023',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990181',
  'y_coordinate_state_plane': '158757',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60242560739128',
  'longitude': '-73.97864139303084',
  'location': {'latitude': '40.60242560739128',
   'longitude': '-73.97864139303084',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312720',
  'created_date': '2025-03-10T06:30:46.000',
  'closed_date': '2025-03-10T07:01:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11222',
  'incident_address': '622 MORGAN AVENUE',
  'street_name': 'MORGAN AVENUE',
  'cross_street_1': 'DRIGGS AVENUE',
  'cross_street_2': 'NASSAU AVENUE',
  'intersection_street_1': 'DRIGGS AVENUE',
  'intersection_street_2': 'NASSAU AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MORGAN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:01:32.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3026910091',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000965',
  'y_coordinate_state_plane': '203580',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.725440982311504',
  'longitude': '-73.93969513696752',
  'location': {'latitude': '40.725440982311504',
   'longitude': '-73.93969513696752',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307024',
  'created_date': '2025-03-10T06:30:50.000',
  'closed_date': '2025-03-10T08:48:29.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10462',
  'incident_address': '774 PELHAM PARKWAY',
  'street_name': 'PELHAM PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '11 BRONX',
  'bbl': '2043210038',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021706',
  'y_coordinate_state_plane': '251421',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85668795650698',
  'longitude': '-73.86459844419832',
  'location': {'latitude': '40.85668795650698',
   'longitude': '-73.86459844419832',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307535',
  'created_date': '2025-03-10T06:31:20.000',
  'closed_date': '2025-03-10T07:13:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Vehicle',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11236',
  'incident_address': '1235 EAST   82 STREET',
  'street_name': 'EAST   82 STREET',
  'cross_street_1': 'AVENUE L',
  'cross_street_2': 'AVENUE M',
  'intersection_street_1': 'AVENUE L',
  'intersection_street_2': 'AVENUE M',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   82 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:13:28.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3080610027',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1010456',
  'y_coordinate_state_plane': '169153',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'SUV',
  'latitude': '40.63092369415016',
  'longitude': '-73.90558712372703',
  'location': {'latitude': '40.63092369415016',
   'longitude': '-73.90558712372703',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312746',
  'created_date': '2025-03-10T06:32:26.000',
  'closed_date': '2025-03-10T07:44:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11379',
  'incident_address': '66-24 71 STREET',
  'street_name': '71 STREET',
  'cross_street_1': 'JUNIPER VALLEY ROAD',
  'cross_street_2': '66 ROAD',
  'intersection_street_1': 'JUNIPER VALLEY ROAD',
  'intersection_street_2': '66 ROAD',
  'address_type': 'ADDRESS',
  'city': 'MIDDLE VILLAGE',
  'landmark': '71 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:44:08.000',
  'community_board': '05 QUEENS',
  'bbl': '4030510127',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1016351',
  'y_coordinate_state_plane': '199467',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71410934369832',
  'longitude': '-73.88420474370182',
  'location': {'latitude': '40.71410934369832',
   'longitude': '-73.88420474370182',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306053',
  'created_date': '2025-03-10T06:32:39.000',
  'closed_date': '2025-03-11T13:25:10.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '10001',
  'incident_address': '360 7 AVENUE',
  'street_name': '7 AVENUE',
  'cross_street_1': 'WEST   29 STREET',
  'cross_street_2': 'WEST   30 STREET',
  'intersection_street_1': 'WEST   29 STREET',
  'intersection_street_2': 'WEST   30 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '7 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-11T13:25:12.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1007790045',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986318',
  'y_coordinate_state_plane': '211932',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74838070758575',
  'longitude': '-73.99253644091527',
  'location': {'latitude': '40.74838070758575',
   'longitude': '-73.99253644091527',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314701',
  'created_date': '2025-03-10T06:33:13.000',
  'closed_date': '2025-03-11T13:23:54.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '10001',
  'incident_address': '132 WEST   31 STREET',
  'street_name': 'WEST   31 STREET',
  'cross_street_1': 'AVENUE OF THE AMERICAS',
  'cross_street_2': '7 AVENUE',
  'intersection_street_1': 'AVENUE OF THE AMERICAS',
  'intersection_street_2': '7 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   31 STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-11T13:23:56.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008060058',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986953',
  'y_coordinate_state_plane': '211919',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74834485455643',
  'longitude': '-73.9902446859932',
  'location': {'latitude': '40.74834485455643',
   'longitude': '-73.9902446859932',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306178',
  'created_date': '2025-03-10T06:33:17.000',
  'closed_date': '2025-03-10T09:21:42.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11208',
  'incident_address': '130 GLEN STREET',
  'street_name': 'GLEN STREET',
  'cross_street_1': 'CRESCENT STREET',
  'cross_street_2': 'AUTUMN AVENUE',
  'intersection_street_1': 'CRESCENT STREET',
  'intersection_street_2': 'AUTUMN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GLEN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:21:45.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3041680012',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020084',
  'y_coordinate_state_plane': '187397',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.680965708125626',
  'longitude': '-73.87080323867436',
  'location': {'latitude': '40.680965708125626',
   'longitude': '-73.87080323867436',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309679',
  'created_date': '2025-03-10T06:33:21.000',
  'closed_date': '2025-03-11T13:51:51.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11367',
  'incident_address': '75-04 150 STREET',
  'street_name': '150 STREET',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'status': 'Closed',
  'resolution_description': 'HPD responded to a complaint of no heat or hot water in the building. An occupant of the building confirmed heat and hot water had been restored when the Inspector attempted to conduct the inspection or contacted you at the phone number associated with the complaint. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '08 QUEENS',
  'bbl': '4066830017',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035230',
  'y_coordinate_state_plane': '203506',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72510676055964',
  'longitude': '-73.81607367542881',
  'location': {'latitude': '40.72510676055964',
   'longitude': '-73.81607367542881',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313728',
  'created_date': '2025-03-10T06:33:40.000',
  'closed_date': '2025-03-10T20:33:10.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10032',
  'incident_address': '735 WEST  172 STREET',
  'street_name': 'WEST  172 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021390329',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000464',
  'y_coordinate_state_plane': '247120',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.84494755448405',
  'longitude': '-73.9413975692294',
  'location': {'latitude': '40.84494755448405',
   'longitude': '-73.9413975692294',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311305',
  'created_date': '2025-03-10T06:34:04.000',
  'closed_date': '2025-03-10T07:02:02.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11222',
  'incident_address': '622 MORGAN AVENUE',
  'street_name': 'MORGAN AVENUE',
  'cross_street_1': 'DRIGGS AVENUE',
  'cross_street_2': 'NASSAU AVENUE',
  'intersection_street_1': 'DRIGGS AVENUE',
  'intersection_street_2': 'NASSAU AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MORGAN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:02:10.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3026910091',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000965',
  'y_coordinate_state_plane': '203580',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.725440982311504',
  'longitude': '-73.93969513696752',
  'location': {'latitude': '40.725440982311504',
   'longitude': '-73.93969513696752',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315740',
  'created_date': '2025-03-10T06:34:20.000',
  'closed_date': '2025-03-11T13:35:32.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dumpster Complaint',
  'descriptor': 'Blocking Sidewalk or Street',
  'location_type': 'Sidewalk',
  'incident_zip': '10010',
  'incident_address': '20 WEST   22 STREET',
  'street_name': 'WEST   22 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'AVENUE OF THE AMERICAS',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'AVENUE OF THE AMERICAS',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   22 STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-10T11:53:13.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008230055',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986750',
  'y_coordinate_state_plane': '209335',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74125248105112',
  'longitude': '-73.99097828750793',
  'location': {'latitude': '40.74125248105112',
   'longitude': '-73.99097828750793',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308847',
  'created_date': '2025-03-10T06:34:26.000',
  'closed_date': '2025-03-10T08:46:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10462',
  'incident_address': '1000 VAN NEST AVENUE',
  'street_name': 'VAN NEST AVENUE',
  'cross_street_1': 'COLDEN AVENUE',
  'cross_street_2': 'PAULDING AVENUE',
  'intersection_street_1': 'COLDEN AVENUE',
  'intersection_street_2': 'PAULDING AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'VAN NEST AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:46:36.000',
  'community_board': '11 BRONX',
  'bbl': '2040980001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024331',
  'y_coordinate_state_plane': '247833',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84682844762728',
  'longitude': '-73.85513066863177',
  'location': {'latitude': '40.84682844762728',
   'longitude': '-73.85513066863177',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310243',
  'created_date': '2025-03-10T06:34:42.000',
  'closed_date': '2025-03-10T09:26:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10462',
  'incident_address': '2080 MATTHEWS AVENUE',
  'street_name': 'MATTHEWS AVENUE',
  'cross_street_1': 'BRADY AVENUE',
  'cross_street_2': 'LYDIG AVENUE',
  'intersection_street_1': 'BRADY AVENUE',
  'intersection_street_2': 'LYDIG AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MATTHEWS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T09:26:28.000',
  'community_board': '11 BRONX',
  'bbl': '2042970022',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022162',
  'y_coordinate_state_plane': '250174',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85326337124167',
  'longitude': '-73.8629570821725',
  'location': {'latitude': '40.85326337124167',
   'longitude': '-73.8629570821725',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313101',
  'created_date': '2025-03-10T06:35:01.000',
  'closed_date': '2025-03-11T05:16:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Vehicle',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11235',
  'incident_address': '2812 VOORHIES AVENUE',
  'street_name': 'VOORHIES AVENUE',
  'cross_street_1': 'EAST   28 STREET',
  'cross_street_2': 'EAST   29 STREET',
  'intersection_street_1': 'EAST   28 STREET',
  'intersection_street_2': 'EAST   29 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'VOORHIES AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-11T05:16:16.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3087910005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000627',
  'y_coordinate_state_plane': '153185',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.587118444577584',
  'longitude': '-73.94103696629892',
  'location': {'latitude': '40.587118444577584',
   'longitude': '-73.94103696629892',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311301',
  'created_date': '2025-03-10T06:35:11.000',
  'closed_date': '2025-03-10T07:22:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11219',
  'incident_address': '1349 OVINGTON AVENUE',
  'street_name': 'OVINGTON AVENUE',
  'cross_street_1': '13 AVENUE',
  'cross_street_2': '14 AVENUE',
  'intersection_street_1': '13 AVENUE',
  'intersection_street_2': '14 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'OVINGTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:23:01.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3057687503',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '983601',
  'y_coordinate_state_plane': '166434',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62349935034536',
  'longitude': '-74.00233790464206',
  'location': {'latitude': '40.62349935034536',
   'longitude': '-74.00233790464206',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311376',
  'created_date': '2025-03-10T06:35:14.000',
  'closed_date': '2025-03-10T09:22:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11208',
  'incident_address': '130 GLEN STREET',
  'street_name': 'GLEN STREET',
  'cross_street_1': 'CRESCENT STREET',
  'cross_street_2': 'AUTUMN AVENUE',
  'intersection_street_1': 'CRESCENT STREET',
  'intersection_street_2': 'AUTUMN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GLEN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:22:08.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3041680012',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020084',
  'y_coordinate_state_plane': '187397',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.680965708125626',
  'longitude': '-73.87080323867436',
  'location': {'latitude': '40.680965708125626',
   'longitude': '-73.87080323867436',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312321',
  'created_date': '2025-03-10T06:36:18.000',
  'closed_date': '2025-03-11T09:09:40.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11230',
  'incident_address': '1854 OCEAN AVENUE',
  'street_name': 'OCEAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3067480040',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996828',
  'y_coordinate_state_plane': '163941',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61664768022531',
  'longitude': '-73.9546946879438',
  'location': {'latitude': '40.61664768022531',
   'longitude': '-73.9546946879438',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311002',
  'created_date': '2025-03-10T06:36:23.000',
  'closed_date': '2025-03-12T12:07:16.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10075',
  'incident_address': '421 EAST   80 STREET',
  'street_name': 'EAST   80 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'HPD responded to a complaint of no heat or hot water in the building. An occupant of the building confirmed heat and hot water had been restored when the Inspector attempted to conduct the inspection or contacted you at the phone number associated with the complaint. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1015600009',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997756',
  'y_coordinate_state_plane': '220770',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77262867440972',
  'longitude': '-73.95123813454966',
  'location': {'latitude': '40.77262867440972',
   'longitude': '-73.95123813454966',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315641',
  'created_date': '2025-03-10T06:36:32.000',
  'closed_date': '2025-03-10T06:54:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10007',
  'incident_address': '17 DEY STREET',
  'street_name': 'DEY STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'CHURCH STREET',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'CHURCH STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'DEY STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T06:54:10.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1000630003',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '981361',
  'y_coordinate_state_plane': '198253',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.710834967414584',
  'longitude': '-74.01042073348472',
  'location': {'latitude': '40.710834967414584',
   'longitude': '-74.01042073348472',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314956',
  'created_date': '2025-03-10T06:36:33.000',
  'closed_date': '2025-03-11T19:53:13.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '369 EDGECOMBE AVENUE',
  'street_name': 'EDGECOMBE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020540016',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000612',
  'y_coordinate_state_plane': '240851',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.827740694936836',
  'longitude': '-73.9408779440867',
  'location': {'latitude': '40.827740694936836',
   'longitude': '-73.9408779440867',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306292',
  'created_date': '2025-03-10T06:36:44.000',
  'closed_date': '2025-03-10T08:41:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10461',
  'incident_address': 'VAN NEST AVENUE',
  'street_name': 'VAN NEST AVENUE',
  'cross_street_1': 'HONE AVENUE',
  'cross_street_2': 'VAN NEST AVENUE',
  'intersection_street_1': 'HONE AVENUE',
  'intersection_street_2': 'VAN NEST AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:41:57.000',
  'community_board': '11 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024744',
  'y_coordinate_state_plane': '248082',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84750999397789',
  'longitude': '-73.85363641461096',
  'location': {'latitude': '40.84750999397789',
   'longitude': '-73.85363641461096',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316210',
  'created_date': '2025-03-10T06:36:53.000',
  'closed_date': '2025-03-11T09:14:58.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10473',
  'incident_address': '950 EVERGREEN AVENUE',
  'street_name': 'EVERGREEN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 BRONX',
  'bbl': '2036500001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1017570',
  'y_coordinate_state_plane': '238903',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82234629966529',
  'longitude': '-73.87961204742707',
  'location': {'latitude': '40.82234629966529',
   'longitude': '-73.87961204742707',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308402',
  'created_date': '2025-03-10T06:36:57.000',
  'closed_date': '2025-03-11T09:09:40.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11230',
  'incident_address': '1854 OCEAN AVENUE',
  'street_name': 'OCEAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3067480040',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996828',
  'y_coordinate_state_plane': '163941',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61664768022531',
  'longitude': '-73.9546946879438',
  'location': {'latitude': '40.61664768022531',
   'longitude': '-73.9546946879438',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308862',
  'created_date': '2025-03-10T06:37:13.000',
  'closed_date': '2025-03-11T13:35:47.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Sidewalk',
  'incident_zip': '10003',
  'incident_address': '23 EAST   17 STREET',
  'street_name': 'EAST   17 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   17 STREET',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) visited the business. They didn't find the condition you reported. Your Service Request has been closed.",
  'resolution_action_updated_date': '2025-03-10T11:53:51.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008460017',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986822',
  'y_coordinate_state_plane': '207896',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.737302762508975',
  'longitude': '-73.9907190123812',
  'location': {'latitude': '40.737302762508975',
   'longitude': '-73.9907190123812',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315213',
  'created_date': '2025-03-10T06:37:24.000',
  'closed_date': '2025-03-10T15:54:27.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Street',
  'incident_zip': '10014',
  'incident_address': '141 WAVERLY PLACE',
  'street_name': 'WAVERLY PLACE',
  'cross_street_1': 'AVENUE OF THE AMERICAS',
  'cross_street_2': 'GAY STREET',
  'intersection_street_1': 'AVENUE OF THE AMERICAS',
  'intersection_street_2': 'GAY STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WAVERLY PLACE',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) closed your Service Request. The condition doesn't meet their criteria for a complaint or Service Request.",
  'resolution_action_updated_date': '2025-03-10T15:54:27.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005930003',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984084',
  'y_coordinate_state_plane': '206401',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.733199728602685',
  'longitude': '-74.00059896931413',
  'location': {'latitude': '40.733199728602685',
   'longitude': '-74.00059896931413',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307378',
  'created_date': '2025-03-10T06:37:31.000',
  'closed_date': '2025-03-10T08:41:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10461',
  'incident_address': 'VAN NEST AVENUE',
  'street_name': 'VAN NEST AVENUE',
  'cross_street_1': 'LURTING AVENUE',
  'cross_street_2': 'VAN NEST AVENUE',
  'intersection_street_1': 'LURTING AVENUE',
  'intersection_street_2': 'VAN NEST AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:41:17.000',
  'community_board': '11 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024967',
  'y_coordinate_state_plane': '248215',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84787401375392',
  'longitude': '-73.85282958586326',
  'location': {'latitude': '40.84787401375392',
   'longitude': '-73.85282958586326',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312944',
  'created_date': '2025-03-10T06:37:35.000',
  'closed_date': '2025-03-10T15:54:20.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Sidewalk',
  'incident_zip': '10014',
  'incident_address': '401 BLEECKER STREET',
  'street_name': 'BLEECKER STREET',
  'cross_street_1': 'PERRY STREET',
  'cross_street_2': 'WEST   11 STREET',
  'intersection_street_1': 'PERRY STREET',
  'intersection_street_2': 'WEST   11 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BLEECKER STREET',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) closed your Service Request. The condition doesn't meet their criteria for a complaint or Service Request.",
  'resolution_action_updated_date': '2025-03-10T15:54:20.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1006220034',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '982840',
  'y_coordinate_state_plane': '207373',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73586751833652',
  'longitude': '-74.00508783462232',
  'location': {'latitude': '40.73586751833652',
   'longitude': '-74.00508783462232',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312467',
  'created_date': '2025-03-10T06:37:37.000',
  'closed_date': '2025-03-11T12:30:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11423',
  'incident_address': 'ABERDEEN ROAD',
  'street_name': 'ABERDEEN ROAD',
  'cross_street_1': '190 STREET',
  'cross_street_2': '192 STREET',
  'address_type': 'BLOCKFACE',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected this complaint and repaired the problem.',
  'resolution_action_updated_date': '2025-03-11T12:30:00.000',
  'community_board': '08 QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '64306078',
  'created_date': '2025-03-10T06:37:50.000',
  'closed_date': '2025-03-10T20:33:23.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '10014',
  'incident_address': '296 BLEECKER STREET',
  'street_name': 'BLEECKER STREET',
  'cross_street_1': 'BARROW STREET',
  'cross_street_2': 'GROVE STREET',
  'intersection_street_1': 'BARROW STREET',
  'intersection_street_2': 'GROVE STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BLEECKER STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-10T20:33:26.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005880029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983218',
  'y_coordinate_state_plane': '206140',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73248328907912',
  'longitude': '-74.00372367280929',
  'location': {'latitude': '40.73248328907912',
   'longitude': '-74.00372367280929',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312634',
  'created_date': '2025-03-10T06:37:52.000',
  'closed_date': '2025-03-10T07:45:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11379',
  'incident_address': '82-00 ELIOT AVENUE',
  'street_name': 'ELIOT AVENUE',
  'cross_street_1': '82 STREET',
  'cross_street_2': '83 STREET',
  'intersection_street_1': '82 STREET',
  'intersection_street_2': '83 STREET',
  'address_type': 'ADDRESS',
  'city': 'MIDDLE VILLAGE',
  'landmark': 'ELIOT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T07:45:08.000',
  'community_board': '05 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1018227',
  'y_coordinate_state_plane': '203732',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72580872432012',
  'longitude': '-73.87741608466406',
  'location': {'latitude': '40.72580872432012',
   'longitude': '-73.87741608466406',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315552',
  'created_date': '2025-03-10T06:37:57.000',
  'closed_date': '2025-03-10T07:07:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11421',
  'incident_address': '91-03 87 STREET',
  'street_name': '87 STREET',
  'cross_street_1': '91 AVENUE',
  'cross_street_2': 'ATLANTIC AVENUE',
  'intersection_street_1': '91 AVENUE',
  'intersection_street_2': 'ATLANTIC AVENUE',
  'address_type': 'ADDRESS',
  'city': 'WOODHAVEN',
  'landmark': '87 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T07:07:12.000',
  'community_board': '09 QUEENS',
  'bbl': '4089810001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024313',
  'y_coordinate_state_plane': '189929',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68789733037067',
  'longitude': '-73.8555408722569',
  'location': {'latitude': '40.68789733037067',
   'longitude': '-73.8555408722569',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308619',
  'created_date': '2025-03-10T06:38:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Hydrant Running (WC3)',
  'incident_zip': '11367',
  'incident_address': '144-46 77 ROAD',
  'street_name': '77 ROAD',
  'cross_street_1': 'MAIN ST',
  'cross_street_2': '147 ST',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'status': 'Open',
  'community_board': '08 QUEENS',
  'bbl': '4066690027',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1034784',
  'y_coordinate_state_plane': '201998',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.720970233574775',
  'longitude': '-73.81769407835066',
  'location': {'latitude': '40.720970233574775',
   'longitude': '-73.81769407835066',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312249',
  'created_date': '2025-03-10T06:39:29.000',
  'closed_date': '2025-03-10T15:40:19.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10453',
  'incident_address': '1604 UNIVERSITY AVENUE',
  'street_name': 'UNIVERSITY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD responded to a complaint of no heat or hot water in the building. An occupant of the building confirmed heat and hot water had been restored when the Inspector attempted to conduct the inspection or contacted you at the phone number associated with the complaint. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '05 BRONX',
  'bbl': '2028760070',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006364',
  'y_coordinate_state_plane': '247948',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84720736540987',
  'longitude': '-73.92007041672592',
  'location': {'latitude': '40.84720736540987',
   'longitude': '-73.92007041672592',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311315',
  'created_date': '2025-03-10T06:39:46.000',
  'closed_date': '2025-03-10T08:33:42.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11204',
  'incident_address': '2131 71 STREET',
  'street_name': '71 STREET',
  'cross_street_1': '21 AVENUE',
  'cross_street_2': 'BAY PARKWAY',
  'intersection_street_1': '21 AVENUE',
  'intersection_street_2': 'BAY PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '71 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:33:45.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3061750066',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988033',
  'y_coordinate_state_plane': '161993',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61130894279118',
  'longitude': '-73.98637491794774',
  'location': {'latitude': '40.61130894279118',
   'longitude': '-73.98637491794774',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314287',
  'created_date': '2025-03-10T06:40:07.000',
  'closed_date': '2025-03-13T08:05:32.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Plate Condition - Noisy',
  'location_type': 'Street',
  'incident_zip': '10002',
  'incident_address': '280 EAST HOUSTON STREET',
  'street_name': 'EAST HOUSTON STREET',
  'cross_street_1': 'SUFFOLK STREET',
  'cross_street_2': 'AVENUE B',
  'intersection_street_1': 'SUFFOLK STREET',
  'intersection_street_2': 'AVENUE B',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST HOUSTON STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected the condition you reported and found that the condition meets its standards and/or there is a valid permit to conduct work.',
  'resolution_action_updated_date': '2025-03-13T08:05:35.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003977503',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988600',
  'y_coordinate_state_plane': '202185',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72162676785151',
  'longitude': '-73.98430684285545',
  'location': {'latitude': '40.72162676785151',
   'longitude': '-73.98430684285545',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313295',
  'created_date': '2025-03-10T06:40:37.000',
  'closed_date': '2025-03-10T20:43:35.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '10012',
  'incident_address': '178 MULBERRY STREET',
  'street_name': 'MULBERRY STREET',
  'cross_street_1': 'BROOME STREET',
  'cross_street_2': 'KENMARE STREET',
  'intersection_street_1': 'BROOME STREET',
  'intersection_street_2': 'KENMARE STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'MULBERRY STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-10T20:43:39.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1004800001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985144',
  'y_coordinate_state_plane': '201822',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72063144477658',
  'longitude': '-73.99677483381788',
  'location': {'latitude': '40.72063144477658',
   'longitude': '-73.99677483381788',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309591',
  'created_date': '2025-03-10T06:40:44.000',
  'closed_date': '2025-03-10T20:31:55.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Street',
  'incident_zip': '10012',
  'incident_address': '151 BLEECKER STREET',
  'street_name': 'BLEECKER STREET',
  'cross_street_1': 'LA GUARDIA PLACE',
  'cross_street_2': 'THOMPSON STREET',
  'intersection_street_1': 'LA GUARDIA PLACE',
  'intersection_street_2': 'THOMPSON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BLEECKER STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-10T20:31:56.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005370037',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984400',
  'y_coordinate_state_plane': '204625',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72832504382953',
  'longitude': '-73.99945880225974',
  'location': {'latitude': '40.72832504382953',
   'longitude': '-73.99945880225974',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308850',
  'created_date': '2025-03-10T06:40:54.000',
  'closed_date': '2025-03-10T12:31:17.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Sidewalk',
  'incident_zip': '10012',
  'incident_address': '520 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'BROOME STREET',
  'cross_street_2': 'SPRING STREET',
  'intersection_street_1': 'BROOME STREET',
  'intersection_street_2': 'SPRING STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) closed your Service Request. The condition doesn't meet their criteria for a complaint or Service Request.",
  'resolution_action_updated_date': '2025-03-10T12:31:17.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1004830015',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984498',
  'y_coordinate_state_plane': '202562',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.722662607770445',
  'longitude': '-73.99910529576053',
  'location': {'latitude': '40.722662607770445',
   'longitude': '-73.99910529576053',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313553',
  'created_date': '2025-03-10T06:40:59.000',
  'closed_date': '2025-03-10T09:47:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11204',
  'incident_address': '1944 BAY RIDGE PARKWAY',
  'street_name': 'BAY RIDGE PARKWAY',
  'cross_street_1': '19 AVENUE',
  'cross_street_2': '20 AVENUE',
  'intersection_street_1': '19 AVENUE',
  'intersection_street_2': '20 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAY RIDGE PARKWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:47:21.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3062280024',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986210',
  'y_coordinate_state_plane': '162078',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.611542841070666',
  'longitude': '-73.9929407205098',
  'location': {'latitude': '40.611542841070666',
   'longitude': '-73.9929407205098',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306150',
  'created_date': '2025-03-10T06:41:12.000',
  'closed_date': '2025-03-10T07:44:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11385',
  'incident_address': '75-49 61 STREET',
  'street_name': '61 STREET',
  'cross_street_1': '75 AVENUE',
  'cross_street_2': 'ST FELIX AVENUE',
  'intersection_street_1': '75 AVENUE',
  'intersection_street_2': 'ST FELIX AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': '61 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:44:25.000',
  'community_board': '05 QUEENS',
  'bbl': '4035860022',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1013674',
  'y_coordinate_state_plane': '193737',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69839116494034',
  'longitude': '-73.89388629081304',
  'location': {'latitude': '40.69839116494034',
   'longitude': '-73.89388629081304',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315487',
  'created_date': '2025-03-10T06:41:16.000',
  'closed_date': '2025-03-10T07:39:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11237',
  'incident_address': '391 PALMETTO STREET',
  'street_name': 'PALMETTO STREET',
  'cross_street_1': 'RIDGEWOOD PLACE',
  'cross_street_2': 'MYRTLE AVENUE',
  'intersection_street_1': 'RIDGEWOOD PLACE',
  'intersection_street_2': 'MYRTLE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PALMETTO STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and no Encampment was found.',
  'resolution_action_updated_date': '2025-03-10T07:39:53.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3033450028',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1008804',
  'y_coordinate_state_plane': '194001',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.699130635529734',
  'longitude': '-73.91144831696579',
  'location': {'latitude': '40.699130635529734',
   'longitude': '-73.91144831696579',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314577',
  'created_date': '2025-03-10T06:41:39.000',
  'closed_date': '2025-03-10T21:04:03.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10024',
  'incident_address': '114 WEST   80 STREET',
  'street_name': 'WEST   80 STREET',
  'cross_street_1': 'COLUMBUS AVENUE',
  'cross_street_2': 'AMSTERDAM AVENUE',
  'intersection_street_1': 'COLUMBUS AVENUE',
  'intersection_street_2': 'AMSTERDAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   80 STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation cleaned the location.',
  'resolution_action_updated_date': '2025-03-10T21:04:06.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1012100042',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990994',
  'y_coordinate_state_plane': '224510',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.782901733449094',
  'longitude': '-73.97564780504015',
  'location': {'latitude': '40.782901733449094',
   'longitude': '-73.97564780504015',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308317',
  'created_date': '2025-03-10T06:42:04.000',
  'closed_date': '2025-03-10T06:57:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10011',
  'incident_address': '154 9 AVENUE',
  'street_name': '9 AVENUE',
  'cross_street_1': 'WEST   19 STREET',
  'cross_street_2': 'WEST   20 STREET',
  'intersection_street_1': 'WEST   19 STREET',
  'intersection_street_2': 'WEST   20 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '9 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T06:57:15.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1007430004',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983442',
  'y_coordinate_state_plane': '210443',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.744293981051925',
  'longitude': '-74.00291595058681',
  'location': {'latitude': '40.744293981051925',
   'longitude': '-74.00291595058681',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316064',
  'created_date': '2025-03-10T06:42:22.000',
  'closed_date': '2025-03-12T14:14:06.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '11249',
  'incident_address': '540 BEDFORD AVENUE',
  'street_name': 'BEDFORD AVENUE',
  'cross_street_1': 'WILSON STREET',
  'cross_street_2': 'ROSS STREET',
  'intersection_street_1': 'WILSON STREET',
  'intersection_street_2': 'ROSS STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BEDFORD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation cleaned the location.',
  'resolution_action_updated_date': '2025-03-12T14:14:09.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3021810035',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994674',
  'y_coordinate_state_plane': '196224',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70526017401029',
  'longitude': '-73.96240337665257',
  'location': {'latitude': '40.70526017401029',
   'longitude': '-73.96240337665257',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311014',
  'created_date': '2025-03-10T06:42:23.000',
  'closed_date': '2025-03-11T18:10:58.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10040',
  'incident_address': '106 NAGLE AVENUE',
  'street_name': 'NAGLE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021740089',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004429',
  'y_coordinate_state_plane': '252884',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86075984491616',
  'longitude': '-73.92704948447698',
  'location': {'latitude': '40.86075984491616',
   'longitude': '-73.92704948447698',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307537',
  'created_date': '2025-03-10T06:42:25.000',
  'closed_date': '2025-03-10T09:10:24.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10456',
  'incident_address': '1166 JACKSON AVENUE',
  'street_name': 'JACKSON AVENUE',
  'cross_street_1': 'HOME STREET',
  'cross_street_2': 'BOSTON ROAD',
  'intersection_street_1': 'HOME STREET',
  'intersection_street_2': 'BOSTON ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'JACKSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T09:10:29.000',
  'community_board': '03 BRONX',
  'bbl': '2026520122',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011179',
  'y_coordinate_state_plane': '241208',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82869466096178',
  'longitude': '-73.90269399361378',
  'location': {'latitude': '40.82869466096178',
   'longitude': '-73.90269399361378',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315130',
  'created_date': '2025-03-10T06:42:27.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11432',
  'incident_address': '81 AVENUE',
  'street_name': '81 AVENUE',
  'cross_street_1': '190 STREET',
  'cross_street_2': '192 STREET',
  'address_type': 'BLOCKFACE',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Pending',
  'resolution_description': 'The status of this Service Request is currently not available online. Please call 311 for further assistance. If you are outside of New York City, please call (212) NEW-YORK (212-639-9675).',
  'resolution_action_updated_date': '2025-03-10T23:00:00.000',
  'community_board': '08 QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '64309703',
  'created_date': '2025-03-10T06:42:28.000',
  'closed_date': '2025-03-10T18:15:41.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10454',
  'incident_address': '342 EAST  139 STREET',
  'street_name': 'EAST  139 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "The Department of Housing Preservation and Development conducted or attempted to conduct an inspection.  More information about inspection results can be found through HPD's website at www.nyc.gov/hpd by using HPDONLINE (enter your address on the home page) and entering your SR number under the complaint status option.",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '01 BRONX',
  'bbl': '2023010007',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005278',
  'y_coordinate_state_plane': '234559',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.810461056637656',
  'longitude': '-73.9240376554022',
  'location': {'latitude': '40.810461056637656',
   'longitude': '-73.9240376554022',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315919',
  'created_date': '2025-03-10T06:42:48.000',
  'closed_date': '2025-03-10T20:29:54.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '10012',
  'incident_address': '503 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'BROOME STREET',
  'cross_street_2': 'SPRING STREET',
  'intersection_street_1': 'BROOME STREET',
  'intersection_street_2': 'SPRING STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation has investigated the complaint and addressed the issue. If the problem persists, call 311 to enter a new complaint. If you are outside of New York City, please call (212) NEW-YORK (212-639-9675).',
  'resolution_action_updated_date': '2025-03-10T20:29:54.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1004847502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984406',
  'y_coordinate_state_plane': '202430',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.722300301788664',
  'longitude': '-73.99943720523152',
  'location': {'latitude': '40.722300301788664',
   'longitude': '-73.99943720523152',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310406',
  'created_date': '2025-03-10T06:42:53.000',
  'closed_date': '2025-03-10T07:22:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11228',
  'incident_address': '1208 77 STREET',
  'street_name': '77 STREET',
  'cross_street_1': '12 AVENUE',
  'cross_street_2': '13 AVENUE',
  'intersection_street_1': '12 AVENUE',
  'intersection_street_2': '13 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '77 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:22:16.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3062430008',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '981366',
  'y_coordinate_state_plane': '165229',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.620191431198954',
  'longitude': '-74.01038857142603',
  'location': {'latitude': '40.620191431198954',
   'longitude': '-74.01038857142603',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309796',
  'created_date': '2025-03-10T06:42:55.000',
  'closed_date': '2025-03-11T19:15:16.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11372',
  'incident_address': '34-57 73 STREET',
  'street_name': '73 STREET',
  'address_type': 'ADDRESS',
  'city': 'JACKSON HEIGHTS',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '03 QUEENS',
  'bbl': '4012600041',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1013869',
  'y_coordinate_state_plane': '212994',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.751246265177535',
  'longitude': '-73.89309829767902',
  'location': {'latitude': '40.751246265177535',
   'longitude': '-73.89309829767902',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312854',
  'created_date': '2025-03-10T06:43:13.000',
  'closed_date': '2025-03-10T12:31:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Sidewalk',
  'incident_zip': '10013',
  'incident_address': '128 MULBERRY STREET',
  'street_name': 'MULBERRY STREET',
  'cross_street_1': 'CANAL STREET',
  'cross_street_2': 'HESTER STREET',
  'intersection_street_1': 'CANAL STREET',
  'intersection_street_2': 'HESTER STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'MULBERRY STREET',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) closed your Service Request. The condition doesn't meet their criteria for a complaint or Service Request.",
  'resolution_action_updated_date': '2025-03-10T12:31:00.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1002057502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984799',
  'y_coordinate_state_plane': '200862',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.717996503917796',
  'longitude': '-73.9980195232285',
  'location': {'latitude': '40.717996503917796',
   'longitude': '-73.9980195232285',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312004',
  'created_date': '2025-03-10T06:43:47.000',
  'closed_date': '2025-03-10T23:07:48.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10035',
  'incident_address': '2195 THIRD AVENUE',
  'street_name': 'THIRD AVENUE',
  'cross_street_1': 'EAST  119 STREET',
  'cross_street_2': 'EAST  120 STREET',
  'intersection_street_1': 'EAST  119 STREET',
  'intersection_street_2': 'EAST  120 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '3 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-10T23:07:53.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1017840045',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001331',
  'y_coordinate_state_plane': '230843',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80027017539899',
  'longitude': '-73.93830539698983',
  'location': {'latitude': '40.80027017539899',
   'longitude': '-73.93830539698983',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311228',
  'created_date': '2025-03-10T06:43:55.000',
  'closed_date': '2025-03-10T15:57:37.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Plate Condition - Noisy',
  'location_type': 'Street',
  'incident_zip': '10029',
  'incident_address': '2026 2 AVENUE',
  'street_name': '2 AVENUE',
  'cross_street_1': 'EAST  104 STREET',
  'cross_street_2': 'EAST  105 STREET',
  'intersection_street_1': 'EAST  104 STREET',
  'intersection_street_2': 'EAST  105 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '2 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected the condition you reported and found that the condition meets its standards and/or there is a valid permit to conduct work.',
  'resolution_action_updated_date': '2025-03-10T15:57:40.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1016760002',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999952',
  'y_coordinate_state_plane': '226893',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78943105558528',
  'longitude': '-73.9432954200378',
  'location': {'latitude': '40.78943105558528',
   'longitude': '-73.9432954200378',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313516',
  'created_date': '2025-03-10T06:43:56.000',
  'closed_date': '2025-03-10T09:47:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11204',
  'incident_address': '1944 BAY RIDGE PARKWAY',
  'street_name': 'BAY RIDGE PARKWAY',
  'cross_street_1': '19 AVENUE',
  'cross_street_2': '20 AVENUE',
  'intersection_street_1': '19 AVENUE',
  'intersection_street_2': '20 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAY RIDGE PARKWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:47:24.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3062280024',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986210',
  'y_coordinate_state_plane': '162078',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.611542841070666',
  'longitude': '-73.9929407205098',
  'location': {'latitude': '40.611542841070666',
   'longitude': '-73.9929407205098',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307260',
  'created_date': '2025-03-10T06:44:00.000',
  'closed_date': '2025-03-10T09:32:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water Quality',
  'descriptor': 'Clear Water With Organisms (Insects, Worms) (QE2)',
  'incident_zip': '11355',
  'incident_address': '44-13 COLDEN STREET',
  'street_name': 'COLDEN STREET',
  'cross_street_1': 'ELDER AVE',
  'cross_street_2': '45 AVE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-10T09:32:00.000',
  'community_board': '07 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033011',
  'y_coordinate_state_plane': '213144',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.751573138813114',
  'longitude': '-73.82400953113222',
  'location': {'latitude': '40.751573138813114',
   'longitude': '-73.82400953113222',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308927',
  'created_date': '2025-03-10T06:44:27.000',
  'closed_date': '2025-03-11T02:08:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11208',
  'incident_address': '1391 STANLEY AVENUE',
  'street_name': 'STANLEY AVENUE',
  'cross_street_1': 'EMERALD STREET',
  'cross_street_2': 'AMBER STREET',
  'intersection_street_1': 'EMERALD STREET',
  'intersection_street_2': 'AMBER STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'STANLEY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-11T02:08:50.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3045180127',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1023675',
  'y_coordinate_state_plane': '182265',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.66686427453241',
  'longitude': '-73.85788620147272',
  'location': {'latitude': '40.66686427453241',
   'longitude': '-73.85788620147272',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308762',
  'created_date': '2025-03-10T06:44:49.000',
  'closed_date': '2025-03-10T08:40:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10461',
  'incident_address': '1215 VAN NEST AVENUE',
  'street_name': 'VAN NEST AVENUE',
  'cross_street_1': 'TENBROECK AVENUE',
  'cross_street_2': 'NEWPORT AVENUE',
  'intersection_street_1': 'TENBROECK AVENUE',
  'intersection_street_2': 'NEWPORT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'VAN NEST AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:40:50.000',
  'community_board': '11 BRONX',
  'bbl': '2041200018',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1026527',
  'y_coordinate_state_plane': '249060',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8501859541317',
  'longitude': '-73.84718569426396',
  'location': {'latitude': '40.8501859541317',
   'longitude': '-73.84718569426396',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306854',
  'created_date': '2025-03-10T06:45:20.000',
  'closed_date': '2025-03-10T07:01:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10019',
  'incident_address': '692 10 AVENUE',
  'street_name': '10 AVENUE',
  'cross_street_1': 'WEST   48 STREET',
  'cross_street_2': 'WEST   49 STREET',
  'intersection_street_1': 'WEST   48 STREET',
  'intersection_street_2': 'WEST   49 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '10 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T07:01:20.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010580004',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986320',
  'y_coordinate_state_plane': '217496',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.763652469839855',
  'longitude': '-73.99252750977236',
  'location': {'latitude': '40.763652469839855',
   'longitude': '-73.99252750977236',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309276',
  'created_date': '2025-03-10T06:45:27.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Store/Commercial',
  'incident_zip': '10019',
  'incident_address': '1619 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST 49 STREET',
  'cross_street_2': 'WEST 50 STREET',
  'intersection_street_1': 'WEST   49 STREET',
  'intersection_street_2': 'WEST   50 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team went to the location provided but could not find the individual that you reported.',
  'resolution_action_updated_date': '2025-03-10T10:27:38.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1010210019',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988591',
  'y_coordinate_state_plane': '216551',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.76105786456666',
  'longitude': '-73.98433004028819',
  'location': {'latitude': '40.76105786456666',
   'longitude': '-73.98433004028819',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310712',
  'created_date': '2025-03-10T06:45:36.000',
  'closed_date': '2025-03-10T20:43:11.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '10013',
  'incident_address': '176 MULBERRY STREET',
  'street_name': 'MULBERRY STREET',
  'cross_street_1': 'GRAND STREET',
  'cross_street_2': 'BROOME STREET',
  'intersection_street_1': 'GRAND STREET',
  'intersection_street_2': 'BROOME STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'MULBERRY STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-10T20:43:15.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1004717502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985111',
  'y_coordinate_state_plane': '201711',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72032677980751',
  'longitude': '-73.99689389777535',
  'location': {'latitude': '40.72032677980751',
   'longitude': '-73.99689389777535',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310236',
  'created_date': '2025-03-10T06:45:44.000',
  'closed_date': '2025-03-10T08:33:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '87 AVENUE S',
  'street_name': 'AVENUE S',
  'cross_street_1': 'WEST   11 STREET',
  'cross_street_2': 'WEST   10 STREET',
  'intersection_street_1': 'WEST   11 STREET',
  'intersection_street_2': 'WEST   10 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AVENUE S',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:33:12.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3066700045',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989098',
  'y_coordinate_state_plane': '158129',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60070253356857',
  'longitude': '-73.98254192311187',
  'location': {'latitude': '40.60070253356857',
   'longitude': '-73.98254192311187',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311422',
  'created_date': '2025-03-10T06:45:52.000',
  'closed_date': '2025-03-10T13:22:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10457',
  'incident_address': '1560 SELWYN AVENUE',
  'street_name': 'SELWYN AVENUE',
  'cross_street_1': 'EAST  172 STREET',
  'cross_street_2': 'MOUNT EDEN PARKWAY',
  'intersection_street_1': 'EAST  172 STREET',
  'intersection_street_2': 'MOUNT EDEN PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'SELWYN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T13:22:48.000',
  'community_board': '04 BRONX',
  'bbl': '2028200027',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009014',
  'y_coordinate_state_plane': '246054',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.84200185919921',
  'longitude': '-73.91049916865975',
  'location': {'latitude': '40.84200185919921',
   'longitude': '-73.91049916865975',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316098',
  'created_date': '2025-03-10T06:45:57.000',
  'closed_date': '2025-03-12T10:23:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '10465',
  'incident_address': 'BRUSH AVENUE',
  'street_name': 'BRUSH AVENUE',
  'cross_street_1': 'JAY PLACE',
  'cross_street_2': 'YZNAGA PLACE',
  'address_type': 'BLOCKFACE',
  'city': 'BRONX',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected this complaint and repaired the problem.',
  'resolution_action_updated_date': '2025-03-12T10:23:00.000',
  'community_board': '10 BRONX',
  'borough': 'BRONX',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX'},
 {'unique_key': '64315941',
  'created_date': '2025-03-10T06:45:57.000',
  'closed_date': '2025-03-10T20:31:29.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '10012',
  'incident_address': '50 SPRING STREET',
  'street_name': 'SPRING STREET',
  'cross_street_1': 'MULBERRY STREET',
  'cross_street_2': 'CLEVELAND PLACE',
  'intersection_street_1': 'MULBERRY STREET',
  'intersection_street_2': 'CLEVELAND PLACE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'SPRING STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-10T20:31:32.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1004810021',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985219',
  'y_coordinate_state_plane': '202334',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.722036753294944',
  'longitude': '-73.99650419247284',
  'location': {'latitude': '40.722036753294944',
   'longitude': '-73.99650419247284',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312812',
  'created_date': '2025-03-10T06:46:04.000',
  'closed_date': '2025-03-10T11:20:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11101',
  'incident_address': '10-31 51 AVENUE',
  'street_name': '51 AVENUE',
  'cross_street_1': 'JACKSON AVENUE',
  'cross_street_2': '11 STREET',
  'intersection_street_1': 'JACKSON AVENUE',
  'intersection_street_2': '11 STREET',
  'address_type': 'ADDRESS',
  'city': 'LONG ISLAND CITY',
  'landmark': '51 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T11:20:30.000',
  'community_board': '02 QUEENS',
  'bbl': '4000400012',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '997214',
  'y_coordinate_state_plane': '209547',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74182521965099',
  'longitude': '-73.95321660339515',
  'location': {'latitude': '40.74182521965099',
   'longitude': '-73.95321660339515',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308799',
  'created_date': '2025-03-10T06:46:18.000',
  'closed_date': '2025-03-10T07:25:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11209',
  'incident_address': '137 88 STREET',
  'street_name': '88 STREET',
  'cross_street_1': 'COLONIAL ROAD',
  'cross_street_2': 'RIDGE BOULEVARD',
  'intersection_street_1': 'COLONIAL ROAD',
  'intersection_street_2': 'RIDGE BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '88 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:25:21.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3060470049',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '974319',
  'y_coordinate_state_plane': '166267',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62303542789971',
  'longitude': '-74.03577437637094',
  'location': {'latitude': '40.62303542789971',
   'longitude': '-74.03577437637094',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308243',
  'created_date': '2025-03-10T06:46:20.000',
  'closed_date': '2025-03-10T17:00:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11367',
  'incident_address': '62-05 MAIN STREET',
  'street_name': 'MAIN STREET',
  'cross_street_1': '62 AVENUE',
  'cross_street_2': '62 ROAD',
  'intersection_street_1': '62 AVENUE',
  'intersection_street_2': '62 ROAD',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': 'MAIN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2025-03-10T17:00:10.000',
  'community_board': '08 QUEENS',
  'bbl': '4064120038',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032720',
  'y_coordinate_state_plane': '209254',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74089768581135',
  'longitude': '-73.82508785371643',
  'location': {'latitude': '40.74089768581135',
   'longitude': '-73.82508785371643',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311557',
  'created_date': '2025-03-10T06:46:26.000',
  'closed_date': '2025-03-10T08:38:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Bike Lane',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10036',
  'incident_address': '230 WEST   41 STREET',
  'street_name': 'WEST   41 STREET',
  'cross_street_1': '7 AVENUE',
  'cross_street_2': '8 AVENUE',
  'intersection_street_1': '7 AVENUE',
  'intersection_street_2': '8 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   41 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:39:02.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1010120015',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987441',
  'y_coordinate_state_plane': '214636',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75580216907677',
  'longitude': '-73.98848217091673',
  'location': {'latitude': '40.75580216907677',
   'longitude': '-73.98848217091673',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315854',
  'created_date': '2025-03-10T06:46:45.000',
  'closed_date': '2025-03-10T06:46:45.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '10306',
  'incident_address': 'CLARKE AVENUE',
  'street_name': 'CLARKE AVENUE',
  'cross_street_1': 'MONTREAL AVENUE',
  'cross_street_2': 'WOLVERINE STREET',
  'address_type': 'BLOCKFACE',
  'city': 'STATEN ISLAND',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-10T06:46:45.000',
  'community_board': '03 STATEN ISLAND',
  'borough': 'STATEN ISLAND',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND'},
 {'unique_key': '64311255',
  'created_date': '2025-03-10T06:47:00.000',
  'closed_date': '2025-03-12T07:00:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '10462',
  'incident_address': '1456 WHITE PLAINS ROAD',
  'street_name': 'WHITE PLAINS ROAD',
  'cross_street_1': 'WOOD AVE',
  'cross_street_2': 'ARCHER ST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': "The Department of Environmental Protection (DEP) didn't observe a violation of the NYC Air or Noise Code at the time of inspection and couldn't issue a summons.  If the problem still exists, please go to nyc.gov/311 or call 311 to file a new Service Request. If you're outside of New York City, please call (212) NEW-YORK (212-639-9675).",
  'resolution_action_updated_date': '2025-03-12T07:00:00.000',
  'community_board': '09 BRONX',
  'bbl': '2039370066',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022056',
  'y_coordinate_state_plane': '244200',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83686696932028',
  'longitude': '-73.86337392772488',
  'location': {'latitude': '40.83686696932028',
   'longitude': '-73.86337392772488',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316162',
  'created_date': '2025-03-10T06:47:23.000',
  'closed_date': '2025-03-10T06:57:38.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10456',
  'incident_address': '1385 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'EAST  169 STREET',
  'cross_street_2': 'EAST  170 STREET',
  'intersection_street_1': 'EAST  169 STREET',
  'intersection_street_2': 'EAST  170 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T06:57:43.000',
  'community_board': '03 BRONX',
  'bbl': '2029010001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010561',
  'y_coordinate_state_plane': '243449',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8348474210791',
  'longitude': '-73.90491830085918',
  'location': {'latitude': '40.8348474210791',
   'longitude': '-73.90491830085918',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307590',
  'created_date': '2025-03-10T06:47:35.000',
  'closed_date': '2025-03-11T06:10:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11373',
  'incident_address': '78-15 45 AVENUE',
  'street_name': '45 AVENUE',
  'cross_street_1': '78 STREET',
  'cross_street_2': '79 STREET',
  'intersection_street_1': '78 STREET',
  'intersection_street_2': '79 STREET',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': '45 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-11T06:10:53.000',
  'community_board': '04 QUEENS',
  'bbl': '4015240052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1015862',
  'y_coordinate_state_plane': '209364',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.741275933826465',
  'longitude': '-73.88592217768014',
  'location': {'latitude': '40.741275933826465',
   'longitude': '-73.88592217768014',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306222',
  'created_date': '2025-03-10T06:47:38.000',
  'closed_date': '2025-03-10T20:42:41.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Street',
  'incident_zip': '10012',
  'incident_address': '235 MULBERRY STREET',
  'street_name': 'MULBERRY STREET',
  'cross_street_1': 'SPRING STREET',
  'cross_street_2': 'PRINCE STREET',
  'intersection_street_1': 'SPRING STREET',
  'intersection_street_2': 'PRINCE STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'MULBERRY STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-10T20:42:43.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1004950032',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985362',
  'y_coordinate_state_plane': '202570',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72268449942077',
  'longitude': '-73.99598826031679',
  'location': {'latitude': '40.72268449942077',
   'longitude': '-73.99598826031679',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313406',
  'created_date': '2025-03-10T06:47:41.000',
  'closed_date': '2025-03-10T08:13:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10035',
  'incident_address': '1709 PARK AVENUE',
  'street_name': 'PARK AVENUE',
  'cross_street_1': 'EAST  119 STREET',
  'cross_street_2': 'EAST  120 STREET',
  'intersection_street_1': 'EAST  119 STREET',
  'intersection_street_2': 'EAST  120 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'PARK AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:13:08.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1017680004',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000429',
  'y_coordinate_state_plane': '231314',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80156463893782',
  'longitude': '-73.94156218111745',
  'location': {'latitude': '40.80156463893782',
   'longitude': '-73.94156218111745',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308693',
  'created_date': '2025-03-10T06:47:51.000',
  'closed_date': '2025-03-10T12:20:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11416',
  'incident_address': '95-17 84 STREET',
  'street_name': '84 STREET',
  'cross_street_1': '95 AVENUE',
  'cross_street_2': 'ROCKAWAY BOULEVARD',
  'intersection_street_1': '95 AVENUE',
  'intersection_street_2': 'ROCKAWAY BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'landmark': '84 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T12:20:21.000',
  'community_board': '09 QUEENS',
  'bbl': '4090170030',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1023997',
  'y_coordinate_state_plane': '188630',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Van',
  'latitude': '40.68433330216217',
  'longitude': '-73.85668796578456',
  'location': {'latitude': '40.68433330216217',
   'longitude': '-73.85668796578456',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311911',
  'created_date': '2025-03-10T06:48:20.000',
  'closed_date': '2025-03-10T09:33:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drug Activity',
  'descriptor': 'Use Outside',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10019',
  'incident_address': '524 WEST   59 STREET',
  'street_name': 'WEST   59 STREET',
  'cross_street_1': '10 AVENUE',
  'cross_street_2': '11 AVENUE',
  'intersection_street_1': '10 AVENUE',
  'intersection_street_2': '11 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   59 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T09:33:21.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010870005',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987432',
  'y_coordinate_state_plane': '220095',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77078572075023',
  'longitude': '-73.9885120720818',
  'location': {'latitude': '40.77078572075023',
   'longitude': '-73.9885120720818',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314979',
  'created_date': '2025-03-10T06:48:28.000',
  'closed_date': '2025-03-11T09:14:58.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10473',
  'incident_address': '950 EVERGREEN AVENUE',
  'street_name': 'EVERGREEN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 BRONX',
  'bbl': '2036500001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1017570',
  'y_coordinate_state_plane': '238903',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82234629966529',
  'longitude': '-73.87961204742707',
  'location': {'latitude': '40.82234629966529',
   'longitude': '-73.87961204742707',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307632',
  'created_date': '2025-03-10T06:48:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10454',
  'incident_address': '308 WILLIS AVENUE',
  'street_name': 'WILLIS AVENUE',
  'cross_street_1': 'EAST  140 STREET',
  'cross_street_2': 'EAST  141 STREET',
  'intersection_street_1': 'EAST  140 STREET',
  'intersection_street_2': 'EAST  141 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WILLIS AVENUE',
  'status': 'In Progress',
  'community_board': '01 BRONX',
  'bbl': '2022850004',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005904',
  'y_coordinate_state_plane': '234618',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.810621483030246',
  'longitude': '-73.92177608012118',
  'location': {'latitude': '40.810621483030246',
   'longitude': '-73.92177608012118',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313368',
  'created_date': '2025-03-10T06:48:36.000',
  'closed_date': '2025-03-12T13:15:46.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '11207',
  'incident_address': '1997 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': '14 STREET/CANARSIE LINE',
  'cross_street_2': 'FULTON STREET',
  'intersection_street_1': '14 STREET/CANARSIE LINE',
  'intersection_street_2': 'FULTON STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation will address the situation at the location by providing educational outreach about proper sanitation procedures.',
  'resolution_action_updated_date': '2025-03-12T13:15:49.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3034760010',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1011135',
  'y_coordinate_state_plane': '186548',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67866710119293',
  'longitude': '-73.90307153383239',
  'location': {'latitude': '40.67866710119293',
   'longitude': '-73.90307153383239',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310417',
  'created_date': '2025-03-10T06:48:46.000',
  'closed_date': '2025-03-10T08:39:24.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Bike Lane',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10036',
  'incident_address': '230 WEST   41 STREET',
  'street_name': 'WEST   41 STREET',
  'cross_street_1': '7 AVENUE',
  'cross_street_2': '8 AVENUE',
  'intersection_street_1': '7 AVENUE',
  'intersection_street_2': '8 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   41 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:39:27.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1010120015',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987441',
  'y_coordinate_state_plane': '214636',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75580216907677',
  'longitude': '-73.98848217091673',
  'location': {'latitude': '40.75580216907677',
   'longitude': '-73.98848217091673',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309838',
  'created_date': '2025-03-10T06:48:47.000',
  'closed_date': '2025-03-10T16:31:59.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '1060 SHERIDAN AVENUE',
  'street_name': 'SHERIDAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "The Department of Housing Preservation and Development conducted or attempted to conduct an inspection.  More information about inspection results can be found through HPD's website at www.nyc.gov/hpd by using HPDONLINE (enter your address on the home page) and entering your SR number under the complaint status option.",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2024560037',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006756',
  'y_coordinate_state_plane': '241962',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83077655205926',
  'longitude': '-73.91867364670983',
  'location': {'latitude': '40.83077655205926',
   'longitude': '-73.91867364670983',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311796',
  'created_date': '2025-03-10T06:48:47.000',
  'closed_date': '2025-03-10T07:27:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11201',
  'incident_address': '100 HENRY STREET',
  'street_name': 'HENRY STREET',
  'cross_street_1': 'PINEAPPLE STREET',
  'cross_street_2': 'CLARK STREET',
  'intersection_street_1': 'PINEAPPLE STREET',
  'intersection_street_2': 'CLARK STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HENRY STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T07:27:24.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3002310001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986222',
  'y_coordinate_state_plane': '193487',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Truck',
  'latitude': '40.697753670309396',
  'longitude': '-73.9928883162496',
  'location': {'latitude': '40.697753670309396',
   'longitude': '-73.9928883162496',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314726',
  'created_date': '2025-03-10T06:48:48.000',
  'closed_date': '2025-03-10T08:38:02.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10001',
  'incident_address': '408 8 AVENUE',
  'street_name': '8 AVENUE',
  'cross_street_1': 'WEST   30 STREET',
  'cross_street_2': 'WEST   31 STREET',
  'intersection_street_1': 'WEST   30 STREET',
  'intersection_street_2': 'WEST   31 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '8 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:38:06.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1007807501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985607',
  'y_coordinate_state_plane': '212494',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.749923393658534',
  'longitude': '-73.99510237707422',
  'location': {'latitude': '40.749923393658534',
   'longitude': '-73.99510237707422',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310697',
  'created_date': '2025-03-10T06:49:03.000',
  'closed_date': '2025-03-10T15:53:28.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dumpster Complaint',
  'descriptor': 'Blocking Sidewalk or Street',
  'location_type': 'Sidewalk',
  'incident_zip': '10012',
  'incident_address': '303 LAFAYETTE STREET',
  'street_name': 'LAFAYETTE STREET',
  'cross_street_1': 'JERSEY STREET',
  'cross_street_2': 'EAST HOUSTON STREET',
  'intersection_street_1': 'JERSEY STREET',
  'intersection_street_2': 'EAST HOUSTON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'LAFAYETTE STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated and found this complaint to be out of jurisdiction. The Department of Sanitation reviewed this and found it not to be meeting the criteria for a complaint or service request.',
  'resolution_action_updated_date': '2025-03-10T15:53:28.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005107502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985468',
  'y_coordinate_state_plane': '203315',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72472932997947',
  'longitude': '-73.99560571145413',
  'location': {'latitude': '40.72472932997947',
   'longitude': '-73.99560571145413',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311263',
  'created_date': '2025-03-10T06:50:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Sewer',
  'descriptor': 'Manhole Overflow (Use Comments) (SA1)',
  'incident_zip': '11367',
  'incident_address': '150-08 77 ROAD',
  'street_name': '77 ROAD',
  'cross_street_1': '150 ST',
  'cross_street_2': '153 ST',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'status': 'Open',
  'community_board': '08 QUEENS',
  'bbl': '4067090042',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035782',
  'y_coordinate_state_plane': '202391',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72204316404906',
  'longitude': '-73.81409070587448',
  'location': {'latitude': '40.72204316404906',
   'longitude': '-73.81409070587448',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311852',
  'created_date': '2025-03-10T06:50:00.000',
  'closed_date': '2025-03-13T08:00:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise:  lawn care equipment (NCL)',
  'incident_zip': '10462',
  'incident_address': '1691 UNIONPORT ROAD',
  'street_name': 'UNIONPORT ROAD',
  'cross_street_1': 'MEAD ST',
  'cross_street_2': 'VICTOR ST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': "The Department of Environmental Protection (DEP) didn't observe a violation of the NYC Air or Noise Code at the time of inspection and couldn't issue a summons.  If the problem still exists, please go to nyc.gov/311 or call 311 to file a new Service Request. If you're outside of New York City, please call (212) NEW-YORK (212-639-9675).",
  'resolution_action_updated_date': '2025-03-13T08:00:00.000',
  'community_board': '11 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021366',
  'y_coordinate_state_plane': '246479',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.843125080365446',
  'longitude': '-73.86585488346692',
  'location': {'latitude': '40.843125080365446',
   'longitude': '-73.86585488346692',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312620',
  'created_date': '2025-03-10T06:50:20.000',
  'closed_date': '2025-03-10T13:06:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10465',
  'incident_address': '277 HOSMER AVENUE',
  'street_name': 'HOSMER AVENUE',
  'cross_street_1': 'HARDING AVENUE',
  'cross_street_2': 'MILES AVENUE',
  'intersection_street_1': 'HARDING AVENUE',
  'intersection_street_2': 'MILES AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'HOSMER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T13:06:40.000',
  'community_board': '10 BRONX',
  'bbl': '2056010054',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1032034',
  'y_coordinate_state_plane': '236208',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.814882894440636',
  'longitude': '-73.82737170727285',
  'location': {'latitude': '40.814882894440636',
   'longitude': '-73.82737170727285',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312814',
  'created_date': '2025-03-10T06:50:21.000',
  'closed_date': '2025-03-10T08:45:29.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10463',
  'incident_address': '110 TERRACE VIEW AVENUE',
  'street_name': 'TERRACE VIEW AVENUE',
  'cross_street_1': 'TEUNISSEN PLACE',
  'cross_street_2': 'ADRIAN AVENUE',
  'intersection_street_1': 'TEUNISSEN PLACE',
  'intersection_street_2': 'ADRIAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'TERRACE VIEW AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:45:32.000',
  'community_board': '08 BRONX',
  'bbl': '1022150230',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008357',
  'y_coordinate_state_plane': '258602',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.876444151331',
  'longitude': '-73.91282853424647',
  'location': {'latitude': '40.876444151331',
   'longitude': '-73.91282853424647',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315372',
  'created_date': '2025-03-10T06:51:17.000',
  'closed_date': '2025-03-11T09:35:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11368',
  'incident_address': '47-60 98 PLACE',
  'street_name': '98 PLACE',
  'cross_street_1': 'CORONA AVENUE',
  'cross_street_2': 'ALSTYNE AVENUE',
  'intersection_street_1': 'CORONA AVENUE',
  'intersection_street_2': 'ALSTYNE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '98 PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-11T09:35:51.000',
  'community_board': '04 QUEENS',
  'bbl': '4018810033',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021947',
  'y_coordinate_state_plane': '210369',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74401056066077',
  'longitude': '-73.8639577155695',
  'location': {'latitude': '40.74401056066077',
   'longitude': '-73.8639577155695',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306175',
  'created_date': '2025-03-10T06:51:22.000',
  'closed_date': '2025-03-10T08:14:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11370',
  'incident_address': '21-16 78 STREET',
  'street_name': '78 STREET',
  'cross_street_1': '21 AVENUE',
  'cross_street_2': 'DITMARS BOULEVARD',
  'intersection_street_1': '21 AVENUE',
  'intersection_street_2': 'DITMARS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': '78 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:14:57.000',
  'community_board': '01 QUEENS',
  'bbl': '4009737501',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014216',
  'y_coordinate_state_plane': '219869',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77011519263098',
  'longitude': '-73.8918152518903',
  'location': {'latitude': '40.77011519263098',
   'longitude': '-73.8918152518903',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312237',
  'created_date': '2025-03-10T06:51:26.000',
  'closed_date': '2025-03-10T08:39:52.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Non-Emergency Police Matter',
  'descriptor': 'Other (complaint details)',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10036',
  'incident_address': '230 WEST   41 STREET',
  'street_name': 'WEST   41 STREET',
  'cross_street_1': '7 AVENUE',
  'cross_street_2': '8 AVENUE',
  'intersection_street_1': '7 AVENUE',
  'intersection_street_2': '8 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   41 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:39:56.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1010120015',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987441',
  'y_coordinate_state_plane': '214636',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75580216907677',
  'longitude': '-73.98848217091673',
  'location': {'latitude': '40.75580216907677',
   'longitude': '-73.98848217091673',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311117',
  'created_date': '2025-03-10T06:51:33.000',
  'closed_date': '2025-03-11T08:58:41.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '964 MORRIS AVENUE',
  'street_name': 'MORRIS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2024230020',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007182',
  'y_coordinate_state_plane': '240930',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82794291286869',
  'longitude': '-73.91713780675632',
  'location': {'latitude': '40.82794291286869',
   'longitude': '-73.91713780675632',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314837',
  'created_date': '2025-03-10T06:51:33.000',
  'closed_date': '2025-03-11T08:58:16.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '964 MORRIS AVENUE',
  'street_name': 'MORRIS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2024230020',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007182',
  'y_coordinate_state_plane': '240930',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82794291286869',
  'longitude': '-73.91713780675632',
  'location': {'latitude': '40.82794291286869',
   'longitude': '-73.91713780675632',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308413',
  'created_date': '2025-03-10T06:51:41.000',
  'closed_date': '2025-03-11T09:15:47.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11211',
  'incident_address': '195 SOUTH    4 STREET',
  'street_name': 'SOUTH    4 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3024320027',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995242',
  'y_coordinate_state_plane': '198300',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.710957614975314',
  'longitude': '-73.96035136141708',
  'location': {'latitude': '40.710957614975314',
   'longitude': '-73.96035136141708',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312617',
  'created_date': '2025-03-10T06:51:41.000',
  'closed_date': '2025-03-10T09:04:51.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Vehicle',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10459',
  'incident_address': '1080 HALL PLACE',
  'street_name': 'HALL PLACE',
  'cross_street_1': 'EAST  165 STREET',
  'cross_street_2': 'EAST  167 STREET',
  'intersection_street_1': 'EAST  165 STREET',
  'intersection_street_2': 'EAST  167 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'HALL PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:04:56.000',
  'community_board': '02 BRONX',
  'bbl': '2027000037',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012623',
  'y_coordinate_state_plane': '240043',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.825492549680035',
  'longitude': '-73.89748113475073',
  'location': {'latitude': '40.825492549680035',
   'longitude': '-73.89748113475073',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316193',
  'created_date': '2025-03-10T06:51:58.000',
  'closed_date': '2025-03-10T09:32:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Non-Emergency Police Matter',
  'descriptor': 'Other (complaint details)',
  'location_type': 'Residential Building/House',
  'incident_zip': '10468',
  'incident_address': '2465 DEVOE TERRACE',
  'street_name': 'DEVOE TERRACE',
  'cross_street_1': 'BEND',
  'cross_street_2': 'WEST  190 STREET',
  'intersection_street_1': 'BEND',
  'intersection_street_2': 'WEST  190 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'DEVOE TERRACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:32:58.000',
  'community_board': '07 BRONX',
  'bbl': '2032190136',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010362',
  'y_coordinate_state_plane': '254281',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86457863067741',
  'longitude': '-73.90559525268425',
  'location': {'latitude': '40.86457863067741',
   'longitude': '-73.90559525268425',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310313',
  'created_date': '2025-03-10T06:52:35.000',
  'closed_date': '2025-03-11T00:00:00.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Building/Use',
  'descriptor': 'Illegal. Commercial Use In Resident Zone',
  'incident_zip': '10456',
  'incident_address': '1385 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Buildings determined that the conditions described in this complaint were addressed under another service request number. Click on "Learn More" in the "Did You Know" section below for more information.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '03 BRONX',
  'bbl': '2029010001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010561',
  'y_coordinate_state_plane': '243449',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8348474210791',
  'longitude': '-73.90491830085918',
  'location': {'latitude': '40.8348474210791',
   'longitude': '-73.90491830085918',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307288',
  'created_date': '2025-03-10T06:53:00.000',
  'closed_date': '2025-03-13T06:30:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '10075',
  'incident_address': '255 EAST   77 STREET',
  'street_name': 'EAST   77 STREET',
  'cross_street_1': '3 AVE',
  'cross_street_2': '2 AVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': "The Department of Environmental Protection (DEP) didn't observe a violation of the NYC Air or Noise Code at the time of inspection and couldn't issue a summons.  If the problem still exists, please go to nyc.gov/311 or call 311 to file a new Service Request. If you're outside of New York City, please call (212) NEW-YORK (212-639-9675).",
  'resolution_action_updated_date': '2025-03-13T06:30:00.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1014320021',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996146',
  'y_coordinate_state_plane': '220710',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77246630339293',
  'longitude': '-73.95705096028802',
  'location': {'latitude': '40.77246630339293',
   'longitude': '-73.95705096028802',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64305987',
  'created_date': '2025-03-10T06:53:00.000',
  'closed_date': '2025-03-10T07:11:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Dirty Water (WE)',
  'incident_zip': '11367',
  'incident_address': '147-45 78 AVENUE',
  'street_name': '78 AVENUE',
  'cross_street_1': '147 ST',
  'cross_street_2': '150 ST',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection investigated this complaint and found it to be a temporary condition.',
  'resolution_action_updated_date': '2025-03-10T07:11:00.000',
  'community_board': '08 QUEENS',
  'bbl': '4066880046',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035255',
  'y_coordinate_state_plane': '201910',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72072599228084',
  'longitude': '-73.81599557559228',
  'location': {'latitude': '40.72072599228084',
   'longitude': '-73.81599557559228',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309918',
  'created_date': '2025-03-10T06:53:00.000',
  'closed_date': '2025-03-10T08:45:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Sewer',
  'descriptor': 'Sewer Backup (Use Comments) (SA)',
  'incident_zip': '11367',
  'incident_address': '147-06 78 AVENUE',
  'street_name': '78 AVENUE',
  'cross_street_1': '147 ST',
  'cross_street_2': '150 ST',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection investigated this complaint and found there was no sewer back up in the city system at the time of the inspection.',
  'resolution_action_updated_date': '2025-03-10T08:45:00.000',
  'community_board': '08 QUEENS',
  'bbl': '4066890003',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035250',
  'y_coordinate_state_plane': '201902',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72070406308484',
  'longitude': '-73.81601367403803',
  'location': {'latitude': '40.72070406308484',
   'longitude': '-73.81601367403803',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310566',
  'created_date': '2025-03-10T06:53:24.000',
  'closed_date': '2025-03-10T09:28:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10305',
  'incident_address': '57 NEW LANE',
  'street_name': 'NEW LANE',
  'cross_street_1': 'COURTNEY LOOP',
  'cross_street_2': 'BEND',
  'intersection_street_1': 'COURTNEY LOOP',
  'intersection_street_2': 'BEND',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'NEW LANE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:28:58.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5028320071',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '966843',
  'y_coordinate_state_plane': '162513',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.61271994510131',
  'longitude': '-74.0626954363292',
  'location': {'latitude': '40.61271994510131',
   'longitude': '-74.0626954363292',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311291',
  'created_date': '2025-03-10T06:53:33.000',
  'closed_date': '2025-03-10T20:06:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11417',
  'incident_address': '137-20 CROSS BAY BOULEVARD',
  'street_name': 'CROSS BAY BOULEVARD',
  'cross_street_1': 'VAN WICKLEN ROAD',
  'cross_street_2': '149 AVENUE',
  'intersection_street_1': 'VAN WICKLEN ROAD',
  'intersection_street_2': '149 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'landmark': 'CROSS BAY BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T20:06:14.000',
  'community_board': '10 QUEENS',
  'bbl': '4114090010',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027800',
  'y_coordinate_state_plane': '183913',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'SUV',
  'latitude': '40.671368329874525',
  'longitude': '-73.84300635448906',
  'location': {'latitude': '40.671368329874525',
   'longitude': '-73.84300635448906',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306017',
  'created_date': '2025-03-10T06:53:44.000',
  'closed_date': '2025-03-10T10:37:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper Use',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11377',
  'incident_address': '50-18 72 STREET',
  'street_name': '72 STREET',
  'cross_street_1': 'DEAD END',
  'cross_street_2': '51 AVENUE',
  'intersection_street_1': 'DEAD END',
  'intersection_street_2': '51 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '72 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T10:37:55.000',
  'community_board': '02 QUEENS',
  'bbl': '4024410035',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014102',
  'y_coordinate_state_plane': '207716',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73675870199686',
  'longitude': '-73.89228077392978',
  'location': {'latitude': '40.73675870199686',
   'longitude': '-73.89228077392978',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313705',
  'created_date': '2025-03-10T06:54:37.000',
  'closed_date': '2025-03-10T15:00:53.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10002',
  'incident_address': '40 RIVINGTON STREET',
  'street_name': 'RIVINGTON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004210080',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986720',
  'y_coordinate_state_plane': '201924',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.720911110528775',
  'longitude': '-73.9910892685573',
  'location': {'latitude': '40.720911110528775',
   'longitude': '-73.9910892685573',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311121',
  'created_date': '2025-03-10T06:54:40.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10011',
  'incident_address': '29 WEST   12 STREET',
  'street_name': 'WEST   12 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005760055',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985459',
  'y_coordinate_state_plane': '207103',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73512646470513',
  'longitude': '-73.99563750095979',
  'location': {'latitude': '40.73512646470513',
   'longitude': '-73.99563750095979',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313598',
  'created_date': '2025-03-10T06:54:51.000',
  'closed_date': '2025-03-12T08:14:03.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11249',
  'incident_address': '27 NORTH    6 STREET',
  'street_name': 'NORTH    6 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3023247501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994601',
  'y_coordinate_state_plane': '201595',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.72000237403064',
  'longitude': '-73.96265841045447',
  'location': {'latitude': '40.72000237403064',
   'longitude': '-73.96265841045447',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310766',
  'created_date': '2025-03-10T06:54:53.000',
  'closed_date': '2025-03-10T15:21:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10462',
  'incident_address': '1640 METROPOLITAN AVENUE',
  'street_name': 'METROPOLITAN AVENUE',
  'cross_street_1': 'RED OAK DRIVE',
  'cross_street_2': 'LINDEN DRIVE',
  'intersection_street_1': 'RED OAK DRIVE',
  'intersection_street_2': 'LINDEN DRIVE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'METROPOLITAN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T15:21:49.000',
  'community_board': '09 BRONX',
  'bbl': '2039437501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023919',
  'y_coordinate_state_plane': '245429',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84023204092024',
  'longitude': '-73.8566340254861',
  'location': {'latitude': '40.84023204092024',
   'longitude': '-73.8566340254861',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306307',
  'created_date': '2025-03-10T06:55:24.000',
  'closed_date': '2025-03-10T08:50:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11234',
  'incident_address': '1219 EAST   58 STREET',
  'street_name': 'EAST   58 STREET',
  'cross_street_1': 'AVENUE K',
  'cross_street_2': 'AVENUE L',
  'intersection_street_1': 'AVENUE K',
  'intersection_street_2': 'AVENUE L',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   58 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:50:43.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3078380011',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006519',
  'y_coordinate_state_plane': '166975',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62495631719166',
  'longitude': '-73.91977820917641',
  'location': {'latitude': '40.62495631719166',
   'longitude': '-73.91977820917641',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314125',
  'created_date': '2025-03-10T06:55:36.000',
  'closed_date': '2025-03-10T06:55:36.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Elevator',
  'descriptor': 'Elevator - Single Device On Property/No Alternate Service',
  'incident_zip': '10474',
  'incident_address': '710 HUNTS POINT AVENUE',
  'street_name': 'HUNTS POINT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'Your Service Request has been submitted to the Department of Buildings.  Please check back later for status.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '02 BRONX',
  'bbl': '2027630248',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015724',
  'y_coordinate_state_plane': '236225',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.815002719791444',
  'longitude': '-73.88629435215104',
  'location': {'latitude': '40.815002719791444',
   'longitude': '-73.88629435215104',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310078',
  'created_date': '2025-03-10T06:56:33.000',
  'closed_date': '2025-03-10T08:31:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10023',
  'incident_address': '232 WEST   60 STREET',
  'street_name': 'WEST   60 STREET',
  'cross_street_1': 'AMSTERDAM AVENUE',
  'cross_street_2': 'WEST END AVENUE',
  'intersection_street_1': 'AMSTERDAM AVENUE',
  'intersection_street_2': 'WEST END AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   60 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:31:35.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1011510015',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987356',
  'y_coordinate_state_plane': '220438',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77172719329084',
  'longitude': '-73.98878629524005',
  'location': {'latitude': '40.77172719329084',
   'longitude': '-73.98878629524005',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309970',
  'created_date': '2025-03-10T06:57:07.000',
  'closed_date': '2025-03-11T08:40:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11368',
  'incident_address': '39 AVENUE',
  'street_name': '39 AVENUE',
  'cross_street_1': '108 STREET',
  'cross_street_2': '111 STREET',
  'address_type': 'BLOCKFACE',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected this complaint and repaired the problem.',
  'resolution_action_updated_date': '2025-03-11T08:40:00.000',
  'community_board': '03 QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '64307009',
  'created_date': '2025-03-10T06:57:51.000',
  'closed_date': '2025-03-11T08:28:56.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11221',
  'incident_address': '985 JEFFERSON AVENUE',
  'street_name': 'JEFFERSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3014860149',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006627',
  'y_coordinate_state_plane': '189514',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68682063594538',
  'longitude': '-73.9193143624442',
  'location': {'latitude': '40.68682063594538',
   'longitude': '-73.9193143624442',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311744',
  'created_date': '2025-03-10T06:58:07.000',
  'closed_date': '2025-03-10T09:05:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10472',
  'incident_address': '1405 FTELEY AVENUE',
  'street_name': 'FTELEY AVENUE',
  'cross_street_1': 'EAST  174 STREET',
  'cross_street_2': 'CROSS BRONX EXPRESSWAY',
  'intersection_street_1': 'EAST  174 STREET',
  'intersection_street_2': 'CROSS BRONX EXPRESSWAY',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'FTELEY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:05:57.000',
  'community_board': '09 BRONX',
  'bbl': '2038900074',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1019444',
  'y_coordinate_state_plane': '243391',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.834657296149395',
  'longitude': '-73.87281759433141',
  'location': {'latitude': '40.834657296149395',
   'longitude': '-73.87281759433141',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307513',
  'created_date': '2025-03-10T06:58:41.000',
  'closed_date': '2025-03-10T08:01:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10469',
  'incident_address': '3232 WILSON AVENUE',
  'street_name': 'WILSON AVENUE',
  'cross_street_1': 'EAST GUN HILL ROAD',
  'cross_street_2': 'GIVAN AVENUE',
  'intersection_street_1': 'EAST GUN HILL ROAD',
  'intersection_street_2': 'GIVAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WILSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:01:50.000',
  'community_board': '12 BRONX',
  'bbl': '2047390050',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1025995',
  'y_coordinate_state_plane': '257195',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.872516575670446',
  'longitude': '-73.84905798754468',
  'location': {'latitude': '40.872516575670446',
   'longitude': '-73.84905798754468',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316009',
  'created_date': '2025-03-10T06:58:50.000',
  'closed_date': '2025-03-12T13:03:43.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '11208',
  'incident_address': '400 SHEPHERD AVENUE',
  'street_name': 'SHEPHERD AVENUE',
  'cross_street_1': 'GLENMORE AVENUE',
  'cross_street_2': 'PITKIN AVENUE',
  'intersection_street_1': 'GLENMORE AVENUE',
  'intersection_street_2': 'PITKIN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SHEPHERD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-12T13:03:46.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3040040023',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1017267',
  'y_coordinate_state_plane': '185130',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67475426708084',
  'longitude': '-73.8809708111988',
  'location': {'latitude': '40.67475426708084',
   'longitude': '-73.8809708111988',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312853',
  'created_date': '2025-03-10T06:58:54.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Bike Rack',
  'descriptor': 'Abandoned Bike',
  'location_type': 'Street',
  'incident_zip': '10036',
  'incident_address': '230 WEST   41 STREET',
  'street_name': 'WEST   41 STREET',
  'cross_street_1': '7 AVENUE',
  'cross_street_2': '8 AVENUE',
  'intersection_street_1': '7 AVENUE',
  'intersection_street_2': '8 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   41 STREET',
  'status': 'In Progress',
  'community_board': '05 MANHATTAN',
  'bbl': '1010120015',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987441',
  'y_coordinate_state_plane': '214636',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75580216907677',
  'longitude': '-73.98848217091673',
  'location': {'latitude': '40.75580216907677',
   'longitude': '-73.98848217091673',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64325577',
  'created_date': '2025-03-10T06:59:00.000',
  'closed_date': '2025-03-10T18:00:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Veh Signal Head',
  'incident_zip': '11366',
  'intersection_street_1': 'PARSONS BOULEVARD',
  'intersection_street_2': '78 ROAD',
  'address_type': 'INTERSECTION',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Assigned',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-10T18:00:00.000',
  'community_board': '08 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037029',
  'y_coordinate_state_plane': '202250',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72164880204784',
  'longitude': '-73.80959308906253',
  'location': {'latitude': '40.72164880204784',
   'longitude': '-73.80959308906253',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64317849',
  'created_date': '2025-03-10T07:00:00.000',
  'closed_date': '2025-03-10T08:35:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Base Door',
  'incident_zip': '11101',
  'intersection_street_1': '47 AVENUE',
  'intersection_street_2': '36 STREET',
  'address_type': 'INTERSECTION',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Assigned',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-10T08:35:00.000',
  'community_board': '02 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1003842',
  'y_coordinate_state_plane': '209738',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74233726718891',
  'longitude': '-73.92929748483328',
  'location': {'latitude': '40.74233726718891',
   'longitude': '-73.92929748483328',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64321881',
  'created_date': '2025-03-10T07:00:00.000',
  'closed_date': '2025-03-11T08:20:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '10314',
  'intersection_street_1': 'TRAVIS AVENUE',
  'intersection_street_2': 'VICTORY BOULEVARD',
  'address_type': 'INTERSECTION',
  'city': 'STATEN ISLAND',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected this complaint and repaired the problem.',
  'resolution_action_updated_date': '2025-03-11T08:20:00.000',
  'community_board': '02 STATEN ISLAND',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '934758',
  'y_coordinate_state_plane': '157860',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.59982731534111',
  'longitude': '-74.17822285597472',
  'location': {'latitude': '40.59982731534111',
   'longitude': '-74.17822285597472',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64324244',
  'created_date': '2025-03-10T07:00:00.000',
  'closed_date': '2025-03-10T08:10:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Controller',
  'intersection_street_1': '45 ST E',
  'intersection_street_2': 'EOF VANDERBILT AVE',
  'address_type': 'INTERSECTION',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-10T08:10:00.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN'},
 {'unique_key': '64325718',
  'created_date': '2025-03-10T07:00:00.000',
  'closed_date': '2025-03-10T19:30:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Veh Signal Head',
  'incident_zip': '11368',
  'intersection_street_1': '34 AVENUE',
  'intersection_street_2': '111 STREET',
  'address_type': 'INTERSECTION',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-10T19:30:00.000',
  'community_board': '03 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1023610',
  'y_coordinate_state_plane': '214989',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75668403235987',
  'longitude': '-73.8579291908496',
  'location': {'latitude': '40.75668403235987',
   'longitude': '-73.8579291908496',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308148',
  'created_date': '2025-03-10T07:00:05.000',
  'closed_date': '2025-03-10T08:21:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11222',
  'incident_address': '5 BLUE SLIP',
  'street_name': 'BLUE SLIP',
  'cross_street_1': 'COMMERCIAL STREET',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'COMMERCIAL STREET',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BLUE SLIP',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2025-03-10T08:21:47.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3024727502',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995604',
  'y_coordinate_state_plane': '207481',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.736156776263435',
  'longitude': '-73.95903012258638',
  'location': {'latitude': '40.736156776263435',
   'longitude': '-73.95903012258638',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315646',
  'created_date': '2025-03-10T07:00:17.000',
  'closed_date': '2025-03-11T03:08:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11207',
  'incident_address': '417 HEGEMAN AVENUE',
  'street_name': 'HEGEMAN AVENUE',
  'cross_street_1': 'WILLIAMS AVENUE',
  'cross_street_2': 'LOUISIANA AVENUE',
  'intersection_street_1': 'WILLIAMS AVENUE',
  'intersection_street_2': 'LOUISIANA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HEGEMAN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-11T03:08:55.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3042930001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1013146',
  'y_coordinate_state_plane': '179063',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.658116123502985',
  'longitude': '-73.89585336789357',
  'location': {'latitude': '40.658116123502985',
   'longitude': '-73.89585336789357',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312501',
  'created_date': '2025-03-10T07:00:25.000',
  'closed_date': '2025-03-10T15:54:49.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Plate Condition - Noisy',
  'location_type': 'Street',
  'incident_zip': '10011',
  'incident_address': '154 9 AVENUE',
  'street_name': '9 AVENUE',
  'cross_street_1': 'WEST   19 STREET',
  'cross_street_2': 'WEST   20 STREET',
  'intersection_street_1': 'WEST   19 STREET',
  'intersection_street_2': 'WEST   20 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '9 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected the condition you reported and found that the condition meets its standards and/or there is a valid permit to conduct work.',
  'resolution_action_updated_date': '2025-03-10T15:54:53.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1007430004',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983442',
  'y_coordinate_state_plane': '210443',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.744293981051925',
  'longitude': '-74.00291595058681',
  'location': {'latitude': '40.744293981051925',
   'longitude': '-74.00291595058681',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315303',
  'created_date': '2025-03-10T07:00:35.000',
  'closed_date': '2025-03-10T07:30:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10001',
  'incident_address': '232 WEST   29 STREET',
  'street_name': 'WEST   29 STREET',
  'cross_street_1': '7 AVENUE',
  'cross_street_2': '8 AVENUE',
  'intersection_street_1': '7 AVENUE',
  'intersection_street_2': '8 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   29 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:30:47.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1007780057',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985916',
  'y_coordinate_state_plane': '211903',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.748301194758945',
  'longitude': '-73.99398729468619',
  'location': {'latitude': '40.748301194758945',
   'longitude': '-73.99398729468619',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306225',
  'created_date': '2025-03-10T07:00:56.000',
  'closed_date': '2025-03-10T08:35:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11204',
  'incident_address': '1849 66 STREET',
  'street_name': '66 STREET',
  'cross_street_1': '18 AVENUE',
  'cross_street_2': '19 AVENUE',
  'intersection_street_1': '18 AVENUE',
  'intersection_street_2': '19 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '66 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:35:08.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3055540052',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987096',
  'y_coordinate_state_plane': '164395',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61790228688787',
  'longitude': '-73.98974866146237',
  'location': {'latitude': '40.61790228688787',
   'longitude': '-73.98974866146237',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308200',
  'created_date': '2025-03-10T07:01:00.000',
  'closed_date': '2025-03-10T07:25:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11210',
  'incident_address': '1996 NOSTRAND AVENUE',
  'street_name': 'NOSTRAND AVENUE',
  'cross_street_1': 'FOSTER AVENUE',
  'cross_street_2': 'FARRAGUT ROAD',
  'intersection_street_1': 'FOSTER AVENUE',
  'intersection_street_2': 'FARRAGUT ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NOSTRAND AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T07:25:07.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3052310056',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998653',
  'y_coordinate_state_plane': '171363',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63701672817101',
  'longitude': '-73.94810529515341',
  'location': {'latitude': '40.63701672817101',
   'longitude': '-73.94810529515341',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64326806',
  'created_date': '2025-03-10T07:01:00.000',
  'closed_date': '2025-03-10T13:55:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Dead End Signal',
  'incident_zip': '11373',
  'intersection_street_1': '53 AVENUE',
  'intersection_street_2': 'HASPEL STREET',
  'address_type': 'INTERSECTION',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportation\'s website. Please click the "Learn More" link below.',
  'resolution_action_updated_date': '2025-03-10T13:55:00.000',
  'community_board': '04 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1017267',
  'y_coordinate_state_plane': '206674',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73388742265786',
  'longitude': '-73.8808651804705',
  'location': {'latitude': '40.73388742265786',
   'longitude': '-73.8808651804705',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307554',
  'created_date': '2025-03-10T07:01:03.000',
  'closed_date': '2025-03-10T14:02:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Horn',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10457',
  'incident_address': '2102 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'EAST  180 STREET',
  'cross_street_2': 'EAST  181 STREET',
  'intersection_street_1': 'EAST  180 STREET',
  'intersection_street_2': 'EAST  181 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T14:02:36.000',
  'community_board': '06 BRONX',
  'bbl': '2030470001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013171',
  'y_coordinate_state_plane': '249567',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.85163136709376',
  'longitude': '-73.89546000464445',
  'location': {'latitude': '40.85163136709376',
   'longitude': '-73.89546000464445',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307015',
  'created_date': '2025-03-10T07:01:24.000',
  'closed_date': '2025-03-10T07:40:52.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10457',
  'incident_address': '306 EAST  180 STREET',
  'street_name': 'EAST  180 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "The Department of Housing Preservation and Development conducted or attempted to conduct an inspection.  More information about inspection results can be found through HPD's website at www.nyc.gov/hpd by using HPDONLINE (enter your address on the home page) and entering your SR number under the complaint status option.",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '05 BRONX',
  'bbl': '2031420030',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011983',
  'y_coordinate_state_plane': '249852',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85241741843912',
  'longitude': '-73.89975305493228',
  'location': {'latitude': '40.85241741843912',
   'longitude': '-73.89975305493228',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307663',
  'created_date': '2025-03-10T07:01:24.000',
  'closed_date': '2025-03-11T05:53:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11235',
  'incident_address': '2476 EAST   26 STREET',
  'street_name': 'EAST   26 STREET',
  'cross_street_1': 'AVENUE X',
  'cross_street_2': 'AVENUE Y',
  'intersection_street_1': 'AVENUE X',
  'intersection_street_2': 'AVENUE Y',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   26 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-11T05:53:12.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3074220637',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999763',
  'y_coordinate_state_plane': '154933',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.591917908449624',
  'longitude': '-73.94414366020241',
  'location': {'latitude': '40.591917908449624',
   'longitude': '-73.94414366020241',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64325585',
  'created_date': '2025-03-10T07:02:00.000',
  'closed_date': '2025-03-10T20:00:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Controller',
  'incident_zip': '11693',
  'incident_address': 'CHANNEL BRIDGE',
  'street_name': 'CHANNEL BRIDGE',
  'cross_street_1': 'CROSS BAY BLVD',
  'cross_street_2': 'CHANNEL BRIDGE',
  'address_type': 'PLACENAME',
  'city': 'FAR ROCKAWAY',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-10T20:00:00.000',
  'community_board': '84 QUEENS',
  'bbl': '4240009979',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1029982',
  'y_coordinate_state_plane': '173600',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.643050454891544',
  'longitude': '-73.83521040700454',
  'location': {'latitude': '40.643050454891544',
   'longitude': '-73.83521040700454',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312204',
  'created_date': '2025-03-10T07:02:16.000',
  'closed_date': '2025-03-10T08:20:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10035',
  'incident_address': '2049 5 AVENUE',
  'street_name': '5 AVENUE',
  'cross_street_1': 'EAST  126 STREET',
  'cross_street_2': 'EAST  127 STREET',
  'intersection_street_1': 'EAST  126 STREET',
  'intersection_street_2': 'EAST  127 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '5 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:20:25.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1017510071',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000435',
  'y_coordinate_state_plane': '233439',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80739716724289',
  'longitude': '-73.94153538663556',
  'location': {'latitude': '40.80739716724289',
   'longitude': '-73.94153538663556',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314610',
  'created_date': '2025-03-10T07:02:45.000',
  'closed_date': '2025-03-10T09:01:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11355',
  'incident_address': '43-11 149 STREET',
  'street_name': '149 STREET',
  'cross_street_1': 'CHERRY AVENUE',
  'cross_street_2': 'DELAWARE AVENUE',
  'intersection_street_1': 'CHERRY AVENUE',
  'intersection_street_2': 'DELAWARE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '149 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T09:01:51.000',
  'community_board': '07 QUEENS',
  'bbl': '4054080066',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035819',
  'y_coordinate_state_plane': '215400',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.757749341064134',
  'longitude': '-73.81385749406772',
  'location': {'latitude': '40.757749341064134',
   'longitude': '-73.81385749406772',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64317103',
  'created_date': '2025-03-10T07:03:00.000',
  'closed_date': '2025-03-13T15:10:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Support Bracket',
  'incident_zip': '11414',
  'intersection_street_1': 'CROSS BAY BOULEVARD',
  'intersection_street_2': '162 AVENUE',
  'address_type': 'INTERSECTION',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-13T15:10:00.000',
  'community_board': '10 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1029024',
  'y_coordinate_state_plane': '177644',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.65415523467195',
  'longitude': '-73.83863558995169',
  'location': {'latitude': '40.65415523467195',
   'longitude': '-73.83863558995169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308819',
  'created_date': '2025-03-10T07:03:10.000',
  'closed_date': '2025-03-10T09:10:51.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10453',
  'incident_address': '1770 JEROME AVENUE',
  'street_name': 'JEROME AVENUE',
  'cross_street_1': 'WEST  176 STREET',
  'cross_street_2': 'EAST  176 STREET',
  'intersection_street_1': 'WEST  176 STREET',
  'intersection_street_2': 'EAST  176 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'JEROME AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T09:10:58.000',
  'community_board': '05 BRONX',
  'bbl': '2028500009',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008619',
  'y_coordinate_state_plane': '248344',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84828833263402',
  'longitude': '-73.9119184351068',
  'location': {'latitude': '40.84828833263402',
   'longitude': '-73.9119184351068',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309414',
  'created_date': '2025-03-10T07:03:37.000',
  'closed_date': '2025-03-11T13:36:03.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Abandoned Bike',
  'descriptor': 'Chained to Public Property',
  'location_type': 'Street',
  'incident_zip': '10036',
  'incident_address': '230 WEST   41 STREET',
  'street_name': 'WEST   41 STREET',
  'cross_street_1': '7 AVENUE',
  'cross_street_2': '8 AVENUE',
  'intersection_street_1': '7 AVENUE',
  'intersection_street_2': '8 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   41 STREET',
  'status': 'Closed',
  'resolution_description': 'This is a NYC Department of Transporation Bike-Share location. Please report conditions at this location to NYC DOT via 3-1-1.',
  'resolution_action_updated_date': '2025-03-10T22:48:07.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1010120015',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987441',
  'y_coordinate_state_plane': '214636',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75580216907677',
  'longitude': '-73.98848217091673',
  'location': {'latitude': '40.75580216907677',
   'longitude': '-73.98848217091673',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313900',
  'created_date': '2025-03-10T07:04:23.000',
  'closed_date': '2025-03-11T01:10:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11368',
  'incident_address': '98-11 ALSTYNE AVENUE',
  'street_name': 'ALSTYNE AVENUE',
  'cross_street_1': '98 STREET',
  'cross_street_2': '98 PLACE',
  'intersection_street_1': '98 STREET',
  'intersection_street_2': '98 PLACE',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': 'ALSTYNE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-11T01:10:10.000',
  'community_board': '04 QUEENS',
  'bbl': '4018810036',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021887',
  'y_coordinate_state_plane': '210088',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.743239542348476',
  'longitude': '-73.86417581776057',
  'location': {'latitude': '40.743239542348476',
   'longitude': '-73.86417581776057',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307048',
  'created_date': '2025-03-10T07:04:27.000',
  'closed_date': '2025-03-11T15:11:13.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10463',
  'incident_address': '3024 KINGSBRIDGE AVENUE',
  'street_name': 'KINGSBRIDGE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '08 BRONX',
  'bbl': '2057030175',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009816',
  'y_coordinate_state_plane': '259451',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87877028674815',
  'longitude': '-73.90754952044485',
  'location': {'latitude': '40.87877028674815',
   'longitude': '-73.90754952044485',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310835',
  'created_date': '2025-03-10T07:04:48.000',
  'closed_date': '2025-03-10T09:15:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Panhandling',
  'descriptor': 'N/A',
  'location_type': 'Residential Building/House',
  'incident_zip': '11212',
  'incident_address': '931 THOMAS S BOYLAND STREET',
  'street_name': 'THOMAS S BOYLAND STREET',
  'cross_street_1': 'NEWPORT STREET',
  'cross_street_2': 'LOTT AVENUE',
  'intersection_street_1': 'NEWPORT STREET',
  'intersection_street_2': 'LOTT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'THOMAS S BOYLAND STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T09:15:57.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3036120008',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1009055',
  'y_coordinate_state_plane': '178927',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.657755238841254',
  'longitude': '-73.91059859240028',
  'location': {'latitude': '40.657755238841254',
   'longitude': '-73.91059859240028',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312476',
  'created_date': '2025-03-10T07:05:00.000',
  'closed_date': '2025-03-13T04:21:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Air Quality',
  'descriptor': 'Air: Odor/Fumes, Vehicle Idling (AD3)',
  'incident_zip': '10036',
  'incident_address': '302 WEST   45 STREET',
  'street_name': 'WEST   45 STREET',
  'cross_street_1': '8 AVE',
  'cross_street_2': '9 AVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection will keep the location under observation for idling commercial vehicles.Â\xa0Summonses will be issued when warranted.',
  'resolution_action_updated_date': '2025-03-13T04:21:00.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010350037',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987335',
  'y_coordinate_state_plane': '215929',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.759351161528045',
  'longitude': '-73.98886418177544',
  'location': {'latitude': '40.759351161528045',
   'longitude': '-73.98886418177544',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314717',
  'created_date': '2025-03-10T07:05:08.000',
  'closed_date': '2025-03-10T09:47:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11204',
  'incident_address': '1944 BAY RIDGE PARKWAY',
  'street_name': 'BAY RIDGE PARKWAY',
  'cross_street_1': '19 AVENUE',
  'cross_street_2': '20 AVENUE',
  'intersection_street_1': '19 AVENUE',
  'intersection_street_2': '20 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAY RIDGE PARKWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:47:44.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3062280024',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986210',
  'y_coordinate_state_plane': '162078',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.611542841070666',
  'longitude': '-73.9929407205098',
  'location': {'latitude': '40.611542841070666',
   'longitude': '-73.9929407205098',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306432',
  'created_date': '2025-03-10T07:05:17.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Unsanitary Animal Pvt Property',
  'descriptor': 'Dog',
  'location_type': '1-2 Family Mixed Use Building',
  'incident_zip': '11203',
  'incident_address': '560 WINTHROP STREET',
  'street_name': 'WINTHROP STREET',
  'cross_street_1': 'KINGSTON AVENUE',
  'cross_street_2': 'ALBANY AVENUE',
  'intersection_street_1': 'KINGSTON AVENUE',
  'intersection_street_2': 'ALBANY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WINTHROP STREET',
  'status': 'In Progress',
  'community_board': '09 BROOKLYN',
  'bbl': '3048290005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000476',
  'y_coordinate_state_plane': '178880',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65764611074324',
  'longitude': '-73.9415188581885',
  'location': {'latitude': '40.65764611074324',
   'longitude': '-73.9415188581885',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313083',
  'created_date': '2025-03-10T07:05:23.000',
  'closed_date': '2025-03-11T05:54:52.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11235',
  'incident_address': '2586 EAST   26 STREET',
  'street_name': 'EAST   26 STREET',
  'cross_street_1': 'AVENUE Y',
  'cross_street_2': 'AVENUE Z',
  'intersection_street_1': 'AVENUE Y',
  'intersection_street_2': 'AVENUE Z',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   26 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-11T05:54:56.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3074410015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999893',
  'y_coordinate_state_plane': '154037',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.58945833981662',
  'longitude': '-73.94367765470307',
  'location': {'latitude': '40.58945833981662',
   'longitude': '-73.94367765470307',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307493',
  'created_date': '2025-03-10T07:05:25.000',
  'closed_date': '2025-03-10T09:44:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11206',
  'incident_address': '100 NOLL STREET',
  'street_name': 'NOLL STREET',
  'cross_street_1': 'EVERGREEN AVENUE',
  'cross_street_2': 'CENTRAL AVENUE',
  'intersection_street_1': 'EVERGREEN AVENUE',
  'intersection_street_2': 'CENTRAL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NOLL STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:44:03.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031530011',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002991',
  'y_coordinate_state_plane': '194903',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70162063383596',
  'longitude': '-73.93240983308887',
  'location': {'latitude': '40.70162063383596',
   'longitude': '-73.93240983308887',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310731',
  'created_date': '2025-03-10T07:05:28.000',
  'closed_date': '2025-03-10T21:01:04.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10023',
  'incident_address': '121 CENTRAL PARK WEST',
  'street_name': 'CENTRAL PARK WEST',
  'cross_street_1': 'CENTRAL PARK EXIT WEST   72 ST',
  'cross_street_2': 'WEST   73 STREET',
  'intersection_street_1': 'CENTRAL PARK EXIT WEST   72 ST',
  'intersection_street_2': 'WEST   73 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'CENTRAL PARK WEST',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-10T21:01:08.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1011250025',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990947',
  'y_coordinate_state_plane': '222149',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.776421448611586',
  'longitude': '-73.97581987266054',
  'location': {'latitude': '40.776421448611586',
   'longitude': '-73.97581987266054',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315980',
  'created_date': '2025-03-10T07:05:32.000',
  'closed_date': '2025-03-10T07:07:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10456',
  'incident_address': '1385 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'EAST  169 STREET',
  'cross_street_2': 'EAST  170 STREET',
  'intersection_street_1': 'EAST  169 STREET',
  'intersection_street_2': 'EAST  170 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T07:07:54.000',
  'community_board': '03 BRONX',
  'bbl': '2029010001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010561',
  'y_coordinate_state_plane': '243449',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8348474210791',
  'longitude': '-73.90491830085918',
  'location': {'latitude': '40.8348474210791',
   'longitude': '-73.90491830085918',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310561',
  'created_date': '2025-03-10T07:05:50.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Bike Rack',
  'descriptor': 'Abandoned Bike',
  'location_type': 'Street',
  'incident_zip': '10036',
  'incident_address': '230 WEST   41 STREET',
  'street_name': 'WEST   41 STREET',
  'cross_street_1': '7 AVENUE',
  'cross_street_2': '8 AVENUE',
  'intersection_street_1': '7 AVENUE',
  'intersection_street_2': '8 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   41 STREET',
  'status': 'In Progress',
  'community_board': '05 MANHATTAN',
  'bbl': '1010120015',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987441',
  'y_coordinate_state_plane': '214636',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75580216907677',
  'longitude': '-73.98848217091673',
  'location': {'latitude': '40.75580216907677',
   'longitude': '-73.98848217091673',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315987',
  'created_date': '2025-03-10T07:06:07.000',
  'closed_date': '2025-03-10T08:20:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10035',
  'incident_address': '2049 5 AVENUE',
  'street_name': '5 AVENUE',
  'cross_street_1': 'EAST  126 STREET',
  'cross_street_2': 'EAST  127 STREET',
  'intersection_street_1': 'EAST  126 STREET',
  'intersection_street_2': 'EAST  127 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '5 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:20:41.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1017510071',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000435',
  'y_coordinate_state_plane': '233439',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80739716724289',
  'longitude': '-73.94153538663556',
  'location': {'latitude': '40.80739716724289',
   'longitude': '-73.94153538663556',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314220',
  'created_date': '2025-03-10T07:06:54.000',
  'closed_date': '2025-03-10T07:23:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11209',
  'incident_address': '8025 FOURTH AVENUE',
  'street_name': 'FOURTH AVENUE',
  'cross_street_1': '80 STREET',
  'cross_street_2': '81 STREET',
  'intersection_street_1': '80 STREET',
  'intersection_street_2': '81 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '4 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T07:23:52.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3059890001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '976854',
  'y_coordinate_state_plane': '167693',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62695197778201',
  'longitude': '-74.0266441255674',
  'location': {'latitude': '40.62695197778201',
   'longitude': '-74.0266441255674',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310066',
  'created_date': '2025-03-10T07:07:00.000',
  'closed_date': '2025-03-10T07:26:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10026',
  'incident_address': '51 MORNINGSIDE AVENUE',
  'street_name': 'MORNINGSIDE AVENUE',
  'cross_street_1': 'WEST  119 STREET',
  'cross_street_2': 'WEST  120 STREET',
  'intersection_street_1': 'WEST  119 STREET',
  'intersection_street_2': 'WEST  120 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'MORNINGSIDE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T07:26:32.000',
  'community_board': '10 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996224',
  'y_coordinate_state_plane': '233514',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80760973208787',
  'longitude': '-73.9567465250161',
  'location': {'latitude': '40.80760973208787',
   'longitude': '-73.9567465250161',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315560',
  'created_date': '2025-03-10T07:07:16.000',
  'closed_date': '2025-03-10T07:55:02.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11378',
  'incident_address': '70-09 52 AVENUE',
  'street_name': '52 AVENUE',
  'cross_street_1': '70 STREET',
  'cross_street_2': '71 STREET',
  'intersection_street_1': '70 STREET',
  'intersection_street_2': '71 STREET',
  'address_type': 'ADDRESS',
  'city': 'MASPETH',
  'landmark': '52 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:55:06.000',
  'community_board': '05 QUEENS',
  'bbl': '4024620036',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1013660',
  'y_coordinate_state_plane': '206570',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.733614697700254',
  'longitude': '-73.89388071360953',
  'location': {'latitude': '40.733614697700254',
   'longitude': '-73.89388071360953',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313614',
  'created_date': '2025-03-10T07:07:19.000',
  'closed_date': '2025-03-12T16:00:16.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10029',
  'incident_address': '338 EAST  100 STREET',
  'street_name': 'EAST  100 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1016710031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999832',
  'y_coordinate_state_plane': '225704',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.786167782072084',
  'longitude': '-73.94373153367717',
  'location': {'latitude': '40.786167782072084',
   'longitude': '-73.94373153367717',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306914',
  'created_date': '2025-03-10T07:07:28.000',
  'closed_date': '2025-03-10T07:09:33.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11206',
  'incident_address': '200 HEYWARD STREET',
  'street_name': 'HEYWARD STREET',
  'cross_street_1': 'MARCY AVENUE',
  'cross_street_2': 'HARRISON AVENUE',
  'intersection_street_1': 'MARCY AVENUE',
  'intersection_street_2': 'HARRISON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HEYWARD STREET',
  'status': 'Closed',
  'resolution_description': 'Due to technical issues or other circumstances, the Department of Homeless Services has determined that this request should now be administratively closed.',
  'resolution_action_updated_date': '2025-03-10T07:09:33.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3022330001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997257',
  'y_coordinate_state_plane': '195635',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.703640087894684',
  'longitude': '-73.95308831504482',
  'location': {'latitude': '40.703640087894684',
   'longitude': '-73.95308831504482',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315782',
  'created_date': '2025-03-10T07:07:38.000',
  'closed_date': '2025-03-10T07:07:38.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Elevator',
  'descriptor': 'Elevator - Single Device On Property/No Alternate Service',
  'incident_zip': '10001',
  'incident_address': '408 8 AVENUE',
  'street_name': '8 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'Your Service Request has been submitted to the Department of Buildings.  Please check back later for status.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1007807501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985607',
  'y_coordinate_state_plane': '212494',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.749923393658534',
  'longitude': '-73.99510237707422',
  'location': {'latitude': '40.749923393658534',
   'longitude': '-73.99510237707422',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312770',
  'created_date': '2025-03-10T07:07:53.000',
  'closed_date': '2025-03-10T08:16:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10312',
  'incident_address': '59 BERRY AVENUE WEST',
  'street_name': 'BERRY AVENUE WEST',
  'cross_street_1': 'GOLD AVENUE',
  'cross_street_2': 'OAK LANE',
  'intersection_street_1': 'GOLD AVENUE',
  'intersection_street_2': 'OAK LANE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'BERRY AVENUE WEST',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:16:02.000',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5056830001',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '934219',
  'y_coordinate_state_plane': '143355',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.56001101205416',
  'longitude': '-74.18005644783109',
  'location': {'latitude': '40.56001101205416',
   'longitude': '-74.18005644783109',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312198',
  'created_date': '2025-03-10T07:08:12.000',
  'closed_date': '2025-03-10T07:37:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11224',
  'incident_address': '2832 WEST   23 STREET',
  'street_name': 'WEST   23 STREET',
  'cross_street_1': 'NEPTUNE AVENUE',
  'cross_street_2': 'MERMAID AVENUE',
  'intersection_street_1': 'NEPTUNE AVENUE',
  'intersection_street_2': 'MERMAID AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST   23 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T07:37:43.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3070150015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986923',
  'y_coordinate_state_plane': '149719',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.577619686746154',
  'longitude': '-73.99037761720334',
  'location': {'latitude': '40.577619686746154',
   'longitude': '-73.99037761720334',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312799',
  'created_date': '2025-03-10T07:08:12.000',
  'closed_date': '2025-03-10T08:31:24.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11420',
  'incident_address': '130-17 ROCKAWAY BOULEVARD',
  'street_name': 'ROCKAWAY BOULEVARD',
  'cross_street_1': '130 STREET',
  'cross_street_2': '131 STREET',
  'intersection_street_1': '130 STREET',
  'intersection_street_2': '131 STREET',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': 'ROCKAWAY BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:31:27.000',
  'community_board': '10 QUEENS',
  'bbl': '4116940027',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037440',
  'y_coordinate_state_plane': '185247',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.674977181614054',
  'longitude': '-73.80824463695141',
  'location': {'latitude': '40.674977181614054',
   'longitude': '-73.80824463695141',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315201',
  'created_date': '2025-03-10T07:08:17.000',
  'closed_date': '2025-03-11T03:31:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '86 AVENUE U',
  'street_name': 'AVENUE U',
  'cross_street_1': 'WEST   10 STREET',
  'cross_street_2': 'WEST    9 STREET',
  'intersection_street_1': 'WEST   10 STREET',
  'intersection_street_2': 'WEST    9 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AVENUE U',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-11T03:31:45.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3071170001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989487',
  'y_coordinate_state_plane': '156451',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59609654162494',
  'longitude': '-73.98114240057355',
  'location': {'latitude': '40.59609654162494',
   'longitude': '-73.98114240057355',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314642',
  'created_date': '2025-03-10T07:08:21.000',
  'closed_date': '2025-03-10T14:21:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10460',
  'incident_address': '1828 MARMION AVENUE',
  'street_name': 'MARMION AVENUE',
  'cross_street_1': 'EAST  175 STREET',
  'cross_street_2': 'EAST  176 STREET',
  'intersection_street_1': 'EAST  175 STREET',
  'intersection_street_2': 'EAST  176 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MARMION AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T14:21:41.000',
  'community_board': '06 BRONX',
  'bbl': '2029580009',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1014941',
  'y_coordinate_state_plane': '245671',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.840932026333604',
  'longitude': '-73.88907987010224',
  'location': {'latitude': '40.840932026333604',
   'longitude': '-73.88907987010224',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316328',
  'created_date': '2025-03-10T07:08:23.000',
  'closed_date': '2025-03-10T21:03:06.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10454',
  'incident_address': '331 EAST  132 STREET',
  'street_name': 'EAST  132 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD responded to a complaint of no heat or hot water in the building. An occupant of the building confirmed heat and hot water had been restored when the Inspector attempted to conduct the inspection or contacted you at the phone number associated with the complaint. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '01 BRONX',
  'bbl': '2022957501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004290',
  'y_coordinate_state_plane': '232941',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.80602239216581',
  'longitude': '-73.92761157251907',
  'location': {'latitude': '40.80602239216581',
   'longitude': '-73.92761157251907',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308818',
  'created_date': '2025-03-10T07:08:29.000',
  'closed_date': '2025-03-10T07:46:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11207',
  'incident_address': '2156 LINDEN BOULEVARD',
  'street_name': 'LINDEN BOULEVARD',
  'cross_street_1': 'BARBEY STREET',
  'cross_street_2': 'JEROME STREET',
  'intersection_street_1': 'BARBEY STREET',
  'intersection_street_2': 'JEROME STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LINDEN BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:46:11.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3043550001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1016679',
  'y_coordinate_state_plane': '180410',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66180110434489',
  'longitude': '-73.88311330593771',
  'location': {'latitude': '40.66180110434489',
   'longitude': '-73.88311330593771',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310484',
  'created_date': '2025-03-10T07:08:40.000',
  'closed_date': '2025-03-10T14:29:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10457',
  'incident_address': '4077 PARK AVENUE',
  'street_name': 'PARK AVENUE',
  'cross_street_1': 'ITTNER PLACE',
  'cross_street_2': 'EAST  175 STREET',
  'intersection_street_1': 'ITTNER PLACE',
  'intersection_street_2': 'EAST  175 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'PARK AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and no Encampment was found.',
  'resolution_action_updated_date': '2025-03-10T14:29:03.000',
  'community_board': '06 BRONX',
  'bbl': '2028990058',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011629',
  'y_coordinate_state_plane': '247020',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84464552417918',
  'longitude': '-73.90104422790257',
  'location': {'latitude': '40.84464552417918',
   'longitude': '-73.90104422790257',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307704',
  'created_date': '2025-03-10T07:09:45.000',
  'closed_date': '2025-03-10T08:45:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11238',
  'incident_address': '493 LINCOLN PLACE',
  'street_name': 'LINCOLN PLACE',
  'cross_street_1': 'CLASSON AVENUE',
  'cross_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'intersection_street_1': 'CLASSON AVENUE',
  'intersection_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LINCOLN PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:45:37.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011780083',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995349',
  'y_coordinate_state_plane': '184118',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6720311680869',
  'longitude': '-73.95998877344783',
  'location': {'latitude': '40.6720311680869',
   'longitude': '-73.95998877344783',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307708',
  'created_date': '2025-03-10T07:09:53.000',
  'closed_date': '2025-03-10T09:31:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11421',
  'incident_address': '74-14 87 ROAD',
  'street_name': '87 ROAD',
  'cross_street_1': 'ELDERT LANE',
  'cross_street_2': '75 STREET',
  'intersection_street_1': 'ELDERT LANE',
  'intersection_street_2': '75 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODHAVEN',
  'landmark': '87 ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T09:31:25.000',
  'community_board': '09 QUEENS',
  'bbl': '4088970003',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021031',
  'y_coordinate_state_plane': '190634',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68984663853755',
  'longitude': '-73.86737123697053',
  'location': {'latitude': '40.68984663853755',
   'longitude': '-73.86737123697053',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307160',
  'created_date': '2025-03-10T07:10:12.000',
  'closed_date': '2025-03-13T17:59:52.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10471',
  'incident_address': '5804 TYNDALL AVENUE',
  'street_name': 'TYNDALL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '08 BRONX',
  'bbl': '2058600230',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011472',
  'y_coordinate_state_plane': '269141',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.90536129859124',
  'longitude': '-73.90152178860642',
  'location': {'latitude': '40.90536129859124',
   'longitude': '-73.90152178860642',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308433',
  'created_date': '2025-03-10T07:10:12.000',
  'closed_date': '2025-03-13T17:59:52.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PAINT/PLASTER',
  'descriptor': 'WALL',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10471',
  'incident_address': '5804 TYNDALL AVENUE',
  'street_name': 'TYNDALL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '08 BRONX',
  'bbl': '2058600230',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011472',
  'y_coordinate_state_plane': '269141',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.90536129859124',
  'longitude': '-73.90152178860642',
  'location': {'latitude': '40.90536129859124',
   'longitude': '-73.90152178860642',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310914',
  'created_date': '2025-03-10T07:10:12.000',
  'closed_date': '2025-03-13T17:59:52.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'FLOORING/STAIRS',
  'descriptor': 'FLOOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10471',
  'incident_address': '5804 TYNDALL AVENUE',
  'street_name': 'TYNDALL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '08 BRONX',
  'bbl': '2058600230',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011472',
  'y_coordinate_state_plane': '269141',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.90536129859124',
  'longitude': '-73.90152178860642',
  'location': {'latitude': '40.90536129859124',
   'longitude': '-73.90152178860642',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312407',
  'created_date': '2025-03-10T07:10:12.000',
  'closed_date': '2025-03-13T17:59:52.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PAINT/PLASTER',
  'descriptor': 'CEILING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10471',
  'incident_address': '5804 TYNDALL AVENUE',
  'street_name': 'TYNDALL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development inspected the following conditions. Violations were issued. Information about specific violations is available at www.nyc.gov/hpd',
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '08 BRONX',
  'bbl': '2058600230',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011472',
  'y_coordinate_state_plane': '269141',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.90536129859124',
  'longitude': '-73.90152178860642',
  'location': {'latitude': '40.90536129859124',
   'longitude': '-73.90152178860642',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313497',
  'created_date': '2025-03-10T07:10:12.000',
  'closed_date': '2025-03-13T17:59:52.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'ELECTRIC',
  'descriptor': 'WIRING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10471',
  'incident_address': '5804 TYNDALL AVENUE',
  'street_name': 'TYNDALL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '08 BRONX',
  'bbl': '2058600230',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011472',
  'y_coordinate_state_plane': '269141',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.90536129859124',
  'longitude': '-73.90152178860642',
  'location': {'latitude': '40.90536129859124',
   'longitude': '-73.90152178860642',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313733',
  'created_date': '2025-03-10T07:10:12.000',
  'closed_date': '2025-03-13T17:59:52.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'BASIN/SINK',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10471',
  'incident_address': '5804 TYNDALL AVENUE',
  'street_name': 'TYNDALL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '08 BRONX',
  'bbl': '2058600230',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011472',
  'y_coordinate_state_plane': '269141',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.90536129859124',
  'longitude': '-73.90152178860642',
  'location': {'latitude': '40.90536129859124',
   'longitude': '-73.90152178860642',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314902',
  'created_date': '2025-03-10T07:10:12.000',
  'closed_date': '2025-03-13T17:59:52.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'FLOORING/STAIRS',
  'descriptor': 'FLOOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10471',
  'incident_address': '5804 TYNDALL AVENUE',
  'street_name': 'TYNDALL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '08 BRONX',
  'bbl': '2058600230',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011472',
  'y_coordinate_state_plane': '269141',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.90536129859124',
  'longitude': '-73.90152178860642',
  'location': {'latitude': '40.90536129859124',
   'longitude': '-73.90152178860642',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316152',
  'created_date': '2025-03-10T07:10:12.000',
  'closed_date': '2025-03-13T17:59:52.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'FLOORING/STAIRS',
  'descriptor': 'FLOOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10471',
  'incident_address': '5804 TYNDALL AVENUE',
  'street_name': 'TYNDALL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '08 BRONX',
  'bbl': '2058600230',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011472',
  'y_coordinate_state_plane': '269141',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.90536129859124',
  'longitude': '-73.90152178860642',
  'location': {'latitude': '40.90536129859124',
   'longitude': '-73.90152178860642',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316235',
  'created_date': '2025-03-10T07:10:12.000',
  'closed_date': '2025-03-13T17:59:52.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'FLOORING/STAIRS',
  'descriptor': 'FLOOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10471',
  'incident_address': '5804 TYNDALL AVENUE',
  'street_name': 'TYNDALL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '08 BRONX',
  'bbl': '2058600230',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011472',
  'y_coordinate_state_plane': '269141',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.90536129859124',
  'longitude': '-73.90152178860642',
  'location': {'latitude': '40.90536129859124',
   'longitude': '-73.90152178860642',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313904',
  'created_date': '2025-03-10T07:10:15.000',
  'closed_date': '2025-03-10T08:46:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11209',
  'incident_address': '601 74 STREET',
  'street_name': '74 STREET',
  'cross_street_1': '6 AVENUE',
  'cross_street_2': 'STEWART AVENUE',
  'intersection_street_1': '6 AVENUE',
  'intersection_street_2': 'STEWART AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '74 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:46:48.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3059210001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '978722',
  'y_coordinate_state_plane': '168375',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.628825286805736',
  'longitude': '-74.01991520543262',
  'location': {'latitude': '40.628825286805736',
   'longitude': '-74.01991520543262',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307074',
  'created_date': '2025-03-10T07:10:16.000',
  'closed_date': '2025-03-10T15:52:40.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10039',
  'incident_address': '203 WEST  146 STREET',
  'street_name': 'WEST  146 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020320023',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001136',
  'y_coordinate_state_plane': '238938',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82248906874422',
  'longitude': '-73.93898935014867',
  'location': {'latitude': '40.82248906874422',
   'longitude': '-73.93898935014867',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306965',
  'created_date': '2025-03-10T07:10:30.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'ELECTRIC',
  'descriptor': 'LIGHTING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10026',
  'incident_address': '346 MANHATTAN AVENUE',
  'street_name': 'MANHATTAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1018480031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996005',
  'y_coordinate_state_plane': '232213',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80403914016248',
  'longitude': '-73.95753989281675',
  'location': {'latitude': '40.80403914016248',
   'longitude': '-73.95753989281675',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308455',
  'created_date': '2025-03-10T07:10:30.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'BATHTUB/SHOWER',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10026',
  'incident_address': '346 MANHATTAN AVENUE',
  'street_name': 'MANHATTAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1018480031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996005',
  'y_coordinate_state_plane': '232213',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80403914016248',
  'longitude': '-73.95753989281675',
  'location': {'latitude': '40.80403914016248',
   'longitude': '-73.95753989281675',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310942',
  'created_date': '2025-03-10T07:10:30.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'FLOORING/STAIRS',
  'descriptor': 'FLOOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10026',
  'incident_address': '346 MANHATTAN AVENUE',
  'street_name': 'MANHATTAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1018480031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996005',
  'y_coordinate_state_plane': '232213',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80403914016248',
  'longitude': '-73.95753989281675',
  'location': {'latitude': '40.80403914016248',
   'longitude': '-73.95753989281675',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308456',
  'created_date': '2025-03-10T07:10:35.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'BATHTUB/SHOWER',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10454',
  'incident_address': '331 EAST  132 STREET',
  'street_name': 'EAST  132 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '01 BRONX',
  'bbl': '2022957501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004290',
  'y_coordinate_state_plane': '232941',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.80602239216581',
  'longitude': '-73.92761157251907',
  'location': {'latitude': '40.80602239216581',
   'longitude': '-73.92761157251907',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311047',
  'created_date': '2025-03-10T07:10:35.000',
  'closed_date': '2025-03-10T21:03:06.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10454',
  'incident_address': '331 EAST  132 STREET',
  'street_name': 'EAST  132 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "The Department of Housing Preservation and Development conducted or attempted to conduct an inspection.  More information about inspection results can be found through HPD's website at www.nyc.gov/hpd by using HPDONLINE (enter your address on the home page) and entering your SR number under the complaint status option.",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '01 BRONX',
  'bbl': '2022957501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004290',
  'y_coordinate_state_plane': '232941',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.80602239216581',
  'longitude': '-73.92761157251907',
  'location': {'latitude': '40.80602239216581',
   'longitude': '-73.92761157251907',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313673',
  'created_date': '2025-03-10T07:10:35.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'TOILET',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10454',
  'incident_address': '331 EAST  132 STREET',
  'street_name': 'EAST  132 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '01 BRONX',
  'bbl': '2022957501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004290',
  'y_coordinate_state_plane': '232941',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.80602239216581',
  'longitude': '-73.92761157251907',
  'location': {'latitude': '40.80602239216581',
   'longitude': '-73.92761157251907',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313734',
  'created_date': '2025-03-10T07:10:35.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'BASIN/SINK',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10454',
  'incident_address': '331 EAST  132 STREET',
  'street_name': 'EAST  132 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '01 BRONX',
  'bbl': '2022957501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004290',
  'y_coordinate_state_plane': '232941',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.80602239216581',
  'longitude': '-73.92761157251907',
  'location': {'latitude': '40.80602239216581',
   'longitude': '-73.92761157251907',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309963',
  'created_date': '2025-03-10T07:10:58.000',
  'closed_date': '2025-03-13T00:00:00.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Emergency Response Team (ERT)',
  'descriptor': 'Lights From Parking Lot Shining On Building',
  'incident_zip': '10003',
  'incident_address': '1 UNION SQUARE WEST',
  'street_name': 'UNION SQUARE WEST',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Buildings investigated this complaint and determined that no further action was necessary.',
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008420021',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986564',
  'y_coordinate_state_plane': '207173',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.735318377369765',
  'longitude': '-73.99165024659625',
  'location': {'latitude': '40.735318377369765',
   'longitude': '-73.99165024659625',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307705',
  'created_date': '2025-03-10T07:11:00.000',
  'closed_date': '2025-03-11T09:25:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'No Water (WNW)',
  'incident_zip': '11429',
  'incident_address': '209-56 112 ROAD',
  'street_name': '112 ROAD',
  'cross_street_1': 'COLFAX ST',
  'cross_street_2': '212 ST',
  'address_type': 'ADDRESS',
  'city': 'QUEENS VILLAGE',
  'status': 'Closed',
  'resolution_description': "The Department of Environmental Protection investigated this complaint and determined it is an inside condition within the complainant's property.",
  'resolution_action_updated_date': '2025-03-11T09:25:00.000',
  'community_board': '13 QUEENS',
  'bbl': '4111310036',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1054774',
  'y_coordinate_state_plane': '196093',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70462570876126',
  'longitude': '-73.74564057230653',
  'location': {'latitude': '40.70462570876126',
   'longitude': '-73.74564057230653',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309139',
  'created_date': '2025-03-10T07:11:09.000',
  'closed_date': '2025-03-10T08:13:59.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Vehicle',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11220',
  'incident_address': '260 65 STREET',
  'street_name': '65 STREET',
  'cross_street_1': 'BELT PARKWAY',
  'cross_street_2': '3 AVENUE',
  'intersection_street_1': 'BELT PARKWAY',
  'intersection_street_2': '3 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '65 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:14:03.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3058250001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '977471',
  'y_coordinate_state_plane': '172384',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Other',
  'latitude': '40.6398282710889',
  'longitude': '-74.02442609252809',
  'location': {'latitude': '40.6398282710889',
   'longitude': '-74.02442609252809',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307476',
  'created_date': '2025-03-10T07:11:20.000',
  'closed_date': '2025-03-10T10:06:30.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11421',
  'incident_address': '84-01 91 AVENUE',
  'street_name': '91 AVENUE',
  'cross_street_1': '84 STREET',
  'cross_street_2': '85 STREET',
  'intersection_street_1': '84 STREET',
  'intersection_street_2': '85 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODHAVEN',
  'landmark': '91 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T10:06:35.000',
  'community_board': '09 QUEENS',
  'bbl': '4089660036',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1023594',
  'y_coordinate_state_plane': '189805',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68756020459824',
  'longitude': '-73.8581341613259',
  'location': {'latitude': '40.68756020459824',
   'longitude': '-73.8581341613259',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315482',
  'created_date': '2025-03-10T07:11:39.000',
  'closed_date': '2025-03-10T09:03:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11228',
  'incident_address': '7400 10 AVENUE',
  'street_name': '10 AVENUE',
  'cross_street_1': '74 STREET',
  'cross_street_2': 'BAY RIDGE PARKWAY',
  'intersection_street_1': '74 STREET',
  'intersection_street_2': 'BAY RIDGE PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '10 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:03:54.000',
  'community_board': '10 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '980500',
  'y_coordinate_state_plane': '166912',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62481059036888',
  'longitude': '-74.01350895944579',
  'location': {'latitude': '40.62481059036888',
   'longitude': '-74.01350895944579',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313173',
  'created_date': '2025-03-10T07:13:29.000',
  'closed_date': '2025-03-10T08:15:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11102',
  'incident_address': '30-94 CRESCENT STREET',
  'street_name': 'CRESCENT STREET',
  'cross_street_1': '30 DRIVE',
  'cross_street_2': '31 AVENUE',
  'intersection_street_1': '30 DRIVE',
  'intersection_street_2': '31 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': 'CRESCENT STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:15:35.000',
  'community_board': '01 QUEENS',
  'bbl': '4005707504',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1004680',
  'y_coordinate_state_plane': '218419',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.766162502404185',
  'longitude': '-73.9262469822659',
  'location': {'latitude': '40.766162502404185',
   'longitude': '-73.9262469822659',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308719',
  'created_date': '2025-03-10T07:13:39.000',
  'closed_date': '2025-03-10T07:13:39.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'General Construction/Plumbing',
  'descriptor': 'Curb Cut/Driveway/Carport - Illegal',
  'incident_zip': '11222',
  'incident_address': '162 NASSAU AVENUE',
  'street_name': 'NASSAU AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'Your Service Request has been submitted to the Department of Buildings.  Please check back later for status.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3026840005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999020',
  'y_coordinate_state_plane': '203458',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.72510958340769',
  'longitude': '-73.94671263043458',
  'location': {'latitude': '40.72510958340769',
   'longitude': '-73.94671263043458',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314149',
  'created_date': '2025-03-10T07:13:39.000',
  'closed_date': '2025-03-11T00:00:00.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Building/Use',
  'descriptor': 'Illegal. Commercial Use In Resident Zone',
  'incident_zip': '10456',
  'incident_address': '1385 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Buildings determined that the conditions described in this complaint were addressed under another service request number. Click on "Learn More" in the "Did You Know" section below for more information.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '03 BRONX',
  'bbl': '2029010001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010561',
  'y_coordinate_state_plane': '243449',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8348474210791',
  'longitude': '-73.90491830085918',
  'location': {'latitude': '40.8348474210791',
   'longitude': '-73.90491830085918',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308495',
  'created_date': '2025-03-10T07:13:42.000',
  'closed_date': '2025-03-15T11:53:02.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10029',
  'incident_address': '325 EAST  101 STREET',
  'street_name': 'EAST  101 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-15T00:00:00.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1016737501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999721',
  'y_coordinate_state_plane': '226073',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78718078322942',
  'longitude': '-73.94413151799407',
  'location': {'latitude': '40.78718078322942',
   'longitude': '-73.94413151799407',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314982',
  'created_date': '2025-03-10T07:13:42.000',
  'closed_date': '2025-03-15T11:53:02.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10029',
  'incident_address': '325 EAST  101 STREET',
  'street_name': 'EAST  101 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-15T00:00:00.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1016737501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999721',
  'y_coordinate_state_plane': '226073',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78718078322942',
  'longitude': '-73.94413151799407',
  'location': {'latitude': '40.78718078322942',
   'longitude': '-73.94413151799407',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316200',
  'created_date': '2025-03-10T07:13:42.000',
  'closed_date': '2025-03-12T14:00:48.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10029',
  'incident_address': '325 EAST  101 STREET',
  'street_name': 'EAST  101 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1016737501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999721',
  'y_coordinate_state_plane': '226073',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78718078322942',
  'longitude': '-73.94413151799407',
  'location': {'latitude': '40.78718078322942',
   'longitude': '-73.94413151799407',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312072',
  'created_date': '2025-03-10T07:14:00.000',
  'closed_date': '2025-03-10T23:33:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '11209',
  'incident_address': '7452 7 AVENUE',
  'street_name': '7 AVENUE',
  'cross_street_1': '74 STREET',
  'cross_street_2': 'BAY RIDGE PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) couldn't find the condition. Please file a new Service Request with more details about the location.",
  'resolution_action_updated_date': '2025-03-10T12:00:00.000',
  'community_board': '10 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '979115',
  'y_coordinate_state_plane': '167875',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62745312862081',
  'longitude': '-74.01849900095276',
  'location': {'latitude': '40.62745312862081',
   'longitude': '-74.01849900095276',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64323605',
  'created_date': '2025-03-10T07:14:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Out',
  'incident_zip': '10003',
  'intersection_street_1': 'UNIVERSITY PLACE',
  'intersection_street_2': 'EAST 10 STREET',
  'address_type': 'INTERSECTION',
  'city': 'MANHATTAN',
  'status': 'Assigned',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-11T10:35:00.000',
  'community_board': '02 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985964',
  'y_coordinate_state_plane': '206230',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73273021110799',
  'longitude': '-73.99381550499122',
  'location': {'latitude': '40.73273021110799',
   'longitude': '-73.99381550499122',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64324269',
  'created_date': '2025-03-10T07:14:00.000',
  'closed_date': '2025-03-10T08:50:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Wireless',
  'incident_zip': '11210',
  'intersection_street_1': 'AVENUE I',
  'intersection_street_2': 'EAST 27 STREET',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Assigned',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-10T08:50:00.000',
  'community_board': '14 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998080',
  'y_coordinate_state_plane': '168388',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.628851898198214',
  'longitude': '-73.95017593823553',
  'location': {'latitude': '40.628851898198214',
   'longitude': '-73.95017593823553',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312241',
  'created_date': '2025-03-10T07:14:17.000',
  'closed_date': '2025-03-12T12:45:00.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10034',
  'incident_address': '241 SHERMAN AVENUE',
  'street_name': 'SHERMAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022230005',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1006543',
  'y_coordinate_state_plane': '254798',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86600810878767',
  'longitude': '-73.9194006525354',
  'location': {'latitude': '40.86600810878767',
   'longitude': '-73.9194006525354',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308387',
  'created_date': '2025-03-10T07:14:20.000',
  'closed_date': '2025-03-11T08:28:56.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11222',
  'incident_address': '68 DIAMOND STREET',
  'street_name': 'DIAMOND STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3026850071',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999114',
  'y_coordinate_state_plane': '203340',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.724785544657806',
  'longitude': '-73.94637375690108',
  'location': {'latitude': '40.724785544657806',
   'longitude': '-73.94637375690108',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311817',
  'created_date': '2025-03-10T07:14:36.000',
  'closed_date': '2025-03-10T07:59:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '87 BAY   49 STREET',
  'street_name': 'BAY   49 STREET',
  'cross_street_1': 'HARWAY AVENUE',
  'cross_street_2': 'CROPSEY AVENUE',
  'intersection_street_1': 'HARWAY AVENUE',
  'intersection_street_2': 'CROPSEY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAY   49 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:59:35.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3069170001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988153',
  'y_coordinate_state_plane': '153361',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.58761579902402',
  'longitude': '-73.98594770604696',
  'location': {'latitude': '40.58761579902402',
   'longitude': '-73.98594770604696',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308540',
  'created_date': '2025-03-10T07:14:44.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'BOILER',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11226',
  'incident_address': '1834 CATON AVENUE',
  'street_name': 'CATON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3050800007',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994718',
  'y_coordinate_state_plane': '176753',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65181664036495',
  'longitude': '-73.96227492447909',
  'location': {'latitude': '40.65181664036495',
   'longitude': '-73.96227492447909',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314852',
  'created_date': '2025-03-10T07:15:37.000',
  'closed_date': '2025-03-10T08:03:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11221',
  'incident_address': '984 GREENE AVENUE',
  'street_name': 'GREENE AVENUE',
  'cross_street_1': 'MALCOLM X BOULEVARD',
  'cross_street_2': 'PATCHEN AVENUE',
  'intersection_street_1': 'MALCOLM X BOULEVARD',
  'intersection_street_2': 'PATCHEN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GREENE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:03:54.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3016220034',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004056',
  'y_coordinate_state_plane': '191030',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.690987832760484',
  'longitude': '-73.92858025808955',
  'location': {'latitude': '40.690987832760484',
   'longitude': '-73.92858025808955',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309234',
  'created_date': '2025-03-10T07:15:40.000',
  'closed_date': '2025-03-13T11:28:19.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Posting',
  'descriptor': 'Poster or Sign',
  'location_type': 'Sidewalk',
  'incident_zip': '10309',
  'incident_address': '2151 ARTHUR KILL ROAD',
  'street_name': 'ARTHUR KILL ROAD',
  'cross_street_1': 'VETERANS ROAD WEST',
  'cross_street_2': 'ROSSVILLE AVENUE',
  'intersection_street_1': 'VETERANS ROAD WEST',
  'intersection_street_2': 'ROSSVILLE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'ARTHUR KILL ROAD',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation has removed illegal postings from the location. The Department will issue a Notice of Violation to the responsible party once it is identified.',
  'resolution_action_updated_date': '2025-03-13T11:28:22.000',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5061690200',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '926480',
  'y_coordinate_state_plane': '142437',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.5574442455252',
  'longitude': '-74.20790037799217',
  'location': {'latitude': '40.5574442455252',
   'longitude': '-74.20790037799217',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313111',
  'created_date': '2025-03-10T07:15:43.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Residential Building/House',
  'incident_zip': '10036',
  'incident_address': '1560 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST 46 STREET',
  'cross_street_2': 'WEST 47 STREET BIKE PATH',
  'intersection_street_1': 'WEST   46 STREET',
  'intersection_street_2': 'WEST   47 STREET BIKE PATH',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team went to the location provided but could not find the individual that you reported.',
  'resolution_action_updated_date': '2025-03-10T10:36:46.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1009990003',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988449',
  'y_coordinate_state_plane': '215750',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.758859393464085',
  'longitude': '-73.98484312622068',
  'location': {'latitude': '40.758859393464085',
   'longitude': '-73.98484312622068',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310294',
  'created_date': '2025-03-10T07:15:49.000',
  'closed_date': '2025-03-10T07:27:29.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Food Vendor',
  'location_type': 'Street',
  'incident_zip': '10007',
  'incident_address': '189 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'CORTLANDT STREET',
  'cross_street_2': 'JOHN STREET',
  'intersection_street_1': 'CORTLANDT STREET',
  'intersection_street_2': 'JOHN STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'N/A',
  'resolution_action_updated_date': '2025-03-10T07:27:34.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1000630013',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '981583',
  'y_coordinate_state_plane': '198042',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.710255892218875',
  'longitude': '-74.00961988741942',
  'location': {'latitude': '40.710255892218875',
   'longitude': '-74.00961988741942',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311311',
  'created_date': '2025-03-10T07:16:05.000',
  'closed_date': '2025-03-10T13:44:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11226',
  'incident_address': '68 WOODRUFF AVENUE',
  'street_name': 'WOODRUFF AVENUE',
  'cross_street_1': 'ST PAULS PLACE',
  'cross_street_2': 'OCEAN AVENUE',
  'intersection_street_1': 'ST PAULS PLACE',
  'intersection_street_2': 'OCEAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WOODRUFF AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T13:44:23.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3050597501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994378',
  'y_coordinate_state_plane': '177322',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65337881661606',
  'longitude': '-73.96349937802763',
  'location': {'latitude': '40.65337881661606',
   'longitude': '-73.96349937802763',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315339',
  'created_date': '2025-03-10T07:16:09.000',
  'agency': 'EDC',
  'agency_name': 'Economic Development Corporation',
  'complaint_type': 'Noise - Helicopter',
  'descriptor': 'Other',
  'location_type': 'Above Address',
  'incident_zip': '11414',
  'incident_address': '151-35 84 STREET',
  'street_name': '84 STREET',
  'cross_street_1': '151 AVENUE',
  'cross_street_2': '153 AVENUE',
  'intersection_street_1': '151 AVENUE',
  'intersection_street_2': '153 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'HOWARD BEACH',
  'landmark': '84 STREET',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'bbl': '4114317502',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1025683',
  'y_coordinate_state_plane': '182536',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.667598938798044',
  'longitude': '-73.8506463883521',
  'location': {'latitude': '40.667598938798044',
   'longitude': '-73.8506463883521',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310647',
  'created_date': '2025-03-10T07:16:13.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Store/Commercial',
  'incident_zip': '10010',
  'incident_address': '350 1 AVENUE',
  'street_name': '1 AVENUE',
  'cross_street_1': 'EAST 20 STREET',
  'cross_street_2': 'EAST 21 STREET',
  'intersection_street_1': 'EAST   20 STREET',
  'intersection_street_2': 'EAST   21 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '1 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team went to the location provided but could not find the individual that you reported.',
  'resolution_action_updated_date': '2025-03-10T10:37:51.000',
  'community_board': '06 MANHATTAN',
  'bbl': '1009780001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989890',
  'y_coordinate_state_plane': '207105',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73513023859259',
  'longitude': '-73.97964888652476',
  'location': {'latitude': '40.73513023859259',
   'longitude': '-73.97964888652476',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309401',
  'created_date': '2025-03-10T07:16:16.000',
  'closed_date': '2025-03-13T06:11:56.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Yard',
  'incident_zip': '10466',
  'incident_address': 'BAYCHESTER AVENUE',
  'street_name': 'BAYCHESTER AVENUE',
  'cross_street_1': 'BAYCHESTER AVENUE',
  'cross_street_2': 'PITMAN AVENUE',
  'intersection_street_1': 'BAYCHESTER AVENUE',
  'intersection_street_2': 'PITMAN AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and issued a Notice of Violation.',
  'resolution_action_updated_date': '2025-03-13T06:12:01.000',
  'community_board': '12 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1027073',
  'y_coordinate_state_plane': '266004',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.89668932225573',
  'longitude': '-73.84510382923732',
  'location': {'latitude': '40.89668932225573',
   'longitude': '-73.84510382923732',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313938',
  'created_date': '2025-03-10T07:16:20.000',
  'closed_date': '2025-03-10T09:19:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11433',
  'incident_address': '170-01 108 AVENUE',
  'street_name': '108 AVENUE',
  'cross_street_1': '170 STREET',
  'cross_street_2': '171 STREET',
  'intersection_street_1': '170 STREET',
  'intersection_street_2': '171 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '108 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:19:28.000',
  'community_board': '12 QUEENS',
  'bbl': '4102450174',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1043553',
  'y_coordinate_state_plane': '193889',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.69865858056355',
  'longitude': '-73.7861306671421',
  'location': {'latitude': '40.69865858056355',
   'longitude': '-73.7861306671421',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310291',
  'created_date': '2025-03-10T07:16:39.000',
  'closed_date': '2025-03-11T00:00:00.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'General Construction/Plumbing',
  'descriptor': 'Adjacent Buildings Not Protected',
  'incident_zip': '11215',
  'incident_address': '474 PROSPECT AVENUE',
  'street_name': 'PROSPECT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Buildings investigated this complaint and determined that no further action was necessary.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3008700034',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989155',
  'y_coordinate_state_plane': '179428',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65916375845946',
  'longitude': '-73.98232118161292',
  'location': {'latitude': '40.65916375845946',
   'longitude': '-73.98232118161292',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311277',
  'created_date': '2025-03-10T07:16:44.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Smoking or Vaping',
  'descriptor': 'Allowed in Smoke Free Area',
  'location_type': 'Residential Building',
  'incident_zip': '10452',
  'incident_address': '1210 NELSON AVENUE',
  'street_name': 'NELSON AVENUE',
  'cross_street_1': 'WEST  167 STREET',
  'cross_street_2': 'WEST  168 STREET',
  'intersection_street_1': 'WEST  167 STREET',
  'intersection_street_2': 'WEST  168 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'NELSON AVENUE',
  'status': 'In Progress',
  'resolution_description': 'The Department of Health and Mental Hygiene has sent official written notification to the Owner/Landlord warning them of potential violations and instructing them to correct the situation. If the situation persists 21 days after your initial complaint, please make a new complaint.',
  'resolution_action_updated_date': '2025-03-10T16:06:14.000',
  'community_board': '04 BRONX',
  'bbl': '2025150014',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004909',
  'y_coordinate_state_plane': '244493',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83772792787698',
  'longitude': '-73.92534005841219',
  'location': {'latitude': '40.83772792787698',
   'longitude': '-73.92534005841219',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313898',
  'created_date': '2025-03-10T07:16:55.000',
  'closed_date': '2025-03-10T09:23:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10310',
  'incident_address': '310 NORTH BURGHER AVENUE',
  'street_name': 'NORTH BURGHER AVENUE',
  'cross_street_1': 'CASTLETON AVENUE',
  'cross_street_2': 'SOUTH STREET',
  'intersection_street_1': 'CASTLETON AVENUE',
  'intersection_street_2': 'SOUTH STREET',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'NORTH BURGHER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:23:24.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5001780051',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '952512',
  'y_coordinate_state_plane': '170218',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.633828798176914',
  'longitude': '-74.11434811041607',
  'location': {'latitude': '40.633828798176914',
   'longitude': '-74.11434811041607',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316037',
  'created_date': '2025-03-10T07:17:03.000',
  'closed_date': '2025-03-10T07:31:01.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Animal in a Park',
  'descriptor': 'Dog Off Leash',
  'location_type': 'Park',
  'incident_zip': '10039',
  'incident_address': '319 WEST  145 STREET',
  'street_name': 'WEST  145 STREET',
  'cross_street_1': 'BRADHURST AVENUE',
  'cross_street_2': 'EDGECOMBE AVENUE',
  'intersection_street_1': 'BRADHURST AVENUE',
  'intersection_street_2': 'EDGECOMBE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  145 STREET',
  'status': 'Closed',
  'resolution_description': "NYC Parks couldn't respond to your complaint because they had to devote resources to other critical services at the time. The agency will use your complaint for future planning.",
  'resolution_action_updated_date': '2025-03-10T07:31:04.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020520001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000010',
  'y_coordinate_state_plane': '239242',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82332554323123',
  'longitude': '-73.94305697510212',
  'location': {'latitude': '40.82332554323123',
   'longitude': '-73.94305697510212',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312788',
  'created_date': '2025-03-10T07:17:06.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Sidewalk Condition',
  'descriptor': 'Broken Sidewalk',
  'location_type': 'Sidewalk',
  'incident_zip': '10029',
  'incident_address': '240 EAST  109 STREET',
  'street_name': 'EAST  109 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '2 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '2 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST  109 STREET',
  'status': 'In Progress',
  'community_board': '11 MANHATTAN',
  'bbl': '1016560100',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000226',
  'y_coordinate_state_plane': '228219',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79307007665775',
  'longitude': '-73.94230277097093',
  'location': {'latitude': '40.79307007665775',
   'longitude': '-73.94230277097093',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316032',
  'created_date': '2025-03-10T07:17:27.000',
  'closed_date': '2025-03-11T13:20:14.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '11423',
  'incident_address': '200-14 KENO AVENUE',
  'street_name': 'KENO AVENUE',
  'cross_street_1': 'DUNTON STREET',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'DUNTON STREET',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'HOLLIS',
  'landmark': 'KENO AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-11T13:20:16.000',
  'community_board': '08 QUEENS',
  'bbl': '4105380132',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1049470',
  'y_coordinate_state_plane': '202569',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72244140351882',
  'longitude': '-73.76470771376755',
  'location': {'latitude': '40.72244140351882',
   'longitude': '-73.76470771376755',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309562',
  'created_date': '2025-03-10T07:17:50.000',
  'closed_date': '2025-03-10T08:03:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11221',
  'incident_address': '984 GREENE AVENUE',
  'street_name': 'GREENE AVENUE',
  'cross_street_1': 'MALCOLM X BOULEVARD',
  'cross_street_2': 'PATCHEN AVENUE',
  'intersection_street_1': 'MALCOLM X BOULEVARD',
  'intersection_street_2': 'PATCHEN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GREENE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:03:29.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3016220034',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004056',
  'y_coordinate_state_plane': '191030',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.690987832760484',
  'longitude': '-73.92858025808955',
  'location': {'latitude': '40.690987832760484',
   'longitude': '-73.92858025808955',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310394',
  'created_date': '2025-03-10T07:17:53.000',
  'closed_date': '2025-03-10T07:44:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11379',
  'incident_address': '62-09 FRESH POND ROAD',
  'street_name': 'FRESH POND ROAD',
  'cross_street_1': '62 AVENUE',
  'cross_street_2': '62 ROAD',
  'intersection_street_1': '62 AVENUE',
  'intersection_street_2': '62 ROAD',
  'address_type': 'ADDRESS',
  'city': 'MIDDLE VILLAGE',
  'landmark': 'FRESH POND ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T07:44:45.000',
  'community_board': '05 QUEENS',
  'bbl': '4027680007',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011738',
  'y_coordinate_state_plane': '199260',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.713556713265746',
  'longitude': '-73.90084566313638',
  'location': {'latitude': '40.713556713265746',
   'longitude': '-73.90084566313638',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310039',
  'created_date': '2025-03-10T07:18:28.000',
  'closed_date': '2025-03-10T09:03:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11355',
  'incident_address': '43-18 149 STREET',
  'street_name': '149 STREET',
  'cross_street_1': 'CHERRY AVENUE',
  'cross_street_2': 'DELAWARE AVENUE',
  'intersection_street_1': 'CHERRY AVENUE',
  'intersection_street_2': 'DELAWARE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '149 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T09:03:21.000',
  'community_board': '07 QUEENS',
  'bbl': '4054040022',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035828',
  'y_coordinate_state_plane': '215357',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.757631264814435',
  'longitude': '-73.8138253378116',
  'location': {'latitude': '40.757631264814435',
   'longitude': '-73.8138253378116',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309396',
  'created_date': '2025-03-10T07:18:29.000',
  'closed_date': '2025-03-10T08:07:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10452',
  'incident_address': '1291 CROMWELL AVENUE',
  'street_name': 'CROMWELL AVENUE',
  'cross_street_1': 'WEST  169 STREET',
  'cross_street_2': 'WEST  170 STREET',
  'intersection_street_1': 'WEST  169 STREET',
  'intersection_street_2': 'WEST  170 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CROMWELL AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T08:07:29.000',
  'community_board': '04 BRONX',
  'bbl': '2028710061',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006112',
  'y_coordinate_state_plane': '244800',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.838567657253435',
  'longitude': '-73.9209915160997',
  'location': {'latitude': '40.838567657253435',
   'longitude': '-73.9209915160997',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315426',
  'created_date': '2025-03-10T07:18:38.000',
  'closed_date': '2025-03-10T07:27:30.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Food Vendor',
  'location_type': 'Street',
  'incident_zip': '11218',
  'incident_address': '101 CHURCH AVENUE',
  'street_name': 'CHURCH AVENUE',
  'cross_street_1': 'MCDONALD AVENUE',
  'cross_street_2': 'BEVERLEY ROAD',
  'intersection_street_1': 'MCDONALD AVENUE',
  'intersection_street_2': 'BEVERLEY ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CHURCH AVENUE',
  'status': 'Closed',
  'resolution_description': 'N/A',
  'resolution_action_updated_date': '2025-03-10T07:27:34.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3053340062',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989971',
  'y_coordinate_state_plane': '173477',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64282906818898',
  'longitude': '-73.97938516605019',
  'location': {'latitude': '40.64282906818898',
   'longitude': '-73.97938516605019',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307905',
  'created_date': '2025-03-10T07:18:39.000',
  'closed_date': '2025-03-10T07:27:29.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Food Vendor',
  'location_type': 'Street',
  'incident_zip': '10006',
  'incident_address': '75 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'RECTOR STREET',
  'cross_street_2': 'WALL STREET',
  'intersection_street_1': 'RECTOR STREET',
  'intersection_street_2': 'WALL STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'N/A',
  'resolution_action_updated_date': '2025-03-10T07:27:34.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1000490001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '980946',
  'y_coordinate_state_plane': '197038',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.70749993508218',
  'longitude': '-74.01191705811951',
  'location': {'latitude': '40.70749993508218',
   'longitude': '-74.01191705811951',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309897',
  'created_date': '2025-03-10T07:18:44.000',
  'closed_date': '2025-03-11T08:20:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11434',
  'intersection_street_1': '150 STREET',
  'intersection_street_2': 'NORTH CONDUIT AVENUE',
  'address_type': 'INTERSECTION',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected this complaint and repaired the problem.',
  'resolution_action_updated_date': '2025-03-11T08:20:00.000',
  'community_board': '12 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1042672',
  'y_coordinate_state_plane': '182295',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.66684164323722',
  'longitude': '-73.78940839883084',
  'location': {'latitude': '40.66684164323722',
   'longitude': '-73.78940839883084',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309051',
  'created_date': '2025-03-10T07:18:49.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Sidewalk Condition',
  'descriptor': 'Broken Sidewalk',
  'location_type': 'Sidewalk',
  'incident_zip': '10029',
  'incident_address': '240 EAST  109 STREET',
  'street_name': 'EAST  109 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '2 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '2 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST  109 STREET',
  'status': 'In Progress',
  'community_board': '11 MANHATTAN',
  'bbl': '1016560100',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000226',
  'y_coordinate_state_plane': '228219',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79307007665775',
  'longitude': '-73.94230277097093',
  'location': {'latitude': '40.79307007665775',
   'longitude': '-73.94230277097093',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306064',
  'created_date': '2025-03-10T07:18:57.000',
  'closed_date': '2025-03-10T08:37:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11385',
  'incident_address': '88-14 RUTLEDGE AVENUE',
  'street_name': 'RUTLEDGE AVENUE',
  'cross_street_1': '88 STREET',
  'cross_street_2': '89 STREET',
  'intersection_street_1': '88 STREET',
  'intersection_street_2': '89 STREET',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'RUTLEDGE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:37:06.000',
  'community_board': '05 QUEENS',
  'bbl': '4038540066',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1022253',
  'y_coordinate_state_plane': '197688',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.70920303488377',
  'longitude': '-73.86292502597496',
  'location': {'latitude': '40.70920303488377',
   'longitude': '-73.86292502597496',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315366',
  'created_date': '2025-03-10T07:19:25.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Sidewalk Condition',
  'descriptor': 'Sidewalk Violation',
  'location_type': 'Sidewalk',
  'incident_zip': '11217',
  'incident_address': '152 HOYT STREET',
  'street_name': 'HOYT STREET',
  'cross_street_1': 'BERGEN STREET',
  'cross_street_2': 'WYCKOFF STREET',
  'intersection_street_1': 'BERGEN STREET',
  'intersection_street_2': 'WYCKOFF STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HOYT STREET',
  'status': 'In Progress',
  'community_board': '02 BROOKLYN',
  'bbl': '3003850039',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987461',
  'y_coordinate_state_plane': '189086',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.685673578279605',
  'longitude': '-73.98842217054901',
  'location': {'latitude': '40.685673578279605',
   'longitude': '-73.98842217054901',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308041',
  'created_date': '2025-03-10T07:19:57.000',
  'closed_date': '2025-03-11T15:22:54.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dead Animal',
  'descriptor': 'Raccoon',
  'location_type': 'Street',
  'incident_zip': '10301',
  'incident_address': '169 HIGHLAND AVENUE',
  'street_name': 'HIGHLAND AVENUE',
  'cross_street_1': 'RIDGE COURT',
  'cross_street_2': 'HOWARD AVENUE',
  'intersection_street_1': 'RIDGE COURT',
  'intersection_street_2': 'HOWARD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'HIGHLAND AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-11T11:21:16.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5005970006',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '957254',
  'y_coordinate_state_plane': '163659',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.61584145016329',
  'longitude': '-74.0972370511129',
  'location': {'latitude': '40.61584145016329',
   'longitude': '-74.0972370511129',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306966',
  'created_date': '2025-03-10T07:20:05.000',
  'closed_date': '2025-03-12T20:20:04.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'ELECTRIC',
  'descriptor': 'POWER OUTAGE',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11208',
  'incident_address': '1004 HEGEMAN AVENUE',
  'street_name': 'HEGEMAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3044780004',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1018705',
  'y_coordinate_state_plane': '182214',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66674502747116',
  'longitude': '-73.87580160641936',
  'location': {'latitude': '40.66674502747116',
   'longitude': '-73.87580160641936',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308309',
  'created_date': '2025-03-10T07:20:05.000',
  'closed_date': '2025-03-12T20:20:04.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'ELECTRIC',
  'descriptor': 'WIRING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11208',
  'incident_address': '1004 HEGEMAN AVENUE',
  'street_name': 'HEGEMAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3044780004',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1018705',
  'y_coordinate_state_plane': '182214',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66674502747116',
  'longitude': '-73.87580160641936',
  'location': {'latitude': '40.66674502747116',
   'longitude': '-73.87580160641936',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314188',
  'created_date': '2025-03-10T07:20:16.000',
  'closed_date': '2025-03-10T09:07:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '274 AVENUE W',
  'street_name': 'AVENUE W',
  'cross_street_1': 'MCDONALD AVENUE',
  'cross_street_2': 'STRYKER STREET',
  'intersection_street_1': 'MCDONALD AVENUE',
  'intersection_street_2': 'STRYKER STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AVENUE W',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:08:01.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3071730009',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991734',
  'y_coordinate_state_plane': '155101',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.592389450703614',
  'longitude': '-73.97305280879024',
  'location': {'latitude': '40.592389450703614',
   'longitude': '-73.97305280879024',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306166',
  'created_date': '2025-03-10T07:21:04.000',
  'closed_date': '2025-03-10T22:45:31.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10016',
  'incident_address': '621 2 AVENUE',
  'street_name': '2 AVENUE',
  'cross_street_1': 'EAST   33 STREET',
  'cross_street_2': 'EAST   34 STREET',
  'intersection_street_1': 'EAST   33 STREET',
  'intersection_street_2': 'EAST   34 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '2 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-10T22:45:34.000',
  'community_board': '06 MANHATTAN',
  'bbl': '1009140035',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990911',
  'y_coordinate_state_plane': '210586',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.744684008584294',
  'longitude': '-73.9759613108818',
  'location': {'latitude': '40.744684008584294',
   'longitude': '-73.9759613108818',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308147',
  'created_date': '2025-03-10T07:21:12.000',
  'closed_date': '2025-03-10T12:47:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10031',
  'incident_address': '514 WEST  148 STREET',
  'street_name': 'WEST  148 STREET',
  'cross_street_1': 'AMSTERDAM AVENUE',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': 'AMSTERDAM AVENUE',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  148 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T12:47:58.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020790042',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998947',
  'y_coordinate_state_plane': '240738',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.827433469707145',
  'longitude': '-73.9468944608828',
  'location': {'latitude': '40.827433469707145',
   'longitude': '-73.9468944608828',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306930',
  'created_date': '2025-03-10T07:21:13.000',
  'closed_date': '2025-03-10T21:01:10.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10016',
  'incident_address': '401 5 AVENUE',
  'street_name': '5 AVENUE',
  'cross_street_1': 'EAST   36 STREET',
  'cross_street_2': 'EAST   37 STREET',
  'intersection_street_1': 'EAST   36 STREET',
  'intersection_street_2': 'EAST   37 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '5 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Homeless Services (DHS) visited the location and is coordinating with their agency partners to address the condition. No further information will be available with 311.',
  'resolution_action_updated_date': '2025-03-10T21:01:14.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008660076',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988861',
  'y_coordinate_state_plane': '212549',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.750073256698414',
  'longitude': '-73.9833581501564',
  'location': {'latitude': '40.750073256698414',
   'longitude': '-73.9833581501564',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310424',
  'created_date': '2025-03-10T07:21:13.000',
  'closed_date': '2025-03-10T08:41:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10016',
  'incident_address': '401 5 AVENUE',
  'street_name': '5 AVENUE',
  'cross_street_1': 'EAST   36 STREET',
  'cross_street_2': 'EAST   37 STREET',
  'intersection_street_1': 'EAST   36 STREET',
  'intersection_street_2': 'EAST   37 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '5 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and has referred the complaint to the Department of Homeless Services (DHS) for further action. DHS will inspect the condition and update your Service Request with more information.',
  'resolution_action_updated_date': '2025-03-10T08:41:41.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008660076',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988861',
  'y_coordinate_state_plane': '212549',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.750073256698414',
  'longitude': '-73.9833581501564',
  'location': {'latitude': '40.750073256698414',
   'longitude': '-73.9833581501564',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310743',
  'created_date': '2025-03-10T07:21:28.000',
  'closed_date': '2025-03-10T12:42:45.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '11423',
  'incident_address': '200-20 KENO AVENUE',
  'street_name': 'KENO AVENUE',
  'cross_street_1': 'DUNTON STREET',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'DUNTON STREET',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'HOLLIS',
  'landmark': 'KENO AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and issued a Notice of Violation.',
  'resolution_action_updated_date': '2025-03-10T12:42:47.000',
  'community_board': '08 QUEENS',
  'bbl': '4105380130',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1049478',
  'y_coordinate_state_plane': '202572',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72244957877929',
  'longitude': '-73.76467882346556',
  'location': {'latitude': '40.72244957877929',
   'longitude': '-73.76467882346556',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310178',
  'created_date': '2025-03-10T07:21:35.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Sidewalk Condition',
  'descriptor': 'Broken Sidewalk',
  'location_type': 'Sidewalk',
  'incident_zip': '10029',
  'incident_address': '219 EAST  109 STREET',
  'street_name': 'EAST  109 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '2 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '2 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST  109 STREET',
  'status': 'In Progress',
  'community_board': '11 MANHATTAN',
  'bbl': '1016590012',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000158',
  'y_coordinate_state_plane': '228264',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79319371215015',
  'longitude': '-73.94254824590713',
  'location': {'latitude': '40.79319371215015',
   'longitude': '-73.94254824590713',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315576',
  'created_date': '2025-03-10T07:21:43.000',
  'closed_date': '2025-03-10T08:26:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10456',
  'incident_address': '1100 TELLER AVENUE',
  'street_name': 'TELLER AVENUE',
  'cross_street_1': 'EAST  166 STREET',
  'cross_street_2': 'EAST  167 STREET',
  'intersection_street_1': 'EAST  166 STREET',
  'intersection_street_2': 'EAST  167 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'TELLER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:26:11.000',
  'community_board': '04 BRONX',
  'bbl': '2024290001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008315',
  'y_coordinate_state_plane': '241614',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82981728199996',
  'longitude': '-73.91304138824778',
  'location': {'latitude': '40.82981728199996',
   'longitude': '-73.91304138824778',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308126',
  'created_date': '2025-03-10T07:21:51.000',
  'closed_date': '2025-03-10T10:18:59.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10019',
  'incident_address': '518 WEST   51 STREET',
  'street_name': 'WEST   51 STREET',
  'cross_street_1': '10 AVENUE',
  'cross_street_2': '11 AVENUE',
  'intersection_street_1': '10 AVENUE',
  'intersection_street_2': '11 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   51 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and has referred the complaint to the Department of Homeless Services (DHS) for further action. DHS will inspect the condition and update your Service Request with more information.',
  'resolution_action_updated_date': '2025-03-10T10:19:02.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010790029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986405',
  'y_coordinate_state_plane': '218232',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.76567257949761',
  'longitude': '-73.99222043242804',
  'location': {'latitude': '40.76567257949761',
   'longitude': '-73.99222043242804',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315774',
  'created_date': '2025-03-10T07:21:51.000',
  'closed_date': '2025-03-10T21:17:50.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10019',
  'incident_address': '518 WEST   51 STREET',
  'street_name': 'WEST   51 STREET',
  'cross_street_1': '10 AVENUE',
  'cross_street_2': '11 AVENUE',
  'intersection_street_1': '10 AVENUE',
  'intersection_street_2': '11 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   51 STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Homeless Services (DHS) visited the location and is coordinating with their agency partners to address the condition. No further information will be available with 311.',
  'resolution_action_updated_date': '2025-03-10T21:17:54.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010790029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986405',
  'y_coordinate_state_plane': '218232',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.76567257949761',
  'longitude': '-73.99222043242804',
  'location': {'latitude': '40.76567257949761',
   'longitude': '-73.99222043242804',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310464',
  'created_date': '2025-03-10T07:22:09.000',
  'closed_date': '2025-03-10T07:27:29.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Food Vendor',
  'location_type': 'Street',
  'incident_zip': '10006',
  'incident_address': '23 CORTLANDT STREET',
  'street_name': 'CORTLANDT STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'CHURCH STREET',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'CHURCH STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'CORTLANDT STREET',
  'status': 'Closed',
  'resolution_description': 'N/A',
  'resolution_action_updated_date': '2025-03-10T07:27:35.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1000627501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '981223',
  'y_coordinate_state_plane': '198027',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.710214604940916',
  'longitude': '-74.01091840314925',
  'location': {'latitude': '40.710214604940916',
   'longitude': '-74.01091840314925',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316247',
  'created_date': '2025-03-10T07:22:41.000',
  'closed_date': '2025-03-12T13:44:45.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11106',
  'incident_address': '31-22 34 STREET',
  'street_name': '34 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '01 QUEENS',
  'bbl': '4006230050',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1005947',
  'y_coordinate_state_plane': '217080',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.762484275630925',
  'longitude': '-73.92167739215988',
  'location': {'latitude': '40.762484275630925',
   'longitude': '-73.92167739215988',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313731',
  'created_date': '2025-03-10T07:22:42.000',
  'closed_date': '2025-03-11T17:19:14.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '1241 FULTON AVENUE',
  'street_name': 'FULTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '03 BRONX',
  'bbl': '2026100056',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010780',
  'y_coordinate_state_plane': '242119',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83119630099635',
  'longitude': '-73.90413214764696',
  'location': {'latitude': '40.83119630099635',
   'longitude': '-73.90413214764696',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307064',
  'created_date': '2025-03-10T07:22:49.000',
  'closed_date': '2025-03-11T17:09:46.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11375',
  'incident_address': '63-10 108 STREET',
  'street_name': '108 STREET',
  'address_type': 'ADDRESS',
  'city': 'FOREST HILLS',
  'status': 'Closed',
  'resolution_description': 'HPD responded to a complaint of no heat or hot water in the building. An occupant of the building confirmed heat and hot water had been restored when the Inspector attempted to conduct the inspection or contacted you at the phone number associated with the complaint. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '06 QUEENS',
  'bbl': '4021460028',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1025676',
  'y_coordinate_state_plane': '206981',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.734694673156454',
  'longitude': '-73.85052125577377',
  'location': {'latitude': '40.734694673156454',
   'longitude': '-73.85052125577377',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311131',
  'created_date': '2025-03-10T07:22:51.000',
  'closed_date': '2025-03-10T12:11:31.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10458',
  'incident_address': '2749 WEBSTER AVENUE',
  'street_name': 'WEBSTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '07 BRONX',
  'bbl': '2032780054',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015586',
  'y_coordinate_state_plane': '254615',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86547836035479',
  'longitude': '-73.88670697616791',
  'location': {'latitude': '40.86547836035479',
   'longitude': '-73.88670697616791',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307456',
  'created_date': '2025-03-10T07:22:59.000',
  'closed_date': '2025-03-10T07:26:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10027',
  'incident_address': '100 WEST  126 STREET',
  'street_name': 'WEST  126 STREET',
  'cross_street_1': 'LENOX AVENUE',
  'cross_street_2': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'intersection_street_1': 'LENOX AVENUE',
  'intersection_street_2': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  126 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T07:26:03.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019107501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999346',
  'y_coordinate_state_plane': '233890',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Truck',
  'latitude': '40.808636965091374',
  'longitude': '-73.94546813500382',
  'location': {'latitude': '40.808636965091374',
   'longitude': '-73.94546813500382',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312423',
  'created_date': '2025-03-10T07:23:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Air Quality',
  'descriptor': 'Air: Odor/Fumes, Vehicle Idling (AD3)',
  'incident_zip': '11214',
  'incident_address': '2405 84 STREET',
  'street_name': '84 STREET',
  'cross_street_1': '24 AVE',
  'cross_street_2': '25 AVE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Started',
  'resolution_description': 'The Department of Environmental Protection has inspected your complaint and determined that further investigation is required. More information will be available once the condition is resolved. Please visit nyc.gov/311 or call 311 at a later time to check the status of your complaint.',
  'resolution_action_updated_date': '2025-03-11T06:00:00.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3068540072',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987641',
  'y_coordinate_state_plane': '157939',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60018169935844',
  'longitude': '-73.98778880430528',
  'location': {'latitude': '40.60018169935844',
   'longitude': '-73.98778880430528',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309709',
  'created_date': '2025-03-10T07:23:03.000',
  'closed_date': '2025-03-10T12:11:31.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10458',
  'incident_address': '2749 WEBSTER AVENUE',
  'street_name': 'WEBSTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '07 BRONX',
  'bbl': '2032780054',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015586',
  'y_coordinate_state_plane': '254615',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86547836035479',
  'longitude': '-73.88670697616791',
  'location': {'latitude': '40.86547836035479',
   'longitude': '-73.88670697616791',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306336',
  'created_date': '2025-03-10T07:23:21.000',
  'closed_date': '2025-03-11T11:56:14.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Damaged Tree',
  'descriptor': 'Tree Leaning/Uprooted',
  'location_type': 'Street',
  'incident_zip': '11417',
  'incident_address': '132-23 83 STREET',
  'street_name': '83 STREET',
  'cross_street_1': 'SUTTER AVENUE',
  'cross_street_2': '133 AVENUE',
  'intersection_street_1': 'SUTTER AVENUE',
  'intersection_street_2': '133 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'landmark': '83 STREET',
  'status': 'Closed',
  'resolution_description': 'NYC Parks visited the site and inspected the condition. No work is necessary at this time.',
  'resolution_action_updated_date': '2025-03-11T11:56:17.000',
  'community_board': '10 QUEENS',
  'bbl': '4113460044',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024898',
  'y_coordinate_state_plane': '185210',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67494209870071',
  'longitude': '-73.85345994909936',
  'location': {'latitude': '40.67494209870071',
   'longitude': '-73.85345994909936',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309690',
  'created_date': '2025-03-10T07:23:21.000',
  'closed_date': '2025-03-10T21:12:21.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10457',
  'incident_address': '1781 CLAY AVENUE',
  'street_name': 'CLAY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '05 BRONX',
  'bbl': '2027990030',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010608',
  'y_coordinate_state_plane': '247596',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84622958076113',
  'longitude': '-73.9047321555997',
  'location': {'latitude': '40.84622958076113',
   'longitude': '-73.9047321555997',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312540',
  'created_date': '2025-03-10T07:23:24.000',
  'closed_date': '2025-03-10T10:51:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'License Plate Obscured',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10468',
  'incident_address': '2505 CRESTON AVENUE',
  'street_name': 'CRESTON AVENUE',
  'cross_street_1': 'EAST  190 STREET',
  'cross_street_2': 'EAST  191 STREET',
  'intersection_street_1': 'EAST  190 STREET',
  'intersection_street_2': 'EAST  191 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CRESTON AVENUE',
  'status': 'Closed',
  'resolution_description': "This complaint does not fall under the Police Department's jurisdiction.",
  'resolution_action_updated_date': '2025-03-10T10:51:38.000',
  'community_board': '07 BRONX',
  'bbl': '2031750001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012490',
  'y_coordinate_state_plane': '253730',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86305975230048',
  'longitude': '-73.89790405704288',
  'location': {'latitude': '40.86305975230048',
   'longitude': '-73.89790405704288',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314212',
  'created_date': '2025-03-10T07:23:35.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Residential Building/House',
  'incident_zip': '10458',
  'incident_address': '3050 VALENTINE AVENUE',
  'street_name': 'VALENTINE AVENUE',
  'cross_street_1': 'EAST 203 STREET',
  'cross_street_2': 'EAST 204 STREET',
  'intersection_street_1': 'EAST  203 STREET',
  'intersection_street_2': 'EAST  204 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'VALENTINE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team went to the location provided but could not find the individual that you reported.',
  'resolution_action_updated_date': '2025-03-10T09:22:10.000',
  'community_board': '07 BRONX',
  'bbl': '2033090100',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016071',
  'y_coordinate_state_plane': '257666',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8738506812941',
  'longitude': '-73.8849390069922',
  'location': {'latitude': '40.8738506812941',
   'longitude': '-73.8849390069922',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306746',
  'created_date': '2025-03-10T07:23:40.000',
  'closed_date': '2025-03-10T09:48:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11204',
  'incident_address': '1944 BAYRIDGE PARKWAY',
  'street_name': 'BAYRIDGE PARKWAY',
  'cross_street_1': '19 AVENUE',
  'cross_street_2': '20 AVENUE',
  'intersection_street_1': '19 AVENUE',
  'intersection_street_2': '20 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAY RIDGE PARKWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:48:05.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3062280024',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986210',
  'y_coordinate_state_plane': '162078',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.611542841070666',
  'longitude': '-73.9929407205098',
  'location': {'latitude': '40.611542841070666',
   'longitude': '-73.9929407205098',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309106',
  'created_date': '2025-03-10T07:24:57.000',
  'closed_date': '2025-03-10T09:19:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11239',
  'incident_address': '516 SCHROEDERS AVENUE',
  'street_name': 'SCHROEDERS AVENUE',
  'cross_street_1': 'ASHFORD STREET',
  'cross_street_2': 'ELTON STREET',
  'intersection_street_1': 'ASHFORD STREET',
  'intersection_street_2': 'ELTON STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SCHROEDERS AVENUE',
  'status': 'Closed',
  'resolution_description': "This complaint does not fall under the Police Department's jurisdiction.",
  'resolution_action_updated_date': '2025-03-10T09:19:33.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3044520423',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1019422',
  'y_coordinate_state_plane': '177846',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65475302381683',
  'longitude': '-73.87323985668276',
  'location': {'latitude': '40.65475302381683',
   'longitude': '-73.87323985668276',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311369',
  'created_date': '2025-03-10T07:25:09.000',
  'closed_date': '2025-03-10T09:36:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11414',
  'incident_address': '155-04 81 STREET',
  'street_name': '81 STREET',
  'cross_street_1': '155 AVENUE',
  'cross_street_2': '156 AVENUE',
  'intersection_street_1': '155 AVENUE',
  'intersection_street_2': '156 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'HOWARD BEACH',
  'landmark': '81 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T09:36:23.000',
  'community_board': '10 QUEENS',
  'bbl': '4114590001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1025107',
  'y_coordinate_state_plane': '181205',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.66394832144617',
  'longitude': '-73.8527307588702',
  'location': {'latitude': '40.66394832144617',
   'longitude': '-73.8527307588702',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306171',
  'created_date': '2025-03-10T07:25:16.000',
  'closed_date': '2025-03-10T12:52:14.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10312',
  'incident_address': '46 ANACONDA STREET',
  'street_name': 'ANACONDA STREET',
  'cross_street_1': 'SPERRY PLACE',
  'cross_street_2': 'CASTOR PLACE',
  'intersection_street_1': 'SPERRY PLACE',
  'intersection_street_2': 'CASTOR PLACE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'ANACONDA STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation has noted this as a location of concern.',
  'resolution_action_updated_date': '2025-03-10T12:52:17.000',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5060480043',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '929839',
  'y_coordinate_state_plane': '138291',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.546085540131074',
  'longitude': '-74.19577883690656',
  'location': {'latitude': '40.546085540131074',
   'longitude': '-74.19577883690656',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312988',
  'created_date': '2025-03-10T07:25:35.000',
  'closed_date': '2025-03-10T15:21:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10462',
  'incident_address': '1735 PURDY STREET',
  'street_name': 'PURDY STREET',
  'cross_street_1': 'METROPOLITAN AVENUE',
  'cross_street_2': 'EAST TREMONT AVENUE',
  'intersection_street_1': 'METROPOLITAN AVENUE',
  'intersection_street_2': 'EAST TREMONT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'PURDY STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T15:21:13.000',
  'community_board': '09 BRONX',
  'bbl': '2039447501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024398',
  'y_coordinate_state_plane': '245967',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84170652729604',
  'longitude': '-73.85489967523307',
  'location': {'latitude': '40.84170652729604',
   'longitude': '-73.85489967523307',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309170',
  'created_date': '2025-03-10T07:25:41.000',
  'closed_date': '2025-03-10T07:25:41.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Boilers',
  'descriptor': 'Boiler - Defective/Inoperative/No Permit',
  'incident_zip': '11233',
  'incident_address': '2155 DEAN STREET',
  'street_name': 'DEAN STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Buildings investigated this complaint and issued an Office of Administrative Trials and Hearings (OATH) summons.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3014400073',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1007560',
  'y_coordinate_state_plane': '185220',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.675032178597',
  'longitude': '-73.91596506271206',
  'location': {'latitude': '40.675032178597',
   'longitude': '-73.91596506271206',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309749',
  'created_date': '2025-03-10T07:25:48.000',
  'closed_date': '2025-03-10T12:11:31.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10458',
  'incident_address': '2749 WEBSTER AVENUE',
  'street_name': 'WEBSTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '07 BRONX',
  'bbl': '2032780054',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015586',
  'y_coordinate_state_plane': '254615',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86547836035479',
  'longitude': '-73.88670697616791',
  'location': {'latitude': '40.86547836035479',
   'longitude': '-73.88670697616791',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313618',
  'created_date': '2025-03-10T07:25:49.000',
  'closed_date': '2025-03-10T12:11:31.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10458',
  'incident_address': '2749 WEBSTER AVENUE',
  'street_name': 'WEBSTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '07 BRONX',
  'bbl': '2032780054',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015586',
  'y_coordinate_state_plane': '254615',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86547836035479',
  'longitude': '-73.88670697616791',
  'location': {'latitude': '40.86547836035479',
   'longitude': '-73.88670697616791',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311392',
  'created_date': '2025-03-10T07:25:51.000',
  'closed_date': '2025-03-10T08:03:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10466',
  'incident_address': '4329 MATILDA AVENUE',
  'street_name': 'MATILDA AVENUE',
  'cross_street_1': 'EAST  236 STREET',
  'cross_street_2': 'EAST  237 STREET',
  'intersection_street_1': 'EAST  236 STREET',
  'intersection_street_2': 'EAST  237 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MATILDA AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2025-03-10T08:03:41.000',
  'community_board': '12 BRONX',
  'bbl': '2050370011',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023617',
  'y_coordinate_state_plane': '266160',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.897133588254775',
  'longitude': '-73.85760367515051',
  'location': {'latitude': '40.897133588254775',
   'longitude': '-73.85760367515051',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308514',
  'created_date': '2025-03-10T07:25:52.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11212',
  'incident_address': '458 CHESTER STREET',
  'street_name': 'CHESTER STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3036010026',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1009410',
  'y_coordinate_state_plane': '179844',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66027119922655',
  'longitude': '-73.90931569188027',
  'location': {'latitude': '40.66027119922655',
   'longitude': '-73.90931569188027',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308630',
  'created_date': '2025-03-10T07:26:00.000',
  'closed_date': '2025-03-12T21:00:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Hydrant Running Full (WA4)',
  'incident_zip': '11361',
  'incident_address': '209-03 32 AVENUE',
  'street_name': '32 AVENUE',
  'cross_street_1': 'CORPORAL KENNEDY ST',
  'cross_street_2': '210 ST',
  'address_type': 'ADDRESS',
  'city': 'BAYSIDE',
  'status': 'Closed',
  'resolution_description': 'The Department of Environment Protection inspected your complaint but could not find the problem you reported. If the condition persists, please call 311 (or 212-639-9675 if calling from a non-New York City area code) with more detailed information to submit a new complaint.',
  'resolution_action_updated_date': '2025-03-12T21:00:00.000',
  'community_board': '11 QUEENS',
  'bbl': '4059940065',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1045106',
  'y_coordinate_state_plane': '220756',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77239108706989',
  'longitude': '-73.78028694986178',
  'location': {'latitude': '40.77239108706989',
   'longitude': '-73.78028694986178',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311993',
  'created_date': '2025-03-10T07:26:33.000',
  'closed_date': '2025-03-10T20:32:25.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '10012',
  'incident_address': '103 MAC DOUGAL STREET',
  'street_name': 'MAC DOUGAL STREET',
  'cross_street_1': 'BLEECKER STREET',
  'cross_street_2': 'MINETTA LANE',
  'intersection_street_1': 'BLEECKER STREET',
  'intersection_street_2': 'MINETTA LANE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'MAC DOUGAL STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-10T20:32:27.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005420049',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984019',
  'y_coordinate_state_plane': '205092',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72960684303375',
  'longitude': '-74.00083346055158',
  'location': {'latitude': '40.72960684303375',
   'longitude': '-74.00083346055158',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310462',
  'created_date': '2025-03-10T07:26:38.000',
  'closed_date': '2025-03-10T07:27:28.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Food Vendor',
  'location_type': 'Street',
  'incident_zip': '10036',
  'incident_address': '1155 AVENUE OF THE AMERICAS',
  'street_name': 'AVENUE OF THE AMERICAS',
  'cross_street_1': 'WEST   44 STREET',
  'cross_street_2': 'WEST   45 STREET',
  'intersection_street_1': 'WEST   44 STREET',
  'intersection_street_2': 'WEST   45 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'AVENUE OF THE AMERICAS',
  'status': 'Closed',
  'resolution_description': 'N/A',
  'resolution_action_updated_date': '2025-03-10T07:27:32.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1009970029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989008',
  'y_coordinate_state_plane': '214938',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75663037773601',
  'longitude': '-73.98282591276873',
  'location': {'latitude': '40.75663037773601',
   'longitude': '-73.98282591276873',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316564',
  'created_date': '2025-03-10T07:27:00.000',
  'closed_date': '2025-03-10T14:35:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Wireless',
  'intersection_street_1': '42 AVE',
  'intersection_street_2': 'WOF 108 ST',
  'address_type': 'INTERSECTION',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-10T14:35:00.000',
  'community_board': 'Unspecified QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '64310289',
  'created_date': '2025-03-10T07:27:09.000',
  'closed_date': '2025-03-10T10:00:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Traffic',
  'descriptor': 'Congestion/Gridlock',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10019',
  'incident_address': '614 WEST   56 STREET',
  'street_name': 'WEST   56 STREET',
  'cross_street_1': '11 AVENUE',
  'cross_street_2': '12 AVENUE',
  'intersection_street_1': '11 AVENUE',
  'intersection_street_2': '12 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   56 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T10:01:02.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1011030041',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986333',
  'y_coordinate_state_plane': '219763',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.76987479451845',
  'longitude': '-73.99247987853389',
  'location': {'latitude': '40.76987479451845',
   'longitude': '-73.99247987853389',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311815',
  'created_date': '2025-03-10T07:27:13.000',
  'agency': 'TLC',
  'agency_name': 'Taxi and Limousine Commission',
  'complaint_type': 'Taxi Complaint',
  'descriptor': 'Driver Complaint - Passenger',
  'location_type': 'Street',
  'incident_zip': '11430',
  'incident_address': 'JOHN F KENNEDY AIRPORT',
  'street_name': 'JOHN F KENNEDY AIRPORT',
  'cross_street_1': 'BEND',
  'cross_street_2': 'AIRTRAIN-HOWARD BCH/JAMAICA LINE',
  'intersection_street_1': 'BEND',
  'intersection_street_2': 'AIRTRAIN-HOWARD BCH/JAMAICA LINE',
  'address_type': 'UNRECOGNIZED',
  'city': 'JAMAICA',
  'landmark': 'JOHN F KENNEDY AIRPORT',
  'status': 'In Progress',
  'community_board': '83 QUEENS',
  'bbl': '4142600001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1043001',
  'y_coordinate_state_plane': '175548',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'taxi_pick_up_location': 'JOHN F KENNEDY AIRPORT, QUEENS (JAMAICA) ,NY, 11430',
  'latitude': '40.64832048620134',
  'longitude': '-73.78828125130184',
  'location': {'latitude': '40.64832048620134',
   'longitude': '-73.78828125130184',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314012',
  'created_date': '2025-03-10T07:27:22.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Sidewalk Condition',
  'descriptor': 'Broken Sidewalk',
  'location_type': 'Sidewalk',
  'incident_zip': '11413',
  'incident_address': '190-06 WILLIAMSON AVENUE',
  'street_name': 'WILLIAMSON AVENUE',
  'cross_street_1': 'LUCAS STREET',
  'cross_street_2': '193 STREET',
  'intersection_street_1': 'LUCAS STREET',
  'intersection_street_2': '193 STREET',
  'address_type': 'ADDRESS',
  'city': 'SPRINGFIELD GARDENS',
  'landmark': 'WILLIAMSON AVENUE',
  'status': 'In Progress',
  'community_board': '12 QUEENS',
  'bbl': '4127270074',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1052392',
  'y_coordinate_state_plane': '188293',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.683235263325415',
  'longitude': '-73.75431060755712',
  'location': {'latitude': '40.683235263325415',
   'longitude': '-73.75431060755712',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315608',
  'created_date': '2025-03-10T07:27:31.000',
  'closed_date': '2025-03-10T08:04:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10470',
  'incident_address': '372 EAST  235 STREET',
  'street_name': 'EAST  235 STREET',
  'cross_street_1': 'MARTHA AVENUE',
  'cross_street_2': 'VIREO AVENUE',
  'intersection_street_1': 'MARTHA AVENUE',
  'intersection_street_2': 'VIREO AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  235 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:04:04.000',
  'community_board': '12 BRONX',
  'bbl': '2033830048',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021658',
  'y_coordinate_state_plane': '266420',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.89785572732723',
  'longitude': '-73.86468820674861',
  'location': {'latitude': '40.89785572732723',
   'longitude': '-73.86468820674861',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314118',
  'created_date': '2025-03-10T07:27:41.000',
  'closed_date': '2025-03-10T09:34:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10461',
  'incident_address': '1025 ESPLANADE',
  'street_name': 'ESPLANADE',
  'cross_street_1': 'PAULDING AVENUE',
  'cross_street_2': 'HONE AVENUE',
  'intersection_street_1': 'PAULDING AVENUE',
  'intersection_street_2': 'HONE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ESPLANADE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T09:34:54.000',
  'community_board': '11 BRONX',
  'bbl': '2043280023',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023108',
  'y_coordinate_state_plane': '250863',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85515035576741',
  'longitude': '-73.85953352784013',
  'location': {'latitude': '40.85515035576741',
   'longitude': '-73.85953352784013',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315918',
  'created_date': '2025-03-10T07:27:50.000',
  'closed_date': '2025-03-10T20:32:49.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '10012',
  'incident_address': '496 LA GUARDIA PLACE',
  'street_name': 'LA GUARDIA PLACE',
  'cross_street_1': 'WEST HOUSTON STREET',
  'cross_street_2': 'BLEECKER STREET',
  'intersection_street_1': 'WEST HOUSTON STREET',
  'intersection_street_2': 'BLEECKER STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'LA GUARDIA PLACE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-10T20:32:51.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005257502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984370',
  'y_coordinate_state_plane': '204274',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.727361634860884',
  'longitude': '-73.99956704806702',
  'location': {'latitude': '40.727361634860884',
   'longitude': '-73.99956704806702',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313171',
  'created_date': '2025-03-10T07:27:51.000',
  'closed_date': '2025-03-10T09:11:35.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10468',
  'incident_address': '2396 MORRIS AVENUE',
  'street_name': 'MORRIS AVENUE',
  'cross_street_1': 'EAST  184 STREET',
  'cross_street_2': 'EAST FORDHAM ROAD',
  'intersection_street_1': 'EAST  184 STREET',
  'intersection_street_2': 'EAST FORDHAM ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MORRIS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:11:39.000',
  'community_board': '05 BRONX',
  'bbl': '2031730005',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011782',
  'y_coordinate_state_plane': '252825',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86057803832132',
  'longitude': '-73.90046740161462',
  'location': {'latitude': '40.86057803832132',
   'longitude': '-73.90046740161462',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313197',
  'created_date': '2025-03-10T07:27:53.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Subway',
  'address_type': 'ADDRESS',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team went to the location provided but could not find the individual that you reported.',
  'resolution_action_updated_date': '2025-03-11T18:54:52.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996360',
  'y_coordinate_state_plane': '187381',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'bridge_highway_name': 'C',
  'bridge_highway_segment': 'Platform',
  'latitude': '40.680986040504784',
  'longitude': '-73.95633831684367',
  'location': {'latitude': '40.680986040504784',
   'longitude': '-73.95633831684367',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307355',
  'created_date': '2025-03-10T07:27:54.000',
  'closed_date': '2025-03-10T11:45:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11418',
  'incident_address': '104-22 88 AVENUE',
  'street_name': '88 AVENUE',
  'cross_street_1': '104 STREET',
  'cross_street_2': '107 STREET',
  'intersection_street_1': '104 STREET',
  'intersection_street_2': '107 STREET',
  'address_type': 'ADDRESS',
  'city': 'RICHMOND HILL',
  'landmark': '88 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T11:45:26.000',
  'community_board': '09 QUEENS',
  'bbl': '4092900012',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028019',
  'y_coordinate_state_plane': '192319',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.69443976759336',
  'longitude': '-73.84216228049918',
  'location': {'latitude': '40.69443976759336',
   'longitude': '-73.84216228049918',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311354',
  'created_date': '2025-03-10T07:28:26.000',
  'closed_date': '2025-03-11T18:54:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11373',
  'incident_address': '94-42 59 AVENUE',
  'street_name': '59 AVENUE',
  'cross_street_1': '94 STREET',
  'cross_street_2': 'JUNCTION BOULEVARD',
  'intersection_street_1': '94 STREET',
  'intersection_street_2': 'JUNCTION BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': '59 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-11T18:55:01.000',
  'community_board': '04 QUEENS',
  'bbl': '4019127501',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021362',
  'y_coordinate_state_plane': '207100',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73504045199535',
  'longitude': '-73.86608691614192',
  'location': {'latitude': '40.73504045199535',
   'longitude': '-73.86608691614192',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315283',
  'created_date': '2025-03-10T07:28:32.000',
  'closed_date': '2025-03-10T08:37:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '2014 82 STREET',
  'street_name': '82 STREET',
  'cross_street_1': '20 AVENUE',
  'cross_street_2': '21 AVENUE',
  'intersection_street_1': '20 AVENUE',
  'intersection_street_2': '21 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '82 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:37:13.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3063170012',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985544',
  'y_coordinate_state_plane': '160259',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60655018142679',
  'longitude': '-73.99533978340158',
  'location': {'latitude': '40.60655018142679',
   'longitude': '-73.99533978340158',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312750',
  'created_date': '2025-03-10T07:28:41.000',
  'closed_date': '2025-03-14T00:00:00.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Elevator',
  'descriptor': 'Elevator - Multiple Devices On Property',
  'incident_zip': '11225',
  'incident_address': '220 MONTGOMERY STREET',
  'street_name': 'MONTGOMERY STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'The Department of Buildings reviewed this complaint and closed it. If the problem still exists, please call 311 and file a new complaint. If you are outside of New York City, please call (212) NEW-YORK (212-639-9675).',
  'resolution_action_updated_date': '2025-03-14T00:00:00.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3013020001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996051',
  'y_coordinate_state_plane': '181858',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66582706516124',
  'longitude': '-73.95746206244218',
  'location': {'latitude': '40.66582706516124',
   'longitude': '-73.95746206244218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307069',
  'created_date': '2025-03-10T07:28:47.000',
  'closed_date': '2025-03-11T17:09:46.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11375',
  'incident_address': '63-10 108 STREET',
  'street_name': '108 STREET',
  'address_type': 'ADDRESS',
  'city': 'FOREST HILLS',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '06 QUEENS',
  'bbl': '4021460028',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1025676',
  'y_coordinate_state_plane': '206981',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.734694673156454',
  'longitude': '-73.85052125577377',
  'location': {'latitude': '40.734694673156454',
   'longitude': '-73.85052125577377',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312392',
  'created_date': '2025-03-10T07:28:49.000',
  'closed_date': '2025-03-10T12:11:31.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10458',
  'incident_address': '2749 WEBSTER AVENUE',
  'street_name': 'WEBSTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '07 BRONX',
  'bbl': '2032780054',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015586',
  'y_coordinate_state_plane': '254615',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86547836035479',
  'longitude': '-73.88670697616791',
  'location': {'latitude': '40.86547836035479',
   'longitude': '-73.88670697616791',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311605',
  'created_date': '2025-03-10T07:28:54.000',
  'closed_date': '2025-03-10T08:29:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Bike Lane',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11238',
  'incident_address': '609 DEAN STREET',
  'street_name': 'DEAN STREET',
  'cross_street_1': 'CARLTON AVENUE',
  'cross_street_2': 'VANDERBILT AVENUE',
  'intersection_street_1': 'CARLTON AVENUE',
  'intersection_street_2': 'VANDERBILT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'DEAN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:29:06.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011297503',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '992624',
  'y_coordinate_state_plane': '187233',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.680584136922455',
  'longitude': '-73.96980836305902',
  'location': {'latitude': '40.680584136922455',
   'longitude': '-73.96980836305902',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312145',
  'created_date': '2025-03-10T07:28:56.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Removal Request',
  'location_type': 'Sidewalk',
  'incident_zip': '10460',
  'incident_address': '1685 BOONE AVENUE',
  'street_name': 'BOONE AVENUE',
  'cross_street_1': 'EAST  173 STREET',
  'cross_street_2': 'EAST  174 STREET',
  'intersection_street_1': 'EAST  173 STREET',
  'intersection_street_2': 'EAST  174 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BOONE AVENUE',
  'status': 'In Progress',
  'resolution_description': 'The Department of Sanitation cleaned the location.',
  'resolution_action_updated_date': '2025-03-10T23:25:44.000',
  'community_board': '03 BRONX',
  'bbl': '2030100040',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016327',
  'y_coordinate_state_plane': '243421',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83475150874454',
  'longitude': '-73.88408150363757',
  'location': {'latitude': '40.83475150874454',
   'longitude': '-73.88408150363757',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64317005',
  'created_date': '2025-03-10T07:29:00.000',
  'closed_date': '2025-03-11T13:25:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Pedestrian Signal',
  'incident_zip': '10305',
  'intersection_street_1': 'BAY STREET',
  'intersection_street_2': 'SCHOOL ROAD',
  'address_type': 'INTERSECTION',
  'city': 'STATEN ISLAND',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-11T13:25:00.000',
  'community_board': '01 STATEN ISLAND',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '967315',
  'y_coordinate_state_plane': '160465',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.607099521659784',
  'longitude': '-74.0609902811645',
  'location': {'latitude': '40.607099521659784',
   'longitude': '-74.0609902811645',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313323',
  'created_date': '2025-03-10T07:29:22.000',
  'closed_date': '2025-03-10T20:34:29.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '10012',
  'incident_address': '151 WOOSTER STREET',
  'street_name': 'WOOSTER STREET',
  'cross_street_1': 'PRINCE STREET',
  'cross_street_2': 'WEST HOUSTON STREET',
  'intersection_street_1': 'PRINCE STREET',
  'intersection_street_2': 'WEST HOUSTON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WOOSTER STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation has investigated the complaint and addressed the issue. If the problem persists, call 311 to enter a new complaint. If you are outside of New York City, please call (212) NEW-YORK (212-639-9675).',
  'resolution_action_updated_date': '2025-03-10T20:34:29.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005157502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984387',
  'y_coordinate_state_plane': '203814',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.726099046569686',
  'longitude': '-73.99950572257461',
  'location': {'latitude': '40.726099046569686',
   'longitude': '-73.99950572257461',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308775',
  'created_date': '2025-03-10T07:29:31.000',
  'closed_date': '2025-03-10T08:31:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11238',
  'incident_address': '645 DEAN STREET',
  'street_name': 'DEAN STREET',
  'cross_street_1': 'CARLTON AVENUE',
  'cross_street_2': 'VANDERBILT AVENUE',
  'intersection_street_1': 'CARLTON AVENUE',
  'intersection_street_2': 'VANDERBILT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'DEAN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:31:36.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011297503',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '992854',
  'y_coordinate_state_plane': '187170',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68041099565804',
  'longitude': '-73.96897920108832',
  'location': {'latitude': '40.68041099565804',
   'longitude': '-73.96897920108832',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313842',
  'created_date': '2025-03-10T07:29:35.000',
  'closed_date': '2025-03-11T11:50:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '10028',
  'incident_address': 'EAST   85 STREET',
  'street_name': 'EAST   85 STREET',
  'cross_street_1': '2 AVENUE',
  'cross_street_2': '3 AVENUE',
  'address_type': 'BLOCKFACE',
  'city': 'MANHATTAN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected this complaint and repaired the problem.',
  'resolution_action_updated_date': '2025-03-11T11:50:00.000',
  'community_board': '08 MANHATTAN',
  'borough': 'MANHATTAN',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN'},
 {'unique_key': '64306655',
  'created_date': '2025-03-10T07:29:56.000',
  'closed_date': '2025-03-11T09:18:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11106',
  'incident_address': '35-48 33 STREET',
  'street_name': '33 STREET',
  'cross_street_1': '35 AVENUE',
  'cross_street_2': '36 AVENUE',
  'intersection_street_1': '35 AVENUE',
  'intersection_street_2': '36 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '33 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2025-03-11T09:19:00.000',
  'community_board': '01 QUEENS',
  'bbl': '4006050044',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1004328',
  'y_coordinate_state_plane': '214943',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75662258497717',
  'longitude': '-73.92752809579304',
  'location': {'latitude': '40.75662258497717',
   'longitude': '-73.92752809579304',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309447',
  'created_date': '2025-03-10T07:29:56.000',
  'closed_date': '2025-03-13T11:27:47.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Posting',
  'descriptor': 'Poster or Sign',
  'location_type': 'Sidewalk',
  'incident_zip': '10312',
  'incident_address': '2094 ARTHUR KILL ROAD',
  'street_name': 'ARTHUR KILL ROAD',
  'cross_street_1': 'CODY PLACE',
  'cross_street_2': 'HUGUENOT AVENUE',
  'intersection_street_1': 'CODY PLACE',
  'intersection_street_2': 'HUGUENOT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'ARTHUR KILL ROAD',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation has removed illegal postings from the location. The Department will issue a Notice of Violation to the responsible party once it is identified.',
  'resolution_action_updated_date': '2025-03-13T11:27:50.000',
  'community_board': '03 STATEN ISLAND',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '927839',
  'y_coordinate_state_plane': '141914',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.55601746365725',
  'longitude': '-74.20300531872232',
  'location': {'latitude': '40.55601746365725',
   'longitude': '-74.20300531872232',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311710',
  'created_date': '2025-03-10T07:30:39.000',
  'closed_date': '2025-03-10T08:47:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11435',
  'incident_address': '91-15 139 STREET',
  'street_name': '139 STREET',
  'cross_street_1': '91 AVENUE',
  'cross_street_2': 'ARCHER AVENUE',
  'intersection_street_1': '91 AVENUE',
  'intersection_street_2': 'ARCHER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '139 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:47:48.000',
  'community_board': '12 QUEENS',
  'bbl': '4099820027',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036432',
  'y_coordinate_state_plane': '194382',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70005660267976',
  'longitude': '-73.81180781659057',
  'location': {'latitude': '40.70005660267976',
   'longitude': '-73.81180781659057',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316065',
  'created_date': '2025-03-10T07:30:40.000',
  'closed_date': '2025-03-11T23:10:18.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10454',
  'incident_address': '749 ST MARYS STREET',
  'street_name': 'ST MARYS STREET',
  'cross_street_1': 'CONCORD AVENUE',
  'cross_street_2': 'WALES AVENUE',
  'intersection_street_1': 'CONCORD AVENUE',
  'intersection_street_2': 'WALES AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ST MARYS STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation cleaned the location.',
  'resolution_action_updated_date': '2025-03-11T23:10:21.000',
  'community_board': '01 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009295',
  'y_coordinate_state_plane': '233871',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.80856221404051',
  'longitude': '-73.90952906865708',
  'location': {'latitude': '40.80856221404051',
   'longitude': '-73.90952906865708',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307375',
  'created_date': '2025-03-10T07:30:57.000',
  'closed_date': '2025-03-14T12:23:20.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Smoking or Vaping',
  'descriptor': 'Allowed in Smoke Free Area',
  'location_type': 'Residential Building',
  'incident_zip': '11221',
  'incident_address': '651 MADISON STREET',
  'street_name': 'MADISON STREET',
  'cross_street_1': 'STUYVESANT AVENUE',
  'cross_street_2': 'MALCOLM X BOULEVARD',
  'intersection_street_1': 'STUYVESANT AVENUE',
  'intersection_street_2': 'MALCOLM X BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MADISON STREET',
  'status': 'Closed',
  'resolution_description': 'The NYC Health Department has responded to your service request. For inspection results, please call (212) 676-1600 or email infobfscs@health.nyc.gov to request an inspection report. This service request has been closed.',
  'resolution_action_updated_date': '2025-03-14T12:23:25.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3016410055',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003345',
  'y_coordinate_state_plane': '189563',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68696281874314',
  'longitude': '-73.93114825601698',
  'location': {'latitude': '40.68696281874314',
   'longitude': '-73.93114825601698',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307615',
  'created_date': '2025-03-10T07:31:02.000',
  'closed_date': '2025-03-10T08:36:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11204',
  'incident_address': '2028 64 STREET',
  'street_name': '64 STREET',
  'cross_street_1': '20 AVENUE',
  'cross_street_2': '21 AVENUE',
  'intersection_street_1': '20 AVENUE',
  'intersection_street_2': '21 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '64 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:36:11.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3055490018',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988558',
  'y_coordinate_state_plane': '163941',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6166555608207',
  'longitude': '-73.98448280333125',
  'location': {'latitude': '40.6166555608207',
   'longitude': '-73.98448280333125',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307832',
  'created_date': '2025-03-10T07:31:08.000',
  'closed_date': '2025-03-10T09:15:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11368',
  'incident_address': '34-55 112 STREET',
  'street_name': '112 STREET',
  'cross_street_1': '34 AVENUE',
  'cross_street_2': '37 AVENUE',
  'intersection_street_1': '34 AVENUE',
  'intersection_street_2': '37 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '112 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T09:15:29.000',
  'community_board': '03 QUEENS',
  'bbl': '4017560025',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024045',
  'y_coordinate_state_plane': '214571',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.755534783236925',
  'longitude': '-73.85636152535838',
  'location': {'latitude': '40.755534783236925',
   'longitude': '-73.85636152535838',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308017',
  'created_date': '2025-03-10T07:31:26.000',
  'closed_date': '2025-03-10T13:40:21.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10455',
  'incident_address': '2857 3 AVENUE',
  'street_name': '3 AVENUE',
  'cross_street_1': 'EAST  149 STREET',
  'cross_street_2': 'EAST  150 STREET',
  'intersection_street_1': 'EAST  149 STREET',
  'intersection_street_2': 'EAST  150 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': '3 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-10T13:40:29.000',
  'community_board': '01 BRONX',
  'bbl': '2023280039',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007138',
  'y_coordinate_state_plane': '236674',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81626151618046',
  'longitude': '-73.9173113125218',
  'location': {'latitude': '40.81626151618046',
   'longitude': '-73.9173113125218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314777',
  'created_date': '2025-03-10T07:31:26.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'GENERAL',
  'descriptor': 'BELL/BUZZER/INTERCOM',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11106',
  'incident_address': '31-35 CRESCENT STREET',
  'street_name': 'CRESCENT STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '01 QUEENS',
  'bbl': '4005790036',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1004421',
  'y_coordinate_state_plane': '217880',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76468368198577',
  'longitude': '-73.92718359841146',
  'location': {'latitude': '40.76468368198577',
   'longitude': '-73.92718359841146',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307808',
  'created_date': '2025-03-10T07:31:37.000',
  'closed_date': '2025-03-10T08:24:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11222',
  'incident_address': '255 JAVA STREET',
  'street_name': 'JAVA STREET',
  'cross_street_1': 'MCGUINNESS BOULEVARD',
  'cross_street_2': 'PROVOST STREET',
  'intersection_street_1': 'MCGUINNESS BOULEVARD',
  'intersection_street_2': 'PROVOST STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'JAVA STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:25:00.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3025420037',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998073',
  'y_coordinate_state_plane': '205982',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.73203887675091',
  'longitude': '-73.95012404193479',
  'location': {'latitude': '40.73203887675091',
   'longitude': '-73.95012404193479',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307057',
  'created_date': '2025-03-10T07:31:40.000',
  'closed_date': '2025-03-10T12:11:31.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10458',
  'incident_address': '2749 WEBSTER AVENUE',
  'street_name': 'WEBSTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '07 BRONX',
  'bbl': '2032780054',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015586',
  'y_coordinate_state_plane': '254615',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86547836035479',
  'longitude': '-73.88670697616791',
  'location': {'latitude': '40.86547836035479',
   'longitude': '-73.88670697616791',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313808',
  'created_date': '2025-03-10T07:31:42.000',
  'closed_date': '2025-03-12T00:00:00.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'General Construction/Plumbing',
  'descriptor': 'Building Permit - None',
  'incident_zip': '11367',
  'incident_address': '147-66 77 AVENUE',
  'street_name': '77 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'status': 'Closed',
  'resolution_description': 'The Department of Buildings investigated this complaint and determined that no further action was necessary.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '08 QUEENS',
  'bbl': '4066870030',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035072',
  'y_coordinate_state_plane': '202391',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72204727148413',
  'longitude': '-73.81665212810965',
  'location': {'latitude': '40.72204727148413',
   'longitude': '-73.81665212810965',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307040',
  'created_date': '2025-03-10T07:31:50.000',
  'closed_date': '2025-03-10T19:22:35.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11377',
  'incident_address': '37-80 64 STREET',
  'street_name': '64 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'status': 'Closed',
  'resolution_description': "The Department of Housing Preservation and Development conducted or attempted to conduct an inspection.  More information about inspection results can be found through HPD's website at www.nyc.gov/hpd by using HPDONLINE (enter your address on the home page) and entering your SR number under the complaint status option.",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '02 QUEENS',
  'bbl': '4012180001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1012229',
  'y_coordinate_state_plane': '211907',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.748268067634456',
  'longitude': '-73.89902194751058',
  'location': {'latitude': '40.748268067634456',
   'longitude': '-73.89902194751058',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309744',
  'created_date': '2025-03-10T07:31:54.000',
  'closed_date': '2025-03-10T12:11:31.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10458',
  'incident_address': '2749 WEBSTER AVENUE',
  'street_name': 'WEBSTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '07 BRONX',
  'bbl': '2032780054',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015586',
  'y_coordinate_state_plane': '254615',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86547836035479',
  'longitude': '-73.88670697616791',
  'location': {'latitude': '40.86547836035479',
   'longitude': '-73.88670697616791',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315232',
  'created_date': '2025-03-10T07:31:58.000',
  'closed_date': '2025-03-10T08:15:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11385',
  'incident_address': '1671 LINDEN STREET',
  'street_name': 'LINDEN STREET',
  'cross_street_1': 'LINDEN STREET',
  'cross_street_2': 'CYPRESS AVENUE',
  'intersection_street_1': 'LINDEN STREET',
  'intersection_street_2': 'CYPRESS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'LINDEN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:15:20.000',
  'community_board': '05 QUEENS',
  'bbl': '4034430047',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008942',
  'y_coordinate_state_plane': '195033',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.701962848737146',
  'longitude': '-73.91094684966724',
  'location': {'latitude': '40.701962848737146',
   'longitude': '-73.91094684966724',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308054',
  'created_date': '2025-03-10T07:32:01.000',
  'closed_date': '2025-03-10T08:01:40.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Food Vendor',
  'location_type': 'Street',
  'incident_zip': '10007',
  'incident_address': '55 CHURCH STREET',
  'street_name': 'CHURCH STREET',
  'cross_street_1': 'DEY STREET',
  'cross_street_2': 'FULTON STREET',
  'intersection_street_1': 'DEY STREET',
  'intersection_street_2': 'FULTON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'CHURCH STREET',
  'status': 'Closed',
  'resolution_description': 'N/A',
  'resolution_action_updated_date': '2025-03-10T08:01:44.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1000800004',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '981338',
  'y_coordinate_state_plane': '198478',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.711452531399594',
  'longitude': '-74.0105037926806',
  'location': {'latitude': '40.711452531399594',
   'longitude': '-74.0105037926806',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313322',
  'created_date': '2025-03-10T07:32:03.000',
  'closed_date': '2025-03-10T20:35:17.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '10012',
  'incident_address': '155 WOOSTER STREET',
  'street_name': 'WOOSTER STREET',
  'cross_street_1': 'PRINCE STREET',
  'cross_street_2': 'WEST HOUSTON STREET',
  'intersection_street_1': 'PRINCE STREET',
  'intersection_street_2': 'WEST HOUSTON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WOOSTER STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation has investigated the complaint and addressed the issue. If the problem persists, call 311 to enter a new complaint. If you are outside of New York City, please call (212) NEW-YORK (212-639-9675).',
  'resolution_action_updated_date': '2025-03-10T20:35:17.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005150025',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984412',
  'y_coordinate_state_plane': '203854',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72620883642049',
  'longitude': '-73.99941552500123',
  'location': {'latitude': '40.72620883642049',
   'longitude': '-73.99941552500123',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313639',
  'created_date': '2025-03-10T07:32:08.000',
  'closed_date': '2025-03-10T08:54:01.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '530 EAST  169 STREET',
  'street_name': 'EAST  169 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '03 BRONX',
  'bbl': '2026100012',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010629',
  'y_coordinate_state_plane': '242635',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83261302416413',
  'longitude': '-73.90467576630016',
  'location': {'latitude': '40.83261302416413',
   'longitude': '-73.90467576630016',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313994',
  'created_date': '2025-03-10T07:32:19.000',
  'agency': 'EDC',
  'agency_name': 'Economic Development Corporation',
  'complaint_type': 'Noise - Helicopter',
  'descriptor': 'Other',
  'location_type': 'Above Address',
  'incident_zip': '11414',
  'incident_address': '86-10 151 AVENUE',
  'street_name': '151 AVENUE',
  'cross_street_1': '85 STREET',
  'cross_street_2': '88 STREET',
  'intersection_street_1': '85 STREET',
  'intersection_street_2': '88 STREET',
  'address_type': 'ADDRESS',
  'city': 'HOWARD BEACH',
  'landmark': '151 AVENUE',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'bbl': '4114310015',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1026272',
  'y_coordinate_state_plane': '182868',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.66850742742437',
  'longitude': '-73.84852115365172',
  'location': {'latitude': '40.66850742742437',
   'longitude': '-73.84852115365172',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309641',
  'created_date': '2025-03-10T07:32:20.000',
  'closed_date': '2025-03-10T08:13:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10029',
  'incident_address': '50 EAST  102 STREET',
  'street_name': 'EAST  102 STREET',
  'cross_street_1': 'MADISON AVENUE',
  'cross_street_2': 'PARK AVENUE',
  'intersection_street_1': 'MADISON AVENUE',
  'intersection_street_2': 'PARK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST  102 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:13:27.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1016050024',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997725',
  'y_coordinate_state_plane': '227472',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79102393091951',
  'longitude': '-73.9513366142888',
  'location': {'latitude': '40.79102393091951',
   'longitude': '-73.9513366142888',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308506',
  'created_date': '2025-03-10T07:32:24.000',
  'closed_date': '2025-03-10T16:58:17.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10458',
  'incident_address': '2490 TIEBOUT AVENUE',
  'street_name': 'TIEBOUT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD responded to a complaint of no heat or hot water in the building. An occupant of the building confirmed heat and hot water had been restored when the Inspector attempted to conduct the inspection or contacted you at the phone number associated with the complaint. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '05 BRONX',
  'bbl': '2030230012',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013309',
  'y_coordinate_state_plane': '253255',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86175336365942',
  'longitude': '-73.89494519238905',
  'location': {'latitude': '40.86175336365942',
   'longitude': '-73.89494519238905',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310073',
  'created_date': '2025-03-10T07:32:32.000',
  'closed_date': '2025-03-10T08:26:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11215',
  'incident_address': '1301 8 AVENUE',
  'street_name': '8 AVENUE',
  'cross_street_1': '13 STREET',
  'cross_street_2': '14 STREET',
  'intersection_street_1': '13 STREET',
  'intersection_street_2': '14 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '8 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:26:38.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3011010001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989441',
  'y_coordinate_state_plane': '180917',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.663250571786335',
  'longitude': '-73.98128922143607',
  'location': {'latitude': '40.663250571786335',
   'longitude': '-73.98128922143607',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310844',
  'created_date': '2025-03-10T07:32:41.000',
  'closed_date': '2025-03-11T13:11:11.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '11355',
  'incident_address': '156-07 SANFORD AVENUE',
  'street_name': 'SANFORD AVENUE',
  'cross_street_1': '156 STREET',
  'cross_street_2': '157 STREET',
  'intersection_street_1': '156 STREET',
  'intersection_street_2': '157 STREET',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': 'SANFORD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and issued a Notice of Violation.',
  'resolution_action_updated_date': '2025-03-11T13:11:16.000',
  'community_board': '07 QUEENS',
  'bbl': '4053290001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037070',
  'y_coordinate_state_plane': '216687',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76127443309871',
  'longitude': '-73.8093318101006',
  'location': {'latitude': '40.76127443309871',
   'longitude': '-73.8093318101006',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309603',
  'created_date': '2025-03-10T07:33:00.000',
  'closed_date': '2025-03-10T16:09:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '11226',
  'incident_address': '2220 VANDERVEER PLACE',
  'street_name': 'VANDERVEER PLACE',
  'cross_street_1': 'FLATBUSH AVENUE',
  'cross_street_2': 'EAST 23 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'DSNY Garage',
  'status': 'Closed',
  'resolution_description': 'DSNY already has a request to investigate this reportedly abandoned vehicle and cannot open multiple service requests for the same vehicle at once. Your request is being closed while we action the prior report.',
  'resolution_action_updated_date': '2025-03-10T12:00:00.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051880030',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996299',
  'y_coordinate_state_plane': '173171',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64198281582489',
  'longitude': '-73.95658364062837',
  'location': {'latitude': '40.64198281582489',
   'longitude': '-73.95658364062837',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307887',
  'created_date': '2025-03-10T07:33:05.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Curb Condition',
  'descriptor': 'Broken Curb',
  'location_type': 'Sidewalk',
  'incident_zip': '10014',
  'incident_address': '681 GREENWICH STREET',
  'street_name': 'GREENWICH STREET',
  'cross_street_1': 'CHRISTOPHER STREET',
  'cross_street_2': 'GREENWICH MEWS',
  'intersection_street_1': 'CHRISTOPHER STREET',
  'intersection_street_2': 'GREENWICH MEWS',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'GREENWICH STREET',
  'status': 'In Progress',
  'community_board': '02 MANHATTAN',
  'bbl': '1006300130',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '982178',
  'y_coordinate_state_plane': '206329',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73300186516357',
  'longitude': '-74.007476269489',
  'location': {'latitude': '40.73300186516357',
   'longitude': '-74.007476269489',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307243',
  'created_date': '2025-03-10T07:33:15.000',
  'closed_date': '2025-03-11T10:05:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11211',
  'intersection_street_1': 'GRAND STREET EXTENSION',
  'intersection_street_2': 'HAVEMEYER STREET',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected this complaint and repaired the problem.',
  'resolution_action_updated_date': '2025-03-11T10:05:00.000',
  'community_board': '01 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995786',
  'y_coordinate_state_plane': '198041',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.710246028995364',
  'longitude': '-73.95838957300339',
  'location': {'latitude': '40.710246028995364',
   'longitude': '-73.95838957300339',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307258',
  'created_date': '2025-03-10T07:33:16.000',
  'closed_date': '2025-03-11T11:35:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '10028',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'EAST 85 STREET',
  'address_type': 'INTERSECTION',
  'city': 'MANHATTAN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected this complaint and repaired the problem.',
  'resolution_action_updated_date': '2025-03-11T11:35:00.000',
  'community_board': '08 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '995076',
  'y_coordinate_state_plane': '223767',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78085833839319',
  'longitude': '-73.96090913738175',
  'location': {'latitude': '40.78085833839319',
   'longitude': '-73.96090913738175',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308194',
  'created_date': '2025-03-10T07:33:26.000',
  'closed_date': '2025-03-10T11:20:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11213',
  'incident_address': '897 EMPIRE BOULEVARD',
  'street_name': 'EMPIRE BOULEVARD',
  'cross_street_1': 'SCHENECTADY AVENUE',
  'cross_street_2': 'LEFFERTS AVENUE',
  'intersection_street_1': 'SCHENECTADY AVENUE',
  'intersection_street_2': 'LEFFERTS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EMPIRE BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T11:20:05.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3014240049',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002926',
  'y_coordinate_state_plane': '181023',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.663523343151105',
  'longitude': '-73.93268272757545',
  'location': {'latitude': '40.663523343151105',
   'longitude': '-73.93268272757545',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312808',
  'created_date': '2025-03-10T07:33:31.000',
  'closed_date': '2025-03-14T14:52:57.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Sign - Dangling',
  'descriptor': 'Other/Unknown',
  'location_type': 'Street',
  'incident_zip': '10452',
  'incident_address': '1500 UNIVERSITY AVENUE',
  'street_name': 'UNIVERSITY AVENUE',
  'cross_street_1': 'CROSS BRONX EP ET    1 D-1 C WB',
  'cross_street_2': 'FEATHERBED LANE',
  'intersection_street_1': 'CROSS BRONX EP ET    1 D-1 C WB',
  'intersection_street_2': 'FEATHERBED LANE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNIVERSITY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation has completed the request or corrected the condition.',
  'resolution_action_updated_date': '2025-03-14T14:53:01.000',
  'community_board': '05 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005738',
  'y_coordinate_state_plane': '247283',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8453836823095',
  'longitude': '-73.92233518197834',
  'location': {'latitude': '40.8453836823095',
   'longitude': '-73.92233518197834',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307908',
  'created_date': '2025-03-10T07:33:37.000',
  'closed_date': '2025-03-13T12:39:57.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Chronic Dumping',
  'location_type': 'Sidewalk',
  'incident_zip': '10468',
  'incident_address': '2690 RESERVOIR AVENUE',
  'street_name': 'RESERVOIR AVENUE',
  'cross_street_1': 'AQUEDUCT AVENUE WEST',
  'intersection_street_1': 'AQUEDUCT AVENUE WEST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'RESERVOIR AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation will note this location for periodic surveillance, which may take place at various times.',
  'resolution_action_updated_date': '2025-03-13T12:40:01.000',
  'community_board': '07 BRONX',
  'bbl': '2032480250',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011964',
  'y_coordinate_state_plane': '255633',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.868284573397915',
  'longitude': '-73.89979783086619',
  'location': {'latitude': '40.868284573397915',
   'longitude': '-73.89979783086619',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309110',
  'created_date': '2025-03-10T07:34:10.000',
  'closed_date': '2025-03-10T09:07:30.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10468',
  'incident_address': '2505 CRESTON AVENUE',
  'street_name': 'CRESTON AVENUE',
  'cross_street_1': 'EAST  190 STREET',
  'cross_street_2': 'EAST  191 STREET',
  'intersection_street_1': 'EAST  190 STREET',
  'intersection_street_2': 'EAST  191 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CRESTON AVENUE',
  'status': 'Closed',
  'resolution_description': "This complaint does not fall under the Police Department's jurisdiction.",
  'resolution_action_updated_date': '2025-03-10T09:07:36.000',
  'community_board': '07 BRONX',
  'bbl': '2031750001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012490',
  'y_coordinate_state_plane': '253730',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86305975230048',
  'longitude': '-73.89790405704288',
  'location': {'latitude': '40.86305975230048',
   'longitude': '-73.89790405704288',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314341',
  'created_date': '2025-03-10T07:34:30.000',
  'closed_date': '2025-03-13T11:25:51.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Posting',
  'descriptor': 'Poster or Sign',
  'location_type': 'Sidewalk',
  'incident_zip': '10312',
  'incident_address': '493 HUGUENOT AVENUE',
  'street_name': 'HUGUENOT AVENUE',
  'cross_street_1': 'VINELAND AVENUE',
  'cross_street_2': 'STAFFORD AVENUE',
  'intersection_street_1': 'VINELAND AVENUE',
  'intersection_street_2': 'STAFFORD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'HUGUENOT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation has removed illegal postings from the location. The Department will issue a Notice of Violation to the responsible party once it is identified.',
  'resolution_action_updated_date': '2025-03-13T11:25:54.000',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5063400006',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '929459',
  'y_coordinate_state_plane': '137114',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.542852566445724',
  'longitude': '-74.19713659773785',
  'location': {'latitude': '40.542852566445724',
   'longitude': '-74.19713659773785',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307102',
  'created_date': '2025-03-10T07:34:41.000',
  'closed_date': '2025-03-11T14:56:16.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '35 CLARKE PLACE EAST',
  'street_name': 'CLARKE PLACE EAST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2028400022',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007006',
  'y_coordinate_state_plane': '244558',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8379011793687',
  'longitude': '-73.91776145510242',
  'location': {'latitude': '40.8379011793687',
   'longitude': '-73.91776145510242',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310937',
  'created_date': '2025-03-10T07:34:41.000',
  'closed_date': '2025-03-10T21:00:31.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10458',
  'incident_address': '2705 BAINBRIDGE AVENUE',
  'street_name': 'BAINBRIDGE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '07 BRONX',
  'bbl': '2032940053',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1014407',
  'y_coordinate_state_plane': '254807',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.866009448186574',
  'longitude': '-73.89096869622344',
  'location': {'latitude': '40.866009448186574',
   'longitude': '-73.89096869622344',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315004',
  'created_date': '2025-03-10T07:34:50.000',
  'closed_date': '2025-03-10T20:58:35.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10461',
  'incident_address': '1417 ROWLAND STREET',
  'street_name': 'ROWLAND STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '10 BRONX',
  'bbl': '2039730034',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1026884',
  'y_coordinate_state_plane': '244604',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.837953842355674',
  'longitude': '-73.8459236161263',
  'location': {'latitude': '40.837953842355674',
   'longitude': '-73.8459236161263',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64305954',
  'created_date': '2025-03-10T07:35:00.000',
  'closed_date': '2025-03-13T20:00:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '10036',
  'incident_address': '305 WEST   45 STREET',
  'street_name': 'WEST   45 STREET',
  'cross_street_1': '8 AVE',
  'cross_street_2': '9 AVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': "The Department of Environmental Protection (DEP) didn't observe a violation of the NYC Air or Noise Code at the time of inspection and couldn't issue a summons.  If the problem still exists, please go to nyc.gov/311 or call 311 to file a new Service Request. If you're outside of New York City, please call (212) NEW-YORK (212-639-9675).",
  'resolution_action_updated_date': '2025-03-13T20:00:00.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010360028',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987327',
  'y_coordinate_state_plane': '215941',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75938410124301',
  'longitude': '-73.98889305360727',
  'location': {'latitude': '40.75938410124301',
   'longitude': '-73.98889305360727',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308898',
  'created_date': '2025-03-10T07:35:00.000',
  'closed_date': '2025-03-10T07:42:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water Conservation',
  'descriptor': 'Wasting Faucets,Sinks,Flushometer,Urinal,Etc. - Private Residence (CWR)',
  'incident_zip': '11429',
  'incident_address': '110-26 217 STREET',
  'street_name': '217 STREET',
  'cross_street_1': '110 AVE',
  'cross_street_2': '110 RD',
  'address_type': 'ADDRESS',
  'city': 'QUEENS VILLAGE',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection determined that an inspection is warranted to investigate this complaint.',
  'resolution_action_updated_date': '2025-03-10T07:42:00.000',
  'community_board': '13 QUEENS',
  'bbl': '4111300020',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1056211',
  'y_coordinate_state_plane': '197447',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70833053327753',
  'longitude': '-73.740443293851',
  'location': {'latitude': '40.70833053327753',
   'longitude': '-73.740443293851',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313804',
  'created_date': '2025-03-10T07:35:00.000',
  'closed_date': '2025-03-10T10:40:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Hydrant Running (WC3)',
  'incident_zip': '10455',
  'incident_address': '421 SOUTHERN BOULEVARD',
  'street_name': 'SOUTHERN BOULEVARD',
  'cross_street_1': 'E 144 ST',
  'cross_street_2': 'E 145 ST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection investigated this complaint and shut the running hydrant.',
  'resolution_action_updated_date': '2025-03-10T10:40:00.000',
  'community_board': '01 BRONX',
  'bbl': '2025760023',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009855',
  'y_coordinate_state_plane': '234101',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.809191894772965',
  'longitude': '-73.90750528522778',
  'location': {'latitude': '40.809191894772965',
   'longitude': '-73.90750528522778',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315108',
  'created_date': '2025-03-10T07:35:00.000',
  'closed_date': '2025-03-10T08:13:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Leak (Use Comments) (WA2)',
  'incident_zip': '11217',
  'incident_address': '104 BERKLEY PLACE',
  'street_name': 'BERKLEY PLACE',
  'cross_street_1': '6 AVE',
  'cross_street_2': '7 AVE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-10T08:13:00.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3009540014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990691',
  'y_coordinate_state_plane': '185478',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67576867665664',
  'longitude': '-73.97677928220699',
  'location': {'latitude': '40.67576867665664',
   'longitude': '-73.97677928220699',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311398',
  'created_date': '2025-03-10T07:35:04.000',
  'closed_date': '2025-03-10T09:50:59.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10468',
  'incident_address': '2274 LORING PLACE NORTH',
  'street_name': 'LORING PLACE NORTH',
  'cross_street_1': 'WEST  183 STREET',
  'cross_street_2': 'WEST FORDHAM ROAD',
  'intersection_street_1': 'WEST  183 STREET',
  'intersection_street_2': 'WEST FORDHAM ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'LORING PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:51:02.000',
  'community_board': '07 BRONX',
  'bbl': '2032250010',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009473',
  'y_coordinate_state_plane': '253033',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86115583443279',
  'longitude': '-73.90881401810121',
  'location': {'latitude': '40.86115583443279',
   'longitude': '-73.90881401810121',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308163',
  'created_date': '2025-03-10T07:35:10.000',
  'closed_date': '2025-03-10T10:46:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10019',
  'incident_address': '692 10 AVENUE',
  'street_name': '10 AVENUE',
  'cross_street_1': 'WEST   48 STREET',
  'cross_street_2': 'WEST   49 STREET',
  'intersection_street_1': 'WEST   48 STREET',
  'intersection_street_2': 'WEST   49 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '10 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T10:46:16.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010580004',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986320',
  'y_coordinate_state_plane': '217496',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.763652469839855',
  'longitude': '-73.99252750977236',
  'location': {'latitude': '40.763652469839855',
   'longitude': '-73.99252750977236',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306305',
  'created_date': '2025-03-10T07:35:20.000',
  'closed_date': '2025-03-10T08:59:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11414',
  'incident_address': '153-39 80 STREET',
  'street_name': '80 STREET',
  'cross_street_1': '153 AVENUE',
  'cross_street_2': '155 AVENUE',
  'intersection_street_1': '153 AVENUE',
  'intersection_street_2': '155 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'HOWARD BEACH',
  'landmark': '80 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:59:36.000',
  'community_board': '10 QUEENS',
  'bbl': '4114420043',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024738',
  'y_coordinate_state_plane': '181765',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.66548709020105',
  'longitude': '-73.85405745558171',
  'location': {'latitude': '40.66548709020105',
   'longitude': '-73.85405745558171',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315644',
  'created_date': '2025-03-10T07:35:28.000',
  'closed_date': '2025-03-10T08:25:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10032',
  'incident_address': '528 WEST  162 STREET',
  'street_name': 'WEST  162 STREET',
  'cross_street_1': 'ST NICHOLAS AVENUE',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': 'ST NICHOLAS AVENUE',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  162 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:25:47.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021207502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000619',
  'y_coordinate_state_plane': '244021',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.83644141872332',
  'longitude': '-73.94084491521889',
  'location': {'latitude': '40.83644141872332',
   'longitude': '-73.94084491521889',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310271',
  'created_date': '2025-03-10T07:35:53.000',
  'closed_date': '2025-03-10T08:25:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10032',
  'incident_address': '524 WEST  162 STREET',
  'street_name': 'WEST  162 STREET',
  'cross_street_1': 'ST NICHOLAS AVENUE',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': 'ST NICHOLAS AVENUE',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  162 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:25:30.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021200023',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000639',
  'y_coordinate_state_plane': '244010',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8364111898213',
  'longitude': '-73.94077266515033',
  'location': {'latitude': '40.8364111898213',
   'longitude': '-73.94077266515033',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307561',
  'created_date': '2025-03-10T07:35:58.000',
  'closed_date': '2025-03-10T09:16:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11236',
  'incident_address': '1310 EAST   84 STREET',
  'street_name': 'EAST   84 STREET',
  'cross_street_1': 'AVENUE M',
  'cross_street_2': 'AVENUE N',
  'intersection_street_1': 'AVENUE M',
  'intersection_street_2': 'AVENUE N',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   84 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:16:37.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3080740039',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1011264',
  'y_coordinate_state_plane': '168990',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63047386666534',
  'longitude': '-73.9026767808967',
  'location': {'latitude': '40.63047386666534',
   'longitude': '-73.9026767808967',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309524',
  'created_date': '2025-03-10T07:36:15.000',
  'closed_date': '2025-03-10T08:52:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10026',
  'incident_address': '265 WEST  114 STREET',
  'street_name': 'WEST  114 STREET',
  'cross_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'cross_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'intersection_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'intersection_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  114 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T08:52:08.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1018300011',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996586',
  'y_coordinate_state_plane': '231745',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80275381673463',
  'longitude': '-73.95544212929333',
  'location': {'latitude': '40.80275381673463',
   'longitude': '-73.95544212929333',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310389',
  'created_date': '2025-03-10T07:36:49.000',
  'closed_date': '2025-03-10T15:19:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11226',
  'incident_address': '2234 VANDERVEER PLACE',
  'street_name': 'VANDERVEER PLACE',
  'cross_street_1': 'FLATBUSH AVENUE',
  'cross_street_2': 'EAST   23 STREET',
  'intersection_street_1': 'FLATBUSH AVENUE',
  'intersection_street_2': 'EAST   23 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'VANDERVEER PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T15:19:16.000',
  'community_board': '14 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996345',
  'y_coordinate_state_plane': '173175',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64199373226641',
  'longitude': '-73.95641788092998',
  'location': {'latitude': '40.64199373226641',
   'longitude': '-73.95641788092998',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64325475',
  'created_date': '2025-03-10T07:37:00.000',
  'closed_date': '2025-03-10T08:50:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Controller',
  'incident_zip': '11210',
  'intersection_street_1': 'AVENUE I',
  'intersection_street_2': 'EAST 27 STREET',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-10T08:50:00.000',
  'community_board': '14 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998080',
  'y_coordinate_state_plane': '168388',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.628851898198214',
  'longitude': '-73.95017593823553',
  'location': {'latitude': '40.628851898198214',
   'longitude': '-73.95017593823553',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311789',
  'created_date': '2025-03-10T07:37:19.000',
  'closed_date': '2025-03-10T09:52:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10453',
  'incident_address': '30 WEST  182 STREET',
  'street_name': 'WEST  182 STREET',
  'cross_street_1': 'DAVIDSON AVENUE',
  'cross_street_2': 'GRAND AVENUE',
  'intersection_street_1': 'DAVIDSON AVENUE',
  'intersection_street_2': 'GRAND AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST  182 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T09:52:19.000',
  'community_board': '05 BRONX',
  'bbl': '2031950021',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010260',
  'y_coordinate_state_plane': '251702',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85750035766808',
  'longitude': '-73.90597402929092',
  'location': {'latitude': '40.85750035766808',
   'longitude': '-73.90597402929092',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314205',
  'created_date': '2025-03-10T07:37:40.000',
  'closed_date': '2025-03-10T09:23:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11208',
  'incident_address': '273 AUTUMN AVENUE',
  'street_name': 'AUTUMN AVENUE',
  'cross_street_1': 'FULTON STREET',
  'cross_street_2': 'ATLANTIC AVENUE',
  'intersection_street_1': 'FULTON STREET',
  'intersection_street_2': 'ATLANTIC AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AUTUMN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T09:23:13.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3041490013',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020277',
  'y_coordinate_state_plane': '188292',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68342149336563',
  'longitude': '-73.87010260779302',
  'location': {'latitude': '40.68342149336563',
   'longitude': '-73.87010260779302',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309956',
  'created_date': '2025-03-10T07:37:44.000',
  'closed_date': '2025-03-10T07:37:44.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'Building/Use',
  'descriptor': 'No Certificate Of Occupancy/Illegal/Contrary To CO',
  'incident_zip': '11234',
  'incident_address': '1567 EAST   35 STREET',
  'street_name': 'EAST   35 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'Your Service Request has been submitted to the Department of Buildings.  Please check back later for status.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3076970014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000896',
  'y_coordinate_state_plane': '163861',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61642138801351',
  'longitude': '-73.94004216146121',
  'location': {'latitude': '40.61642138801351',
   'longitude': '-73.94004216146121',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307010',
  'created_date': '2025-03-10T07:37:51.000',
  'closed_date': '2025-03-11T17:10:15.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10034',
  'incident_address': '98 VERMILYEA AVENUE',
  'street_name': 'VERMILYEA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'HPD responded to a complaint of no heat or hot water in the building. An occupant of the building confirmed heat and hot water had been restored when the Inspector attempted to conduct the inspection or contacted you at the phone number associated with the complaint. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022350041',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1005763',
  'y_coordinate_state_plane': '254858',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8661747258778',
  'longitude': '-73.922220513632',
  'location': {'latitude': '40.8661747258778',
   'longitude': '-73.922220513632',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308365',
  'created_date': '2025-03-10T07:37:55.000',
  'closed_date': '2025-03-11T09:01:35.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10305',
  'incident_address': '1331 BAY STREET',
  'street_name': 'BAY STREET',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5028320017',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '966476',
  'y_coordinate_state_plane': '161973',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.61123702810808',
  'longitude': '-74.06401585199428',
  'location': {'latitude': '40.61123702810808',
   'longitude': '-74.06401585199428',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312171',
  'created_date': '2025-03-10T07:37:57.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'APPLIANCE',
  'descriptor': 'ELECTRIC/GAS RANGE',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11691',
  'incident_address': '13-67 MC BRIDE STREET',
  'street_name': 'MC BRIDE STREET',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'status': 'Open',
  'resolution_description': 'An HPD Inspector was not able to gain access to inspect this complaint sometime within the last 10 days. If the conditions still exist and an inspection is required, please contact HPD with your complaint number to schedule an appointment at  718 286 - 0823 (QUEENS).',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '14 QUEENS',
  'bbl': '4156630086',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1051759',
  'y_coordinate_state_plane': '160704',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.60751455670414',
  'longitude': '-73.75686900255191',
  'location': {'latitude': '40.60751455670414',
   'longitude': '-73.75686900255191',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312326',
  'created_date': '2025-03-10T07:37:57.000',
  'closed_date': '2025-03-11T20:02:17.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11691',
  'incident_address': '13-67 MC BRIDE STREET',
  'street_name': 'MC BRIDE STREET',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '14 QUEENS',
  'bbl': '4156630086',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1051759',
  'y_coordinate_state_plane': '160704',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.60751455670414',
  'longitude': '-73.75686900255191',
  'location': {'latitude': '40.60751455670414',
   'longitude': '-73.75686900255191',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316272',
  'created_date': '2025-03-10T07:38:00.000',
  'closed_date': '2025-03-10T09:04:13.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10451',
  'incident_address': '751 GERARD AVENUE',
  'street_name': 'GERARD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2024820030',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004604',
  'y_coordinate_state_plane': '239832',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82493553386665',
  'longitude': '-73.92645644504721',
  'location': {'latitude': '40.82493553386665',
   'longitude': '-73.92645644504721',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315871',
  'created_date': '2025-03-10T07:38:13.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Food Poisoning',
  'descriptor': '1 or 2',
  'location_type': 'Restaurant/Bar/Deli/Bakery',
  'incident_zip': '10013',
  'incident_address': '136 WEST BROADWAY',
  'street_name': 'WEST BROADWAY',
  'cross_street_1': 'DUANE STREET',
  'cross_street_2': 'THOMAS STREET',
  'intersection_street_1': 'DUANE STREET',
  'intersection_street_2': 'THOMAS STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST BROADWAY',
  'status': 'In Progress',
  'community_board': '01 MANHATTAN',
  'bbl': '1001440029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '981973',
  'y_coordinate_state_plane': '200431',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71681323633885',
  'longitude': '-74.00821396276113',
  'location': {'latitude': '40.71681323633885',
   'longitude': '-74.00821396276113',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316230',
  'created_date': '2025-03-10T07:38:29.000',
  'closed_date': '2025-03-10T09:48:55.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '1401 GRAND CONCOURSE',
  'street_name': 'GRAND CONCOURSE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development contacted a tenant in the building and verified that the following conditions were corrected. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2028420059',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008074',
  'y_coordinate_state_plane': '244801',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.838565326893',
  'longitude': '-73.9139009192951',
  'location': {'latitude': '40.838565326893',
   'longitude': '-73.9139009192951',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311405',
  'created_date': '2025-03-10T07:38:56.000',
  'closed_date': '2025-03-10T09:52:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10453',
  'incident_address': '30 WEST  182 STREET',
  'street_name': 'WEST  182 STREET',
  'cross_street_1': 'DAVIDSON AVENUE',
  'cross_street_2': 'GRAND AVENUE',
  'intersection_street_1': 'DAVIDSON AVENUE',
  'intersection_street_2': 'GRAND AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST  182 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T09:52:24.000',
  'community_board': '05 BRONX',
  'bbl': '2031950021',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010260',
  'y_coordinate_state_plane': '251702',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85750035766808',
  'longitude': '-73.90597402929092',
  'location': {'latitude': '40.85750035766808',
   'longitude': '-73.90597402929092',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313454',
  'created_date': '2025-03-10T07:39:02.000',
  'closed_date': '2025-03-10T11:03:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Paper License Plates',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10468',
  'incident_address': '2690 RESERVOIR AVENUE',
  'street_name': 'RESERVOIR AVENUE',
  'cross_street_1': 'AQUEDUCT AVENUE WEST',
  'intersection_street_1': 'AQUEDUCT AVENUE WEST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'RESERVOIR AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T11:04:01.000',
  'community_board': '07 BRONX',
  'bbl': '2032480250',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011964',
  'y_coordinate_state_plane': '255633',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.868284573397915',
  'longitude': '-73.89979783086619',
  'location': {'latitude': '40.868284573397915',
   'longitude': '-73.89979783086619',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312842',
  'created_date': '2025-03-10T07:39:26.000',
  'closed_date': '2025-03-10T08:01:41.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Food Vendor',
  'location_type': 'Street',
  'incident_zip': '10007',
  'incident_address': '66 CHURCH STREET',
  'street_name': 'CHURCH STREET',
  'cross_street_1': 'FULTON STREET',
  'cross_street_2': 'VESEY STREET',
  'intersection_street_1': 'FULTON STREET',
  'intersection_street_2': 'VESEY STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'CHURCH STREET',
  'status': 'Closed',
  'resolution_description': 'N/A',
  'resolution_action_updated_date': '2025-03-10T08:01:45.000',
  'community_board': '01 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '981408',
  'y_coordinate_state_plane': '198640',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.7118972056284',
  'longitude': '-74.01025136605162',
  'location': {'latitude': '40.7118972056284',
   'longitude': '-74.01025136605162',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306239',
  'created_date': '2025-03-10T07:39:35.000',
  'closed_date': '2025-03-10T15:19:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11226',
  'incident_address': '2234 VANDERVEER PLACE',
  'street_name': 'VANDERVEER PLACE',
  'cross_street_1': 'FLATBUSH AVENUE',
  'cross_street_2': 'EAST   23 STREET',
  'intersection_street_1': 'FLATBUSH AVENUE',
  'intersection_street_2': 'EAST   23 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'VANDERVEER PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T15:19:21.000',
  'community_board': '14 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996345',
  'y_coordinate_state_plane': '173175',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64199373226641',
  'longitude': '-73.95641788092998',
  'location': {'latitude': '40.64199373226641',
   'longitude': '-73.95641788092998',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310679',
  'created_date': '2025-03-10T07:40:15.000',
  'closed_date': '2025-03-10T07:40:15.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11429',
  'incident_address': 'MURDOCK AVENUE',
  'street_name': 'MURDOCK AVENUE',
  'cross_street_1': '212 STREET',
  'cross_street_2': 'DELEVAN STREET',
  'address_type': 'BLOCKFACE',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-10T07:40:15.000',
  'community_board': '13 QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '64314774',
  'created_date': '2025-03-10T07:40:22.000',
  'closed_date': '2025-03-15T12:02:17.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Street Sweeping Complaint',
  'descriptor': 'Inadequate Sweeping',
  'location_type': 'Street',
  'incident_zip': '10035',
  'incident_address': '2064 5 AVENUE',
  'street_name': '5 AVENUE',
  'cross_street_1': 'EAST  127 STREET',
  'cross_street_2': 'EAST  128 STREET',
  'intersection_street_1': 'EAST  127 STREET',
  'intersection_street_2': 'EAST  128 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '5 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation cleaned the location.',
  'resolution_action_updated_date': '2025-03-12T09:56:11.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1017250035',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000533',
  'y_coordinate_state_plane': '233629',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.807918484537176',
  'longitude': '-73.94118092328759',
  'location': {'latitude': '40.807918484537176',
   'longitude': '-73.94118092328759',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306322',
  'created_date': '2025-03-10T07:40:29.000',
  'closed_date': '2025-03-10T14:40:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10458',
  'incident_address': '2415 HOFFMAN STREET',
  'street_name': 'HOFFMAN STREET',
  'cross_street_1': 'EAST  187 STREET',
  'cross_street_2': 'EAST  188 STREET',
  'intersection_street_1': 'EAST  187 STREET',
  'intersection_street_2': 'EAST  188 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'HOFFMAN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T14:40:54.000',
  'community_board': '06 BRONX',
  'bbl': '2030560005',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015205',
  'y_coordinate_state_plane': '251320',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.856435929311445',
  'longitude': '-73.88809967032486',
  'location': {'latitude': '40.856435929311445',
   'longitude': '-73.88809967032486',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307627',
  'created_date': '2025-03-10T07:40:38.000',
  'closed_date': '2025-03-10T07:40:38.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11423',
  'incident_address': '183 STREET',
  'street_name': '183 STREET',
  'cross_street_1': 'JAMAICA AVENUE',
  'cross_street_2': 'LONG ISLAND RAILROAD',
  'address_type': 'BLOCKFACE',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-10T07:40:38.000',
  'community_board': '12 QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '64306182',
  'created_date': '2025-03-10T07:40:43.000',
  'closed_date': '2025-03-10T08:08:03.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10312',
  'incident_address': '1466 DRUMGOOLE ROAD WEST',
  'street_name': 'DRUMGOOLE ROAD WEST',
  'cross_street_1': 'NIPPON AVENUE',
  'cross_street_2': 'HUGUENOT AVENUE',
  'intersection_street_1': 'NIPPON AVENUE',
  'intersection_street_2': 'HUGUENOT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'DRUMGOOLE ROAD WEST',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation removed the items.',
  'resolution_action_updated_date': '2025-03-10T08:08:06.000',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5063330195',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '930642',
  'y_coordinate_state_plane': '134672',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.5361569802037',
  'longitude': '-74.19286086384611',
  'location': {'latitude': '40.5361569802037',
   'longitude': '-74.19286086384611',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313153',
  'created_date': '2025-03-10T07:40:43.000',
  'closed_date': '2025-03-11T00:00:00.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'General Construction/Plumbing',
  'descriptor': 'Adjacent Buildings Not Protected',
  'incident_zip': '11233',
  'incident_address': '1620 PROSPECT PLACE',
  'street_name': 'PROSPECT PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Buildings investigated this complaint and determined that no further action was necessary.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3013690035',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1005599',
  'y_coordinate_state_plane': '184415',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67282758180867',
  'longitude': '-73.92303721452828',
  'location': {'latitude': '40.67282758180867',
   'longitude': '-73.92303721452828',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315557',
  'created_date': '2025-03-10T07:40:43.000',
  'closed_date': '2025-03-10T07:40:43.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'General Construction/Plumbing',
  'descriptor': 'Fence - None/Inadequate',
  'incident_zip': '11367',
  'incident_address': '147-66 77 AVENUE',
  'street_name': '77 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'status': 'Open',
  'resolution_description': 'Your Service Request has been submitted to the Department of Buildings.  Please check back later for status.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '08 QUEENS',
  'bbl': '4066870030',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035072',
  'y_coordinate_state_plane': '202391',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72204727148413',
  'longitude': '-73.81665212810965',
  'location': {'latitude': '40.72204727148413',
   'longitude': '-73.81665212810965',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308928',
  'created_date': '2025-03-10T07:40:52.000',
  'closed_date': '2025-03-11T00:00:00.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'General Construction/Plumbing',
  'descriptor': 'Posted Notice Or Order Removed/Tampered With',
  'incident_zip': '11367',
  'incident_address': '147-66 77 AVENUE',
  'street_name': '77 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'status': 'Closed',
  'resolution_description': 'The Department of Buildings reviewed this complaint and determined that no further action was necessary.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '08 QUEENS',
  'bbl': '4066870030',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035072',
  'y_coordinate_state_plane': '202391',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72204727148413',
  'longitude': '-73.81665212810965',
  'location': {'latitude': '40.72204727148413',
   'longitude': '-73.81665212810965',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307521',
  'created_date': '2025-03-10T07:41:00.000',
  'closed_date': '2025-03-10T11:24:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '2130 MCDONALD AVENUE',
  'street_name': 'MCDONALD AVENUE',
  'cross_street_1': 'AVENUE S',
  'cross_street_2': 'AVENUE T',
  'intersection_street_1': 'AVENUE S',
  'intersection_street_2': 'AVENUE T',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MCDONALD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T11:24:08.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3070870076',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991819',
  'y_coordinate_state_plane': '158090',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60059358028103',
  'longitude': '-73.97274340561168',
  'location': {'latitude': '40.60059358028103',
   'longitude': '-73.97274340561168',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306531',
  'created_date': '2025-03-10T07:41:07.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Food Establishment',
  'descriptor': 'Pet/Animal',
  'location_type': 'Restaurant/Bar/Deli/Bakery',
  'incident_zip': '11215',
  'incident_address': '287 6 AVENUE',
  'street_name': '6 AVENUE',
  'cross_street_1': '1 STREET',
  'cross_street_2': '2 STREET',
  'intersection_street_1': '1 STREET',
  'intersection_street_2': '2 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '6 AVENUE',
  'status': 'In Progress',
  'resolution_description': 'The Department of Health and Mental Hygiene has sent official written notification to the Owner/Landlord warning them of potential violations and instructing them to correct the situation. If the situation persists 21 days after your initial complaint, please make a new complaint.',
  'resolution_action_updated_date': '2025-03-10T07:41:14.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3009710010',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989803',
  'y_coordinate_state_plane': '184382',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67276100477928',
  'longitude': '-73.97998155089967',
  'location': {'latitude': '40.67276100477928',
   'longitude': '-73.97998155089967',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306045',
  'created_date': '2025-03-10T07:41:11.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Subway',
  'address_type': 'ADDRESS',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team offered services to the individual, but the individual did not accept assistance.',
  'resolution_action_updated_date': '2025-03-10T12:13:46.000',
  'community_board': 'Unspecified QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037496',
  'y_coordinate_state_plane': '194540',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'bridge_highway_name': 'E',
  'bridge_highway_segment': 'Mezzanine',
  'latitude': '40.700483936544096',
  'longitude': '-73.80796930845322',
  'location': {'latitude': '40.700483936544096',
   'longitude': '-73.80796930845322',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308070',
  'created_date': '2025-03-10T07:41:11.000',
  'closed_date': '2025-03-12T15:25:13.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dead Animal',
  'descriptor': 'Deer',
  'location_type': 'Street',
  'incident_zip': '10304',
  'incident_address': '773 NARROWS ROAD NORTH',
  'street_name': 'NARROWS ROAD NORTH',
  'cross_street_1': 'RICHMOND ROAD',
  'cross_street_2': 'STATEN IS EXPWY WB ET   13 A',
  'intersection_street_1': 'RICHMOND ROAD',
  'intersection_street_2': 'STATEN IS EXPWY WB ET   13 A',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'NARROWS ROAD NORTH',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-10T21:49:39.000',
  'community_board': '01 STATEN ISLAND',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '958218',
  'y_coordinate_state_plane': '161788',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.61070882875262',
  'longitude': '-74.09375760344406',
  'location': {'latitude': '40.61070882875262',
   'longitude': '-74.09375760344406',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310975',
  'created_date': '2025-03-10T07:41:25.000',
  'closed_date': '2025-03-10T18:06:26.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11237',
  'incident_address': '14 IRVING AVENUE',
  'street_name': 'IRVING AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': "The Department of Housing Preservation and Development conducted or attempted to conduct an inspection.  More information about inspection results can be found through HPD's website at www.nyc.gov/hpd by using HPDONLINE (enter your address on the home page) and entering your SR number under the complaint status option.",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031660033',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004860',
  'y_coordinate_state_plane': '196292',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70542895549614',
  'longitude': '-73.92566496179228',
  'location': {'latitude': '40.70542895549614',
   'longitude': '-73.92566496179228',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310515',
  'created_date': '2025-03-10T07:41:27.000',
  'closed_date': '2025-03-10T07:41:27.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11433',
  'intersection_street_1': '177 STREET',
  'intersection_street_2': 'JAMAICA AVENUE',
  'address_type': 'INTERSECTION',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-10T07:41:27.000',
  'community_board': '12 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1044184',
  'y_coordinate_state_plane': '197268',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70792886275113',
  'longitude': '-73.78382497580898',
  'location': {'latitude': '40.70792886275113',
   'longitude': '-73.78382497580898',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307180',
  'created_date': '2025-03-10T07:41:28.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'SAFETY',
  'descriptor': 'SMOKE DETECTOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '1412 COLLEGE AVENUE',
  'street_name': 'COLLEGE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2027840003',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009045',
  'y_coordinate_state_plane': '244533',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8378270721636',
  'longitude': '-73.91039275332099',
  'location': {'latitude': '40.8378270721636',
   'longitude': '-73.91039275332099',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308292',
  'created_date': '2025-03-10T07:41:28.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'ELECTRIC',
  'descriptor': 'OUTLET/SWITCH',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '1412 COLLEGE AVENUE',
  'street_name': 'COLLEGE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2027840003',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009045',
  'y_coordinate_state_plane': '244533',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8378270721636',
  'longitude': '-73.91039275332099',
  'location': {'latitude': '40.8378270721636',
   'longitude': '-73.91039275332099',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311101',
  'created_date': '2025-03-10T07:41:28.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '1412 COLLEGE AVENUE',
  'street_name': 'COLLEGE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2027840003',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009045',
  'y_coordinate_state_plane': '244533',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8378270721636',
  'longitude': '-73.91039275332099',
  'location': {'latitude': '40.8378270721636',
   'longitude': '-73.91039275332099',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311167',
  'created_date': '2025-03-10T07:41:28.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '1412 COLLEGE AVENUE',
  'street_name': 'COLLEGE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2027840003',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009045',
  'y_coordinate_state_plane': '244533',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8378270721636',
  'longitude': '-73.91039275332099',
  'location': {'latitude': '40.8378270721636',
   'longitude': '-73.91039275332099',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313778',
  'created_date': '2025-03-10T07:41:28.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '1412 COLLEGE AVENUE',
  'street_name': 'COLLEGE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2027840003',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009045',
  'y_coordinate_state_plane': '244533',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8378270721636',
  'longitude': '-73.91039275332099',
  'location': {'latitude': '40.8378270721636',
   'longitude': '-73.91039275332099',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314973',
  'created_date': '2025-03-10T07:41:28.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PAINT/PLASTER',
  'descriptor': 'WALL',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '1412 COLLEGE AVENUE',
  'street_name': 'COLLEGE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2027840003',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009045',
  'y_coordinate_state_plane': '244533',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8378270721636',
  'longitude': '-73.91039275332099',
  'location': {'latitude': '40.8378270721636',
   'longitude': '-73.91039275332099',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315095',
  'created_date': '2025-03-10T07:41:28.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '1412 COLLEGE AVENUE',
  'street_name': 'COLLEGE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2027840003',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009045',
  'y_coordinate_state_plane': '244533',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8378270721636',
  'longitude': '-73.91039275332099',
  'location': {'latitude': '40.8378270721636',
   'longitude': '-73.91039275332099',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307805',
  'created_date': '2025-03-10T07:41:39.000',
  'closed_date': '2025-03-10T10:16:29.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11237',
  'incident_address': '58 GRATTAN STREET',
  'street_name': 'GRATTAN STREET',
  'cross_street_1': 'MORGAN AVENUE',
  'cross_street_2': 'KNICKERBOCKER AVENUE',
  'intersection_street_1': 'MORGAN AVENUE',
  'intersection_street_2': 'KNICKERBOCKER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GRATTAN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T10:16:33.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3030080015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003414',
  'y_coordinate_state_plane': '196419',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70578079034252',
  'longitude': '-73.93087995304545',
  'location': {'latitude': '40.70578079034252',
   'longitude': '-73.93087995304545',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312224',
  'created_date': '2025-03-10T07:41:43.000',
  'closed_date': '2025-03-10T08:28:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11224',
  'incident_address': '3726 MAPLE AVENUE',
  'street_name': 'MAPLE AVENUE',
  'cross_street_1': 'DEAD END',
  'cross_street_2': 'SEA GATE AVENUE',
  'intersection_street_1': 'DEAD END',
  'intersection_street_2': 'SEA GATE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MAPLE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:28:51.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3069710024',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '982972',
  'y_coordinate_state_plane': '150409',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.57951391163024',
  'longitude': '-74.00460073100088',
  'location': {'latitude': '40.57951391163024',
   'longitude': '-74.00460073100088',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316202',
  'created_date': '2025-03-10T07:41:48.000',
  'closed_date': '2025-03-11T15:03:52.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10469',
  'incident_address': '1040B EAST  217 STREET',
  'street_name': 'EAST  217 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '12 BRONX',
  'bbl': '2046990051',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024543',
  'y_coordinate_state_plane': '259628',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8792011486289',
  'longitude': '-73.85429350155603',
  'location': {'latitude': '40.8792011486289',
   'longitude': '-73.85429350155603',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311977',
  'created_date': '2025-03-10T07:41:57.000',
  'closed_date': '2025-03-10T07:41:57.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11434',
  'incident_address': 'BAISLEY BOULEVARD',
  'street_name': 'BAISLEY BOULEVARD',
  'cross_street_1': 'LONG ISLAND RAILROAD',
  'cross_street_2': 'MARSDEN STREET',
  'address_type': 'BLOCKFACE',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-10T07:41:57.000',
  'community_board': '12 QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '64309602',
  'created_date': '2025-03-10T07:42:00.000',
  'closed_date': '2025-03-10T23:16:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '11226',
  'incident_address': '301 EAST   23 STREET',
  'street_name': 'EAST   23 STREET',
  'cross_street_1': 'CLARENDON ROAD',
  'cross_street_2': 'VANDERVEER PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'DSNY Garage',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation does NOT have jurisdiction over vehicles (abandoned or otherwise) that have license plates affixed to them. Your request will be referred to the NYPD for further action.',
  'resolution_action_updated_date': '2025-03-10T12:00:00.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051890001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996607',
  'y_coordinate_state_plane': '173437',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.642712504242496',
  'longitude': '-73.95547333215687',
  'location': {'latitude': '40.642712504242496',
   'longitude': '-73.95547333215687',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310397',
  'created_date': '2025-03-10T07:42:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Panhandling',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10451',
  'incident_address': '349 EAST  149 STREET',
  'street_name': 'EAST  149 STREET',
  'cross_street_1': 'MORRIS AVENUE',
  'cross_street_2': 'COURTLANDT AVENUE',
  'intersection_street_1': 'MORRIS AVENUE',
  'intersection_street_2': 'COURTLANDT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  149 STREET',
  'status': 'In Progress',
  'community_board': '01 BRONX',
  'bbl': '2023317501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006405',
  'y_coordinate_state_plane': '236822',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8166696032531',
  'longitude': '-73.91995897030567',
  'location': {'latitude': '40.8166696032531',
   'longitude': '-73.91995897030567',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315340',
  'created_date': '2025-03-10T07:42:10.000',
  'agency': 'EDC',
  'agency_name': 'Economic Development Corporation',
  'complaint_type': 'Noise - Helicopter',
  'descriptor': 'Other',
  'location_type': 'Above Address',
  'incident_zip': '11217',
  'incident_address': '480 DEGRAW STREET',
  'street_name': 'DEGRAW STREET',
  'cross_street_1': 'HOYT STREET',
  'cross_street_2': 'BOND STREET',
  'intersection_street_1': 'HOYT STREET',
  'intersection_street_2': 'BOND STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'DEGRAW STREET',
  'status': 'In Progress',
  'community_board': '06 BROOKLYN',
  'bbl': '3004237501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987297',
  'y_coordinate_state_plane': '187503',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68132866217603',
  'longitude': '-73.989014217429',
  'location': {'latitude': '40.68132866217603',
   'longitude': '-73.989014217429',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311835',
  'created_date': '2025-03-10T07:42:23.000',
  'closed_date': '2025-03-10T07:42:23.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11413',
  'intersection_street_1': 'NORTH CONDUIT AVENUE',
  'intersection_street_2': 'SPRINGFIELD BOULEVARD',
  'address_type': 'INTERSECTION',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-10T07:42:23.000',
  'community_board': '12 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1051488',
  'y_coordinate_state_plane': '182176',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.66645245268285',
  'longitude': '-73.75763103134312',
  'location': {'latitude': '40.66645245268285',
   'longitude': '-73.75763103134312',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312843',
  'created_date': '2025-03-10T07:42:26.000',
  'closed_date': '2025-03-10T08:01:44.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Non-Food Vendor',
  'location_type': 'Street',
  'incident_zip': '10004',
  'incident_address': '26 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'BEAVER STREET',
  'cross_street_2': 'MORRIS STREET',
  'intersection_street_1': 'BEAVER STREET',
  'intersection_street_2': 'MORRIS STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'N/A',
  'resolution_action_updated_date': '2025-03-10T08:01:46.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1000220013',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '980562',
  'y_coordinate_state_plane': '196375',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.70568000485677',
  'longitude': '-74.01330172836009',
  'location': {'latitude': '40.70568000485677',
   'longitude': '-74.01330172836009',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311660',
  'created_date': '2025-03-10T07:43:01.000',
  'closed_date': '2025-03-10T10:14:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10019',
  'incident_address': '725 11 AVENUE',
  'street_name': '11 AVENUE',
  'cross_street_1': 'WEST   51 STREET',
  'cross_street_2': 'WEST   52 STREET',
  'intersection_street_1': 'WEST   51 STREET',
  'intersection_street_2': 'WEST   52 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '11 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and has referred the complaint to the Department of Homeless Services (DHS) for further action. DHS will inspect the condition and update your Service Request with more information.',
  'resolution_action_updated_date': '2025-03-10T10:14:37.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010990031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985913',
  'y_coordinate_state_plane': '218631',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.76676783746727',
  'longitude': '-73.993996457715',
  'location': {'latitude': '40.76676783746727',
   'longitude': '-73.993996457715',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315777',
  'created_date': '2025-03-10T07:43:01.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10019',
  'incident_address': '725 11 AVENUE',
  'street_name': '11 AVENUE',
  'cross_street_1': 'WEST   51 STREET',
  'cross_street_2': 'WEST   52 STREET',
  'intersection_street_1': 'WEST   51 STREET',
  'intersection_street_2': 'WEST   52 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '11 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2025-03-10T10:14:38.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010990031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985913',
  'y_coordinate_state_plane': '218631',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.76676783746727',
  'longitude': '-73.993996457715',
  'location': {'latitude': '40.76676783746727',
   'longitude': '-73.993996457715',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311394',
  'created_date': '2025-03-10T07:43:04.000',
  'closed_date': '2025-03-10T08:49:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11230',
  'incident_address': '1910 FOSTER AVENUE',
  'street_name': 'FOSTER AVENUE',
  'cross_street_1': 'EAST   19 STREET',
  'cross_street_2': 'OCEAN AVENUE',
  'intersection_street_1': 'EAST   19 STREET',
  'intersection_street_2': 'OCEAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FOSTER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:49:58.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3052400117',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995555',
  'y_coordinate_state_plane': '170954',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63589860621178',
  'longitude': '-73.95926822222643',
  'location': {'latitude': '40.63589860621178',
   'longitude': '-73.95926822222643',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313263',
  'created_date': '2025-03-10T07:43:06.000',
  'closed_date': '2025-03-10T07:43:06.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11434',
  'intersection_street_1': '115 AVENUE',
  'intersection_street_2': 'GUY R BREWER BOULEVARD',
  'address_type': 'INTERSECTION',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-10T07:43:06.000',
  'community_board': '12 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1043893',
  'y_coordinate_state_plane': '189836',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68753178141325',
  'longitude': '-73.78494038708322',
  'location': {'latitude': '40.68753178141325',
   'longitude': '-73.78494038708322',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309285',
  'created_date': '2025-03-10T07:43:09.000',
  'agency': 'EDC',
  'agency_name': 'Economic Development Corporation',
  'complaint_type': 'Noise - Helicopter',
  'descriptor': 'Other',
  'location_type': 'Above Address',
  'incident_zip': '11217',
  'incident_address': '480 DEGRAW STREET',
  'street_name': 'DEGRAW STREET',
  'cross_street_1': 'HOYT STREET',
  'cross_street_2': 'BOND STREET',
  'intersection_street_1': 'HOYT STREET',
  'intersection_street_2': 'BOND STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'DEGRAW STREET',
  'status': 'In Progress',
  'community_board': '06 BROOKLYN',
  'bbl': '3004237501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987297',
  'y_coordinate_state_plane': '187503',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68132866217603',
  'longitude': '-73.989014217429',
  'location': {'latitude': '40.68132866217603',
   'longitude': '-73.989014217429',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310702',
  'created_date': '2025-03-10T07:43:27.000',
  'closed_date': '2025-03-12T12:08:25.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10035',
  'incident_address': '2042 5 AVENUE',
  'street_name': '5 AVENUE',
  'cross_street_1': 'EAST  126 STREET',
  'cross_street_2': 'EAST  127 STREET',
  'intersection_street_1': 'EAST  126 STREET',
  'intersection_street_2': 'EAST  127 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '5 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation cleaned the location.',
  'resolution_action_updated_date': '2025-03-12T12:08:29.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1017240033',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000386',
  'y_coordinate_state_plane': '233363',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80718865791141',
  'longitude': '-73.94171257055883',
  'location': {'latitude': '40.80718865791141',
   'longitude': '-73.94171257055883',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307512',
  'created_date': '2025-03-10T07:43:31.000',
  'closed_date': '2025-03-10T09:19:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11239',
  'incident_address': '598 SCHROEDERS AVENUE',
  'street_name': 'SCHROEDERS AVENUE',
  'cross_street_1': 'ESSEX STREET',
  'cross_street_2': 'BERRIMAN STREET',
  'intersection_street_1': 'ESSEX STREET',
  'intersection_street_2': 'BERRIMAN STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SCHROEDERS AVENUE',
  'status': 'Closed',
  'resolution_description': "This complaint does not fall under the Police Department's jurisdiction.",
  'resolution_action_updated_date': '2025-03-10T09:19:54.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3045860945',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020207',
  'y_coordinate_state_plane': '178299',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65599325559804',
  'longitude': '-73.87040829977123',
  'location': {'latitude': '40.65599325559804',
   'longitude': '-73.87040829977123',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313093',
  'created_date': '2025-03-10T07:43:40.000',
  'closed_date': '2025-03-10T07:43:40.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11423',
  'incident_address': '183 STREET',
  'street_name': '183 STREET',
  'cross_street_1': 'JAMAICA AVENUE',
  'cross_street_2': 'LONG ISLAND RAILROAD',
  'address_type': 'BLOCKFACE',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-10T07:43:40.000',
  'community_board': '12 QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '64313999',
  'created_date': '2025-03-10T07:43:52.000',
  'agency': 'EDC',
  'agency_name': 'Economic Development Corporation',
  'complaint_type': 'Noise - Helicopter',
  'descriptor': 'Other',
  'location_type': 'Above Address',
  'incident_zip': '11217',
  'incident_address': '241 HOYT STREET',
  'street_name': 'HOYT STREET',
  'cross_street_1': 'BUTLER STREET',
  'cross_street_2': 'DOUGLASS STREET',
  'intersection_street_1': 'BUTLER STREET',
  'intersection_street_2': 'DOUGLASS STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HOYT STREET',
  'status': 'In Progress',
  'community_board': '06 BROOKLYN',
  'bbl': '3004040001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986961',
  'y_coordinate_state_plane': '188098',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.682961911076816',
  'longitude': '-73.99022540664043',
  'location': {'latitude': '40.682961911076816',
   'longitude': '-73.99022540664043',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311812',
  'created_date': '2025-03-10T07:43:54.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Root/Sewer/Sidewalk Condition',
  'descriptor': 'Trees and Sidewalks Program',
  'location_type': 'Street',
  'incident_zip': '11364',
  'incident_address': '56-35 OCEANIA STREET',
  'street_name': 'OCEANIA STREET',
  'cross_street_1': '56 AVENUE',
  'cross_street_2': '58 AVENUE',
  'intersection_street_1': '56 AVENUE',
  'intersection_street_2': '58 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'OAKLAND GARDENS',
  'landmark': 'OCEANIA STREET',
  'status': 'In Progress',
  'community_board': '11 QUEENS',
  'bbl': '4074380044',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1048169',
  'y_coordinate_state_plane': '212275',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.749091381572974',
  'longitude': '-73.76930905548278',
  'location': {'latitude': '40.749091381572974',
   'longitude': '-73.76930905548278',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314241',
  'created_date': '2025-03-10T07:43:54.000',
  'closed_date': '2025-03-10T09:51:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10468',
  'incident_address': '2305 LORING PLACE NORTH',
  'street_name': 'LORING PLACE NORTH',
  'cross_street_1': 'WEST  183 STREET',
  'cross_street_2': 'WEST FORDHAM ROAD',
  'intersection_street_1': 'WEST  183 STREET',
  'intersection_street_2': 'WEST FORDHAM ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'LORING PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:51:19.000',
  'community_board': '07 BRONX',
  'bbl': '2032250180',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009600',
  'y_coordinate_state_plane': '253264',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86178949569016',
  'longitude': '-73.90835401537336',
  'location': {'latitude': '40.86178949569016',
   'longitude': '-73.90835401537336',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312485',
  'created_date': '2025-03-10T07:44:00.000',
  'closed_date': '2025-03-13T15:37:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Jack Hammering (NC2)',
  'incident_zip': '10128',
  'intersection_street_1': '2 AVENUE',
  'intersection_street_2': 'EAST 88 STREET',
  'address_type': 'INTERSECTION',
  'city': 'MANHATTAN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': "The Department of Environmental Protection (DEP) didn't observe a violation of the NYC Air or Noise Code at the time of inspection and couldn't issue a summons.  If the problem still exists, please go to nyc.gov/311 or call 311 to file a new Service Request. If you're outside of New York City, please call (212) NEW-YORK (212-639-9675).",
  'resolution_action_updated_date': '2025-03-13T15:37:00.000',
  'community_board': '08 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997878',
  'y_coordinate_state_plane': '223157',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77918017382078',
  'longitude': '-73.9507928265217',
  'location': {'latitude': '40.77918017382078',
   'longitude': '-73.9507928265217',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310678',
  'created_date': '2025-03-10T07:44:06.000',
  'closed_date': '2025-03-10T07:44:06.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11428',
  'incident_address': '210 STREET',
  'street_name': '210 STREET',
  'cross_street_1': '93 AVENUE',
  'cross_street_2': '94 AVENUE',
  'address_type': 'BLOCKFACE',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-10T07:44:06.000',
  'community_board': '13 QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '64312025',
  'created_date': '2025-03-10T07:44:11.000',
  'closed_date': '2025-03-10T08:39:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11217',
  'incident_address': '465 BERGEN STREET',
  'street_name': 'BERGEN STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'FLATBUSH AVENUE',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'FLATBUSH AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BERGEN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:39:04.000',
  'community_board': '06 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991006',
  'y_coordinate_state_plane': '187369',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68095880882168',
  'longitude': '-73.97564176692511',
  'location': {'latitude': '40.68095880882168',
   'longitude': '-73.97564176692511',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315480',
  'created_date': '2025-03-10T07:44:23.000',
  'closed_date': '2025-03-10T11:20:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10471',
  'incident_address': '5425 VALLES AVENUE',
  'street_name': 'VALLES AVENUE',
  'cross_street_1': 'WEST  254 STREET',
  'cross_street_2': 'WEST  256 STREET',
  'intersection_street_1': 'WEST  254 STREET',
  'intersection_street_2': 'WEST  256 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'VALLES AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T11:20:45.000',
  'community_board': '08 BRONX',
  'bbl': '2058451863',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012000',
  'y_coordinate_state_plane': '267896',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.90194253257628',
  'longitude': '-73.89961686062802',
  'location': {'latitude': '40.90194253257628',
   'longitude': '-73.89961686062802',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314997',
  'created_date': '2025-03-10T07:44:27.000',
  'closed_date': '2025-03-12T14:30:18.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10013',
  'incident_address': '164 MOTT STREET',
  'street_name': 'MOTT STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1004700007',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985305',
  'y_coordinate_state_plane': '201499',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71974486986915',
  'longitude': '-73.99619406592797',
  'location': {'latitude': '40.71974486986915',
   'longitude': '-73.99619406592797',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307028',
  'created_date': '2025-03-10T07:44:29.000',
  'closed_date': '2025-03-12T08:29:56.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11226',
  'incident_address': '1487 NOSTRAND AVENUE',
  'street_name': 'NOSTRAND AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3048840054',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998268',
  'y_coordinate_state_plane': '176108',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65004134792918',
  'longitude': '-73.94948260889885',
  'location': {'latitude': '40.65004134792918',
   'longitude': '-73.94948260889885',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314983',
  'created_date': '2025-03-10T07:44:31.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11225',
  'incident_address': '101 LINCOLN ROAD',
  'street_name': 'LINCOLN ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3013270077',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995593',
  'y_coordinate_state_plane': '180120',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66105723901385',
  'longitude': '-73.95911589501321',
  'location': {'latitude': '40.66105723901385',
   'longitude': '-73.95911589501321',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315087',
  'created_date': '2025-03-10T07:44:31.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11225',
  'incident_address': '101 LINCOLN ROAD',
  'street_name': 'LINCOLN ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3013270077',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995593',
  'y_coordinate_state_plane': '180120',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66105723901385',
  'longitude': '-73.95911589501321',
  'location': {'latitude': '40.66105723901385',
   'longitude': '-73.95911589501321',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306443',
  'created_date': '2025-03-10T07:44:34.000',
  'closed_date': '2025-03-10T07:44:34.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11412',
  'incident_address': '120 AVENUE',
  'street_name': '120 AVENUE',
  'cross_street_1': '193 STREET',
  'cross_street_2': '194 STREET',
  'address_type': 'BLOCKFACE',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-10T07:44:34.000',
  'community_board': '12 QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '64311897',
  'created_date': '2025-03-10T07:44:34.000',
  'agency': 'EDC',
  'agency_name': 'Economic Development Corporation',
  'complaint_type': 'Noise - Helicopter',
  'descriptor': 'Other',
  'location_type': 'Above Address',
  'incident_zip': '11217',
  'incident_address': '280 BOND STREET',
  'street_name': 'BOND STREET',
  'cross_street_1': 'DEGRAW STREET',
  'cross_street_2': 'SACKETT STREET',
  'intersection_street_1': 'DEGRAW STREET',
  'intersection_street_2': 'SACKETT STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BOND STREET',
  'status': 'In Progress',
  'community_board': '06 BROOKLYN',
  'bbl': '3004237501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987330',
  'y_coordinate_state_plane': '187363',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68094438256293',
  'longitude': '-73.9888953018243',
  'location': {'latitude': '40.68094438256293',
   'longitude': '-73.9888953018243',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314887',
  'created_date': '2025-03-10T07:44:34.000',
  'closed_date': '2025-03-11T09:25:57.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10453',
  'incident_address': '2064 CRESTON AVENUE',
  'street_name': 'CRESTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '05 BRONX',
  'bbl': '2031600005',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010738',
  'y_coordinate_state_plane': '250195',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85336267375657',
  'longitude': '-73.90425201864872',
  'location': {'latitude': '40.85336267375657',
   'longitude': '-73.90425201864872',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309108',
  'created_date': '2025-03-10T07:44:51.000',
  'closed_date': '2025-03-10T09:46:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10463',
  'incident_address': '500 KAPPOCK STREET',
  'street_name': 'KAPPOCK STREET',
  'cross_street_1': 'JOHNSON AVENUE',
  'cross_street_2': 'NETHERLAND AVENUE',
  'intersection_street_1': 'JOHNSON AVENUE',
  'intersection_street_2': 'NETHERLAND AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'KAPPOCK STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:46:46.000',
  'community_board': '08 BRONX',
  'bbl': '2057230100',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006968',
  'y_coordinate_state_plane': '258895',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87725202999144',
  'longitude': '-73.9178501935103',
  'location': {'latitude': '40.87725202999144',
   'longitude': '-73.9178501935103',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309526',
  'created_date': '2025-03-10T07:44:55.000',
  'closed_date': '2025-03-10T22:02:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10467',
  'incident_address': '3315 CRUGER AVENUE',
  'street_name': 'CRUGER AVENUE',
  'cross_street_1': 'NORTH OAK DRIVE',
  'cross_street_2': 'BARTHOLDI STREET',
  'intersection_street_1': 'NORTH OAK DRIVE',
  'intersection_street_2': 'BARTHOLDI STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CRUGER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T22:02:10.000',
  'community_board': '12 BRONX',
  'bbl': '2046000019',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021266',
  'y_coordinate_state_plane': '257600',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87364927387362',
  'longitude': '-73.86615488989199',
  'location': {'latitude': '40.87364927387362',
   'longitude': '-73.86615488989199',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64322324',
  'created_date': '2025-03-10T07:45:00.000',
  'closed_date': '2025-03-10T09:20:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'APS',
  'incident_zip': '10038',
  'intersection_street_1': 'OLIVER STREET',
  'intersection_street_2': 'MADISON STREET',
  'address_type': 'INTERSECTION',
  'city': 'MANHATTAN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-10T09:20:00.000',
  'community_board': '03 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984868',
  'y_coordinate_state_plane': '198667',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.711971749067594',
  'longitude': '-73.99777081235356',
  'location': {'latitude': '40.711971749067594',
   'longitude': '-73.99777081235356',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307471',
  'created_date': '2025-03-10T07:45:05.000',
  'closed_date': '2025-03-10T08:58:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11217',
  'incident_address': '29 FORT GREENE PLACE',
  'street_name': 'FORT GREENE PLACE',
  'cross_street_1': 'DEKALB AVENUE',
  'cross_street_2': 'FULTON STREET',
  'intersection_street_1': 'DEKALB AVENUE',
  'intersection_street_2': 'FULTON STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FORT GREENE PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:58:21.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3020980013',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990655',
  'y_coordinate_state_plane': '190238',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68883381906261',
  'longitude': '-73.97690454285608',
  'location': {'latitude': '40.68883381906261',
   'longitude': '-73.97690454285608',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312987',
  'created_date': '2025-03-10T07:45:25.000',
  'closed_date': '2025-03-10T09:17:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11239',
  'incident_address': '644 SCHROEDERS AVENUE',
  'street_name': 'SCHROEDERS AVENUE',
  'cross_street_1': 'BERRIMAN STREET',
  'cross_street_2': 'SCHROEDERS WALK',
  'intersection_street_1': 'BERRIMAN STREET',
  'intersection_street_2': 'SCHROEDERS WALK',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SCHROEDERS AVENUE',
  'status': 'Closed',
  'resolution_description': "This complaint does not fall under the Police Department's jurisdiction.",
  'resolution_action_updated_date': '2025-03-10T09:17:32.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3045860967',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020558',
  'y_coordinate_state_plane': '178496',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.656532544597695',
  'longitude': '-73.86914221091672',
  'location': {'latitude': '40.656532544597695',
   'longitude': '-73.86914221091672',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309528',
  'created_date': '2025-03-10T07:45:44.000',
  'closed_date': '2025-03-10T15:30:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11367',
  'incident_address': '147-66 77 AVENUE',
  'street_name': '77 AVENUE',
  'cross_street_1': '147 STREET',
  'cross_street_2': '150 STREET',
  'intersection_street_1': '147 STREET',
  'intersection_street_2': '150 STREET',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '77 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T15:30:09.000',
  'community_board': '08 QUEENS',
  'bbl': '4066870030',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035072',
  'y_coordinate_state_plane': '202391',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72204727148413',
  'longitude': '-73.81665212810965',
  'location': {'latitude': '40.72204727148413',
   'longitude': '-73.81665212810965',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64305920',
  'created_date': '2025-03-10T07:45:52.000',
  'closed_date': '2025-03-13T11:19:25.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Posting',
  'descriptor': 'Sticker or Decal',
  'location_type': 'Sidewalk',
  'incident_zip': '10312',
  'incident_address': '3102 RICHMOND AVENUE',
  'street_name': 'RICHMOND AVENUE',
  'cross_street_1': 'DRUMGOOLE ROAD WEST',
  'cross_street_2': 'ARTHUR KILL ROAD',
  'intersection_street_1': 'DRUMGOOLE ROAD WEST',
  'intersection_street_2': 'ARTHUR KILL ROAD',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'RICHMOND AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation has investigated the complaint and addressed the issue. If the problem persists, call 311 to enter a new complaint. If you are outside of New York City, please call (212) NEW-YORK (212-639-9675).',
  'resolution_action_updated_date': '2025-03-13T11:19:25.000',
  'community_board': '02 STATEN ISLAND',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '937075',
  'y_coordinate_state_plane': '144283',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.562573841831636',
  'longitude': '-74.16978449597458',
  'location': {'latitude': '40.562573841831636',
   'longitude': '-74.16978449597458',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315506',
  'created_date': '2025-03-10T07:46:12.000',
  'closed_date': '2025-03-10T17:44:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11226',
  'incident_address': '373 EAST   23 STREET',
  'street_name': 'EAST   23 STREET',
  'cross_street_1': 'VANDERVEER PLACE',
  'cross_street_2': 'AVENUE D',
  'intersection_street_1': 'VANDERVEER PLACE',
  'intersection_street_2': 'AVENUE D',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   23 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T17:44:18.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051890036',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996657',
  'y_coordinate_state_plane': '172834',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64105732896925',
  'longitude': '-73.95529427330952',
  'location': {'latitude': '40.64105732896925',
   'longitude': '-73.95529427330952',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309416',
  'created_date': '2025-03-10T07:46:16.000',
  'closed_date': '2025-03-12T09:31:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10035',
  'incident_address': '2064 5 AVENUE',
  'street_name': '5 AVENUE',
  'cross_street_1': 'EAST  127 STREET',
  'cross_street_2': 'EAST  128 STREET',
  'intersection_street_1': 'EAST  127 STREET',
  'intersection_street_2': 'EAST  128 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '5 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and issued a Notice of Violation.',
  'resolution_action_updated_date': '2025-03-12T09:31:04.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1017250035',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000533',
  'y_coordinate_state_plane': '233629',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.807918484537176',
  'longitude': '-73.94118092328759',
  'location': {'latitude': '40.807918484537176',
   'longitude': '-73.94118092328759',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307399',
  'created_date': '2025-03-10T07:46:46.000',
  'closed_date': '2025-03-10T08:31:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11419',
  'incident_address': '107-22 123 STREET',
  'street_name': '123 STREET',
  'cross_street_1': '107 AVENUE',
  'cross_street_2': '109 AVENUE',
  'intersection_street_1': '107 AVENUE',
  'intersection_street_2': '109 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': '123 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:32:00.000',
  'community_board': '10 QUEENS',
  'bbl': '4096020018',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1034292',
  'y_coordinate_state_plane': '188903',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68503040606305',
  'longitude': '-73.81956631543045',
  'location': {'latitude': '40.68503040606305',
   'longitude': '-73.81956631543045',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308673',
  'created_date': '2025-03-10T07:47:00.000',
  'closed_date': '2025-03-11T15:11:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Possible Water Main Break (Use Comments) (WA1)',
  'incident_zip': '11220',
  'intersection_street_1': '7 AVENUE',
  'intersection_street_2': 'GOWANUS EXPRESSWAY',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-11T15:11:00.000',
  'community_board': '10 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '979830',
  'y_coordinate_state_plane': '170028',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63336304443843',
  'longitude': '-74.0159246007903',
  'location': {'latitude': '40.63336304443843',
   'longitude': '-74.0159246007903',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64344807',
  'created_date': '2025-03-10T07:47:00.000',
  'closed_date': '2025-03-13T06:46:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '11203',
  'incident_address': '664 EAST   37 STREET',
  'street_name': 'EAST   37 STREET',
  'cross_street_1': 'AVENUE D',
  'cross_street_2': 'FOSTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) couldn't find the condition. Please file a new Service Request with more details about the location.",
  'resolution_action_updated_date': '2025-03-13T12:00:00.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3049700016',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000426',
  'y_coordinate_state_plane': '172677',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64062031610225',
  'longitude': '-73.94171394206586',
  'location': {'latitude': '40.64062031610225',
   'longitude': '-73.94171394206586',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308796',
  'created_date': '2025-03-10T07:47:33.000',
  'closed_date': '2025-03-10T10:56:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10019',
  'incident_address': '42 CENTRAL PARK SOUTH',
  'street_name': 'CENTRAL PARK SOUTH',
  'cross_street_1': 'GRAND ARMY PLAZA',
  'cross_street_2': 'AVENUE OF THE AMERICAS',
  'intersection_street_1': 'GRAND ARMY PLAZA',
  'intersection_street_2': 'AVENUE OF THE AMERICAS',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'CENTRAL PARK SOUTH',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T10:56:29.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1012740006',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991201',
  'y_coordinate_state_plane': '218024',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.765099203289495',
  'longitude': '-73.9749070490379',
  'location': {'latitude': '40.765099203289495',
   'longitude': '-73.9749070490379',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312242',
  'created_date': '2025-03-10T07:47:52.000',
  'closed_date': '2025-03-13T12:57:17.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '516 WEST  135 STREET',
  'street_name': 'WEST  135 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1019880050',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997277',
  'y_coordinate_state_plane': '237749',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81923213407316',
  'longitude': '-73.95293457233953',
  'location': {'latitude': '40.81923213407316',
   'longitude': '-73.95293457233953',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314481',
  'created_date': '2025-03-10T07:48:13.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Subway',
  'address_type': 'ADDRESS',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team went to the location provided but could not find the individual that you reported.',
  'resolution_action_updated_date': '2025-03-10T20:28:38.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985453',
  'y_coordinate_state_plane': '210365',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'bridge_highway_name': '1',
  'bridge_highway_segment': 'Entrance',
  'latitude': '40.7440798456439',
  'longitude': '-73.99565856772038',
  'location': {'latitude': '40.7440798456439',
   'longitude': '-73.99565856772038',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313460',
  'created_date': '2025-03-10T07:48:25.000',
  'closed_date': '2025-03-15T15:15:42.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dead Animal',
  'descriptor': 'Bird',
  'location_type': 'Sidewalk',
  'incident_zip': '10465',
  'incident_address': 'LAFAYETTE AVENUE',
  'street_name': 'LAFAYETTE AVENUE',
  'cross_street_1': 'LAFAYETTE AVENUE',
  'cross_street_2': 'LOGAN AVENUE',
  'intersection_street_1': 'LAFAYETTE AVENUE',
  'intersection_street_2': 'LOGAN AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation cleaned the location.',
  'resolution_action_updated_date': '2025-03-11T03:15:26.000',
  'community_board': '10 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1033173',
  'y_coordinate_state_plane': '241982',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83072462260467',
  'longitude': '-73.82321477801422',
  'location': {'latitude': '40.83072462260467',
   'longitude': '-73.82321477801422',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306856',
  'created_date': '2025-03-10T07:48:26.000',
  'closed_date': '2025-03-10T08:01:44.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Non-Food Vendor',
  'location_type': 'Street',
  'incident_zip': '10004',
  'incident_address': '25 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'BATTERY PLACE',
  'cross_street_2': 'MORRIS STREET',
  'intersection_street_1': 'BATTERY PLACE',
  'intersection_street_2': 'MORRIS STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'N/A',
  'resolution_action_updated_date': '2025-03-10T08:01:49.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1000130027',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '980542',
  'y_coordinate_state_plane': '196401',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.70575136036927',
  'longitude': '-74.01337387786249',
  'location': {'latitude': '40.70575136036927',
   'longitude': '-74.01337387786249',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310387',
  'created_date': '2025-03-10T07:48:36.000',
  'closed_date': '2025-03-10T08:23:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Traffic',
  'descriptor': 'Truck Route Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11222',
  'incident_address': '224 KINGSLAND AVENUE',
  'street_name': 'KINGSLAND AVENUE',
  'cross_street_1': 'DRIGGS AVENUE',
  'cross_street_2': 'NASSAU AVENUE',
  'intersection_street_1': 'DRIGGS AVENUE',
  'intersection_street_2': 'NASSAU AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KINGSLAND AVENUE',
  'status': 'Closed',
  'resolution_description': "This complaint does not fall under the Police Department's jurisdiction.",
  'resolution_action_updated_date': '2025-03-10T08:23:45.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3026890067',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000480',
  'y_coordinate_state_plane': '203228',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.72447573111649',
  'longitude': '-73.9414457824408',
  'location': {'latitude': '40.72447573111649',
   'longitude': '-73.9414457824408',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307655',
  'created_date': '2025-03-10T07:48:38.000',
  'agency': 'EDC',
  'agency_name': 'Economic Development Corporation',
  'complaint_type': 'Noise - Helicopter',
  'descriptor': 'Other',
  'location_type': 'Above Address',
  'incident_zip': '11414',
  'incident_address': '90-55 SHORE PARKWAY',
  'street_name': 'SHORE PARKWAY',
  'cross_street_2': 'CROSS BAY BOULEVARD',
  'intersection_street_2': 'CROSS BAY BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'HOWARD BEACH',
  'landmark': 'SHORE PARKWAY',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'bbl': '4114510050',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027962',
  'y_coordinate_state_plane': '182291',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.66691551071256',
  'longitude': '-73.84243287868425',
  'location': {'latitude': '40.66691551071256',
   'longitude': '-73.84243287868425',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310205',
  'created_date': '2025-03-10T07:48:54.000',
  'closed_date': '2025-03-12T07:53:47.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Cave-in',
  'location_type': 'Street',
  'incident_zip': '11232',
  'incident_address': '39 STREET',
  'street_name': '39 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': '6 AVENUE',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': '6 AVENUE',
  'address_type': 'BLOCKFACE',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected the condition you reported and found that the condition meets its standards and/or there is a valid permit to conduct work.',
  'resolution_action_updated_date': '2025-03-12T07:53:50.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN'},
 {'unique_key': '64307332',
  'created_date': '2025-03-10T07:49:09.000',
  'closed_date': '2025-03-10T10:43:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10467',
  'incident_address': '612 ALLERTON AVENUE',
  'street_name': 'ALLERTON AVENUE',
  'cross_street_1': 'BRONX PARK EAST',
  'cross_street_2': 'BARKER AVENUE',
  'intersection_street_1': 'BRONX PARK EAST',
  'intersection_street_2': 'BARKER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ALLERTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T10:43:14.000',
  'community_board': '11 BRONX',
  'bbl': '2044270029',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1020207',
  'y_coordinate_state_plane': '254580',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.86536468283641',
  'longitude': '-73.87000029825273',
  'location': {'latitude': '40.86536468283641',
   'longitude': '-73.87000029825273',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307524',
  'created_date': '2025-03-10T07:49:16.000',
  'closed_date': '2025-03-10T09:12:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Vehicle',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10458',
  'incident_address': '2396 TIEBOUT AVENUE',
  'street_name': 'TIEBOUT AVENUE',
  'cross_street_1': 'EAST  184 STREET',
  'cross_street_2': 'EAST  187 STREET',
  'intersection_street_1': 'EAST  184 STREET',
  'intersection_street_2': 'EAST  187 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'TIEBOUT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:12:57.000',
  'community_board': '05 BRONX',
  'bbl': '2030220015',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013034',
  'y_coordinate_state_plane': '252380',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.859352654626605',
  'longitude': '-73.89594313588788',
  'location': {'latitude': '40.859352654626605',
   'longitude': '-73.89594313588788',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310650',
  'created_date': '2025-03-10T07:49:23.000',
  'closed_date': '2025-03-10T08:10:42.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11694',
  'incident_address': '145 BEACH  112 STREET',
  'street_name': 'BEACH  112 STREET',
  'cross_street_1': 'OCEAN PROMENADE',
  'cross_street_2': 'ROCKAWAY BEACH BOULEVARD',
  'intersection_street_1': 'OCEAN PROMENADE',
  'intersection_street_2': 'ROCKAWAY BEACH BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'landmark': 'BEACH  112 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:10:48.000',
  'community_board': '14 QUEENS',
  'bbl': '4161850037',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1030588',
  'y_coordinate_state_plane': '150570',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.5798348114986',
  'longitude': '-73.833184799543',
  'location': {'latitude': '40.5798348114986',
   'longitude': '-73.833184799543',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309406',
  'created_date': '2025-03-10T07:49:30.000',
  'closed_date': '2025-03-11T07:19:36.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10023',
  'incident_address': '128 WEST   73 STREET',
  'street_name': 'WEST   73 STREET',
  'cross_street_1': 'COLUMBUS AVENUE',
  'cross_street_2': 'AMSTERDAM AVENUE',
  'intersection_street_1': 'COLUMBUS AVENUE',
  'intersection_street_2': 'AMSTERDAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   73 STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and issued a Notice of Violation.',
  'resolution_action_updated_date': '2025-03-11T07:19:41.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1011440044',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989985',
  'y_coordinate_state_plane': '222909',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77850812484104',
  'longitude': '-73.97929261230342',
  'location': {'latitude': '40.77850812484104',
   'longitude': '-73.97929261230342',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312962',
  'created_date': '2025-03-10T07:49:54.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Sign - Missing',
  'descriptor': 'Stop',
  'location_type': 'Street',
  'incident_zip': '11414',
  'incident_address': '88 STREET',
  'street_name': '88 STREET',
  'cross_street_1': '88 STREET',
  'cross_street_2': '160 AVENUE',
  'intersection_street_1': '88 STREET',
  'intersection_street_2': '160 AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_description': 'This request required re-assignment to a new DOT unit.',
  'resolution_action_updated_date': '2025-03-11T09:04:20.000',
  'community_board': '10 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027496',
  'y_coordinate_state_plane': '178619',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.656838986134865',
  'longitude': '-73.84413620074776',
  'location': {'latitude': '40.656838986134865',
   'longitude': '-73.84413620074776',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307303',
  'created_date': '2025-03-10T07:50:00.000',
  'closed_date': '2025-03-10T10:15:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Hydrant Running (WC3)',
  'incident_zip': '10454',
  'incident_address': '125 ST ANNS AVENUE',
  'street_name': 'ST ANNS AVENUE',
  'cross_street_1': 'BRUCKNER BLVD',
  'cross_street_2': 'E 134 ST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection investigated this complaint and shut the running hydrant.',
  'resolution_action_updated_date': '2025-03-10T10:15:00.000',
  'community_board': '01 BRONX',
  'bbl': '2022610043',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006489',
  'y_coordinate_state_plane': '232117',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.80375547849556',
  'longitude': '-73.91967108507379',
  'location': {'latitude': '40.80375547849556',
   'longitude': '-73.91967108507379',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308600',
  'created_date': '2025-03-10T07:50:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '10314',
  'incident_address': '1302 ROCKLAND AVENUE',
  'street_name': 'ROCKLAND AVENUE',
  'cross_street_1': 'COOPER TER',
  'cross_street_2': 'ORBIT LN',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5023607501',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '939813',
  'y_coordinate_state_plane': '156175',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.59522912628932',
  'longitude': '-74.16000853915496',
  'location': {'latitude': '40.59522912628932',
   'longitude': '-74.16000853915496',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311199',
  'created_date': '2025-03-10T07:50:00.000',
  'closed_date': '2025-03-10T16:00:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Air Quality',
  'descriptor': 'Air: Odor/Fumes, Vehicle Idling (AD3)',
  'incident_zip': '11428',
  'intersection_street_1': '90 AVENUE',
  'intersection_street_2': 'VANDERVEER STREET',
  'address_type': 'INTERSECTION',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': "The Department of Environmental Protection (DEP) didn't observe a violation of the NYC Air or Noise Code at the time of inspection and couldn't issue a summons.  If the problem still exists, please go to nyc.gov/311 or call 311 to file a new Service Request. If you're outside of New York City, please call (212) NEW-YORK (212-639-9675).",
  'resolution_action_updated_date': '2025-03-10T16:00:00.000',
  'community_board': '13 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1054269',
  'y_coordinate_state_plane': '202856',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.723192462996444',
  'longitude': '-73.74739160870898',
  'location': {'latitude': '40.723192462996444',
   'longitude': '-73.74739160870898',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308679',
  'created_date': '2025-03-10T07:50:02.000',
  'closed_date': '2025-03-10T08:32:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'License Plate Obscured',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10469',
  'incident_address': '2920 ELY AVENUE',
  'street_name': 'ELY AVENUE',
  'cross_street_1': 'ARNOW AVENUE',
  'cross_street_2': 'ADEE AVENUE',
  'intersection_street_1': 'ARNOW AVENUE',
  'intersection_street_2': 'ADEE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ELY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:32:10.000',
  'community_board': '12 BRONX',
  'bbl': '2047960147',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1029622',
  'y_coordinate_state_plane': '256337',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87014373353362',
  'longitude': '-73.83594928208356',
  'location': {'latitude': '40.87014373353362',
   'longitude': '-73.83594928208356',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311444',
  'created_date': '2025-03-10T07:50:04.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Bus Stop Shelter Complaint',
  'descriptor': 'Lighting',
  'location_type': 'Bus Stop Shelter',
  'incident_zip': '10463',
  'incident_address': 'FAIRFIELD AVENUE',
  'street_name': 'FAIRFIELD AVENUE',
  'cross_street_1': 'FAIRFIELD AVENUE',
  'cross_street_2': 'WEST  232 STREET',
  'intersection_street_1': 'FAIRFIELD AVENUE',
  'intersection_street_2': 'WEST  232 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_description': 'Your complaint has been forwarded to the responsible private contractor. Department of Transportation will monitor compliance.',
  'resolution_action_updated_date': '2025-03-10T09:31:44.000',
  'community_board': '08 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008103',
  'y_coordinate_state_plane': '261471',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88431935104054',
  'longitude': '-73.91373678710868',
  'location': {'latitude': '40.88431935104054',
   'longitude': '-73.91373678710868',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310760',
  'created_date': '2025-03-10T07:50:22.000',
  'agency': 'TLC',
  'agency_name': 'Taxi and Limousine Commission',
  'complaint_type': 'For Hire Vehicle Complaint',
  'descriptor': 'Driver Complaint - Non Passenger',
  'location_type': 'Street',
  'incident_zip': '11101',
  'incident_address': '43-01 21 STREET',
  'street_name': '21 STREET',
  'cross_street_1': '43 AVENUE',
  'cross_street_2': '44 AVENUE',
  'intersection_street_1': '43 AVENUE',
  'intersection_street_2': '44 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'LONG ISLAND CITY',
  'landmark': '21 STREET',
  'status': 'In Progress',
  'community_board': '02 QUEENS',
  'bbl': '4004410016',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '999290',
  'y_coordinate_state_plane': '212732',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'taxi_pick_up_location': '43-01 21 STREET, QUEENS (LONG ISLAND CITY), NY, 11101',
  'latitude': '40.75056395720934',
  'longitude': '-73.94571778793545',
  'location': {'latitude': '40.75056395720934',
   'longitude': '-73.94571778793545',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308403',
  'created_date': '2025-03-10T07:50:28.000',
  'closed_date': '2025-03-11T20:33:11.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10027',
  'incident_address': '1430 AMSTERDAM AVENUE',
  'street_name': 'AMSTERDAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1019840001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996962',
  'y_coordinate_state_plane': '236718',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81640278803893',
  'longitude': '-73.9540745928603',
  'location': {'latitude': '40.81640278803893',
   'longitude': '-73.9540745928603',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311136',
  'created_date': '2025-03-10T07:50:31.000',
  'closed_date': '2025-03-13T13:26:09.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'WATER LEAK',
  'descriptor': 'SLOW LEAK',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11226',
  'incident_address': '200 EAST   18 STREET',
  'street_name': 'EAST   18 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-13T00:00:00.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051210012',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994665',
  'y_coordinate_state_plane': '174701',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64618440824288',
  'longitude': '-73.96246909678992',
  'location': {'latitude': '40.64618440824288',
   'longitude': '-73.96246909678992',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312156',
  'created_date': '2025-03-10T07:50:31.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'DOOR/WINDOW',
  'descriptor': 'DOOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11226',
  'incident_address': '200 EAST   18 STREET',
  'street_name': 'EAST   18 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051210012',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994665',
  'y_coordinate_state_plane': '174701',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64618440824288',
  'longitude': '-73.96246909678992',
  'location': {'latitude': '40.64618440824288',
   'longitude': '-73.96246909678992',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316028',
  'created_date': '2025-03-10T07:50:37.000',
  'closed_date': '2025-03-12T15:08:13.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Removal Request',
  'location_type': 'Street',
  'incident_zip': '10312',
  'incident_address': '50 RUMBA PLACE',
  'street_name': 'RUMBA PLACE',
  'cross_street_1': 'DAHLIA STREET',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'DAHLIA STREET',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'RUMBA PLACE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-11T13:41:58.000',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5060870040',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '928349',
  'y_coordinate_state_plane': '138911',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.54777805240606',
  'longitude': '-74.20114518158452',
  'location': {'latitude': '40.54777805240606',
   'longitude': '-74.20114518158452',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311984',
  'created_date': '2025-03-10T07:50:43.000',
  'closed_date': '2025-03-11T07:16:59.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10023',
  'incident_address': '141 WEST   73 STREET',
  'street_name': 'WEST   73 STREET',
  'cross_street_1': 'COLUMBUS AVENUE',
  'cross_street_2': 'AMSTERDAM AVENUE',
  'intersection_street_1': 'COLUMBUS AVENUE',
  'intersection_street_2': 'AMSTERDAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   73 STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-11T07:17:04.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1011450012',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989920',
  'y_coordinate_state_plane': '222951',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77862344568907',
  'longitude': '-73.97952727261506',
  'location': {'latitude': '40.77862344568907',
   'longitude': '-73.97952727261506',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309892',
  'created_date': '2025-03-10T07:50:49.000',
  'closed_date': '2025-03-11T11:30:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11203',
  'incident_address': 'ALBANY AVENUE',
  'street_name': 'ALBANY AVENUE',
  'cross_street_1': 'CLARKSON AVENUE',
  'cross_street_2': 'WINTHROP STREET',
  'address_type': 'BLOCKFACE',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected this complaint and repaired the problem.',
  'resolution_action_updated_date': '2025-03-11T11:30:00.000',
  'community_board': '09 BROOKLYN',
  'borough': 'BROOKLYN',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN'},
 {'unique_key': '64315463',
  'created_date': '2025-03-10T07:50:53.000',
  'closed_date': '2025-03-14T14:01:40.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Bus Stop Shelter Complaint',
  'descriptor': 'Broken Glass',
  'location_type': 'Bus Stop Shelter',
  'incident_zip': '10461',
  'incident_address': 'BRUCKNER BOULEVARD',
  'street_name': 'BRUCKNER BOULEVARD',
  'cross_street_1': 'BRUCKNER BOULEVARD',
  'cross_street_2': 'JARVIS AVENUE',
  'intersection_street_1': 'BRUCKNER BOULEVARD',
  'intersection_street_2': 'JARVIS AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The contractor has reported that the requested work has been completed.',
  'resolution_action_updated_date': '2025-03-14T14:01:42.000',
  'community_board': '10 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1032327',
  'y_coordinate_state_plane': '246450',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8429926098891',
  'longitude': '-73.82623979864502',
  'location': {'latitude': '40.8429926098891',
   'longitude': '-73.82623979864502',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312252',
  'created_date': '2025-03-10T07:50:57.000',
  'closed_date': '2025-03-11T13:03:50.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11435',
  'incident_address': '141-55 85 ROAD',
  'street_name': '85 ROAD',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '08 QUEENS',
  'bbl': '4097120102',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035681',
  'y_coordinate_state_plane': '197871',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70963746155313',
  'longitude': '-73.81448961062027',
  'location': {'latitude': '40.70963746155313',
   'longitude': '-73.81448961062027',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307544',
  'created_date': '2025-03-10T07:51:07.000',
  'closed_date': '2025-03-10T14:03:55.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Unsanitary Pigeon Condition',
  'descriptor': 'Pigeon Waste',
  'location_type': 'Commercial Building',
  'incident_zip': '10028',
  'incident_address': '1000 5 AVENUE',
  'street_name': '5 AVENUE',
  'cross_street_1': 'EAST 81 STREET',
  'cross_street_2': 'EAST 82 STREET',
  'intersection_street_1': 'EAST   81 STREET',
  'intersection_street_2': 'EAST   82 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '5 AVENUE',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'This service request was closed because the Department of Health and Mental Hygiene received an earlier complaint about the same location.  You can find inspection results for this address by going to the online Rat Portal at www.nyc.gov/rats.',
  'resolution_action_updated_date': '2025-03-10T07:51:07.000',
  'community_board': '64 MANHATTAN',
  'bbl': '1011110001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '994623',
  'y_coordinate_state_plane': '222956',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77863290127972',
  'longitude': '-73.96254609596876',
  'location': {'latitude': '40.77863290127972',
   'longitude': '-73.96254609596876',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314307',
  'created_date': '2025-03-10T07:51:24.000',
  'closed_date': '2025-03-10T08:58:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11215',
  'incident_address': '330 18 STREET',
  'street_name': '18 STREET',
  'cross_street_1': '6 AVENUE',
  'cross_street_2': '7 AVENUE',
  'intersection_street_1': '6 AVENUE',
  'intersection_street_2': '7 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '18 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:58:46.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3008800001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987497',
  'y_coordinate_state_plane': '180088',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.660976076282054',
  'longitude': '-73.98829670078912',
  'location': {'latitude': '40.660976076282054',
   'longitude': '-73.98829670078912',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310204',
  'created_date': '2025-03-10T07:51:30.000',
  'closed_date': '2025-03-13T11:16:29.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Cave-in',
  'location_type': 'Street',
  'incident_zip': '11205',
  'incident_address': 'EMERSON PLACE',
  'street_name': 'EMERSON PLACE',
  'cross_street_1': 'EMERSON PLACE',
  'cross_street_2': 'PARK AVENUE',
  'intersection_street_1': 'EMERSON PLACE',
  'intersection_street_2': 'PARK AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected and has requested the Department of Environmental Protection address the issue. The condition will be re-inspected in 60 days.',
  'resolution_action_updated_date': '2025-03-13T11:16:32.000',
  'community_board': '02 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994609',
  'y_coordinate_state_plane': '192882',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.696087242912505',
  'longitude': '-73.96264295498149',
  'location': {'latitude': '40.696087242912505',
   'longitude': '-73.96264295498149',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307822',
  'created_date': '2025-03-10T07:51:54.000',
  'closed_date': '2025-03-10T08:52:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Traffic',
  'descriptor': 'Drag Racing',
  'location_type': 'Highway',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:52:41.000',
  'community_board': 'Unspecified STATEN ISLAND',
  'borough': 'STATEN ISLAND',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'bridge_highway_name': 'Richmond Pkwy/Korean War Vets',
  'bridge_highway_direction': 'Northbound',
  'road_ramp': 'Roadway',
  'bridge_highway_segment': 'Maguire Ave/Foster Rd/Huguenot Ave - Arden Ave/Annadale Rd'},
 {'unique_key': '64312583',
  'created_date': '2025-03-10T07:52:22.000',
  'closed_date': '2025-03-10T11:06:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper Use',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '1708 WEST   13 STREET',
  'street_name': 'WEST   13 STREET',
  'cross_street_1': 'QUENTIN ROAD',
  'cross_street_2': 'HIGHLAWN AVENUE',
  'intersection_street_1': 'QUENTIN ROAD',
  'intersection_street_2': 'HIGHLAWN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST   13 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T11:06:41.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3066430009',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988203',
  'y_coordinate_state_plane': '159585',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.604699401837436',
  'longitude': '-73.98576404512507',
  'location': {'latitude': '40.604699401837436',
   'longitude': '-73.98576404512507',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310410',
  'created_date': '2025-03-10T07:52:40.000',
  'closed_date': '2025-03-10T08:44:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10469',
  'incident_address': '913 ARNOW AVENUE',
  'street_name': 'ARNOW AVENUE',
  'cross_street_1': 'BRONXWOOD AVENUE',
  'cross_street_2': 'RADCLIFF AVENUE',
  'intersection_street_1': 'BRONXWOOD AVENUE',
  'intersection_street_2': 'RADCLIFF AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ARNOW AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:44:11.000',
  'community_board': '11 BRONX',
  'bbl': '2045520003',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022707',
  'y_coordinate_state_plane': '255464',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.867780453883064',
  'longitude': '-73.86095668675901',
  'location': {'latitude': '40.867780453883064',
   'longitude': '-73.86095668675901',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311499',
  'created_date': '2025-03-10T07:52:40.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Maintenance or Facility',
  'descriptor': 'Garbage or Litter',
  'location_type': 'Park',
  'incident_zip': '10026',
  'incident_address': '48 ST NICHOLAS AVENUE',
  'street_name': 'ST NICHOLAS AVENUE',
  'cross_street_1': 'WEST  112 STREET',
  'cross_street_2': 'WEST  113 STREET',
  'intersection_street_1': 'WEST  112 STREET',
  'intersection_street_2': 'WEST  113 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'ST NICHOLAS AVENUE',
  'status': 'In Progress',
  'community_board': '10 MANHATTAN',
  'bbl': '1018220024',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997408',
  'y_coordinate_state_plane': '230850',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'St. Nicholas Park',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80029610120122',
  'longitude': '-73.95247480385893',
  'location': {'latitude': '40.80029610120122',
   'longitude': '-73.95247480385893',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315599',
  'created_date': '2025-03-10T07:52:54.000',
  'closed_date': '2025-03-10T08:25:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11222',
  'incident_address': '255 JAVA STREET',
  'street_name': 'JAVA STREET',
  'cross_street_1': 'MCGUINNESS BOULEVARD',
  'cross_street_2': 'PROVOST STREET',
  'intersection_street_1': 'MCGUINNESS BOULEVARD',
  'intersection_street_2': 'PROVOST STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'JAVA STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:25:17.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3025420037',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998073',
  'y_coordinate_state_plane': '205982',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.73203887675091',
  'longitude': '-73.95012404193479',
  'location': {'latitude': '40.73203887675091',
   'longitude': '-73.95012404193479',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312447',
  'created_date': '2025-03-10T07:53:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Jack Hammering (NC2)',
  'incident_zip': '11211',
  'incident_address': '31 HAVEMEYER STREET',
  'street_name': 'HAVEMEYER STREET',
  'cross_street_1': 'N 8 ST',
  'cross_street_2': 'N 7 ST',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Started',
  'resolution_description': 'The Department of Environmental Protection has inspected your complaint and determined that further investigation is required. More information will be available once the condition is resolved. Please visit nyc.gov/311 or call 311 at a later time to check the status of your complaint.',
  'resolution_action_updated_date': '2025-03-11T06:28:00.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3023230005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997143',
  'y_coordinate_state_plane': '200054',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71576936013098',
  'longitude': '-73.95349101093916',
  'location': {'latitude': '40.71576936013098',
   'longitude': '-73.95349101093916',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312474',
  'created_date': '2025-03-10T07:53:00.000',
  'closed_date': '2025-03-10T08:09:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Hydrant Running (WC3)',
  'incident_zip': '11367',
  'incident_address': '144-25 77 ROAD',
  'street_name': '77 ROAD',
  'cross_street_1': 'MAIN ST',
  'cross_street_2': '147 ST',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-10T08:09:00.000',
  'community_board': '08 QUEENS',
  'bbl': '4066680028',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1034699',
  'y_coordinate_state_plane': '201971',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72089661038862',
  'longitude': '-73.8180009249406',
  'location': {'latitude': '40.72089661038862',
   'longitude': '-73.8180009249406',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315052',
  'created_date': '2025-03-10T07:53:00.000',
  'closed_date': '2025-03-11T16:50:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Dirty Water (WE)',
  'incident_zip': '10016',
  'incident_address': '155 EAST   31 STREET',
  'street_name': 'EAST   31 STREET',
  'cross_street_1': 'LEXINGTON AVE',
  'cross_street_2': '3 AVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection investigated this complaint and found it to be a temporary condition.',
  'resolution_action_updated_date': '2025-03-11T16:50:00.000',
  'community_board': '06 MANHATTAN',
  'bbl': '1008870030',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989650',
  'y_coordinate_state_plane': '210430',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74425668752741',
  'longitude': '-73.98051222217627',
  'location': {'latitude': '40.74425668752741',
   'longitude': '-73.98051222217627',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311760',
  'created_date': '2025-03-10T07:53:01.000',
  'closed_date': '2025-03-10T09:52:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11415',
  'incident_address': '85-02 122 STREET',
  'street_name': '122 STREET',
  'cross_street_1': '85 AVENUE',
  'cross_street_2': 'HILLSIDE AVENUE',
  'intersection_street_1': '85 AVENUE',
  'intersection_street_2': 'HILLSIDE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'KEW GARDENS',
  'landmark': '122 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T09:52:49.000',
  'community_board': '09 QUEENS',
  'bbl': '4092670002',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1031560',
  'y_coordinate_state_plane': '195531',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70323772058144',
  'longitude': '-73.82937036080385',
  'location': {'latitude': '40.70323772058144',
   'longitude': '-73.82937036080385',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308009',
  'created_date': '2025-03-10T07:53:11.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10010',
  'incident_address': '663 6 AVENUE',
  'street_name': '6 AVENUE',
  'cross_street_1': 'WEST 20 STREET',
  'cross_street_2': 'WEST 21 STREET',
  'intersection_street_1': 'WEST   20 STREET',
  'intersection_street_2': 'WEST   21 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'AVENUE OF THE AMERICAS',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team offered services to the individual, but the individual did not accept assistance.',
  'resolution_action_updated_date': '2025-03-10T14:58:14.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1007967504',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985936',
  'y_coordinate_state_plane': '209385',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74138991124796',
  'longitude': '-73.99391574455117',
  'location': {'latitude': '40.74138991124796',
   'longitude': '-73.99391574455117',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310005',
  'created_date': '2025-03-10T07:53:14.000',
  'closed_date': '2025-03-10T21:22:35.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper Use',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10460',
  'incident_address': '1493 WEST FARMS ROAD',
  'street_name': 'WEST FARMS ROAD',
  'cross_street_1': 'JENNINGS STREET',
  'cross_street_2': 'EAST  172 STREET',
  'intersection_street_1': 'JENNINGS STREET',
  'intersection_street_2': 'EAST  172 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST FARMS ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T21:22:39.000',
  'community_board': '03 BRONX',
  'bbl': '2030137501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016057',
  'y_coordinate_state_plane': '242360',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83184034838208',
  'longitude': '-73.88506224792184',
  'location': {'latitude': '40.83184034838208',
   'longitude': '-73.88506224792184',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312007',
  'created_date': '2025-03-10T07:53:25.000',
  'closed_date': '2025-03-11T04:16:26.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '11215',
  'incident_address': '226 4 AVENUE',
  'street_name': '4 AVENUE',
  'cross_street_1': 'UNION STREET',
  'cross_street_2': 'PRESIDENT STREET',
  'intersection_street_1': 'UNION STREET',
  'intersection_street_2': 'PRESIDENT STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '4 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation removed the items.',
  'resolution_action_updated_date': '2025-03-11T04:16:32.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3004410030',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988922',
  'y_coordinate_state_plane': '186023',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67726568902946',
  'longitude': '-73.98315639991446',
  'location': {'latitude': '40.67726568902946',
   'longitude': '-73.98315639991446',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312247',
  'created_date': '2025-03-10T07:53:34.000',
  'closed_date': '2025-03-10T08:54:01.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '530 EAST  169 STREET',
  'street_name': 'EAST  169 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '03 BRONX',
  'bbl': '2026100012',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010629',
  'y_coordinate_state_plane': '242635',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83261302416413',
  'longitude': '-73.90467576630016',
  'location': {'latitude': '40.83261302416413',
   'longitude': '-73.90467576630016',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307147',
  'created_date': '2025-03-10T07:53:47.000',
  'closed_date': '2025-03-11T13:10:47.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'TOILET',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '530 WEST  147 STREET',
  'street_name': 'WEST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020780051',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998734',
  'y_coordinate_state_plane': '240559',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8269425177046',
  'longitude': '-73.94766449262218',
  'location': {'latitude': '40.8269425177046',
   'longitude': '-73.94766449262218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308307',
  'created_date': '2025-03-10T07:53:47.000',
  'closed_date': '2025-03-11T13:10:47.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'FLOORING/STAIRS',
  'descriptor': 'FLOOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '530 WEST  147 STREET',
  'street_name': 'WEST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020780051',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998734',
  'y_coordinate_state_plane': '240559',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8269425177046',
  'longitude': '-73.94766449262218',
  'location': {'latitude': '40.8269425177046',
   'longitude': '-73.94766449262218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309645',
  'created_date': '2025-03-10T07:53:47.000',
  'closed_date': '2025-03-11T13:10:47.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'DOOR/WINDOW',
  'descriptor': 'WINDOW FRAME',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '530 WEST  147 STREET',
  'street_name': 'WEST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development inspected the following conditions. No violations were issued. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020780051',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998734',
  'y_coordinate_state_plane': '240559',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8269425177046',
  'longitude': '-73.94766449262218',
  'location': {'latitude': '40.8269425177046',
   'longitude': '-73.94766449262218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309866',
  'created_date': '2025-03-10T07:53:47.000',
  'closed_date': '2025-03-11T13:10:47.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PAINT/PLASTER',
  'descriptor': 'WALL',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '530 WEST  147 STREET',
  'street_name': 'WEST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020780051',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998734',
  'y_coordinate_state_plane': '240559',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8269425177046',
  'longitude': '-73.94766449262218',
  'location': {'latitude': '40.8269425177046',
   'longitude': '-73.94766449262218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309887',
  'created_date': '2025-03-10T07:53:47.000',
  'closed_date': '2025-03-11T13:10:47.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '530 WEST  147 STREET',
  'street_name': 'WEST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020780051',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998734',
  'y_coordinate_state_plane': '240559',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8269425177046',
  'longitude': '-73.94766449262218',
  'location': {'latitude': '40.8269425177046',
   'longitude': '-73.94766449262218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312175',
  'created_date': '2025-03-10T07:53:47.000',
  'closed_date': '2025-03-11T13:13:04.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'DOOR/WINDOW',
  'descriptor': 'DOOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '530 WEST  147 STREET',
  'street_name': 'WEST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020780051',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998734',
  'y_coordinate_state_plane': '240559',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8269425177046',
  'longitude': '-73.94766449262218',
  'location': {'latitude': '40.8269425177046',
   'longitude': '-73.94766449262218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312693',
  'created_date': '2025-03-10T07:53:47.000',
  'closed_date': '2025-03-11T13:10:47.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'ELECTRIC',
  'descriptor': 'LIGHTING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '530 WEST  147 STREET',
  'street_name': 'WEST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020780051',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998734',
  'y_coordinate_state_plane': '240559',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8269425177046',
  'longitude': '-73.94766449262218',
  'location': {'latitude': '40.8269425177046',
   'longitude': '-73.94766449262218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316111',
  'created_date': '2025-03-10T07:53:47.000',
  'closed_date': '2025-03-11T13:13:04.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'ELECTRIC',
  'descriptor': 'OUTLET/SWITCH',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '530 WEST  147 STREET',
  'street_name': 'WEST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020780051',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998734',
  'y_coordinate_state_plane': '240559',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8269425177046',
  'longitude': '-73.94766449262218',
  'location': {'latitude': '40.8269425177046',
   'longitude': '-73.94766449262218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64322448',
  'created_date': '2025-03-10T07:53:47.000',
  'closed_date': '2025-03-11T13:10:47.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'DOOR/WINDOW',
  'descriptor': 'DOOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '530 WEST  147 STREET',
  'street_name': 'WEST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020780051',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998734',
  'y_coordinate_state_plane': '240559',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8269425177046',
  'longitude': '-73.94766449262218',
  'location': {'latitude': '40.8269425177046',
   'longitude': '-73.94766449262218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64326300',
  'created_date': '2025-03-10T07:53:47.000',
  'closed_date': '2025-03-11T13:10:47.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'FLOORING/STAIRS',
  'descriptor': 'FLOOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '530 WEST  147 STREET',
  'street_name': 'WEST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020780051',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998734',
  'y_coordinate_state_plane': '240559',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8269425177046',
  'longitude': '-73.94766449262218',
  'location': {'latitude': '40.8269425177046',
   'longitude': '-73.94766449262218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311118',
  'created_date': '2025-03-10T07:53:52.000',
  'closed_date': '2025-03-11T16:39:23.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10040',
  'incident_address': '108 ELLWOOD STREET',
  'street_name': 'ELLWOOD STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021720039',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003754',
  'y_coordinate_state_plane': '253291',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86187845400225',
  'longitude': '-73.92948853877418',
  'location': {'latitude': '40.86187845400225',
   'longitude': '-73.92948853877418',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308021',
  'created_date': '2025-03-10T07:54:06.000',
  'closed_date': '2025-03-11T07:15:40.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10023',
  'incident_address': '170 WEST   73 STREET',
  'street_name': 'WEST   73 STREET',
  'cross_street_1': 'COLUMBUS AVENUE',
  'cross_street_2': 'AMSTERDAM AVENUE',
  'intersection_street_1': 'COLUMBUS AVENUE',
  'intersection_street_2': 'AMSTERDAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   73 STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-11T07:15:44.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1011440061',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989749',
  'y_coordinate_state_plane': '223039',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77886509049186',
  'longitude': '-73.98014463203278',
  'location': {'latitude': '40.77886509049186',
   'longitude': '-73.98014463203278',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307653',
  'created_date': '2025-03-10T07:54:39.000',
  'closed_date': '2025-03-10T08:35:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10040',
  'incident_address': '20 SHERMAN AVENUE',
  'street_name': 'SHERMAN AVENUE',
  'cross_street_1': 'SICKLES STREET',
  'cross_street_2': 'ARDEN STREET',
  'intersection_street_1': 'SICKLES STREET',
  'intersection_street_2': 'ARDEN STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'SHERMAN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:35:21.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021750100',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004033',
  'y_coordinate_state_plane': '253579',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86266830600508',
  'longitude': '-73.92847903972765',
  'location': {'latitude': '40.86266830600508',
   'longitude': '-73.92847903972765',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311657',
  'created_date': '2025-03-10T07:54:42.000',
  'closed_date': '2025-03-10T08:35:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Store/Commercial',
  'incident_zip': '10011',
  'incident_address': '374 6 AVENUE',
  'street_name': '6 AVENUE',
  'cross_street_1': 'WASHINGTON PLACE',
  'cross_street_2': 'WAVERLY PLACE',
  'intersection_street_1': 'WASHINGTON PLACE',
  'intersection_street_2': 'WAVERLY PLACE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'AVENUE OF THE AMERICAS',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and no Encampment was found.',
  'resolution_action_updated_date': '2025-03-10T08:35:09.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005527501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984206',
  'y_coordinate_state_plane': '206250',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.732785272158175',
  'longitude': '-74.00015876196325',
  'location': {'latitude': '40.732785272158175',
   'longitude': '-74.00015876196325',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311925',
  'created_date': '2025-03-10T07:54:45.000',
  'closed_date': '2025-03-10T08:01:45.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Non-Food Vendor',
  'location_type': 'Street',
  'incident_zip': '10006',
  'incident_address': '39 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'MORRIS STREET',
  'cross_street_2': 'EXCHANGE ALLEY',
  'intersection_street_1': 'MORRIS STREET',
  'intersection_street_2': 'EXCHANGE ALLEY',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'N/A',
  'resolution_action_updated_date': '2025-03-10T08:01:49.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1000200004',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '980659',
  'y_coordinate_state_plane': '196583',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.706250955704284',
  'longitude': '-74.01295198363576',
  'location': {'latitude': '40.706250955704284',
   'longitude': '-74.01295198363576',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310379',
  'created_date': '2025-03-10T07:54:50.000',
  'closed_date': '2025-03-10T08:21:24.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11372',
  'incident_address': '78-15 NORTHERN BOULEVARD',
  'street_name': 'NORTHERN BOULEVARD',
  'cross_street_1': '78 STREET',
  'cross_street_2': '79 STREET',
  'intersection_street_1': '78 STREET',
  'intersection_street_2': '79 STREET',
  'address_type': 'ADDRESS',
  'city': 'JACKSON HEIGHTS',
  'landmark': 'NORTHERN BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T08:21:27.000',
  'community_board': '03 QUEENS',
  'bbl': '4011740035',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1015042',
  'y_coordinate_state_plane': '214436',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.755200179394976',
  'longitude': '-73.88885807516785',
  'location': {'latitude': '40.755200179394976',
   'longitude': '-73.88885807516785',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64329126',
  'created_date': '2025-03-10T07:55:00.000',
  'closed_date': '2025-03-11T06:43:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '10037',
  'incident_address': '11 WEST  141 STREET',
  'street_name': 'WEST  141 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'CHISUM PLACE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) couldn't find the condition. Please file a new Service Request with more details about the location.",
  'resolution_action_updated_date': '2025-03-11T12:00:00.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1017390022',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1002187',
  'y_coordinate_state_plane': '236824',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.816684664252115',
  'longitude': '-73.9351976436149',
  'location': {'latitude': '40.816684664252115',
   'longitude': '-73.9351976436149',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310690',
  'created_date': '2025-03-10T07:55:20.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11377',
  'incident_address': '69-02 47 AVENUE',
  'street_name': '47 AVENUE',
  'cross_street_1': '69 STREET',
  'cross_street_2': 'LIRR MAIN LINE',
  'intersection_street_1': '69 STREET',
  'intersection_street_2': 'LIRR MAIN LINE',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '47 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The individual was found and outreach assistance was offered.',
  'resolution_action_updated_date': '2025-03-10T11:07:00.000',
  'community_board': '02 QUEENS',
  'bbl': '4024330011',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1013140',
  'y_coordinate_state_plane': '208552',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73905650803443',
  'longitude': '-73.89574850210755',
  'location': {'latitude': '40.73905650803443',
   'longitude': '-73.89574850210755',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314705',
  'created_date': '2025-03-10T07:55:20.000',
  'closed_date': '2025-03-10T10:29:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11204',
  'incident_address': '1953 65 STREET',
  'street_name': '65 STREET',
  'cross_street_1': '19 AVENUE',
  'cross_street_2': '20 AVENUE',
  'intersection_street_1': '19 AVENUE',
  'intersection_street_2': '20 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '65 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T10:29:50.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3055480056',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987884',
  'y_coordinate_state_plane': '164127',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61716639433538',
  'longitude': '-73.98691041686477',
  'location': {'latitude': '40.61716639433538',
   'longitude': '-73.98691041686477',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315903',
  'created_date': '2025-03-10T07:55:28.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '8514 18 AVENUE',
  'street_name': '18 AVENUE',
  'cross_street_1': '85 STREET',
  'cross_street_2': '86 STREET',
  'intersection_street_1': '85 STREET',
  'intersection_street_2': '86 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '18 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team went to the location provided but could not find the individual that you reported.',
  'resolution_action_updated_date': '2025-03-10T16:48:53.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3063430050',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '983659',
  'y_coordinate_state_plane': '160672',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60768385671392',
  'longitude': '-74.00212846582532',
  'location': {'latitude': '40.60768385671392',
   'longitude': '-74.00212846582532',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306173',
  'created_date': '2025-03-10T07:55:46.000',
  'closed_date': '2025-03-10T23:37:51.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10011',
  'incident_address': '115 7 AVENUE',
  'street_name': '7 AVENUE',
  'cross_street_1': 'WEST   16 STREET',
  'cross_street_2': 'WEST   17 STREET',
  'intersection_street_1': 'WEST   16 STREET',
  'intersection_street_2': 'WEST   17 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '7 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation cleaned the location.',
  'resolution_action_updated_date': '2025-03-10T23:37:54.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1007920070',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984710',
  'y_coordinate_state_plane': '209016',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.740377246790814',
  'longitude': '-73.99834002671055',
  'location': {'latitude': '40.740377246790814',
   'longitude': '-73.99834002671055',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309412',
  'created_date': '2025-03-10T07:55:56.000',
  'closed_date': '2025-03-11T13:03:17.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Removal Request',
  'location_type': 'Street',
  'incident_zip': '10007',
  'incident_address': '121 CHAMBERS STREET',
  'street_name': 'CHAMBERS STREET',
  'cross_street_1': 'CHURCH STREET',
  'cross_street_2': 'HUDSON STREET',
  'intersection_street_1': 'CHURCH STREET',
  'intersection_street_2': 'HUDSON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'CHAMBERS STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-10T20:31:34.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1001450010',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '981855',
  'y_coordinate_state_plane': '199864',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.7152569259433',
  'longitude': '-74.00863942971928',
  'location': {'latitude': '40.7152569259433',
   'longitude': '-74.00863942971928',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311266',
  'created_date': '2025-03-10T07:56:00.000',
  'closed_date': '2025-03-10T08:12:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Hydrant Running (WC3)',
  'incident_zip': '10467',
  'incident_address': '752 EAST  220 STREET',
  'street_name': 'EAST  220 STREET',
  'cross_street_1': 'WHITE PLAINS RD',
  'cross_street_2': 'BARNES AVE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-10T08:12:00.000',
  'community_board': '12 BRONX',
  'bbl': '2046670085',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022706',
  'y_coordinate_state_plane': '261300',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88379845782256',
  'longitude': '-73.86092680246902',
  'location': {'latitude': '40.88379845782256',
   'longitude': '-73.86092680246902',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312488',
  'created_date': '2025-03-10T07:56:00.000',
  'closed_date': '2025-03-14T14:00:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Sewer',
  'descriptor': 'Catch Basin Search (SC2)',
  'incident_zip': '10472',
  'incident_address': '1111 UNDERHILL AVENUE',
  'street_name': 'UNDERHILL AVENUE',
  'cross_street_1': 'WATSON AVE',
  'cross_street_2': 'GLEASON AVE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection (DEP) investigated this request and completed a search of the catch basin.',
  'resolution_action_updated_date': '2025-03-14T14:00:00.000',
  'community_board': '09 BRONX',
  'bbl': '2037570061',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022486',
  'y_coordinate_state_plane': '241249',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8287654824148',
  'longitude': '-73.86183678570386',
  'location': {'latitude': '40.8287654824148',
   'longitude': '-73.86183678570386',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313795',
  'created_date': '2025-03-10T07:56:00.000',
  'closed_date': '2025-03-10T08:11:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Hydrant Leaking (WC1)',
  'incident_zip': '11377',
  'incident_address': '48-57 58 LANE',
  'street_name': '58 LANE',
  'cross_street_1': '48 AVE',
  'cross_street_2': 'LAUREL HILL BLVD',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-10T08:11:00.000',
  'community_board': '02 QUEENS',
  'bbl': '4023280001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1009908',
  'y_coordinate_state_plane': '208268',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.738286965949776',
  'longitude': '-73.90741246432778',
  'location': {'latitude': '40.738286965949776',
   'longitude': '-73.90741246432778',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313004',
  'created_date': '2025-03-10T07:56:15.000',
  'closed_date': '2025-03-10T08:50:38.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11215',
  'incident_address': '127 12 STREET',
  'street_name': '12 STREET',
  'cross_street_1': '2 AVENUE',
  'cross_street_2': '3 AVENUE',
  'intersection_street_1': '2 AVENUE',
  'intersection_street_2': '3 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '12 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:50:41.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3010200052',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986004',
  'y_coordinate_state_plane': '183455',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6702181652325',
  'longitude': '-73.99367710772658',
  'location': {'latitude': '40.6702181652325',
   'longitude': '-73.99367710772658',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313130',
  'created_date': '2025-03-10T07:56:31.000',
  'closed_date': '2025-03-10T12:30:40.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Sidewalk',
  'incident_zip': '10013',
  'incident_address': '51 MERCER STREET',
  'street_name': 'MERCER STREET',
  'cross_street_1': 'GRAND STREET',
  'cross_street_2': 'BROOME STREET',
  'intersection_street_1': 'GRAND STREET',
  'intersection_street_2': 'BROOME STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'MERCER STREET',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) closed your Service Request. The condition doesn't meet their criteria for a complaint or Service Request.",
  'resolution_action_updated_date': '2025-03-10T12:30:40.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1004747501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983963',
  'y_coordinate_state_plane': '202230',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72175134683457',
  'longitude': '-74.00103538953923',
  'location': {'latitude': '40.72175134683457',
   'longitude': '-74.00103538953923',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311071',
  'created_date': '2025-03-10T07:56:33.000',
  'closed_date': '2025-03-12T14:28:48.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11219',
  'incident_address': '1016 50 STREET',
  'street_name': '50 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'HPD responded to a complaint of no heat or hot water in the building. An occupant of the building confirmed heat and hot water had been restored when the Inspector attempted to conduct the inspection or contacted you at the phone number associated with the complaint. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-12T00:00:00.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3056460013',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984583',
  'y_coordinate_state_plane': '171768',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.638140070717235',
  'longitude': '-73.99880016478421',
  'location': {'latitude': '40.638140070717235',
   'longitude': '-73.99880016478421',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306906',
  'created_date': '2025-03-10T07:56:34.000',
  'closed_date': '2025-03-10T10:30:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11225',
  'incident_address': '377 MONTGOMERY STREET',
  'street_name': 'MONTGOMERY STREET',
  'cross_street_1': 'DEARBORN COURT',
  'cross_street_2': 'NOSTRAND AVENUE',
  'intersection_street_1': 'DEARBORN COURT',
  'intersection_street_2': 'NOSTRAND AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MONTGOMERY STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T10:30:59.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3012960052',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997566',
  'y_coordinate_state_plane': '181727',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66546535036319',
  'longitude': '-73.95200134641678',
  'location': {'latitude': '40.66546535036319',
   'longitude': '-73.95200134641678',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307772',
  'created_date': '2025-03-10T07:56:50.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Maintenance or Facility',
  'descriptor': 'Garbage or Litter',
  'location_type': 'Park',
  'incident_zip': '10026',
  'incident_address': '48 ST NICHOLAS AVENUE',
  'street_name': 'ST NICHOLAS AVENUE',
  'cross_street_1': 'WEST  112 STREET',
  'cross_street_2': 'WEST  113 STREET',
  'intersection_street_1': 'WEST  112 STREET',
  'intersection_street_2': 'WEST  113 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'ST NICHOLAS AVENUE',
  'status': 'In Progress',
  'community_board': '10 MANHATTAN',
  'bbl': '1018220024',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997408',
  'y_coordinate_state_plane': '230850',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'St. Nicholas Park',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80029610120122',
  'longitude': '-73.95247480385893',
  'location': {'latitude': '40.80029610120122',
   'longitude': '-73.95247480385893',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314678',
  'created_date': '2025-03-10T07:56:54.000',
  'closed_date': '2025-03-12T13:04:19.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '11208',
  'incident_address': '204 LINWOOD STREET',
  'street_name': 'LINWOOD STREET',
  'cross_street_1': 'ARLINGTON AVENUE',
  'cross_street_2': 'FULTON STREET',
  'intersection_street_1': 'ARLINGTON AVENUE',
  'intersection_street_2': 'FULTON STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LINWOOD STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-12T13:04:21.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3039410012',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1016437',
  'y_coordinate_state_plane': '187345',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68083699273498',
  'longitude': '-73.88395245188619',
  'location': {'latitude': '40.68083699273498',
   'longitude': '-73.88395245188619',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306409',
  'created_date': '2025-03-10T07:56:56.000',
  'closed_date': '2025-03-10T09:26:01.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Maintenance or Facility',
  'descriptor': 'Garbage or Litter',
  'location_type': 'Park',
  'incident_zip': '10010',
  'incident_address': '315 EAST   26 STREET',
  'street_name': 'EAST   26 STREET',
  'cross_street_1': '2 AVENUE',
  'cross_street_2': 'MOUNT CARMEL PLACE',
  'intersection_street_1': '2 AVENUE',
  'intersection_street_2': 'MOUNT CARMEL PLACE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   26 STREET',
  'status': 'Closed',
  'resolution_description': 'NYC Parks has completed the requested work order and corrected the problem.',
  'resolution_action_updated_date': '2025-03-10T09:26:05.000',
  'community_board': '06 MANHATTAN',
  'bbl': '1009340050',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990075',
  'y_coordinate_state_plane': '208723',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.739571128256635',
  'longitude': '-73.97897994018368',
  'location': {'latitude': '40.739571128256635',
   'longitude': '-73.97897994018368',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314030',
  'created_date': '2025-03-10T07:57:01.000',
  'closed_date': '2025-03-10T08:29:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Graffiti',
  'descriptor': 'Police Report Not Requested',
  'location_type': 'Store/Commercial',
  'incident_zip': '10314',
  'incident_address': '77 RICHMOND HILL ROAD',
  'street_name': 'RICHMOND HILL ROAD',
  'cross_street_1': 'RICHMOND AVENUE',
  'cross_street_2': 'COUNTRY DRIVE WEST',
  'intersection_street_1': 'RICHMOND AVENUE',
  'intersection_street_2': 'COUNTRY DRIVE WEST',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'RICHMOND HILL ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T08:29:30.000',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5023800500',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '938244',
  'y_coordinate_state_plane': '153485',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.58783762305138',
  'longitude': '-74.16563985793714',
  'location': {'latitude': '40.58783762305138',
   'longitude': '-74.16563985793714',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314512',
  'created_date': '2025-03-10T07:57:08.000',
  'closed_date': '2025-03-10T12:30:20.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Sidewalk',
  'incident_zip': '10013',
  'incident_address': '453 BROOME STREET',
  'street_name': 'BROOME STREET',
  'cross_street_1': 'MERCER STREET',
  'cross_street_2': 'GREENE STREET',
  'intersection_street_1': 'MERCER STREET',
  'intersection_street_2': 'GREENE STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROOME STREET',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) closed your Service Request. The condition doesn't meet their criteria for a complaint or Service Request.",
  'resolution_action_updated_date': '2025-03-10T12:30:20.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1004740012',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984035',
  'y_coordinate_state_plane': '202405',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72223168159443',
  'longitude': '-74.00077564583744',
  'location': {'latitude': '40.72223168159443',
   'longitude': '-74.00077564583744',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309053',
  'created_date': '2025-03-10T07:57:25.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Damaged Tree',
  'descriptor': 'Entire Tree Has Fallen Down',
  'location_type': 'Street',
  'incident_zip': '10312',
  'incident_address': '50 RUMBA PLACE',
  'street_name': 'RUMBA PLACE',
  'cross_street_1': 'DAHLIA STREET',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'DAHLIA STREET',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'RUMBA PLACE',
  'status': 'In Progress',
  'resolution_description': "NYC Parks reviewed this request and will visit the location to investigate the condition.  Under NYC Parksâ\x80\x99 Tree Risk Management Program, all trees under the agency's jurisdiction are assessed for risk, and work is prioritized to address the conditions with the highest risk first.  For more information about the Tree Risk Management Program, visit the NYC Urban Forest page on the NYC Parks website at nyc.gov/parks/trees.   To learn more about the trees in your neighborhood, visit the NYC Tree Map at nyc.gov/parks/treemap.",
  'resolution_action_updated_date': '2025-03-10T09:31:48.000',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5060870040',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '928349',
  'y_coordinate_state_plane': '138911',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.54777805240606',
  'longitude': '-74.20114518158452',
  'location': {'latitude': '40.54777805240606',
   'longitude': '-74.20114518158452',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314331',
  'created_date': '2025-03-10T07:57:39.000',
  'closed_date': '2025-03-10T08:01:47.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Non-Food Vendor',
  'location_type': 'Street',
  'incident_zip': '10004',
  'incident_address': '42 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'MORRIS STREET',
  'cross_street_2': 'EXCHANGE ALLEY',
  'intersection_street_1': 'MORRIS STREET',
  'intersection_street_2': 'EXCHANGE ALLEY',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'N/A',
  'resolution_action_updated_date': '2025-03-10T08:01:51.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1000220020',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '980671',
  'y_coordinate_state_plane': '196590',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.70627017391471',
  'longitude': '-74.01290870587448',
  'location': {'latitude': '40.70627017391471',
   'longitude': '-74.01290870587448',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308702',
  'created_date': '2025-03-10T07:57:44.000',
  'closed_date': '2025-03-10T08:56:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10462',
  'incident_address': '1957 COLDEN AVENUE',
  'street_name': 'COLDEN AVENUE',
  'cross_street_1': 'RHINELANDER AVENUE',
  'cross_street_2': 'NEILL AVENUE',
  'intersection_street_1': 'RHINELANDER AVENUE',
  'intersection_street_2': 'NEILL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'COLDEN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:56:57.000',
  'community_board': '11 BRONX',
  'bbl': '2042670040',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023355',
  'y_coordinate_state_plane': '249392',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.85111181289388',
  'longitude': '-73.85864923791952',
  'location': {'latitude': '40.85111181289388',
   'longitude': '-73.85864923791952',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314036',
  'created_date': '2025-03-10T07:57:47.000',
  'closed_date': '2025-03-10T09:35:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10305',
  'incident_address': '38 NAUTILUS STREET',
  'street_name': 'NAUTILUS STREET',
  'cross_street_1': 'CLIFF COURT',
  'cross_street_2': 'BAY STREET',
  'intersection_street_1': 'CLIFF COURT',
  'intersection_street_2': 'BAY STREET',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'NAUTILUS STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:35:39.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5028340032',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '967091',
  'y_coordinate_state_plane': '161893',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.611018656895595',
  'longitude': '-74.06180063039092',
  'location': {'latitude': '40.611018656895595',
   'longitude': '-74.06180063039092',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313986',
  'created_date': '2025-03-10T07:57:53.000',
  'closed_date': '2025-03-10T08:57:51.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11219',
  'incident_address': '6725 11 AVENUE',
  'street_name': '11 AVENUE',
  'cross_street_1': '67 STREET',
  'cross_street_2': 'OVINGTON AVENUE',
  'intersection_street_1': '67 STREET',
  'intersection_street_2': 'OVINGTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '11 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:57:56.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3057660003',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '982209',
  'y_coordinate_state_plane': '167804',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62725950169114',
  'longitude': '-74.00735274608968',
  'location': {'latitude': '40.62725950169114',
   'longitude': '-74.00735274608968',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308954',
  'created_date': '2025-03-10T07:57:59.000',
  'closed_date': '2025-03-10T09:36:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper Use',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11354',
  'incident_address': '33-46 PRINCE STREET',
  'street_name': 'PRINCE STREET',
  'cross_street_1': 'LINNEAUS PLACE',
  'cross_street_2': 'LINNEAUS PLACE',
  'intersection_street_1': 'LINNEAUS PLACE',
  'intersection_street_2': 'LINNEAUS PLACE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': 'PRINCE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:36:28.000',
  'community_board': '07 QUEENS',
  'bbl': '4049460032',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1030403',
  'y_coordinate_state_plane': '218117',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.765236724723614',
  'longitude': '-73.8333882837712',
  'location': {'latitude': '40.765236724723614',
   'longitude': '-73.8333882837712',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64326355',
  'created_date': '2025-03-10T07:58:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Out',
  'incident_zip': '11223',
  'incident_address': '1953 EAST    4 STREET',
  'street_name': 'EAST    4 STREET',
  'cross_street_1': 'AVE S',
  'cross_street_2': 'KINGS HWY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'community_board': '15 BROOKLYN',
  'bbl': '3066810361',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '992922',
  'y_coordinate_state_plane': '158929',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60289545406415',
  'longitude': '-73.96877033465192',
  'location': {'latitude': '40.60289545406415',
   'longitude': '-73.96877033465192',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312118',
  'created_date': '2025-03-10T07:58:01.000',
  'closed_date': '2025-03-10T14:51:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10457',
  'incident_address': '2070 ARTHUR AVENUE',
  'street_name': 'ARTHUR AVENUE',
  'cross_street_1': 'EAST  179 STREET',
  'cross_street_2': 'EAST  180 STREET',
  'intersection_street_1': 'EAST  179 STREET',
  'intersection_street_2': 'EAST  180 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ARTHUR AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T14:51:05.000',
  'community_board': '06 BRONX',
  'bbl': '2030690063',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1014140',
  'y_coordinate_state_plane': '248518',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.848748947546916',
  'longitude': '-73.89196206534605',
  'location': {'latitude': '40.848748947546916',
   'longitude': '-73.89196206534605',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307621',
  'created_date': '2025-03-10T07:58:06.000',
  'closed_date': '2025-03-10T12:30:01.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Sidewalk',
  'incident_zip': '10012',
  'incident_address': '92 MERCER STREET',
  'street_name': 'MERCER STREET',
  'cross_street_1': 'BROOME STREET',
  'cross_street_2': 'SPRING STREET',
  'intersection_street_1': 'BROOME STREET',
  'intersection_street_2': 'SPRING STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'MERCER STREET',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) closed your Service Request. The condition doesn't meet their criteria for a complaint or Service Request.",
  'resolution_action_updated_date': '2025-03-10T12:30:01.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1004840001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984266',
  'y_coordinate_state_plane': '202690',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.7230139402651',
  'longitude': '-73.99994227684155',
  'location': {'latitude': '40.7230139402651',
   'longitude': '-73.99994227684155',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306201',
  'created_date': '2025-03-10T07:58:15.000',
  'closed_date': '2025-03-10T08:45:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10455',
  'incident_address': '541 UNION AVENUE',
  'street_name': 'UNION AVENUE',
  'cross_street_1': 'EAST  147 STREET',
  'cross_street_2': 'EAST  149 STREET',
  'intersection_street_1': 'EAST  147 STREET',
  'intersection_street_2': 'EAST  149 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNION AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T08:45:56.000',
  'community_board': '01 BRONX',
  'bbl': '2025820042',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010420',
  'y_coordinate_state_plane': '235260',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81237137041546',
  'longitude': '-73.90545977958996',
  'location': {'latitude': '40.81237137041546',
   'longitude': '-73.90545977958996',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316148',
  'created_date': '2025-03-10T07:58:20.000',
  'closed_date': '2025-03-10T15:32:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Non-Emergency Police Matter',
  'descriptor': 'Other (complaint details)',
  'location_type': 'Residential Building/House',
  'incident_zip': '10460',
  'incident_address': '1801 ARCHER STREET',
  'street_name': 'ARCHER STREET',
  'cross_street_1': 'BEACH AVENUE',
  'cross_street_2': 'TAYLOR AVENUE',
  'intersection_street_1': 'BEACH AVENUE',
  'intersection_street_2': 'TAYLOR AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ARCHER STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T15:32:34.000',
  'community_board': '09 BRONX',
  'bbl': '2039200029',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021015',
  'y_coordinate_state_plane': '244438',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83752460469645',
  'longitude': '-73.86713465880064',
  'location': {'latitude': '40.83752460469645',
   'longitude': '-73.86713465880064',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308849',
  'created_date': '2025-03-10T07:58:46.000',
  'closed_date': '2025-03-10T15:53:07.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Sidewalk',
  'incident_zip': '10012',
  'incident_address': '190 MERCER STREET',
  'street_name': 'MERCER STREET',
  'cross_street_1': 'WEST HOUSTON STREET',
  'cross_street_2': 'BLEECKER STREET',
  'intersection_street_1': 'WEST HOUSTON STREET',
  'intersection_street_2': 'BLEECKER STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'MERCER STREET',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) closed your Service Request. The condition doesn't meet their criteria for a complaint or Service Request.",
  'resolution_action_updated_date': '2025-03-10T15:53:08.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005230047',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985043',
  'y_coordinate_state_plane': '203904',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72634604019805',
  'longitude': '-73.99713895291138',
  'location': {'latitude': '40.72634604019805',
   'longitude': '-73.99713895291138',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310192',
  'created_date': '2025-03-10T07:58:46.000',
  'closed_date': '2025-03-10T09:20:51.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10461',
  'incident_address': '1850 TENBROECK AVENUE',
  'street_name': 'TENBROECK AVENUE',
  'cross_street_1': 'LAKEWOOD PLACE',
  'cross_street_2': 'RHINELANDER AVENUE',
  'intersection_street_1': 'LAKEWOOD PLACE',
  'intersection_street_2': 'RHINELANDER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'TENBROECK AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T09:20:54.000',
  'community_board': '11 BRONX',
  'bbl': '2042030040',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1025771',
  'y_coordinate_state_plane': '249998',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.85276406964628',
  'longitude': '-73.8499125147908',
  'location': {'latitude': '40.85276406964628',
   'longitude': '-73.8499125147908',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313868',
  'created_date': '2025-03-10T07:58:46.000',
  'closed_date': '2025-03-10T09:06:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Traffic',
  'descriptor': 'Chronic Stoplight Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10128',
  'incident_address': '1 AVENUE',
  'street_name': '1 AVENUE',
  'cross_street_1': '1 AVENUE',
  'cross_street_2': 'EAST   96 STREET',
  'intersection_street_1': '1 AVENUE',
  'intersection_street_2': 'EAST   96 STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:06:32.000',
  'community_board': '08 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999558',
  'y_coordinate_state_plane': '224640',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78324786504036',
  'longitude': '-73.94472340476307',
  'location': {'latitude': '40.78324786504036',
   'longitude': '-73.94472340476307',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311113',
  'created_date': '2025-03-10T07:59:16.000',
  'closed_date': '2025-03-10T08:54:01.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '530 EAST  169 STREET',
  'street_name': 'EAST  169 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'HPD called the telephone number on file for this complaint.  Someone at that number indicated that the condition was corrected. The complaint has been closed. Please submit a new service request with 311 if the condition still exists.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '03 BRONX',
  'bbl': '2026100012',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010629',
  'y_coordinate_state_plane': '242635',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83261302416413',
  'longitude': '-73.90467576630016',
  'location': {'latitude': '40.83261302416413',
   'longitude': '-73.90467576630016',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309413',
  'created_date': '2025-03-10T07:59:17.000',
  'closed_date': '2025-03-11T14:37:29.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Missed Collection',
  'descriptor': 'Bulky Recycling',
  'location_type': 'Street',
  'incident_zip': '11356',
  'incident_address': '124-11 23 AVENUE',
  'street_name': '23 AVENUE',
  'cross_street_1': '124 STREET',
  'cross_street_2': '125 STREET',
  'intersection_street_1': '124 STREET',
  'intersection_street_2': '125 STREET',
  'address_type': 'ADDRESS',
  'city': 'COLLEGE POINT',
  'landmark': '23 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-11T05:53:07.000',
  'community_board': '07 QUEENS',
  'bbl': '4042000040',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027430',
  'y_coordinate_state_plane': '222985',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77861311302389',
  'longitude': '-73.84408947266266',
  'location': {'latitude': '40.77861311302389',
   'longitude': '-73.84408947266266',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315142',
  'created_date': '2025-03-10T07:59:44.000',
  'closed_date': '2025-03-11T13:15:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11226',
  'incident_address': 'DITMAS AVENUE',
  'street_name': 'DITMAS AVENUE',
  'cross_street_1': 'EAST   19 STREET',
  'cross_street_2': 'OCEAN AVENUE',
  'address_type': 'BLOCKFACE',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected this complaint and repaired the problem.',
  'resolution_action_updated_date': '2025-03-11T13:15:00.000',
  'community_board': '14 BROOKLYN',
  'borough': 'BROOKLYN',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN'},
 {'unique_key': '64316079',
  'created_date': '2025-03-10T07:59:46.000',
  'closed_date': '2025-03-10T20:28:58.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '10003',
  'incident_address': '286 MERCER STREET',
  'street_name': 'MERCER STREET',
  'cross_street_1': 'WASHINGTON PLACE',
  'cross_street_2': 'WAVERLY PLACE',
  'intersection_street_1': 'WASHINGTON PLACE',
  'intersection_street_2': 'WAVERLY PLACE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'MERCER STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-10T20:29:01.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005470030',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985846',
  'y_coordinate_state_plane': '205146',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72975491886069',
  'longitude': '-73.9942415324801',
  'location': {'latitude': '40.72975491886069',
   'longitude': '-73.9942415324801',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309800',
  'created_date': '2025-03-10T07:59:49.000',
  'closed_date': '2025-03-11T13:10:48.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'BATHTUB/SHOWER',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '530 WEST  147 STREET',
  'street_name': 'WEST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020780051',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998734',
  'y_coordinate_state_plane': '240559',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8269425177046',
  'longitude': '-73.94766449262218',
  'location': {'latitude': '40.8269425177046',
   'longitude': '-73.94766449262218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64318833',
  'created_date': '2025-03-10T07:59:49.000',
  'closed_date': '2025-03-11T13:10:48.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'GENERAL',
  'descriptor': 'CABINET',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '530 WEST  147 STREET',
  'street_name': 'WEST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020780051',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998734',
  'y_coordinate_state_plane': '240559',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8269425177046',
  'longitude': '-73.94766449262218',
  'location': {'latitude': '40.8269425177046',
   'longitude': '-73.94766449262218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64320280',
  'created_date': '2025-03-10T07:59:49.000',
  'closed_date': '2025-03-11T13:10:47.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'GENERAL',
  'descriptor': 'BELL/BUZZER/INTERCOM',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '530 WEST  147 STREET',
  'street_name': 'WEST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'HPD conducted an inspection of this complaint. The conditions observed by the inspector did not violate the housing laws enforced by HPD. The complaint has been closed.',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020780051',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998734',
  'y_coordinate_state_plane': '240559',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8269425177046',
  'longitude': '-73.94766449262218',
  'location': {'latitude': '40.8269425177046',
   'longitude': '-73.94766449262218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314800',
  'created_date': '2025-03-10T08:00:16.000',
  'closed_date': '2025-03-10T19:30:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11435',
  'incident_address': '142-07 PERSHING CRESCENT',
  'street_name': 'PERSHING CRESCENT',
  'cross_street_1': 'LANDER STREET',
  'cross_street_2': 'DANIELS STREET',
  'intersection_street_1': 'LANDER STREET',
  'intersection_street_2': 'DANIELS STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'PERSHING CRESCENT',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T19:30:59.000',
  'community_board': '08 QUEENS',
  'bbl': '4097160194',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035559',
  'y_coordinate_state_plane': '198716',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.711957488985625',
  'longitude': '-73.8149232207675',
  'location': {'latitude': '40.711957488985625',
   'longitude': '-73.8149232207675',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307520',
  'created_date': '2025-03-10T08:00:17.000',
  'closed_date': '2025-03-10T10:17:38.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10304',
  'incident_address': '791 VANDUZER STREET',
  'street_name': 'VANDUZER STREET',
  'cross_street_1': 'CHESTNUT STREET',
  'cross_street_2': 'LAUREL AVENUE',
  'intersection_street_1': 'CHESTNUT STREET',
  'intersection_street_2': 'LAUREL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'VAN DUZER STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T10:17:42.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5005670011',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '960426',
  'y_coordinate_state_plane': '165282',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.620305342872214',
  'longitude': '-74.08581754058287',
  'location': {'latitude': '40.620305342872214',
   'longitude': '-74.08581754058287',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308785',
  'created_date': '2025-03-10T08:00:18.000',
  'closed_date': '2025-03-10T09:14:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10314',
  'incident_address': '272 CLINTON B FISK AVENUE',
  'street_name': 'CLINTON B FISK AVENUE',
  'cross_street_1': 'WATERS AVENUE',
  'cross_street_2': 'WATCHOGUE ROAD',
  'intersection_street_1': 'WATERS AVENUE',
  'intersection_street_2': 'WATCHOGUE ROAD',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'CLINTON B FISK AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:14:12.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5004370027',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '947084',
  'y_coordinate_state_plane': '163936',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.616564933823284',
  'longitude': '-74.13386990944214',
  'location': {'latitude': '40.616564933823284',
   'longitude': '-74.13386990944214',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306365',
  'created_date': '2025-03-10T08:00:32.000',
  'closed_date': '2025-03-10T10:47:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '8824 24 AVENUE',
  'street_name': '24 AVENUE',
  'cross_street_1': 'BATH AVENUE',
  'cross_street_2': 'CROPSEY AVENUE',
  'intersection_street_1': 'BATH AVENUE',
  'intersection_street_2': 'CROPSEY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '24 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T10:47:04.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3068900057',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985911',
  'y_coordinate_state_plane': '155988',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59482709148269',
  'longitude': '-73.99401911839777',
  'location': {'latitude': '40.59482709148269',
   'longitude': '-73.99401911839777',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306097',
  'created_date': '2025-03-10T08:00:39.000',
  'closed_date': '2025-03-10T08:57:24.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10462',
  'incident_address': '1963 COLDEN AVENUE',
  'street_name': 'COLDEN AVENUE',
  'cross_street_1': 'RHINELANDER AVENUE',
  'cross_street_2': 'NEILL AVENUE',
  'intersection_street_1': 'RHINELANDER AVENUE',
  'intersection_street_2': 'NEILL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'COLDEN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:57:27.000',
  'community_board': '11 BRONX',
  'bbl': '2042670037',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023337',
  'y_coordinate_state_plane': '249422',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.85119423359718',
  'longitude': '-73.85871412654645',
  'location': {'latitude': '40.85119423359718',
   'longitude': '-73.85871412654645',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306449',
  'created_date': '2025-03-10T08:00:44.000',
  'closed_date': '2025-03-10T08:00:44.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11414',
  'incident_address': 'SOUTH CONDUIT AVENUE',
  'street_name': 'SOUTH CONDUIT AVENUE',
  'cross_street_1': '89 STREET',
  'cross_street_2': '90 STREET',
  'address_type': 'BLOCKFACE',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
  'resolution_action_updated_date': '2025-03-10T08:00:44.000',
  'community_board': '10 QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '64315976',
  'created_date': '2025-03-10T08:01:00.000',
  'closed_date': '2025-03-11T00:19:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '10028',
  'incident_address': '220 EAST   82 STREET',
  'street_name': 'EAST   82 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '2 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) couldn't find the condition. Please file a new Service Request with more details about the location.",
  'resolution_action_updated_date': '2025-03-11T12:00:00.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1015270039',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996653',
  'y_coordinate_state_plane': '221981',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.775954167974454',
  'longitude': '-73.95521815377714',
  'location': {'latitude': '40.775954167974454',
   'longitude': '-73.95521815377714',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307362',
  'created_date': '2025-03-10T08:01:09.000',
  'closed_date': '2025-03-10T15:52:44.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Sidewalk',
  'incident_zip': '10003',
  'incident_address': '10 WAVERLY PLACE',
  'street_name': 'WAVERLY PLACE',
  'cross_street_1': 'MERCER STREET',
  'cross_street_2': 'GREENE STREET',
  'intersection_street_1': 'MERCER STREET',
  'intersection_street_2': 'GREENE STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WAVERLY PLACE',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) closed your Service Request. The condition doesn't meet their criteria for a complaint or Service Request.",
  'resolution_action_updated_date': '2025-03-10T15:52:44.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005470018',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985862',
  'y_coordinate_state_plane': '205245',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.730026646746296',
  'longitude': '-73.99418377976559',
  'location': {'latitude': '40.730026646746296',
   'longitude': '-73.99418377976559',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308350',
  'created_date': '2025-03-10T08:01:11.000',
  'closed_date': '2025-03-10T09:09:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Non-Emergency Police Matter',
  'descriptor': 'Other (complaint details)',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10314',
  'incident_address': '18 DAFFODIL LANE',
  'street_name': 'DAFFODIL LANE',
  'cross_street_1': 'LAMPED LOOP',
  'cross_street_2': 'AGRIG COURT',
  'intersection_street_1': 'LAMPED LOOP',
  'intersection_street_2': 'AGRIG COURT',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'DAFFODIL LANE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T09:09:38.000',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5024017503',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '939238',
  'y_coordinate_state_plane': '152393',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.584845408859074',
  'longitude': '-74.16205379824933',
  'location': {'latitude': '40.584845408859074',
   'longitude': '-74.16205379824933',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315196',
  'created_date': '2025-03-10T08:01:22.000',
  'closed_date': '2025-03-10T12:13:52.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11104',
  'incident_address': '43-04 48 STREET',
  'street_name': '48 STREET',
  'cross_street_1': '43 AVENUE',
  'cross_street_2': 'QUEENS BOULEVARD',
  'intersection_street_1': '43 AVENUE',
  'intersection_street_2': 'QUEENS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'SUNNYSIDE',
  'landmark': '48 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T12:13:56.000',
  'community_board': '02 QUEENS',
  'bbl': '4001400025',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1007371',
  'y_coordinate_state_plane': '210495',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.744406520031475',
  'longitude': '-73.9165596317009',
  'location': {'latitude': '40.744406520031475',
   'longitude': '-73.9165596317009',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315619',
  'created_date': '2025-03-10T08:01:50.000',
  'closed_date': '2025-03-11T13:39:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11373',
  'incident_address': '86-37 53 AVENUE',
  'street_name': '53 AVENUE',
  'cross_street_1': 'VAN HORN STREET',
  'cross_street_2': 'SEABURY STREET',
  'intersection_street_1': 'VAN HORN STREET',
  'intersection_street_2': 'SEABURY STREET',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': '53 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-11T13:39:47.000',
  'community_board': '04 QUEENS',
  'bbl': '4028640036',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1017912',
  'y_coordinate_state_plane': '207302',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73560869498734',
  'longitude': '-73.8785346960438',
  'location': {'latitude': '40.73560869498734',
   'longitude': '-73.8785346960438',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314269',
  'created_date': '2025-03-10T08:02:08.000',
  'closed_date': '2025-03-10T10:38:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11101',
  'incident_address': '5-47 50 AVENUE',
  'street_name': '50 AVENUE',
  'cross_street_1': '5 STREET',
  'cross_street_2': 'VERNON BOULEVARD',
  'intersection_street_1': '5 STREET',
  'intersection_street_2': 'VERNON BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'LONG ISLAND CITY',
  'landmark': '50 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T10:38:24.000',
  'community_board': '02 QUEENS',
  'bbl': '4000320006',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '996424',
  'y_coordinate_state_plane': '210017',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74311637505655',
  'longitude': '-73.95606663802941',
  'location': {'latitude': '40.74311637505655',
   'longitude': '-73.95606663802941',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310744',
  'created_date': '2025-03-10T08:02:11.000',
  'closed_date': '2025-03-10T08:53:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10032',
  'incident_address': '61 HAVEN AVENUE',
  'street_name': 'HAVEN AVENUE',
  'cross_street_1': 'WEST  169 STREET',
  'cross_street_2': 'WEST  170 STREET',
  'intersection_street_1': 'WEST  169 STREET',
  'intersection_street_2': 'WEST  170 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'HAVEN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:53:21.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021390144',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000083',
  'y_coordinate_state_plane': '246645',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.84364451039063',
  'longitude': '-73.94277574266562',
  'location': {'latitude': '40.84364451039063',
   'longitude': '-73.94277574266562',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306335',
  'created_date': '2025-03-10T08:02:33.000',
  'closed_date': '2025-03-10T09:35:30.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11201',
  'incident_address': '120 LAWRENCE STREET',
  'street_name': 'LAWRENCE STREET',
  'cross_street_1': 'METROTECH ROADWAY',
  'cross_street_2': 'WILLOUGHBY STREET',
  'intersection_street_1': 'METROTECH ROADWAY',
  'intersection_street_2': 'WILLOUGHBY STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LAWRENCE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T09:35:33.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3001470036',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988063',
  'y_coordinate_state_plane': '191700',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.692848168263126',
  'longitude': '-73.98625007345736',
  'location': {'latitude': '40.692848168263126',
   'longitude': '-73.98625007345736',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307923',
  'created_date': '2025-03-10T08:02:54.000',
  'closed_date': '2025-03-10T11:59:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10019',
  'incident_address': 'WEST   56 STREET',
  'street_name': 'WEST   56 STREET',
  'cross_street_1': '6 AVENUE',
  'cross_street_2': 'WEST   56 STREET',
  'intersection_street_1': '6 AVENUE',
  'intersection_street_2': 'WEST   56 STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and has referred the complaint to the Department of Homeless Services (DHS) for further action. DHS will inspect the condition and update your Service Request with more information.',
  'resolution_action_updated_date': '2025-03-10T11:59:22.000',
  'community_board': '05 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990431',
  'y_coordinate_state_plane': '217494',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.76364506199491',
  'longitude': '-73.9776872186457',
  'location': {'latitude': '40.76364506199491',
   'longitude': '-73.9776872186457',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314214',
  'created_date': '2025-03-10T08:02:54.000',
  'closed_date': '2025-03-10T20:58:01.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10019',
  'incident_address': 'WEST   56 STREET',
  'street_name': 'WEST   56 STREET',
  'cross_street_1': '6 AVENUE',
  'cross_street_2': 'WEST   56 STREET',
  'intersection_street_1': '6 AVENUE',
  'intersection_street_2': 'WEST   56 STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Department of Homeless Services (DHS) visited the location and is coordinating with their agency partners to address the condition. No further information will be available with 311.',
  'resolution_action_updated_date': '2025-03-10T20:58:05.000',
  'community_board': '05 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990431',
  'y_coordinate_state_plane': '217494',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.76364506199491',
  'longitude': '-73.9776872186457',
  'location': {'latitude': '40.76364506199491',
   'longitude': '-73.9776872186457',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64321258',
  'created_date': '2025-03-10T08:03:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Out',
  'incident_zip': '10312',
  'incident_address': '39 COLON STREET',
  'street_name': 'COLON STREET',
  'cross_street_1': 'AMBOY RD',
  'cross_street_2': 'BILLIOU ST',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'status': 'Open',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5065610088',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '932016',
  'y_coordinate_state_plane': '133318',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.532448708558725',
  'longitude': '-74.18790730901208',
  'location': {'latitude': '40.532448708558725',
   'longitude': '-74.18790730901208',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64322971',
  'created_date': '2025-03-10T08:03:00.000',
  'closed_date': '2025-03-10T09:15:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Controller',
  'incident_zip': '10456',
  'intersection_street_1': 'SHERIDAN AVENUE',
  'intersection_street_2': 'EAST 169 STREET',
  'address_type': 'INTERSECTION',
  'city': 'BRONX',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportation\'s website. Please click the "Learn More" link below.',
  'resolution_action_updated_date': '2025-03-10T09:15:00.000',
  'community_board': '04 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007821',
  'y_coordinate_state_plane': '243863',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.835991468920135',
  'longitude': '-73.91481854804258',
  'location': {'latitude': '40.835991468920135',
   'longitude': '-73.91481854804258',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309314',
  'created_date': '2025-03-10T08:03:03.000',
  'closed_date': '2025-03-10T09:13:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10468',
  'incident_address': '2396 MORRIS AVENUE',
  'street_name': 'MORRIS AVENUE',
  'cross_street_1': 'EAST  184 STREET',
  'cross_street_2': 'EAST FORDHAM ROAD',
  'intersection_street_1': 'EAST  184 STREET',
  'intersection_street_2': 'EAST FORDHAM ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MORRIS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:13:34.000',
  'community_board': '05 BRONX',
  'bbl': '2031730005',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011782',
  'y_coordinate_state_plane': '252825',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86057803832132',
  'longitude': '-73.90046740161462',
  'location': {'latitude': '40.86057803832132',
   'longitude': '-73.90046740161462',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315799',
  'created_date': '2025-03-10T08:03:15.000',
  'closed_date': '2025-03-10T15:52:18.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Sidewalk',
  'incident_zip': '10014',
  'incident_address': '383 BLEECKER STREET',
  'street_name': 'BLEECKER STREET',
  'cross_street_1': 'CHARLES STREET',
  'cross_street_2': 'PERRY STREET',
  'intersection_street_1': 'CHARLES STREET',
  'intersection_street_2': 'PERRY STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BLEECKER STREET',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) closed your Service Request. The condition doesn't meet their criteria for a complaint or Service Request.",
  'resolution_action_updated_date': '2025-03-10T15:52:18.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1006210041',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '982894',
  'y_coordinate_state_plane': '207133',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73520878599232',
  'longitude': '-74.00489293300875',
  'location': {'latitude': '40.73520878599232',
   'longitude': '-74.00489293300875',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314379',
  'created_date': '2025-03-10T08:03:36.000',
  'closed_date': '2025-03-11T02:11:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11208',
  'incident_address': '232 GRANT AVENUE',
  'street_name': 'GRANT AVENUE',
  'cross_street_1': 'RIDGEWOOD AVENUE',
  'cross_street_2': 'FULTON STREET',
  'intersection_street_1': 'RIDGEWOOD AVENUE',
  'intersection_street_2': 'FULTON STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GRANT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-11T02:11:50.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3041350060',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020936',
  'y_coordinate_state_plane': '189023',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68542521240388',
  'longitude': '-73.86772256947395',
  'location': {'latitude': '40.68542521240388',
   'longitude': '-73.86772256947395',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306083',
  'created_date': '2025-03-10T08:03:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11101',
  'incident_address': '41-01 10 STREET',
  'street_name': '10 STREET',
  'cross_street_1': '41 AVENUE',
  'cross_street_2': '41 ROAD',
  'intersection_street_1': '41 AVENUE',
  'intersection_street_2': '41 ROAD',
  'address_type': 'ADDRESS',
  'city': 'LONG ISLAND CITY',
  'landmark': '10 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4004650100',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '999294',
  'y_coordinate_state_plane': '214575',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.755622517152915',
  'longitude': '-73.94569922782671',
  'location': {'latitude': '40.755622517152915',
   'longitude': '-73.94569922782671',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64335376',
  'created_date': '2025-03-10T08:04:00.000',
  'closed_date': '2025-03-12T21:03:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '11377',
  'incident_address': '65-62 MAURICE AVENUE',
  'street_name': 'MAURICE AVENUE',
  'cross_street_1': '65 PLACE',
  'cross_street_2': '66 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'status': 'Closed',
  'resolution_description': 'The owner claimed the vehicle.Â\xa0Your request is now closed and no further action will be taken.',
  'resolution_action_updated_date': '2025-03-12T12:00:00.000',
  'community_board': '05 QUEENS',
  'bbl': '4023850034',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1012062',
  'y_coordinate_state_plane': '207068',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73498675336006',
  'longitude': '-73.89964466881764',
  'location': {'latitude': '40.73498675336006',
   'longitude': '-73.89964466881764',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307973',
  'created_date': '2025-03-10T08:04:05.000',
  'closed_date': '2025-03-10T10:20:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10001',
  'incident_address': '19 WEST   30 STREET',
  'street_name': 'WEST   30 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   30 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and has referred the complaint to the Department of Homeless Services (DHS) for further action. DHS will inspect the condition and update your Service Request with more information.',
  'resolution_action_updated_date': '2025-03-10T10:20:03.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008320027',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987736',
  'y_coordinate_state_plane': '211197',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.746362871996084',
  'longitude': '-73.9874191590972',
  'location': {'latitude': '40.746362871996084',
   'longitude': '-73.9874191590972',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311721',
  'created_date': '2025-03-10T08:04:05.000',
  'closed_date': '2025-03-10T21:15:46.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10001',
  'incident_address': '19 WEST   30 STREET',
  'street_name': 'WEST   30 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   30 STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Homeless Services (DHS) visited the location and is coordinating with their agency partners to address the condition. No further information will be available with 311.',
  'resolution_action_updated_date': '2025-03-10T21:15:50.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008320027',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987736',
  'y_coordinate_state_plane': '211197',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.746362871996084',
  'longitude': '-73.9874191590972',
  'location': {'latitude': '40.746362871996084',
   'longitude': '-73.9874191590972',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311387',
  'created_date': '2025-03-10T08:04:11.000',
  'closed_date': '2025-03-10T08:50:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11231',
  'incident_address': '191 UNION STREET',
  'street_name': 'UNION STREET',
  'cross_street_1': 'HICKS STREET',
  'cross_street_2': 'HENRY STREET',
  'intersection_street_1': 'HICKS STREET',
  'intersection_street_2': 'HENRY STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'UNION STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T08:50:38.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3003370027',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984166',
  'y_coordinate_state_plane': '188346',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68364302931577',
  'longitude': '-74.00030286766025',
  'location': {'latitude': '40.68364302931577',
   'longitude': '-74.00030286766025',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311289',
  'created_date': '2025-03-10T08:04:25.000',
  'closed_date': '2025-03-10T08:42:39.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11379',
  'incident_address': '61-50 82 PLACE',
  'street_name': '82 PLACE',
  'cross_street_1': '61 ROAD',
  'cross_street_2': '61 DRIVE',
  'intersection_street_1': '61 ROAD',
  'intersection_street_2': '61 DRIVE',
  'address_type': 'ADDRESS',
  'city': 'MIDDLE VILLAGE',
  'landmark': '82 PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:42:43.000',
  'community_board': '05 QUEENS',
  'bbl': '4029400029',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1018660',
  'y_coordinate_state_plane': '203430',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.724978134742486',
  'longitude': '-73.87585543190573',
  'location': {'latitude': '40.724978134742486',
   'longitude': '-73.87585543190573',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312767',
  'created_date': '2025-03-10T08:04:47.000',
  'agency': 'EDC',
  'agency_name': 'Economic Development Corporation',
  'complaint_type': 'Noise - Helicopter',
  'descriptor': 'Other',
  'location_type': 'Above Address',
  'incident_zip': '11417',
  'incident_address': '139-06 WHITELAW STREET',
  'street_name': 'WHITELAW STREET',
  'cross_street_1': 'ARION ROAD',
  'cross_street_2': 'NORTH CONDUIT AVENUE',
  'intersection_street_1': 'ARION ROAD',
  'intersection_street_2': 'NORTH CONDUIT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'landmark': 'WHITELAW STREET',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'bbl': '4113980008',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1026668',
  'y_coordinate_state_plane': '183823',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67112679661349',
  'longitude': '-73.84708766575423',
  'location': {'latitude': '40.67112679661349',
   'longitude': '-73.84708766575423',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309387',
  'created_date': '2025-03-10T08:04:49.000',
  'closed_date': '2025-03-10T09:12:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Store/Commercial',
  'incident_zip': '11378',
  'incident_address': '56-13 48 STREET',
  'street_name': '48 STREET',
  'cross_street_1': 'MASPETH AVENUE',
  'cross_street_2': '58 ROAD',
  'intersection_street_1': 'MASPETH AVENUE',
  'intersection_street_2': '58 ROAD',
  'address_type': 'ADDRESS',
  'city': 'MASPETH',
  'landmark': '48 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and no Encampment was found.',
  'resolution_action_updated_date': '2025-03-10T09:12:37.000',
  'community_board': '05 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1005929',
  'y_coordinate_state_plane': '202230',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.721724788066645',
  'longitude': '-73.92179023046239',
  'location': {'latitude': '40.721724788066645',
   'longitude': '-73.92179023046239',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307276',
  'created_date': '2025-03-10T08:05:00.000',
  'closed_date': '2025-03-11T14:00:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise, Barking Dog (NR5)',
  'incident_zip': '11217',
  'incident_address': '15 ST FELIX STREET',
  'street_name': 'ST FELIX STREET',
  'cross_street_1': 'DE KALB AVE',
  'cross_street_2': 'FULTON ST',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': "The Department of Environmental Protection (DEP) closed your Service Request because it didn't include enough dog owner location information to respond to the complaint.  If the excessive dog barking continues, please file a new Service Request. You must include an NYC address for the dog's owner so DEP can send them a letter.",
  'resolution_action_updated_date': '2025-03-11T14:00:00.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3020970029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990407',
  'y_coordinate_state_plane': '190353',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68914964361652',
  'longitude': '-73.9777986880505',
  'location': {'latitude': '40.68914964361652',
   'longitude': '-73.9777986880505',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311236',
  'created_date': '2025-03-10T08:05:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Leak (Use Comments) (WA2)',
  'incident_zip': '11417',
  'incident_address': '93-10 LIBERTY AVENUE',
  'street_name': 'LIBERTY AVENUE',
  'cross_street_1': '93 ST',
  'cross_street_2': '94 ST',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'status': 'Started',
  'resolution_description': 'The Department of Environmental Protection has inspected your complaint and determined that further investigation is required. More information will be available once the condition is resolved. Please visit nyc.gov/311 or call 311 at a later time to check the status of your complaint.',
  'resolution_action_updated_date': '2025-03-10T10:10:00.000',
  'community_board': '10 QUEENS',
  'bbl': '4091620005',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027054',
  'y_coordinate_state_plane': '187128',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68019640487362',
  'longitude': '-73.84567519025673',
  'location': {'latitude': '40.68019640487362',
   'longitude': '-73.84567519025673',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315643',
  'created_date': '2025-03-10T08:05:08.000',
  'closed_date': '2025-03-10T10:52:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11420',
  'incident_address': '135-21 130 STREET',
  'street_name': '130 STREET',
  'cross_street_1': '135 AVENUE',
  'cross_street_2': 'NORTH CONDUIT AVENUE',
  'intersection_street_1': '135 AVENUE',
  'intersection_street_2': 'NORTH CONDUIT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': '130 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T10:53:00.000',
  'community_board': '10 QUEENS',
  'bbl': '4118640021',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036980',
  'y_coordinate_state_plane': '182824',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.66832935703168',
  'longitude': '-73.80992193301684',
  'location': {'latitude': '40.66832935703168',
   'longitude': '-73.80992193301684',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315274',
  'created_date': '2025-03-10T08:05:20.000',
  'closed_date': '2025-03-10T09:16:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10466',
  'incident_address': '863 EAST  224 STREET',
  'street_name': 'EAST  224 STREET',
  'cross_street_1': 'BARNES AVENUE',
  'cross_street_2': 'BRONXWOOD AVENUE',
  'intersection_street_1': 'BARNES AVENUE',
  'intersection_street_2': 'BRONXWOOD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  224 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T09:16:14.000',
  'community_board': '12 BRONX',
  'bbl': '2048490009',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023992',
  'y_coordinate_state_plane': '261978',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88565365558475',
  'longitude': '-73.85627206645707',
  'location': {'latitude': '40.88565365558475',
   'longitude': '-73.85627206645707',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308695',
  'created_date': '2025-03-10T08:05:22.000',
  'closed_date': '2025-03-10T08:50:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11217',
  'incident_address': '18 6 AVENUE',
  'street_name': '6 AVENUE',
  'cross_street_1': 'ATLANTIC AVENUE',
  'cross_street_2': 'PACIFIC STREET',
  'intersection_street_1': 'ATLANTIC AVENUE',
  'intersection_street_2': 'PACIFIC STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '6 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:50:06.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3011187502',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991493',
  'y_coordinate_state_plane': '187934',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.682509220188656',
  'longitude': '-73.97388531907048',
  'location': {'latitude': '40.682509220188656',
   'longitude': '-73.97388531907048',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311404',
  'created_date': '2025-03-10T08:05:27.000',
  'closed_date': '2025-03-10T08:58:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11215',
  'incident_address': '330 18 STREET',
  'street_name': '18 STREET',
  'cross_street_1': '6 AVENUE',
  'cross_street_2': '7 AVENUE',
  'intersection_street_1': '6 AVENUE',
  'intersection_street_2': '7 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '18 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:58:51.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3008800001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987497',
  'y_coordinate_state_plane': '180088',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.660976076282054',
  'longitude': '-73.98829670078912',
  'location': {'latitude': '40.660976076282054',
   'longitude': '-73.98829670078912',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313293',
  'created_date': '2025-03-10T08:05:35.000',
  'closed_date': '2025-03-10T20:30:55.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '10012',
  'incident_address': '255 ELIZABETH STREET',
  'street_name': 'ELIZABETH STREET',
  'cross_street_1': 'PRINCE STREET',
  'cross_street_2': 'EAST HOUSTON STREET',
  'intersection_street_1': 'PRINCE STREET',
  'intersection_street_2': 'EAST HOUSTON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'ELIZABETH STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-10T20:30:56.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005080034',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985963',
  'y_coordinate_state_plane': '202893',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72357096027698',
  'longitude': '-73.99381996268917',
  'location': {'latitude': '40.72357096027698',
   'longitude': '-73.99381996268917',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308385',
  'created_date': '2025-03-10T08:05:40.000',
  'closed_date': '2025-03-11T08:31:32.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11216',
  'incident_address': '210 PUTNAM AVENUE',
  'street_name': 'PUTNAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3018270021',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997369',
  'y_coordinate_state_plane': '188376',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.683715650741924',
  'longitude': '-73.9526985076786',
  'location': {'latitude': '40.683715650741924',
   'longitude': '-73.9526985076786',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307619',
  'created_date': '2025-03-10T08:05:44.000',
  'closed_date': '2025-03-10T12:29:40.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Sidewalk',
  'incident_zip': '10012',
  'incident_address': '239 ELIZABETH STREET',
  'street_name': 'ELIZABETH STREET',
  'cross_street_1': 'PRINCE STREET',
  'cross_street_2': 'EAST HOUSTON STREET',
  'intersection_street_1': 'PRINCE STREET',
  'intersection_street_2': 'EAST HOUSTON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'ELIZABETH STREET',
  'status': 'Closed',
  'resolution_description': "The Department of Sanitation (DSNY) closed your Service Request. The condition doesn't meet their criteria for a complaint or Service Request.",
  'resolution_action_updated_date': '2025-03-10T12:29:40.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005080042',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985929',
  'y_coordinate_state_plane': '202783',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72326904343243',
  'longitude': '-73.993942652868',
  'location': {'latitude': '40.72326904343243',
   'longitude': '-73.993942652868',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314981',
  'created_date': '2025-03-10T08:05:49.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11432',
  'incident_address': '90-60 179 PLACE',
  'street_name': '179 PLACE',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '12 QUEENS',
  'bbl': '4098950081',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1044695',
  'y_coordinate_state_plane': '197786',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.709347169648304',
  'longitude': '-73.78197721512521',
  'location': {'latitude': '40.709347169648304',
   'longitude': '-73.78197721512521',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316350',
  'created_date': '2025-03-10T08:05:49.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PAINT/PLASTER',
  'descriptor': 'CEILING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11432',
  'incident_address': '90-60 179 PLACE',
  'street_name': '179 PLACE',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '12 QUEENS',
  'bbl': '4098950081',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1044695',
  'y_coordinate_state_plane': '197786',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.709347169648304',
  'longitude': '-73.78197721512521',
  'location': {'latitude': '40.709347169648304',
   'longitude': '-73.78197721512521',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316393',
  'created_date': '2025-03-10T08:05:49.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'MOLD',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11432',
  'incident_address': '90-60 179 PLACE',
  'street_name': '179 PLACE',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '12 QUEENS',
  'bbl': '4098950081',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1044695',
  'y_coordinate_state_plane': '197786',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.709347169648304',
  'longitude': '-73.78197721512521',
  'location': {'latitude': '40.709347169648304',
   'longitude': '-73.78197721512521',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314162',
  'created_date': '2025-03-10T08:06:08.000',
  'closed_date': '2025-03-10T08:29:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10013',
  'incident_address': '260 WEST BROADWAY',
  'street_name': 'WEST BROADWAY',
  'cross_street_1': 'BEACH STREET',
  'cross_street_2': 'AVENUE OF THE AMERICAS',
  'intersection_street_1': 'BEACH STREET',
  'intersection_street_2': 'AVENUE OF THE AMERICAS',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:29:56.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1002127501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '982742',
  'y_coordinate_state_plane': '201739',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.720403546429424',
  'longitude': '-74.00544019460165',
  'location': {'latitude': '40.720403546429424',
   'longitude': '-74.00544019460165',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312037',
  'created_date': '2025-03-10T08:06:09.000',
  'closed_date': '2025-03-11T06:30:27.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Cone',
  'location_type': 'Street',
  'incident_zip': '11372',
  'incident_address': '95-01 NORTHERN BOULEVARD',
  'street_name': 'NORTHERN BOULEVARD',
  'cross_street_1': '95 STREET',
  'cross_street_2': '96 STREET',
  'intersection_street_1': '95 STREET',
  'intersection_street_2': '96 STREET',
  'address_type': 'ADDRESS',
  'city': 'JACKSON HEIGHTS',
  'landmark': 'NORTHERN BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-11T06:30:30.000',
  'community_board': '03 QUEENS',
  'bbl': '4014250039',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1019441',
  'y_coordinate_state_plane': '215051',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.756871782232295',
  'longitude': '-73.87297694367003',
  'location': {'latitude': '40.756871782232295',
   'longitude': '-73.87297694367003',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311359',
  'created_date': '2025-03-10T08:06:16.000',
  'closed_date': '2025-03-10T09:07:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11205',
  'incident_address': '298 CLASSON AVENUE',
  'street_name': 'CLASSON AVENUE',
  'cross_street_1': 'DEKALB AVENUE',
  'cross_street_2': 'LAFAYETTE AVENUE',
  'intersection_street_1': 'DEKALB AVENUE',
  'intersection_street_2': 'LAFAYETTE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CLASSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T09:07:12.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3019330121',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995261',
  'y_coordinate_state_plane': '190775',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.690303228634036',
  'longitude': '-73.96029513058312',
  'location': {'latitude': '40.690303228634036',
   'longitude': '-73.96029513058312',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309308',
  'created_date': '2025-03-10T08:06:22.000',
  'closed_date': '2025-03-10T10:14:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10466',
  'incident_address': '4045 CARPENTER AVENUE',
  'street_name': 'CARPENTER AVENUE',
  'cross_street_1': 'EAST  227 STREET',
  'cross_street_2': 'EAST  228 STREET',
  'intersection_street_1': 'EAST  227 STREET',
  'intersection_street_2': 'EAST  228 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CARPENTER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T10:14:15.000',
  'community_board': '12 BRONX',
  'bbl': '2048210004',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022326',
  'y_coordinate_state_plane': '263795',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.89064808807796',
  'longitude': '-73.86228685610604',
  'location': {'latitude': '40.89064808807796',
   'longitude': '-73.86228685610604',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314172',
  'created_date': '2025-03-10T08:06:24.000',
  'closed_date': '2025-03-10T08:55:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper Use',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11217',
  'incident_address': '521 BERGEN STREET',
  'street_name': 'BERGEN STREET',
  'cross_street_1': '6 AVENUE',
  'cross_street_2': 'CARLTON AVENUE',
  'intersection_street_1': '6 AVENUE',
  'intersection_street_2': 'CARLTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BERGEN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T08:55:50.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011360015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991765',
  'y_coordinate_state_plane': '187168',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68040649763936',
  'longitude': '-73.9729054757157',
  'location': {'latitude': '40.68040649763936',
   'longitude': '-73.9729054757157',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313105',
  'created_date': '2025-03-10T08:06:26.000',
  'agency': 'EDC',
  'agency_name': 'Economic Development Corporation',
  'complaint_type': 'Noise - Helicopter',
  'descriptor': 'Other',
  'location_type': 'Above Address',
  'incident_zip': '11231',
  'incident_address': '110 DOUGLASS STREET',
  'street_name': 'DOUGLASS STREET',
  'cross_street_1': 'SMITH STREET',
  'cross_street_2': 'HOYT STREET',
  'intersection_street_1': 'SMITH STREET',
  'intersection_street_2': 'HOYT STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'DOUGLASS STREET',
  'status': 'In Progress',
  'community_board': '06 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986752',
  'y_coordinate_state_plane': '188075',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68289884286063',
  'longitude': '-73.9909789710629',
  'location': {'latitude': '40.68289884286063',
   'longitude': '-73.9909789710629',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315416',
  'created_date': '2025-03-10T08:06:29.000',
  'closed_date': '2025-03-10T08:28:14.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Food Vendor',
  'location_type': 'Street',
  'incident_zip': '10457',
  'incident_address': 'CROTONA AVENUE',
  'street_name': 'CROTONA AVENUE',
  'cross_street_1': 'CROTONA AVENUE',
  'cross_street_2': 'EAST TREMONT AVENUE',
  'intersection_street_1': 'CROTONA AVENUE',
  'intersection_street_2': 'EAST TREMONT AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'N/A',
  'resolution_action_updated_date': '2025-03-10T08:28:17.000',
  'community_board': '06 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1014373',
  'y_coordinate_state_plane': '247302',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84541059639791',
  'longitude': '-73.89112534644192',
  'location': {'latitude': '40.84541059639791',
   'longitude': '-73.89112534644192',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313294',
  'created_date': '2025-03-10T08:06:34.000',
  'closed_date': '2025-03-10T20:42:16.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Trash or Recycling Not Secure',
  'location_type': 'Sidewalk',
  'incident_zip': '10012',
  'incident_address': '15 PRINCE STREET',
  'street_name': 'PRINCE STREET',
  'cross_street_1': 'BOWERY',
  'cross_street_2': 'ELIZABETH STREET',
  'intersection_street_1': 'BOWERY',
  'intersection_street_2': 'ELIZABETH STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'PRINCE STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no violation at the location.',
  'resolution_action_updated_date': '2025-03-10T20:42:20.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005070001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985907',
  'y_coordinate_state_plane': '202568',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72267892460804',
  'longitude': '-73.99402207544797',
  'location': {'latitude': '40.72267892460804',
   'longitude': '-73.99402207544797',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308848',
  'created_date': '2025-03-10T08:06:37.000',
  'closed_date': '2025-03-10T08:55:29.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11235',
  'incident_address': '601 OCEAN VIEW AVENUE',
  'street_name': 'OCEAN VIEW AVENUE',
  'cross_street_1': 'BRIGHTON    6 STREET',
  'cross_street_2': 'BRIGHTON    7 STREET',
  'intersection_street_1': 'BRIGHTON    6 STREET',
  'intersection_street_2': 'BRIGHTON    7 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'OCEAN VIEW AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T08:55:33.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3086660610',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994786',
  'y_coordinate_state_plane': '150445',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.579606555715465',
  'longitude': '-73.96207091505815',
  'location': {'latitude': '40.579606555715465',
   'longitude': '-73.96207091505815',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308955',
  'created_date': '2025-03-10T08:06:49.000',
  'closed_date': '2025-03-10T08:16:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper Use',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11204',
  'incident_address': '5901 16 AVENUE',
  'street_name': '16 AVENUE',
  'cross_street_1': 'LIRR BAY RIDGE LINE',
  'cross_street_2': '60 STREET',
  'intersection_street_1': 'LIRR BAY RIDGE LINE',
  'intersection_street_2': '60 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '16 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T08:16:35.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3055100001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986590',
  'y_coordinate_state_plane': '167055',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62520358002943',
  'longitude': '-73.99157035969202',
  'location': {'latitude': '40.62520358002943',
   'longitude': '-73.99157035969202',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315817',
  'created_date': '2025-03-10T08:06:52.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Bike Rack',
  'descriptor': 'Damaged/Bent/Loose/Leaning',
  'location_type': 'Sidewalk',
  'incident_zip': '11372',
  'incident_address': '74-20 ROOSEVELT AVENUE',
  'street_name': 'ROOSEVELT AVENUE',
  'cross_street_1': '74 STREET',
  'cross_street_2': '75 STREET',
  'intersection_street_1': '74 STREET',
  'intersection_street_2': '75 STREET',
  'address_type': 'ADDRESS',
  'city': 'JACKSON HEIGHTS',
  'landmark': 'ROOSEVELT AVENUE',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4014850023',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014409',
  'y_coordinate_state_plane': '211399',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74686657012909',
  'longitude': '-73.89115646992367',
  'location': {'latitude': '40.74686657012909',
   'longitude': '-73.89115646992367',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64327892',
  'created_date': '2025-03-10T08:07:00.000',
  'closed_date': '2025-03-10T16:40:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Ped Lens',
  'incident_zip': '10010',
  'intersection_street_1': 'AVENUE OF THE AMERICAS',
  'intersection_street_2': 'WEST 22 STREET',
  'address_type': 'INTERSECTION',
  'city': 'MANHATTAN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportation\'s website. Please click the "Learn More" link below.',
  'resolution_action_updated_date': '2025-03-10T16:40:00.000',
  'community_board': '04 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986109',
  'y_coordinate_state_plane': '209693',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74223525984209',
  'longitude': '-73.99329135563927',
  'location': {'latitude': '40.74223525984209',
   'longitude': '-73.99329135563927',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314306',
  'created_date': '2025-03-10T08:07:05.000',
  'closed_date': '2025-03-10T11:25:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '2170 MCDONALD AVENUE',
  'street_name': 'MCDONALD AVENUE',
  'cross_street_1': 'AVENUE S',
  'cross_street_2': 'AVENUE T',
  'intersection_street_1': 'AVENUE S',
  'intersection_street_2': 'AVENUE T',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MCDONALD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T11:25:26.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3070870034',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991791',
  'y_coordinate_state_plane': '157827',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.599871722491926',
  'longitude': '-73.97284452951853',
  'location': {'latitude': '40.599871722491926',
   'longitude': '-73.97284452951853',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311426',
  'created_date': '2025-03-10T08:07:11.000',
  'closed_date': '2025-03-10T08:58:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11215',
  'incident_address': '320 18 STREET',
  'street_name': '18 STREET',
  'cross_street_1': '6 AVENUE',
  'cross_street_2': '7 AVENUE',
  'intersection_street_1': '6 AVENUE',
  'intersection_street_2': '7 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '18 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:58:21.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3008800001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987378',
  'y_coordinate_state_plane': '180183',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66123687316142',
  'longitude': '-73.9887255734382',
  'location': {'latitude': '40.66123687316142',
   'longitude': '-73.9887255734382',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309198',
  'created_date': '2025-03-10T08:07:33.000',
  'closed_date': '2025-03-12T10:42:59.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Sanitation Worker or Vehicle Complaint',
  'descriptor': 'Spilled Garbage',
  'location_type': 'Street',
  'incident_zip': '10306',
  'incident_address': '169 3 STREET',
  'street_name': '3 STREET',
  'cross_street_1': 'ROSE AVENUE',
  'cross_street_2': 'ROSS AVENUE',
  'intersection_street_1': 'ROSE AVENUE',
  'intersection_street_2': 'ROSS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': '3 STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation cleaned the location.',
  'resolution_action_updated_date': '2025-03-11T07:19:44.000',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5041950010',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '951017',
  'y_coordinate_state_plane': '148298',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.57365743802254',
  'longitude': '-74.11962655330352',
  'location': {'latitude': '40.57365743802254',
   'longitude': '-74.11962655330352',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311349',
  'created_date': '2025-03-10T08:07:33.000',
  'closed_date': '2025-03-10T13:08:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10001',
  'incident_address': '10 AVENUE',
  'street_name': '10 AVENUE',
  'cross_street_1': '10 AVENUE',
  'cross_street_2': 'WEST   26 STREET',
  'intersection_street_1': '10 AVENUE',
  'intersection_street_2': 'WEST   26 STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T13:08:49.000',
  'community_board': '04 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983478',
  'y_coordinate_state_plane': '212373',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.74959134960163',
  'longitude': '-74.00278625353856',
  'location': {'latitude': '40.74959134960163',
   'longitude': '-74.00278625353856',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309415',
  'created_date': '2025-03-10T08:07:35.000',
  'closed_date': '2025-03-10T23:08:36.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10035',
  'incident_address': '152 EAST  118 STREET',
  'street_name': 'EAST  118 STREET',
  'cross_street_1': 'LEXINGTON AVENUE',
  'cross_street_2': '3 AVENUE',
  'intersection_street_1': 'LEXINGTON AVENUE',
  'intersection_street_2': '3 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST  118 STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-10T23:08:41.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1016450050',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000799',
  'y_coordinate_state_plane': '230649',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79973871089347',
  'longitude': '-73.94022739718964',
  'location': {'latitude': '40.79973871089347',
   'longitude': '-73.94022739718964',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309098',
  'created_date': '2025-03-10T08:07:42.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Sign - Missing',
  'descriptor': 'Other/Unknown',
  'location_type': 'Street',
  'incident_zip': '11249',
  'incident_address': '75 NORTH   11 STREET',
  'street_name': 'NORTH   11 STREET',
  'cross_street_1': 'KENT AVENUE',
  'cross_street_2': 'WYTHE AVENUE',
  'intersection_street_1': 'KENT AVENUE',
  'intersection_street_2': 'WYTHE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NORTH   11 STREET',
  'status': 'In Progress',
  'resolution_description': 'The Department of Transportation inspected the condition and opened a repair order. Repairs of this type are corrected within 180 (120 Biz) days from the date of inspection.',
  'resolution_action_updated_date': '2025-03-13T06:44:11.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3022880024',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995810',
  'y_coordinate_state_plane': '202284',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.72189201539815',
  'longitude': '-73.95829571850767',
  'location': {'latitude': '40.72189201539815',
   'longitude': '-73.95829571850767',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315951',
  'created_date': '2025-03-10T08:07:44.000',
  'closed_date': '2025-03-10T11:28:13.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Cone',
  'location_type': 'Street',
  'incident_zip': '11228',
  'incident_address': '7000 NEW UTRECHT AVENUE',
  'street_name': 'NEW UTRECHT AVENUE',
  'cross_street_1': '70 STREET',
  'cross_street_2': '71 STREET',
  'intersection_street_1': '70 STREET',
  'intersection_street_2': '71 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NEW UTRECHT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation has investigated the complaint and addressed the issue. If the problem persists, call 311 to enter a new complaint. If you are outside of New York City, please call (212) NEW-YORK (212-639-9675).',
  'resolution_action_updated_date': '2025-03-10T11:28:13.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3061690015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984568',
  'y_coordinate_state_plane': '165016',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6196072542224',
  'longitude': '-73.9988545295446',
  'location': {'latitude': '40.6196072542224',
   'longitude': '-73.9988545295446',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309197',
  'created_date': '2025-03-10T08:07:57.000',
  'closed_date': '2025-03-10T08:07:57.000',
  'agency': 'DOB',
  'agency_name': 'Department of Buildings',
  'complaint_type': 'BEST/Site Safety',
  'descriptor': 'Demolition - Unsafe',
  'incident_zip': '11212',
  'incident_address': '886 SARATOGA AVENUE',
  'street_name': 'SARATOGA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'The Department of Buildings investigated this complaint and determined that no further action was necessary.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3035950050',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1007881',
  'y_coordinate_state_plane': '179377',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.658993600289996',
  'longitude': '-73.9148283068966',
  'location': {'latitude': '40.658993600289996',
   'longitude': '-73.9148283068966',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313861',
  'created_date': '2025-03-10T08:08:00.000',
  'closed_date': '2025-03-14T14:00:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Leak (Use Comments) (WA2)',
  'incident_zip': '10457',
  'intersection_street_1': 'EAST 176 STREET',
  'intersection_street_2': 'WEBSTER AVENUE',
  'address_type': 'INTERSECTION',
  'city': 'BRONX',
  'status': 'Closed',
  'resolution_description': 'The Department of Environmental Protection investigated this complaint and made a repair.',
  'resolution_action_updated_date': '2025-03-14T14:00:00.000',
  'community_board': '05 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011526',
  'y_coordinate_state_plane': '247828',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84686356410053',
  'longitude': '-73.90141321320964',
  'location': {'latitude': '40.84686356410053',
   'longitude': '-73.90141321320964',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64326442',
  'created_date': '2025-03-10T08:08:00.000',
  'closed_date': '2025-03-10T15:20:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'LED Lense',
  'incident_zip': '10038',
  'intersection_street_1': 'PEARL STREET',
  'intersection_street_2': 'PECK SLIP',
  'address_type': 'INTERSECTION',
  'city': 'MANHATTAN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-10T15:20:00.000',
  'community_board': '01 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983556',
  'y_coordinate_state_plane': '197528',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.70884545881225',
  'longitude': '-74.00250320982184',
  'location': {'latitude': '40.70884545881225',
   'longitude': '-74.00250320982184',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310034',
  'created_date': '2025-03-10T08:08:02.000',
  'closed_date': '2025-03-10T08:58:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11219',
  'incident_address': '6725 11 AVENUE',
  'street_name': '11 AVENUE',
  'cross_street_1': '67 STREET',
  'cross_street_2': 'OVINGTON AVENUE',
  'intersection_street_1': '67 STREET',
  'intersection_street_2': 'OVINGTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '11 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T08:58:11.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3057660003',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '982209',
  'y_coordinate_state_plane': '167804',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62725950169114',
  'longitude': '-74.00735274608968',
  'location': {'latitude': '40.62725950169114',
   'longitude': '-74.00735274608968',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315607',
  'created_date': '2025-03-10T08:08:05.000',
  'closed_date': '2025-03-10T11:15:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10457',
  'incident_address': '1701 BATHGATE AVENUE',
  'street_name': 'BATHGATE AVENUE',
  'cross_street_1': 'EAST  173 STREET',
  'cross_street_2': 'EAST  174 STREET',
  'intersection_street_1': 'EAST  173 STREET',
  'intersection_street_2': 'EAST  174 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BATHGATE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T11:15:43.000',
  'community_board': '03 BRONX',
  'bbl': '2029150001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011976',
  'y_coordinate_state_plane': '246037',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84194639593423',
  'longitude': '-73.8997941330035',
  'location': {'latitude': '40.84194639593423',
   'longitude': '-73.8997941330035',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308804',
  'created_date': '2025-03-10T08:08:27.000',
  'closed_date': '2025-03-10T08:22:30.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11222',
  'incident_address': '100 MESEROLE AVENUE',
  'street_name': 'MESEROLE AVENUE',
  'cross_street_1': 'LORIMER STREET',
  'cross_street_2': 'MANHATTAN AVENUE',
  'intersection_street_1': 'LORIMER STREET',
  'intersection_street_2': 'MANHATTAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MESEROLE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:22:32.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3026190001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997282',
  'y_coordinate_state_plane': '204143',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.72699247279165',
  'longitude': '-73.95298167828521',
  'location': {'latitude': '40.72699247279165',
   'longitude': '-73.95298167828521',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310804',
  'created_date': '2025-03-10T08:08:28.000',
  'closed_date': '2025-03-10T09:53:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10468',
  'incident_address': '2427 MORRIS AVENUE',
  'street_name': 'MORRIS AVENUE',
  'cross_street_1': 'EAST  184 STREET',
  'cross_street_2': 'EAST FORDHAM ROAD',
  'intersection_street_1': 'EAST  184 STREET',
  'intersection_street_2': 'EAST FORDHAM ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MORRIS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T09:53:39.000',
  'community_board': '05 BRONX',
  'bbl': '2031840059',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011851',
  'y_coordinate_state_plane': '253020',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86111303880155',
  'longitude': '-73.90021715273474',
  'location': {'latitude': '40.86111303880155',
   'longitude': '-73.90021715273474',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312615',
  'created_date': '2025-03-10T08:08:29.000',
  'closed_date': '2025-03-10T09:36:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11417',
  'incident_address': '80-60 PITKIN AVENUE',
  'street_name': 'PITKIN AVENUE',
  'cross_street_1': '80 STREET',
  'cross_street_2': 'SUTTER AVENUE',
  'intersection_street_1': '80 STREET',
  'intersection_street_2': 'SUTTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'landmark': 'PITKIN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T09:36:46.000',
  'community_board': '10 QUEENS',
  'bbl': '4091400426',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024522',
  'y_coordinate_state_plane': '185523',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67580293050677',
  'longitude': '-73.85481359346961',
  'location': {'latitude': '40.67580293050677',
   'longitude': '-73.85481359346961',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313933',
  'created_date': '2025-03-10T08:08:46.000',
  'closed_date': '2025-03-10T08:57:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper Use',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11217',
  'incident_address': '511 BERGEN STREET',
  'street_name': 'BERGEN STREET',
  'cross_street_1': '6 AVENUE',
  'cross_street_2': 'CARLTON AVENUE',
  'intersection_street_1': '6 AVENUE',
  'intersection_street_2': 'CARLTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BERGEN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T08:57:31.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011360015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991692',
  'y_coordinate_state_plane': '187189',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68046419954542',
  'longitude': '-73.97316864615698',
  'location': {'latitude': '40.68046419954542',
   'longitude': '-73.97316864615698',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308555',
  'created_date': '2025-03-10T08:08:51.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11221',
  'incident_address': '1001 PUTNAM AVENUE',
  'street_name': 'PUTNAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3014840047',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006278',
  'y_coordinate_state_plane': '189734',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68742536073384',
  'longitude': '-73.92057204562555',
  'location': {'latitude': '40.68742536073384',
   'longitude': '-73.92057204562555',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309889',
  'created_date': '2025-03-10T08:08:51.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11221',
  'incident_address': '1001 PUTNAM AVENUE',
  'street_name': 'PUTNAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3014840047',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006278',
  'y_coordinate_state_plane': '189734',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68742536073384',
  'longitude': '-73.92057204562555',
  'location': {'latitude': '40.68742536073384',
   'longitude': '-73.92057204562555',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315102',
  'created_date': '2025-03-10T08:08:51.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'MOLD',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11221',
  'incident_address': '1001 PUTNAM AVENUE',
  'street_name': 'PUTNAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3014840047',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006278',
  'y_coordinate_state_plane': '189734',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68742536073384',
  'longitude': '-73.92057204562555',
  'location': {'latitude': '40.68742536073384',
   'longitude': '-73.92057204562555',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316367',
  'created_date': '2025-03-10T08:08:51.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'BASIN/SINK',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11221',
  'incident_address': '1001 PUTNAM AVENUE',
  'street_name': 'PUTNAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3014840047',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006278',
  'y_coordinate_state_plane': '189734',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68742536073384',
  'longitude': '-73.92057204562555',
  'location': {'latitude': '40.68742536073384',
   'longitude': '-73.92057204562555',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306304',
  'created_date': '2025-03-10T08:09:00.000',
  'closed_date': '2025-03-10T08:53:51.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11221',
  'incident_address': '60 SUYDAM STREET',
  'street_name': 'SUYDAM STREET',
  'cross_street_1': 'BUSHWICK AVENUE',
  'cross_street_2': 'MYRTLE AVENUE',
  'intersection_street_1': 'BUSHWICK AVENUE',
  'intersection_street_2': 'MYRTLE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SUYDAM STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T08:53:56.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3032150009',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003477',
  'y_coordinate_state_plane': '193191',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.696920552286876',
  'longitude': '-73.93066194272751',
  'location': {'latitude': '40.696920552286876',
   'longitude': '-73.93066194272751',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311334',
  'created_date': '2025-03-10T08:09:04.000',
  'closed_date': '2025-03-10T10:07:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10304',
  'incident_address': '2 CHESTNUT STREET',
  'street_name': 'CHESTNUT STREET',
  'cross_street_1': 'VAN DUZER STREET',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'VAN DUZER STREET',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'CHESTNUT STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T10:07:52.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5005670018',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '960476',
  'y_coordinate_state_plane': '165298',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.62034939382926',
  'longitude': '-74.08563748971272',
  'location': {'latitude': '40.62034939382926',
   'longitude': '-74.08563748971272',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314006',
  'created_date': '2025-03-10T08:09:11.000',
  'closed_date': '2025-03-10T21:03:59.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11369',
  'incident_address': '32-12 108 STREET',
  'street_name': '108 STREET',
  'cross_street_1': '32 AVENUE',
  'cross_street_2': 'NORTHERN BOULEVARD',
  'intersection_street_1': '32 AVENUE',
  'intersection_street_2': 'NORTHERN BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': '108 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T21:04:03.000',
  'community_board': '03 QUEENS',
  'bbl': '4017020032',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1022673',
  'y_coordinate_state_plane': '215998',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75945759756388',
  'longitude': '-73.86130554133526',
  'location': {'latitude': '40.75945759756388',
   'longitude': '-73.86130554133526',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308816',
  'created_date': '2025-03-10T08:09:18.000',
  'closed_date': '2025-03-10T11:15:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10457',
  'incident_address': '1701 BATHGATE AVENUE',
  'street_name': 'BATHGATE AVENUE',
  'cross_street_1': 'EAST  173 STREET',
  'cross_street_2': 'EAST  174 STREET',
  'intersection_street_1': 'EAST  173 STREET',
  'intersection_street_2': 'EAST  174 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BATHGATE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T11:15:48.000',
  'community_board': '03 BRONX',
  'bbl': '2029150001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011976',
  'y_coordinate_state_plane': '246037',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84194639593423',
  'longitude': '-73.8997941330035',
  'location': {'latitude': '40.84194639593423',
   'longitude': '-73.8997941330035',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311690',
  'created_date': '2025-03-10T08:09:38.000',
  'closed_date': '2025-03-10T11:15:10.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Defacement',
  'location_type': 'Street',
  'incident_zip': '10457',
  'incident_address': '2115 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'EAST  180 STREET',
  'cross_street_2': 'EAST  181 STREET',
  'intersection_street_1': 'EAST  180 STREET',
  'intersection_street_2': 'EAST  181 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected the condition you reported and issued a notice to the responsible party to correct the condition.',
  'resolution_action_updated_date': '2025-03-10T11:15:13.000',
  'community_board': '06 BRONX',
  'bbl': '2030370025',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013204',
  'y_coordinate_state_plane': '249660',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85188651616139',
  'longitude': '-73.89534031886241',
  'location': {'latitude': '40.85188651616139',
   'longitude': '-73.89534031886241',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314305',
  'created_date': '2025-03-10T08:09:42.000',
  'closed_date': '2025-03-10T08:59:29.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11215',
  'incident_address': '441 14 STREET',
  'street_name': '14 STREET',
  'cross_street_1': '8 AVENUE',
  'cross_street_2': 'PROSPECT PARK WEST',
  'intersection_street_1': '8 AVENUE',
  'intersection_street_2': 'PROSPECT PARK WEST',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '14 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T08:59:32.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3011010073',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989449',
  'y_coordinate_state_plane': '180653',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.662525945499816',
  'longitude': '-73.98126058928418',
  'location': {'latitude': '40.662525945499816',
   'longitude': '-73.98126058928418',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312544',
  'created_date': '2025-03-10T08:09:53.000',
  'closed_date': '2025-03-10T09:19:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper Use',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11217',
  'incident_address': '65 6 AVENUE',
  'street_name': '6 AVENUE',
  'cross_street_1': 'DEAN STREET',
  'cross_street_2': 'BERGEN STREET',
  'intersection_street_1': 'DEAN STREET',
  'intersection_street_2': 'BERGEN STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '6 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:20:02.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3011360001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991330',
  'y_coordinate_state_plane': '187303',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68077740059727',
  'longitude': '-73.974473679506',
  'location': {'latitude': '40.68077740059727',
   'longitude': '-73.974473679506',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316085',
  'created_date': '2025-03-10T08:10:00.000',
  'closed_date': '2025-03-10T12:08:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Paper License Plates',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10453',
  'incident_address': '1660 ANDREWS AVENUE',
  'street_name': 'ANDREWS AVENUE',
  'cross_street_1': 'TENNEY PLACE',
  'cross_street_2': 'WEST  176 STREET',
  'intersection_street_1': 'TENNEY PLACE',
  'intersection_street_2': 'WEST  176 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ANDREWS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T12:08:17.000',
  'community_board': '05 BRONX',
  'bbl': '2028780083',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006627',
  'y_coordinate_state_plane': '248441',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84855984187605',
  'longitude': '-73.91911817593288',
  'location': {'latitude': '40.84855984187605',
   'longitude': '-73.91911817593288',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64319167',
  'created_date': '2025-03-10T08:10:00.000',
  'closed_date': '2025-03-10T21:00:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'LED Lense',
  'incident_zip': '10003',
  'intersection_street_1': 'BOWERY',
  'intersection_street_2': 'EAST 1 STREET',
  'address_type': 'INTERSECTION',
  'city': 'MANHATTAN',
  'facility_type': 'N/A',
  'status': 'Assigned',
  'resolution_description': 'Service Request status for this request is available on the Department of Transportationâ\x80\x99s website. Please click the â\x80\x9cLearn Moreâ\x80\x9d link below.',
  'resolution_action_updated_date': '2025-03-10T21:00:00.000',
  'community_board': '03 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986377',
  'y_coordinate_state_plane': '203379',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72490482258413',
  'longitude': '-73.99232620988668',
  'location': {'latitude': '40.72490482258413',
   'longitude': '-73.99232620988668',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308226',
  'created_date': '2025-03-10T08:10:17.000',
  'closed_date': '2025-03-10T15:33:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10462',
  'incident_address': '1580 METROPOLITAN AVENUE',
  'street_name': 'METROPOLITAN AVENUE',
  'cross_street_1': 'PINE DRIVE',
  'cross_street_2': 'MAPLE DRIVE',
  'intersection_street_1': 'PINE DRIVE',
  'intersection_street_2': 'MAPLE DRIVE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'METROPOLITAN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T15:33:22.000',
  'community_board': '09 BRONX',
  'bbl': '2039437501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023616',
  'y_coordinate_state_plane': '245284',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.839835414578836',
  'longitude': '-73.8577299335319',
  'location': {'latitude': '40.839835414578836',
   'longitude': '-73.8577299335319',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313449',
  'created_date': '2025-03-10T08:10:24.000',
  'closed_date': '2025-03-11T14:32:58.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dead Animal',
  'descriptor': 'Dog',
  'location_type': 'Sidewalk',
  'incident_zip': '11411',
  'incident_address': '118-25 236 STREET',
  'street_name': '236 STREET',
  'cross_street_1': 'CROSS ISLAND PARKWAY',
  'cross_street_2': '119 AVENUE',
  'intersection_street_1': 'CROSS ISLAND PARKWAY',
  'intersection_street_2': '119 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'CAMBRIA HEIGHTS',
  'landmark': '236 STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation cleaned the location.',
  'resolution_action_updated_date': '2025-03-11T04:41:22.000',
  'community_board': '13 QUEENS',
  'bbl': '4127730151',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1059871',
  'y_coordinate_state_plane': '190284',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68863934016212',
  'longitude': '-73.72732251817447',
  'location': {'latitude': '40.68863934016212',
   'longitude': '-73.72732251817447',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310985',
  'created_date': '2025-03-10T08:10:31.000',
  'closed_date': '2025-03-10T08:23:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Posting Advertisement',
  'descriptor': 'Building',
  'location_type': 'Residential Building/House',
  'incident_zip': '11210',
  'incident_address': '992 EAST   38 STREET',
  'street_name': 'EAST   38 STREET',
  'cross_street_1': 'DEAD END',
  'cross_street_2': 'AVENUE I',
  'intersection_street_1': 'DEAD END',
  'intersection_street_2': 'AVENUE I',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   38 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T08:23:32.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3075830061',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000979',
  'y_coordinate_state_plane': '169118',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6308505934161',
  'longitude': '-73.93973017263377',
  'location': {'latitude': '40.6308505934161',
   'longitude': '-73.93973017263377',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311737',
  'created_date': '2025-03-10T08:10:31.000',
  'closed_date': '2025-03-10T09:27:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11201',
  'incident_address': '301 GOLD STREET',
  'street_name': 'GOLD STREET',
  'cross_street_1': 'TILLARY STREET',
  'cross_street_2': 'JOHNSON STREET',
  'intersection_street_1': 'TILLARY STREET',
  'intersection_street_2': 'JOHNSON STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GOLD STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T09:27:14.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3001340006',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988901',
  'y_coordinate_state_plane': '192647',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69544706314867',
  'longitude': '-73.98322753703334',
  'location': {'latitude': '40.69544706314867',
   'longitude': '-73.98322753703334',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313925',
  'created_date': '2025-03-10T08:10:31.000',
  'closed_date': '2025-03-10T10:30:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11232',
  'incident_address': '162 27 STREET',
  'street_name': '27 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '4 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '4 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '27 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T10:30:58.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3006600020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984152',
  'y_coordinate_state_plane': '179749',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.660046190818136',
  'longitude': '-74.00035322061336',
  'location': {'latitude': '40.660046190818136',
   'longitude': '-74.00035322061336',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310091',
  'created_date': '2025-03-10T08:10:41.000',
  'closed_date': '2025-03-10T13:29:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10452',
  'incident_address': '115 MARCY PLACE',
  'street_name': 'MARCY PLACE',
  'cross_street_1': 'WALTON AVENUE',
  'cross_street_2': 'GRAND CONCOURSE',
  'intersection_street_1': 'WALTON AVENUE',
  'intersection_street_2': 'GRAND CONCOURSE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MARCY PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2025-03-10T13:29:49.000',
  'community_board': '04 BRONX',
  'bbl': '2028410089',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007455',
  'y_coordinate_state_plane': '244611',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83804548052239',
  'longitude': '-73.91613861905613',
  'location': {'latitude': '40.83804548052239',
   'longitude': '-73.91613861905613',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306212',
  'created_date': '2025-03-10T08:10:42.000',
  'closed_date': '2025-03-10T09:22:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11234',
  'incident_address': '1466 ROYCE STREET',
  'street_name': 'ROYCE STREET',
  'cross_street_1': 'BERGEN COVE',
  'cross_street_2': 'AVENUE T',
  'intersection_street_1': 'BERGEN COVE',
  'intersection_street_2': 'AVENUE T',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ROYCE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:22:05.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3083930081',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1009964',
  'y_coordinate_state_plane': '166415',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62340990582655',
  'longitude': '-73.90737009152542',
  'location': {'latitude': '40.62340990582655',
   'longitude': '-73.90737009152542',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311484',
  'created_date': '2025-03-10T08:10:43.000',
  'closed_date': '2025-03-11T02:56:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10033',
  'incident_address': '554 FORT WASHINGTON AVENUE',
  'street_name': 'FORT WASHINGTON AVENUE',
  'cross_street_1': 'WEST  185 STREET',
  'cross_street_2': 'WEST  187 STREET',
  'intersection_street_1': 'WEST  185 STREET',
  'intersection_street_2': 'WEST  187 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'FORT WASHINGTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-11T02:56:11.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021800035',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001607',
  'y_coordinate_state_plane': '250385',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.85390683928058',
  'longitude': '-73.93725796133391',
  'location': {'latitude': '40.85390683928058',
   'longitude': '-73.93725796133391',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307412',
  'created_date': '2025-03-10T08:10:59.000',
  'closed_date': '2025-03-10T09:21:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10314',
  'incident_address': '44 NORTHPORT LANE',
  'street_name': 'NORTHPORT LANE',
  'cross_street_1': 'BEND',
  'cross_street_2': 'WESTPORT STREET',
  'intersection_street_1': 'BEND',
  'intersection_street_2': 'WESTPORT STREET',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'NORTHPORT LANE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:21:18.000',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5024100218',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '939712',
  'y_coordinate_state_plane': '152024',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.58383497303454',
  'longitude': '-74.16034485871235',
  'location': {'latitude': '40.58383497303454',
   'longitude': '-74.16034485871235',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307702',
  'created_date': '2025-03-10T08:11:03.000',
  'closed_date': '2025-03-10T09:06:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11231',
  'incident_address': '335 CARROLL STREET',
  'street_name': 'CARROLL STREET',
  'cross_street_1': 'HOYT STREET',
  'cross_street_2': 'BOND STREET',
  'intersection_street_1': 'HOYT STREET',
  'intersection_street_2': 'BOND STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CARROLL STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:06:32.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3004440061',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986571',
  'y_coordinate_state_plane': '186712',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67915776678333',
  'longitude': '-73.9916320409283',
  'location': {'latitude': '40.67915776678333',
   'longitude': '-73.9916320409283',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307338',
  'created_date': '2025-03-10T08:11:04.000',
  'closed_date': '2025-03-10T09:22:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper Use',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11103',
  'incident_address': '30-45 42 STREET',
  'street_name': '42 STREET',
  'cross_street_1': '30 AVENUE',
  'cross_street_2': 'NEWTOWN ROAD',
  'intersection_street_1': '30 AVENUE',
  'intersection_street_2': 'NEWTOWN ROAD',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '42 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:22:35.000',
  'community_board': '01 QUEENS',
  'bbl': '4006960014',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008011',
  'y_coordinate_state_plane': '216943',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76210293978918',
  'longitude': '-73.91422717982518',
  'location': {'latitude': '40.76210293978918',
   'longitude': '-73.91422717982518',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313606',
  'created_date': '2025-03-10T08:11:33.000',
  'closed_date': '2025-03-11T08:54:09.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'ELECTRIC',
  'descriptor': 'POWER OUTAGE',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11212',
  'incident_address': '1051 LINDEN BOULEVARD',
  'street_name': 'LINDEN BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': "HPD inspected this condition so the complaint has been closed. Violations were issued. The law provides the property owner time to correct the condition(s).  Violation descriptions and the dates for the property owner to correct any violations are available at HPDONLINE.  If the owner has not corrected the condition by the date provided, you may wish to bring a case in housing court seeking the correction of these conditions.To find out more about how to start a housing court case, visit HPD's w",
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3046890020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006781',
  'y_coordinate_state_plane': '177686',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65435504527861',
  'longitude': '-73.91879861356263',
  'location': {'latitude': '40.65435504527861',
   'longitude': '-73.91879861356263',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316196',
  'created_date': '2025-03-10T08:11:33.000',
  'closed_date': '2025-03-10T19:20:12.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11212',
  'incident_address': '1051 LINDEN BOULEVARD',
  'street_name': 'LINDEN BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Closed',
  'resolution_description': 'The Department of Housing Preservation and Development was not able to gain access to your apartment or others in the building to inspect for a lack of heat or hot water. The complaint has been closed. If the condition still exists, please file a new complaint.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3046890020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006781',
  'y_coordinate_state_plane': '177686',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65435504527861',
  'longitude': '-73.91879861356263',
  'location': {'latitude': '40.65435504527861',
   'longitude': '-73.91879861356263',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307087',
  'created_date': '2025-03-10T08:11:35.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'BASIN/SINK',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10030',
  'incident_address': '143 WEST  142 STREET',
  'street_name': 'WEST  142 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'An HPD Inspector was not able to gain access to inspect this complaint sometime within the last 10 days. If the conditions still exist and an inspection is required, please contact HPD with your complaint number to schedule an appointment at  212 234 - 7485 (MANHATTAN).',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020110014',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001064',
  'y_coordinate_state_plane': '237744',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81921201396588',
  'longitude': '-73.939252484319',
  'location': {'latitude': '40.81921201396588',
   'longitude': '-73.939252484319',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307100',
  'created_date': '2025-03-10T08:11:35.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'BATHTUB/SHOWER',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10030',
  'incident_address': '143 WEST  142 STREET',
  'street_name': 'WEST  142 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'An HPD Inspector was not able to gain access to inspect this complaint sometime within the last 10 days. If the conditions still exist and an inspection is required, please contact HPD with your complaint number to schedule an appointment at  212 234 - 7485 (MANHATTAN).',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020110014',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001064',
  'y_coordinate_state_plane': '237744',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81921201396588',
  'longitude': '-73.939252484319',
  'location': {'latitude': '40.81921201396588',
   'longitude': '-73.939252484319',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307149',
  'created_date': '2025-03-10T08:11:35.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'TOILET',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10030',
  'incident_address': '143 WEST  142 STREET',
  'street_name': 'WEST  142 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'An HPD Inspector was not able to gain access to inspect this complaint sometime within the last 10 days. If the conditions still exist and an inspection is required, please contact HPD with your complaint number to schedule an appointment at  212 234 - 7485 (MANHATTAN).',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020110014',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001064',
  'y_coordinate_state_plane': '237744',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81921201396588',
  'longitude': '-73.939252484319',
  'location': {'latitude': '40.81921201396588',
   'longitude': '-73.939252484319',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307212',
  'created_date': '2025-03-10T08:11:35.000',
  'closed_date': '2025-03-10T19:03:47.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10032',
  'incident_address': '438 WEST  164 STREET',
  'street_name': 'WEST  164 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': "The Department of Housing Preservation and Development conducted or attempted to conduct an inspection.  More information about inspection results can be found through HPD's website at www.nyc.gov/hpd by using HPDONLINE (enter your address on the home page) and entering your SR number under the complaint status option.",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021100076',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001457',
  'y_coordinate_state_plane': '244149',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.836791148558945',
  'longitude': '-73.9378161828633',
  'location': {'latitude': '40.836791148558945',
   'longitude': '-73.9378161828633',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308550',
  'created_date': '2025-03-10T08:11:35.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10030',
  'incident_address': '143 WEST  142 STREET',
  'street_name': 'WEST  142 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'An HPD Inspector was not able to gain access to inspect this complaint sometime within the last 10 days. If the conditions still exist and an inspection is required, please contact HPD with your complaint number to schedule an appointment at  212 234 - 7485 (MANHATTAN).',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020110014',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001064',
  'y_coordinate_state_plane': '237744',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81921201396588',
  'longitude': '-73.939252484319',
  'location': {'latitude': '40.81921201396588',
   'longitude': '-73.939252484319',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312206',
  'created_date': '2025-03-10T08:11:35.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'ELECTRIC',
  'descriptor': 'NO LIGHTING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10030',
  'incident_address': '143 WEST  142 STREET',
  'street_name': 'WEST  142 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'An HPD Inspector was not able to gain access to inspect this complaint sometime within the last 10 days. If the conditions still exist and an inspection is required, please contact HPD with your complaint number to schedule an appointment at  212 234 - 7485 (MANHATTAN).',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020110014',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001064',
  'y_coordinate_state_plane': '237744',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81921201396588',
  'longitude': '-73.939252484319',
  'location': {'latitude': '40.81921201396588',
   'longitude': '-73.939252484319',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316288',
  'created_date': '2025-03-10T08:11:35.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PLUMBING',
  'descriptor': 'BASIN/SINK',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10030',
  'incident_address': '143 WEST  142 STREET',
  'street_name': 'WEST  142 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'An HPD Inspector was not able to gain access to inspect this complaint sometime within the last 10 days. If the conditions still exist and an inspection is required, please contact HPD with your complaint number to schedule an appointment at  212 234 - 7485 (MANHATTAN).',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020110014',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001064',
  'y_coordinate_state_plane': '237744',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81921201396588',
  'longitude': '-73.939252484319',
  'location': {'latitude': '40.81921201396588',
   'longitude': '-73.939252484319',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310090',
  'created_date': '2025-03-10T08:11:36.000',
  'closed_date': '2025-03-10T12:38:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10010',
  'incident_address': '2450 FDR DRIVE',
  'street_name': 'FDR DRIVE',
  'cross_street_1': 'EAST   23 STREET',
  'cross_street_2': 'EAST   25 STREET PEDESTRIAN OVPS',
  'intersection_street_1': 'EAST   23 STREET',
  'intersection_street_2': 'EAST   25 STREET PEDESTRIAN OVPS',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'FRANKLIN D ROOSEVELT DRIVE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T12:38:17.000',
  'community_board': '06 MANHATTAN',
  'bbl': '1009910059',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991303',
  'y_coordinate_state_plane': '207671',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73668275490061',
  'longitude': '-73.97454968998021',
  'location': {'latitude': '40.73668275490061',
   'longitude': '-73.97454968998021',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312791',
  'created_date': '2025-03-10T08:11:46.000',
  'closed_date': '2025-03-11T10:16:13.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Defective Hardware',
  'location_type': 'Street',
  'incident_zip': '11367',
  'incident_address': '137-03 73 TERRACE',
  'street_name': '73 TERRACE',
  'cross_street_1': '137 STREET',
  'cross_street_2': '139 STREET',
  'intersection_street_1': '137 STREET',
  'intersection_street_2': '139 STREET',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '73 TERRACE',
  'status': 'Closed',
  'resolution_description': 'The Department of Transportation inspected the condition and issued a Corrective Action Repair (CAR) to the contractor or utility company. The responsible party has a maximum of 30 days to correct the condition. If the condition still exists, a summons will be issued. In some cases, the Department of Transportation will make the repairs and charge the responsible party for the costs.',
  'resolution_action_updated_date': '2025-03-11T10:16:17.000',
  'community_board': '08 QUEENS',
  'bbl': '4066020038',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032829',
  'y_coordinate_state_plane': '202933',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72354752904296',
  'longitude': '-73.82474014768474',
  'location': {'latitude': '40.72354752904296',
   'longitude': '-73.82474014768474',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310924',
  'created_date': '2025-03-10T08:11:58.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'DOOR/WINDOW',
  'descriptor': 'DOOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11221',
  'incident_address': '1001 PUTNAM AVENUE',
  'street_name': 'PUTNAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3014840047',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006278',
  'y_coordinate_state_plane': '189734',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68742536073384',
  'longitude': '-73.92057204562555',
  'location': {'latitude': '40.68742536073384',
   'longitude': '-73.92057204562555',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311400',
  'created_date': '2025-03-10T08:12:12.000',
  'closed_date': '2025-03-10T21:22:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10459',
  'incident_address': '1297A UNION AVENUE',
  'street_name': 'UNION AVENUE',
  'cross_street_1': 'RITTER PLACE',
  'cross_street_2': 'JENNINGS STREET',
  'intersection_street_1': 'RITTER PLACE',
  'intersection_street_2': 'JENNINGS STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNION AVENUE',
  'status': 'Closed',
  'resolution_description': "This complaint does not fall under the Police Department's jurisdiction.",
  'resolution_action_updated_date': '2025-03-10T21:22:59.000',
  'community_board': '03 BRONX',
  'bbl': '2029610032',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012253',
  'y_coordinate_state_plane': '242233',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.831504650539024',
  'longitude': '-73.8988088966428',
  'location': {'latitude': '40.831504650539024',
   'longitude': '-73.8988088966428',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312756',
  'created_date': '2025-03-10T08:12:19.000',
  'closed_date': '2025-03-12T07:28:02.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Chronic Dumping',
  'location_type': 'Sidewalk',
  'incident_zip': '11372',
  'incident_address': '33-12 85 STREET',
  'street_name': '85 STREET',
  'cross_street_1': 'NORTHERN BOULEVARD',
  'cross_street_2': '34 AVENUE',
  'intersection_street_1': 'NORTHERN BOULEVARD',
  'intersection_street_2': '34 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JACKSON HEIGHTS',
  'landmark': '85 STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and found no condition at the location.',
  'resolution_action_updated_date': '2025-03-12T07:28:06.000',
  'community_board': '03 QUEENS',
  'bbl': '4014320011',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1016807',
  'y_coordinate_state_plane': '214471',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75528992265362',
  'longitude': '-73.88248724875868',
  'location': {'latitude': '40.75528992265362',
   'longitude': '-73.88248724875868',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315223',
  'created_date': '2025-03-10T08:12:24.000',
  'closed_date': '2025-03-10T09:22:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11103',
  'incident_address': '34-16 ASTORIA BOULEVARD SOUTH',
  'street_name': 'ASTORIA BOULEVARD SOUTH',
  'cross_street_1': '34 STREET',
  'cross_street_2': '35 STREET',
  'intersection_street_1': '34 STREET',
  'intersection_street_2': '35 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': 'ASTORIA BOULEVARD SOUTH',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:22:59.000',
  'community_board': '01 QUEENS',
  'bbl': '4006320030',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1007630',
  'y_coordinate_state_plane': '219667',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76958062747012',
  'longitude': '-73.91559304356464',
  'location': {'latitude': '40.76958062747012',
   'longitude': '-73.91559304356464',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311983',
  'created_date': '2025-03-10T08:12:27.000',
  'closed_date': '2025-03-10T09:01:09.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '11217',
  'incident_address': '86 FORT GREENE PLACE',
  'street_name': 'FORT GREENE PLACE',
  'cross_street_1': 'DEKALB AVENUE',
  'cross_street_2': 'FULTON STREET',
  'intersection_street_1': 'DEKALB AVENUE',
  'intersection_street_2': 'FULTON STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FORT GREENE PLACE',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation investigated this complaint and issued a Notice of Violation.',
  'resolution_action_updated_date': '2025-03-10T09:01:14.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3020970077',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990716',
  'y_coordinate_state_plane': '189794',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68761509668632',
  'longitude': '-73.97668501225495',
  'location': {'latitude': '40.68761509668632',
   'longitude': '-73.97668501225495',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307386',
  'created_date': '2025-03-10T08:12:48.000',
  'closed_date': '2025-03-10T09:16:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11217',
  'incident_address': '698 DEGRAW STREET',
  'street_name': 'DEGRAW STREET',
  'cross_street_1': '4 AVENUE',
  'cross_street_2': '5 AVENUE',
  'intersection_street_1': '4 AVENUE',
  'intersection_street_2': '5 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'DEGRAW STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:16:58.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3009490032',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989607',
  'y_coordinate_state_plane': '186323',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.678088733172785',
  'longitude': '-73.9806865840304',
  'location': {'latitude': '40.678088733172785',
   'longitude': '-73.9806865840304',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314746',
  'created_date': '2025-03-10T08:12:49.000',
  'closed_date': '2025-03-10T08:54:25.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Animal in a Park',
  'descriptor': 'Dog Off Leash',
  'location_type': 'Park',
  'incident_zip': '11222',
  'incident_address': 'MSGR MCGOLRICK PARK',
  'street_name': 'MSGR MCGOLRICK PARK',
  'cross_street_1': 'DRIGGS AVENUE',
  'cross_street_2': 'NASSAU AVENUE',
  'intersection_street_1': 'DRIGGS AVENUE',
  'intersection_street_2': 'NASSAU AVENUE',
  'address_type': 'UNRECOGNIZED',
  'city': 'BROOKLYN',
  'landmark': 'MONSIGNOR MCGOLRICK PARK',
  'status': 'Closed',
  'resolution_description': "NYC Parks couldn't respond to your complaint because they had to devote resources to other critical services at the time. The agency will use your complaint for future planning.",
  'resolution_action_updated_date': '2025-03-10T08:54:28.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3026870001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999951',
  'y_coordinate_state_plane': '203215',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.724441004030766',
  'longitude': '-73.94335432615917',
  'location': {'latitude': '40.724441004030766',
   'longitude': '-73.94335432615917',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309378',
  'created_date': '2025-03-10T08:12:58.000',
  'closed_date': '2025-03-13T15:04:08.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Removal Request',
  'location_type': 'Sidewalk',
  'incident_zip': '11207',
  'incident_address': '16 VERMONT STREET',
  'street_name': 'VERMONT STREET',
  'cross_street_1': 'SUNNYSIDE AVENUE',
  'cross_street_2': 'JAMAICA AVENUE',
  'intersection_street_1': 'SUNNYSIDE AVENUE',
  'intersection_street_2': 'JAMAICA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'VERMONT STREET',
  'status': 'Closed',
  'resolution_description': 'The Department of Sanitation will address the situation at the location by providing educational outreach about proper sanitation procedures.',
  'resolution_action_updated_date': '2025-03-12T13:10:40.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3034860024',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1013127',
  'y_coordinate_state_plane': '186929',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67970658499745',
  'longitude': '-73.89588815197999',
  'location': {'latitude': '40.67970658499745',
   'longitude': '-73.89588815197999',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310671',
  'created_date': '2025-03-10T08:13:25.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Rodent',
  'descriptor': 'Rat Sighting',
  'location_type': '3+ Family Apt. Building',
  'incident_zip': '11217',
  'incident_address': '70 FT GREENE PLACE',
  'street_name': 'FT GREENE PLACE',
  'cross_street_1': 'DEKALB AVENUE',
  'cross_street_2': 'FULTON STREET',
  'intersection_street_1': 'DEKALB AVENUE',
  'intersection_street_2': 'FULTON STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FORT GREENE PLACE',
  'status': 'In Progress',
  'community_board': '02 BROOKLYN',
  'bbl': '3020970073',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990697',
  'y_coordinate_state_plane': '189917',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.687952717314346',
  'longitude': '-73.97675340441442',
  'location': {'latitude': '40.687952717314346',
   'longitude': '-73.97675340441442',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306386',
  'created_date': '2025-03-10T08:13:28.000',
  'closed_date': '2025-03-10T08:13:28.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Rodent',
  'descriptor': 'Rat Sighting',
  'location_type': 'Other (Explain Below)',
  'incident_zip': '10025',
  'incident_address': 'BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'WEST   94 STREET',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'WEST 94 STREET',
  'address_type': 'INTERSECTION',
  'city': 'MANHATTAN',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_action_updated_date': '2025-03-11T07:32:48.000',
  'community_board': '07 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991800',
  'y_coordinate_state_plane': '228317',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.793350276113884',
  'longitude': '-73.97273310665051',
  'location': {'latitude': '40.793350276113884',
   'longitude': '-73.97273310665051',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313248',
  'created_date': '2025-03-10T08:13:33.000',
  'closed_date': '2025-03-12T12:23:12.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Damaged Tree',
  'descriptor': 'Branch Cracked and Will Fall',
  'location_type': 'Street',
  'incident_zip': '10461',
  'incident_address': '1838 YATES AVENUE',
  'street_name': 'YATES AVENUE',
  'cross_street_1': 'MORRIS PARK AVENUE',
  'cross_street_2': 'RHINELANDER AVENUE',
  'intersection_street_1': 'MORRIS PARK AVENUE',
  'intersection_street_2': 'RHINELANDER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'YATES AVENUE',
  'status': 'Closed',
  'resolution_description': 'NYC Parks performed the work necessary to correct the condition.',
  'resolution_action_updated_date': '2025-03-12T12:23:16.000',
  'community_board': '11 BRONX',
  'bbl': '2042010050',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1025434',
  'y_coordinate_state_plane': '249546',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85152504402248',
  'longitude': '-73.85113345537727',
  'location': {'latitude': '40.85152504402248',
   'longitude': '-73.85113345537727',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64307505',
  'created_date': '2025-03-10T08:13:35.000',
  'closed_date': '2025-03-10T09:31:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11372',
  'incident_address': '95-01 NORTHERN BOULEVARD',
  'street_name': 'NORTHERN BOULEVARD',
  'cross_street_1': '95 STREET',
  'cross_street_2': '96 STREET',
  'intersection_street_1': '95 STREET',
  'intersection_street_2': '96 STREET',
  'address_type': 'ADDRESS',
  'city': 'JACKSON HEIGHTS',
  'landmark': 'NORTHERN BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:31:30.000',
  'community_board': '03 QUEENS',
  'bbl': '4014250039',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1019441',
  'y_coordinate_state_plane': '215051',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.756871782232295',
  'longitude': '-73.87297694367003',
  'location': {'latitude': '40.756871782232295',
   'longitude': '-73.87297694367003',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64310656',
  'created_date': '2025-03-10T08:13:40.000',
  'closed_date': '2025-03-10T09:12:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10468',
  'incident_address': '2396 MORRIS AVENUE',
  'street_name': 'MORRIS AVENUE',
  'cross_street_1': 'EAST  184 STREET',
  'cross_street_2': 'EAST FORDHAM ROAD',
  'intersection_street_1': 'EAST  184 STREET',
  'intersection_street_2': 'EAST FORDHAM ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MORRIS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:12:24.000',
  'community_board': '05 BRONX',
  'bbl': '2031730005',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011782',
  'y_coordinate_state_plane': '252825',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86057803832132',
  'longitude': '-73.90046740161462',
  'location': {'latitude': '40.86057803832132',
   'longitude': '-73.90046740161462',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308800',
  'created_date': '2025-03-10T08:13:41.000',
  'closed_date': '2025-03-10T09:00:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10310',
  'incident_address': '129 SENECA STREET',
  'street_name': 'SENECA STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'SENECA STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:00:31.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5002160073',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '951520',
  'y_coordinate_state_plane': '169414',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.63161838063056',
  'longitude': '-74.11791826077044',
  'location': {'latitude': '40.63161838063056',
   'longitude': '-74.11791826077044',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64314181',
  'created_date': '2025-03-10T08:13:50.000',
  'closed_date': '2025-03-10T13:03:39.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11233',
  'incident_address': '1385 HERKIMER STREET',
  'street_name': 'HERKIMER STREET',
  'cross_street_1': 'EASTERN PARKWAY',
  'cross_street_2': 'SHERLOCK PLACE',
  'intersection_street_1': 'EASTERN PARKWAY',
  'intersection_street_2': 'SHERLOCK PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HERKIMER STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T13:03:43.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3015530047',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1009890',
  'y_coordinate_state_plane': '186066',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67734781463402',
  'longitude': '-73.9075619615778',
  'location': {'latitude': '40.67734781463402',
   'longitude': '-73.9075619615778',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309006',
  'created_date': '2025-03-10T08:13:53.000',
  'closed_date': '2025-03-10T10:43:16.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11215',
  'incident_address': '66 WINDSOR PLACE',
  'street_name': 'WINDSOR PLACE',
  'cross_street_1': '8 AVENUE',
  'cross_street_2': 'PROSPECT PARK WEST',
  'intersection_street_1': '8 AVENUE',
  'intersection_street_2': 'PROSPECT PARK WEST',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WINDSOR PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T10:43:19.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3011130014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989027',
  'y_coordinate_state_plane': '179990',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66070639463947',
  'longitude': '-73.98278212673023',
  'location': {'latitude': '40.66070639463947',
   'longitude': '-73.98278212673023',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315924',
  'created_date': '2025-03-10T08:14:10.000',
  'closed_date': '2025-03-10T08:18:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Paper License Plates',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11219',
  'incident_address': '1026 41 STREET',
  'street_name': '41 STREET',
  'cross_street_1': '10 AVENUE',
  'cross_street_2': 'FORT HAMILTON PARKWAY',
  'intersection_street_1': '10 AVENUE',
  'intersection_street_2': 'FORT HAMILTON PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '41 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T08:18:35.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3055910018',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986092',
  'y_coordinate_state_plane': '173561',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64306128632204',
  'longitude': '-73.99336258416812',
  'location': {'latitude': '40.64306128632204',
   'longitude': '-73.99336258416812',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312153',
  'created_date': '2025-03-10T08:14:12.000',
  'closed_date': '2025-03-10T09:23:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11103',
  'incident_address': '44-06 30 ROAD',
  'street_name': '30 ROAD',
  'cross_street_1': '44 STREET',
  'cross_street_2': '45 STREET',
  'intersection_street_1': '44 STREET',
  'intersection_street_2': '45 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '30 ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:23:23.000',
  'community_board': '01 QUEENS',
  'bbl': '4007130067',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008632',
  'y_coordinate_state_plane': '216869',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76189813812258',
  'longitude': '-73.91198575444183',
  'location': {'latitude': '40.76189813812258',
   'longitude': '-73.91198575444183',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312547',
  'created_date': '2025-03-10T08:14:19.000',
  'closed_date': '2025-03-10T09:36:59.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10028',
  'incident_address': '220 EAST   82 STREET',
  'street_name': 'EAST   82 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '2 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '2 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   82 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2025-03-10T09:37:04.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1015270039',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996653',
  'y_coordinate_state_plane': '221981',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Other',
  'latitude': '40.775954167974454',
  'longitude': '-73.95521815377714',
  'location': {'latitude': '40.775954167974454',
   'longitude': '-73.95521815377714',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312795',
  'created_date': '2025-03-10T08:14:28.000',
  'closed_date': '2025-03-10T18:11:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10304',
  'incident_address': '140 PALMA DRIVE',
  'street_name': 'PALMA DRIVE',
  'cross_street_1': 'HANOVER AVENUE',
  'cross_street_2': 'PARK HILL AVENUE',
  'intersection_street_1': 'HANOVER AVENUE',
  'intersection_street_2': 'PARK HILL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'PALMA DRIVE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T18:11:58.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5028880040',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '961156',
  'y_coordinate_state_plane': '162076',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'vehicle_type': 'Car',
  'latitude': '40.611507473424',
  'longitude': '-74.08317700943735',
  'location': {'latitude': '40.611507473424',
   'longitude': '-74.08317700943735',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64309047',
  'created_date': '2025-03-10T08:14:37.000',
  'closed_date': '2025-03-10T09:55:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11419',
  'incident_address': '131-20 LIBERTY AVENUE',
  'street_name': 'LIBERTY AVENUE',
  'cross_street_1': '131 STREET',
  'cross_street_2': '132 STREET',
  'intersection_street_1': '131 STREET',
  'intersection_street_2': '132 STREET',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': 'LIBERTY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2025-03-10T09:55:27.000',
  'community_board': '10 QUEENS',
  'bbl': '4095910008',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035669',
  'y_coordinate_state_plane': '190786',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69019090531523',
  'longitude': '-73.81458698611411',
  'location': {'latitude': '40.69019090531523',
   'longitude': '-73.81458698611411',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64306086',
  'created_date': '2025-03-10T08:14:46.000',
  'closed_date': '2025-03-10T17:52:42.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11420',
  'incident_address': '115-60 LEFFERTS BOULEVARD',
  'street_name': 'LEFFERTS BOULEVARD',
  'cross_street_1': 'ROCKAWAY BOULEVARD',
  'cross_street_2': 'SUTTER AVENUE',
  'intersection_street_1': 'ROCKAWAY BOULEVARD',
  'intersection_street_2': 'SUTTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': 'LEFFERTS BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2025-03-10T17:52:47.000',
  'community_board': '10 QUEENS',
  'bbl': '4117110055',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1034330',
  'y_coordinate_state_plane': '185297',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.67513256010201',
  'longitude': '-73.819456099195',
  'location': {'latitude': '40.67513256010201',
   'longitude': '-73.819456099195',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64312250',
  'created_date': '2025-03-10T08:14:46.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '542 WEST  153 STREET',
  'street_name': 'WEST  153 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020840056',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999426',
  'y_coordinate_state_plane': '241959',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.830783954707165',
  'longitude': '-73.94516090028604',
  'location': {'latitude': '40.830783954707165',
   'longitude': '-73.94516090028604',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64313663',
  'created_date': '2025-03-10T08:14:46.000',
  'closed_date': '2025-03-11T20:33:11.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10027',
  'incident_address': '1430 AMSTERDAM AVENUE',
  'street_name': 'AMSTERDAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2025-03-11T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1019840001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996962',
  'y_coordinate_state_plane': '236718',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81640278803893',
  'longitude': '-73.9540745928603',
  'location': {'latitude': '40.81640278803893',
   'longitude': '-73.9540745928603',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64308415',
  'created_date': '2025-03-10T08:14:47.000',
  'closed_date': '2025-03-10T14:15:31.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10026',
  'incident_address': '17 ST NICHOLAS AVENUE',
  'street_name': 'ST NICHOLAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Closed',
  'resolution_description': "The Department of Housing Preservation and Development conducted or attempted to conduct an inspection.  More information about inspection results can be found through HPD's website at www.nyc.gov/hpd by using HPDONLINE (enter your address on the home page) and entering your SR number under the complaint status option.",
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1018210046',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997419',
  'y_coordinate_state_plane': '230490',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79930798322807',
  'longitude': '-73.95243577915605',
  'location': {'latitude': '40.79930798322807',
   'longitude': '-73.95243577915605',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64315499',
  'created_date': '2025-03-10T08:14:47.000',
  'closed_date': '2025-03-10T09:10:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper Use',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11217',
  'incident_address': '62 6 AVENUE',
  'street_name': '6 AVENUE',
  'cross_street_1': 'DEAN STREET',
  'cross_street_2': 'BERGEN STREET',
  'intersection_street_1': 'DEAN STREET',
  'intersection_street_2': 'BERGEN STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '6 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2025-03-10T09:10:14.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3011350032',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991335',
  'y_coordinate_state_plane': '187345',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68089267705455',
  'longitude': '-73.97445560828652',
  'location': {'latitude': '40.68089267705455',
   'longitude': '-73.97445560828652',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64316212',
  'created_date': '2025-03-10T08:14:50.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10040',
  'incident_address': '16 BROADWAY TERRACE',
  'street_name': 'BROADWAY TERRACE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2025-03-10T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021700556',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003249',
  'y_coordinate_state_plane': '251561',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.85713122651663',
  'longitude': '-73.93131913330224',
  'location': {'latitude': '40.85713122651663',
   'longitude': '-73.93131913330224',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311939',
  'created_date': '2025-03-10T08:14:58.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'location_type': 'Subway',
  'address_type': 'ADDRESS',
  'status': 'Closed',
  'resolution_description': 'The mobile outreach response team offered services to the individual, but the individual did not accept assistance.',
  'resolution_action_updated_date': '2025-03-12T18:36:01.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998196',
  'y_coordinate_state_plane': '231506',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'bridge_highway_name': '2',
  'bridge_highway_segment': 'Platform',
  'latitude': '40.80209543286648',
  'longitude': '-73.94962727577145',
  'location': {'latitude': '40.80209543286648',
   'longitude': '-73.94962727577145',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '64311371',
  'created_date': '2025-03-10T08:15:04.000',
  'closed_date': '2025-03-10T09:46:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11228',
  'incident_address': '1532 86 STREET',
  'street_name': '86 STREET',
  'cross_street_1': 'BAY   10 STREET',
  'cross_street_2': 'BAY   11 STREET',
  'intersection_street_1': 'BAY   10 STREET',
  'intersection_street_2': 'BAY   11 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '86 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2025-03-10T09:46:11.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3063610037',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '981853',
  'y_coordinate_state_plane': '161831',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61086476943976',
  'longitude': '-74.00863312299781',
  'location': {'latitude': '40.61086476943976',
   'longitude': '-74.00863312299781',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}}]

Like the FEC, Socrata uses their own API to populate the tables when browsing data on sites powered by them.

At-home exercise: Try filtering a table on the NYC Open Data Portal, and find the API calls that makes.

pd.DataFrame(data)
unique_key created_date closed_date agency agency_name complaint_type descriptor location_type incident_zip incident_address ... landmark bbl vehicle_type facility_type bridge_highway_name bridge_highway_direction bridge_highway_segment due_date road_ramp taxi_pick_up_location
0 64308075 2025-03-10T04:02:13.000 2025-03-10T08:16:40.000 NYPD New York City Police Department Illegal Parking Blocked Crosswalk Street/Sidewalk 10467 PERRY AVENUE ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
1 64312949 2025-03-10T04:02:34.000 2025-03-10T04:10:32.000 NYPD New York City Police Department Illegal Parking Blocked Hydrant Street/Sidewalk 11219 1021 41 STREET ... 41 STREET NaN NaN NaN NaN NaN NaN NaN NaN NaN
2 64312151 2025-03-10T04:02:52.000 2025-03-10T04:39:02.000 NYPD New York City Police Department Illegal Parking Blocked Crosswalk Street/Sidewalk 10468 2790 UNIVERSITY AVENUE ... UNIVERSITY AVENUE 2032490044 NaN NaN NaN NaN NaN NaN NaN NaN
3 64308169 2025-03-10T04:03:34.000 2025-03-10T04:23:26.000 NYPD New York City Police Department Noise - Commercial Loud Music/Party Club/Bar/Restaurant 10034 5060 BROADWAY ... BROADWAY 1022320018 NaN NaN NaN NaN NaN NaN NaN NaN
4 64312020 2025-03-10T04:03:46.000 2025-03-13T13:29:24.000 DSNY Department of Sanitation Residential Disposal Complaint Trash or Recycling Not Secure Sidewalk 11203 932 SCHENECTADY AVENUE ... SCHENECTADY AVENUE 3049000028 NaN NaN NaN NaN NaN NaN NaN NaN
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
995 64308415 2025-03-10T08:14:47.000 2025-03-10T14:15:31.000 HPD Department of Housing Preservation and Develop... HEAT/HOT WATER ENTIRE BUILDING RESIDENTIAL BUILDING 10026 17 ST NICHOLAS AVENUE ... NaN 1018210046 NaN NaN NaN NaN NaN NaN NaN NaN
996 64315499 2025-03-10T08:14:47.000 2025-03-10T09:10:11.000 NYPD New York City Police Department Illegal Parking Parking Permit Improper Use Street/Sidewalk 11217 62 6 AVENUE ... 6 AVENUE 3011350032 NaN NaN NaN NaN NaN NaN NaN NaN
997 64316212 2025-03-10T08:14:50.000 NaN HPD Department of Housing Preservation and Develop... HEAT/HOT WATER APARTMENT ONLY RESIDENTIAL BUILDING 10040 16 BROADWAY TERRACE ... NaN 1021700556 NaN NaN NaN NaN NaN NaN NaN NaN
998 64311939 2025-03-10T08:14:58.000 NaN DHS Department of Homeless Services Homeless Person Assistance NaN Subway NaN NaN ... NaN NaN NaN NaN 2 NaN Platform NaN NaN NaN
999 64311371 2025-03-10T08:15:04.000 2025-03-10T09:46:09.000 NYPD New York City Police Department Illegal Parking Blocked Hydrant Street/Sidewalk 11228 1532 86 STREET ... 86 STREET 3063610037 NaN NaN NaN NaN NaN NaN NaN NaN

1000 rows × 40 columns

Coincidence there were exactly 1,000 results?

Pagination#

Things are going to differ by API#

  • Endpoints

  • Supported parameters

  • Response structure

  • Quality of documentation

  • Helpfulness of errors

  • Size/helpfulness of community

Gotta read and experiment.

Final Project#

  • You should have received feedback on your proposal.

  • Reminder that it’s peer-graded.

    • You should see the notebooks you need to review come through CourseWorks.

    • This is an opportunity to see how different people solve different problems.

    • You will lose points if you don’t complete your peer grading.

  • Submission

All together, let’s make sure our notebooks are properly shared for peer grading:

  1. Create a notebook for your Final Project, if you haven’t already.

  2. Make it visible to your peers.

Schedule#