From 15067e5474ba865aac5023d7d1e48a122183c41a Mon Sep 17 00:00:00 2001 From: Daniel Simmons-Ritchie <37225902+SimmonsRitchie@users.noreply.github.com> Date: Tue, 30 Apr 2024 15:52:26 -0500 Subject: [PATCH] Deprecate spider chi_police --- city_scrapers/spiders/chi_police.py | 124 -- .../spiders/chi_police_district_councils.py | 192 -- city_scrapers/spiders/chi_policeboard.py | 102 - tests/files/chi_police.json | 1 - tests/files/chi_policeboard.html | 1633 ----------------- tests/test_chi_police.py | 77 - tests/test_chi_police_district_councils.py | 130 -- tests/test_chi_policeboard.py | 80 - 8 files changed, 2339 deletions(-) delete mode 100644 city_scrapers/spiders/chi_police.py delete mode 100644 city_scrapers/spiders/chi_police_district_councils.py delete mode 100644 city_scrapers/spiders/chi_policeboard.py delete mode 100644 tests/files/chi_police.json delete mode 100644 tests/files/chi_policeboard.html delete mode 100644 tests/test_chi_police.py delete mode 100644 tests/test_chi_police_district_councils.py delete mode 100644 tests/test_chi_policeboard.py diff --git a/city_scrapers/spiders/chi_police.py b/city_scrapers/spiders/chi_police.py deleted file mode 100644 index 31ac1d7a5..000000000 --- a/city_scrapers/spiders/chi_police.py +++ /dev/null @@ -1,124 +0,0 @@ -import json -import re -from datetime import datetime, timedelta - -from city_scrapers_core.constants import COMMITTEE, POLICE_BEAT -from city_scrapers_core.items import Meeting -from city_scrapers_core.spiders import CityScrapersSpider - - -class ChiPoliceSpider(CityScrapersSpider): - name = "chi_police" - agency = "Chicago Police Department" - timezone = "America/Chicago" - start_urls = [ - "https://home.chicagopolice.org/wp-content/themes/cpd-bootstrap/proxy/miniProxy.php?https://home.chicagopolice.org/get-involved-with-caps/all-community-event-calendars/district-1/" # noqa - ] - custom_settings = { - "USER_AGENT": "Mozilla/5.0 (Linux; ; ) AppleWebKit/ (KHTML, like Gecko) Chrome/ Mobile Safari/" # noqa - } - - def parse(self, response): - """ - `parse` should always `yield` Meeting items. - - Change the `_parse_title`, `_parse_start`, etc methods to fit your scraping - needs. - """ - try: - data = json.loads(response.text) - except json.decoder.JSONDecodeError: - return - - ninety_days_ago = datetime.now() - timedelta(days=90) - for item in data: - # Drop events that aren't Beat meetings or DAC meetings - classification = self._parse_classification(item) - if not classification: - continue - start = self._parse_start(item) - if start < ninety_days_ago and not self.settings.getbool( - "CITY_SCRAPERS_ARCHIVE" - ): - continue - end, has_end = self._parse_end(start, item) - meeting = Meeting( - title=self._parse_title(classification, item), - description="", - classification=classification, - start=start, - end=end, - time_notes="End estimated 2 hours after start" if not has_end else "", - all_day=False, - location=self._parse_location(item), - links=[], - source=self._parse_source(item), - ) - meeting["id"] = self._get_id(meeting, identifier=str(item["calendarId"])) - meeting["status"] = self._get_status(meeting) - yield meeting - - def _parse_classification(self, item): - """Classify meeting as District Advisory Council or Beat meeting.""" - if ("district advisory committee" in item["title"].lower()) or ( - "DAC" in item["title"] - ): - return COMMITTEE - elif "beat" in item["title"].lower(): - return POLICE_BEAT - - def _parse_title(self, classification, item): - """Generate a title based on the classfication.""" - if classification == COMMITTEE: - return "District Advisory Committee" - elif classification == POLICE_BEAT: - return "CAPS District {}, Beat {}".format( - item["calendarId"], self._parse_beat(item) - ).strip() - else: - return None - - def _parse_beat(self, item): - """Parse beat identifier from item""" - district = str(item["calendarId"]) - beat_split = re.sub(r"[\D]+", " ", item["title"]).split() - beat_list = [] - for beat_num in beat_split: - if len(beat_num) > 2 and beat_num.startswith(district): - beat_list.append(beat_num[len(district) :]) - else: - beat_list.append(beat_num) - if len(beat_list) == 1: - return beat_list[0] - elif len(beat_list) > 1: - return "{} and {}".format(", ".join(beat_list[:-1]), beat_list[-1]) - return "" - - def _parse_location(self, item): - """ - Parses location, adding Chicago, IL to the end of the address - since it isn't included but can be safely assumed. - """ - if item["location"]: - address = item["location"] + " Chicago, IL" - address = re.sub(r"\s+", " ", address).strip() - else: - address = None - return {"address": address, "name": ""} - - def _parse_start(self, item): - """Parse start datetime as a naive datetime object.""" - return datetime.strptime(item["start"], "%Y-%m-%dT%H:%M:%S") - - def _parse_end(self, start, item): - """ - Parse end datetime as a naive datetime object. Returns datetime and whether it - was parsed - """ - try: - return datetime.strptime(item["end"], "%Y-%m-%dT%H:%M:%S"), True - except TypeError: - return start + timedelta(hours=2), False - - def _parse_source(self, item): - return "https://home.chicagopolice.org/office-of-community-policing/community-event-calendars/" # noqa diff --git a/city_scrapers/spiders/chi_police_district_councils.py b/city_scrapers/spiders/chi_police_district_councils.py deleted file mode 100644 index 25ce6be1a..000000000 --- a/city_scrapers/spiders/chi_police_district_councils.py +++ /dev/null @@ -1,192 +0,0 @@ -import urllib.parse -from datetime import datetime, timedelta -from io import BytesIO - -from city_scrapers_core.constants import COMMISSION -from city_scrapers_core.items import Meeting -from city_scrapers_core.spiders import CityScrapersSpider -from dateutil import parser -from pdfminer.pdfdocument import PDFDocument -from pdfminer.pdfparser import PDFParser -from pdfminer.pdftypes import resolve1 -from pdfminer.psparser import PSKeyword, PSLiteral -from pdfminer.utils import decode_text - - -def decode_value(value): - if isinstance(value, (PSLiteral, PSKeyword)): - value = value.name - if isinstance(value, bytes): - value = decode_text(value) - return value - - -def generate_start_urls(url): - return [ - f"{url}/DC{district:03}.html" - for district in range(1, 26) - if district not in (13, 21, 23) - ] - - -class ChiPoliceDistrictCouncilsSpider(CityScrapersSpider): - name = "chi_police_district_councils" - agency = "Chicago Police District Councils" - timezone = "America/Chicago" - start_urls = generate_start_urls( - "https://www.chicago.gov/city/en/depts/ccpsa/supp_info/district-council-pages" - ) - - def parse(self, response): - for item in response.css(".llcontent"): - url = item.css("p > a::attr('href')").get().strip() - if "notices-and-agendas" in url: - url_text = item.css("p > a::text").get().strip() - yield response.follow( - url, - callback=self._parse_meeting, - meta={"url_text": url_text, "source": response.url}, - ) - - def _parse_meeting(self, response): - pdf = self._parse_pdf(response) - - try: - start = self._parse_start_from_pdf(pdf) - except (KeyError, parser._parser.ParserError): - start = self._parse_start_from_url_text(response.meta["url_text"]) - - meeting = Meeting( - title=self._parse_title(response.url, pdf), - description="", - classification=self._parse_classification(pdf), - start=start, - end=self._parse_end(start), - all_day=False, - time_notes="", - location={}, - links=self._parse_links(response), - source=response.meta["source"], - ) - if not pdf == {}: - meeting["description"] = self._parse_description(pdf) - meeting["location"] = self._parse_location(pdf) - - meeting["status"] = self._get_status(meeting) - meeting["id"] = self._get_id(meeting) - - yield meeting - - def _parse_pdf(self, response): - """Parse dates and details from schedule PDF""" - data = {} - fp = BytesIO(response.body) - parser = PDFParser(fp) - doc = PDFDocument(parser) - res = resolve1(doc.catalog) - if "AcroForm" in res: - fields = resolve1(doc.catalog["AcroForm"])["Fields"] - for f in fields: - field = resolve1(f) - name, values = field.get("T"), field.get("V") - name = decode_text(name) - values = resolve1(values) - if isinstance(values, list): - values = [decode_value(v) for v in values] - else: - values = decode_value(values) - - data.update({name: values}) - return data - - def _parse_meeting_type(self, item): - if "Regular" in item and item["Regular"] == "On": - return "Regular" - elif "Special" in item and item["Special"] == "On": - return "Special" - elif "Closed" in item and item["Closed"] == "On": - return "Closed" - else: - return "" - - def _parse_title(self, url, item=None): - district = int(urllib.parse.urlparse(url).path.split("/")[7].split("-")[-1]) - - meeting_type = self._parse_meeting_type(item) - subtitle = f"{district:03} {meeting_type}" if meeting_type else f"{district:03}" - - return f"Chicago Police District Council {subtitle} Meeting" - - def _parse_description(self, item): - try: - pcl = item["Public Comment Limit"] - except KeyError: - pcl = item["PCL"] - - try: - splmt = item["Limit per Commenter"] - except KeyError: - splmt = item["SpLmt"] - instructions = ( - "Items on this agenda are subject to change. If you have any " - "questions regarding this agenda, " - "please contact 312-742-8888.\n\n" - "INSTRUCTIONS FOR PUBLIC COMMENT\n\n" - "The District Council will provide an opportunity for public " - "comment. The public comment session will be " - f"{pcl} minutes long. " - "Each commenter will have up to " - f"{splmt} minutes " - "to speak. Anyone interested in giving public comment should " - "write their name on a card provided at the meeting and give " - "it to the members of the District Council or staff in the " - "meeting room any time within 30 minutes of the start of the " - "meeting. If the number of interested speakers exceeds the " - "time dedicated to public comment, speakers will be selected " - "by a random drawing.\n\nAnyone may submit written public " - "comment by delivering it at the public meeting or by " - "emailing it to Javon.Lewis-Brown@cityofchicago.org." - ) - - return ( - "Discussions:\n" - f"{item['Discussions']}\n\n" - "Votes:\n" - f"{item['Votes']}\n\n" - f"{instructions}" - ) - - def _parse_classification(self, item): - return COMMISSION - - def _parse_start_from_url_text(self, date_str): - return datetime.strptime(date_str, "%B %d, %Y") - - def _parse_start_from_pdf(self, item): - start = item["DateTime"].replace("@", "") - - fmt1 = "%B %d, %Y, %I%M%p" - fmt2 = "%B %d, %I%M%p" - for fmt in (fmt1, fmt2): - try: - return datetime.strptime(start, fmt).replace(year=datetime.today().year) - except ValueError: - continue - return parser.parse(start) - - def _parse_end(self, start): - return start + timedelta(hours=2) - - def _parse_location(self, item): - for key in ("LocationAddress", "Address"): - try: - return { - "address": "", - "name": item[key], - } - except KeyError: - continue - return {} - - def _parse_links(self, response): - return [{"href": response.url, "title": "agenda"}] diff --git a/city_scrapers/spiders/chi_policeboard.py b/city_scrapers/spiders/chi_policeboard.py deleted file mode 100644 index 98f6a5352..000000000 --- a/city_scrapers/spiders/chi_policeboard.py +++ /dev/null @@ -1,102 +0,0 @@ -import re -from datetime import datetime - -from city_scrapers_core.constants import BOARD -from city_scrapers_core.items import Meeting -from city_scrapers_core.spiders import CityScrapersSpider -from scrapy import Selector - - -class ChiPoliceBoardSpider(CityScrapersSpider): - name = "chi_policeboard" - timezone = "America/Chicago" - agency = "Chicago Police Board" - start_urls = ["https://chicago.gov/city/en/depts/cpb/provdrs/public_meetings.html"] - - def parse(self, response): - """ - `parse` should always `yield` Meeting items. - - Change the `_parse_title`, `_parse_start`, etc methods to fit your scraping - needs. - """ - year = self._parse_year(response) - location = self._parse_location(response) - start_time = self._parse_start_time(response) - - for row in response.xpath('//p[contains(@style,"padding-left")]').extract(): - for block in row.split("
"): - item = Selector(text=block) - start_date = self._parse_start_date(item, year) - if not start_date: - continue - meeting = Meeting( - title="Police Board", - description="", - classification=BOARD, - start=datetime.combine(start_date, start_time), - end=None, - time_notes="", - all_day=False, - location=location, - links=self._parse_links(item, response), - source=response.url, - ) - meeting["id"] = self._get_id(meeting) - meeting["status"] = self._get_status(meeting) - yield meeting - - def _parse_links(self, item, response): - anchors = item.css("a") - return [ - { - "href": response.urljoin(link.xpath("@href").extract_first("")), - "title": link.xpath("text()").extract_first(""), - } - for link in anchors - ] - - def _parse_location(self, response): - """ - Parse or generate location. Url, latitutde and longitude are all - optional and may be more trouble than they're worth to collect. - """ - loc_text = " ".join(response.xpath("//strong/text()").extract()) - if "3510 South" not in loc_text: - return {"address": "", "name": "See source for details"} - return { - "address": "3510 S Michigan Ave, Chicago IL 60653", - "name": "Chicago Public Safety Headquarters", - } - - def _parse_start_time(self, response): - """ - Return start time - """ - bold_text = " ".join(response.xpath("//strong/text()").extract()) - match = re.match(r".*(\d+:\d\d\s*[p|a]\.*m\.*).*", bold_text.lower()) - if match: - cleaned_time = match.group(1).replace(" ", "").replace(".", "").upper() - return datetime.strptime(cleaned_time, "%I:%M%p").time() - return None - - def _parse_start_date(self, item, year): - """ - Parse start date - """ - date_str = item.css("::text").extract_first() - clean_date_match = re.search(r"[A-Za-z]+\s+\d{1,2}", date_str) - if not clean_date_match: - return None - date_with_year = "{0}, {1}".format(clean_date_match.group(), year) - return datetime.strptime(date_with_year, "%B %d, %Y").date() - - def _parse_year(self, response): - """ - Look for a string of 4 numbers to be the year. - If not found, use current year. - """ - for entry in response.xpath("//h3/text()").extract(): - year_match = re.search(r"([0-9]{4})", entry) - if year_match: - return year_match.group(1) diff --git a/tests/files/chi_police.json b/tests/files/chi_police.json deleted file mode 100644 index 0ef60eab3..000000000 --- a/tests/files/chi_police.json +++ /dev/null @@ -1 +0,0 @@ -[{"calendarId":25,"start":"2017-12-28T18:30:00","end":"2017-12-28T19:30:00","title":"2514 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2514's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"St. Ferdinand's3115 N. Mason","modifiedDate":"2017-06-26T13:27:32"},{"calendarId":8,"start":"2017-12-27T19:00:00","end":"2017-12-27T20:00:00","title":"835 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Wrightwood Library at 8530 S. Kedzie","modifiedDate":"2017-07-26T16:27:05"},{"calendarId":3,"start":"2017-12-27T18:00:00","end":"2017-12-27T19:00:00","title":"Dac Meeting ","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station 7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":24,"start":"2017-12-26T19:00:00","end":null,"title":"2431 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"St. Jerome's Parish Center 1709 W. Lunt","modifiedDate":"2016-12-07T10:11:20"},{"calendarId":8,"start":"2017-12-26T19:00:00","end":"2017-12-26T20:00:00","title":"813/833 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"West Lawn Park 4233 W. 65th St","modifiedDate":"2017-05-24T17:29:07"},{"calendarId":3,"start":"2017-12-26T18:30:00","end":"2017-12-26T20:30:00","title":"003rd District Community Peace Circle","eventDetails":"003rd District Community Peace Circle","eventUrl":null,"contactDetails":"Sgt. Jointer\n003rd District\n7040 S. Cottage Grove\nChicago, IL 60637\n(312) 747-7004","location":"Lincoln Memorial Church\r\n6454 S. Champlain","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":3,"start":"2017-12-26T14:00:00","end":"2017-12-26T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 60637\n(312) 747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":8,"start":"2017-12-24T13:00:00","end":"2017-12-24T14:00:00","title":"Test Christmas Celebration","eventDetails":"This is a test for ISD developers to see if the portal is working properly with the new CPAD app.","eventUrl":null,"contactDetails":null,"location":"Test","modifiedDate":"2017-03-02T07:59:33"},{"calendarId":3,"start":"2017-12-23T09:00:00","end":"2017-12-23T11:00:00","title":"Peer Jury Meeting","eventDetails":"Peer Jury Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"002nd District\r\n51st Wentworth","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-12-21T19:00:00","end":"2017-12-21T20:00:00","title":"2524 Beat Meeting","eventDetails":"2524 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Our Lady of Grace\n2446 N. Ridgeway","modifiedDate":"2016-12-30T13:28:46"},{"calendarId":20,"start":"2017-12-21T19:00:00","end":"2017-12-21T20:00:00","title":"2024 Beat Meeting","eventDetails":"2024 Beat Community Meeting. Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Margate Field House 4921 N. Marine Dr.","modifiedDate":"2017-06-28T23:11:18"},{"calendarId":14,"start":"2017-12-21T18:30:00","end":null,"title":"1433 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Pulaski Park1419 W. Blackhawk","modifiedDate":"2017-06-12T14:41:28"},{"calendarId":3,"start":"2017-12-21T14:00:00","end":"2017-12-21T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n(312) 747-7004","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":6,"start":"2017-12-21T10:00:00","end":"2017-12-21T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":"Meet to discuss topics on Domestic Violence and prevention.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-05-02T12:39:47"},{"calendarId":7,"start":"2017-12-21T10:00:00","end":"2017-12-21T13:00:00","title":"7th District Food Pantry","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Shelton & Sgt. Redrick 312-747-6722","location":"7158 S. Peoria, Chicago, IL 60621","modifiedDate":"2017-06-23T18:00:45"},{"calendarId":20,"start":"2017-12-20T19:00:00","end":"2017-12-20T20:00:00","title":"2013 Beat Meeting","eventDetails":"2013 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church 5437 N. Clark St.","modifiedDate":"2017-06-28T23:11:16"},{"calendarId":14,"start":"2017-12-20T18:30:00","end":null,"title":"1434 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Bucktown Library1701 N. Milwaukee","modifiedDate":"2017-06-12T14:42:51"},{"calendarId":25,"start":"2017-12-20T18:00:00","end":"2017-12-20T19:00:00","title":"2534 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2534's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"North /Grand H.S. 4338 W. Wabansia","modifiedDate":"2017-06-26T13:51:51"},{"calendarId":8,"start":"2017-12-20T17:00:00","end":"2017-12-20T18:00:00","title":"823/825 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Rita 6243 S. Fairfield","modifiedDate":"2017-05-24T17:29:27"},{"calendarId":24,"start":"2017-12-19T19:00:00","end":null,"title":"2423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Touhy Park 7348 N. Paulina","modifiedDate":"2016-12-07T10:13:06"},{"calendarId":8,"start":"2017-12-19T19:00:00","end":"2017-12-19T20:00:00","title":"811 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Good Shepherd Church 5550 S. Merrimac","modifiedDate":"2017-05-24T17:29:50"},{"calendarId":16,"start":"2017-12-19T13:00:00","end":"2017-12-19T15:00:00","title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Annie Ruiz (312)742-4521 CAPS016District@chicagopolice.org","location":"Officer Annie Ruiz (312)742-4521 CAPS016District@chicagopolice.org","modifiedDate":"2017-02-21T14:34:03"},{"calendarId":25,"start":"2017-12-16T13:00:00","end":"2017-12-16T15:00:00","title":"Youth Exploring","eventDetails":"Youth Exploring","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-15T10:19:00"},{"calendarId":6,"start":"2017-12-16T11:00:00","end":"2017-12-16T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745- 3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-05-02T12:39:59"},{"calendarId":14,"start":"2017-12-14T19:00:00","end":null,"title":"1422 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Habitat Company1402 N. Kedzie","modifiedDate":"2017-06-12T14:43:34"},{"calendarId":4,"start":"2017-12-14T19:00:00","end":"2017-12-14T20:00:00","title":"421 & 422 Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"2800 E. 79th St","modifiedDate":"2017-06-24T09:40:10"},{"calendarId":8,"start":"2017-12-14T19:00:00","end":"2017-12-14T20:00:00","title":"814 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Vittum Park Fieldhouse 5010 W. 50th St","modifiedDate":"2017-05-24T17:30:17"},{"calendarId":20,"start":"2017-12-13T19:00:00","end":"2017-12-13T20:00:00","title":"2012 Beat Meeting","eventDetails":"2012 Beat Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"St. Gregory Church 1609 W. Gregory Street","modifiedDate":"2017-06-28T23:11:13"},{"calendarId":14,"start":"2017-12-13T19:00:00","end":null,"title":"1424 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Wicker Park1425 N. Damen","modifiedDate":"2017-06-12T14:44:09"},{"calendarId":19,"start":"2017-12-13T19:00:00","end":"2017-12-13T19:00:00","title":"Beat 1914","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"Clarendon Park4501 N. Clarendon","modifiedDate":"2017-06-29T15:04:41"},{"calendarId":8,"start":"2017-12-13T19:00:00","end":"2017-12-13T20:00:00","title":"812 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Clearing Library 6423 W. 63rd Pl","modifiedDate":"2017-05-24T17:30:37"},{"calendarId":4,"start":"2017-12-13T19:00:00","end":"2017-12-13T20:00:00","title":"413 Beat Community Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"9037 S. Harper","modifiedDate":"2017-06-24T09:40:37"},{"calendarId":25,"start":"2017-12-13T18:00:00","end":"2017-12-13T19:00:00","title":"DAC Meeting","eventDetails":"DAC Meeting and Officer of the Month Awards","eventUrl":null,"contactDetails":"312-746-5090","location":"25th District - 5555 W. Grand Ave.","modifiedDate":"2016-12-14T10:25:19"},{"calendarId":14,"start":"2017-12-13T13:30:00","end":null,"title":"Domestic Violence","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2016-12-28T20:11:23"},{"calendarId":22,"start":"2017-12-13T13:30:00","end":null,"title":"Court Advocacy","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022nd District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:42:01"},{"calendarId":6,"start":"2017-12-13T11:00:00","end":"2017-12-13T12:00:00","title":"Senior Subcommitte Meeting","eventDetails":"Meet with Senior on crime tip prevention and plan fun filled events.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745- 3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-05-02T12:40:08"},{"calendarId":20,"start":"2017-12-13T10:00:00","end":"2017-12-13T11:00:00","title":"Seniors Meeting","eventDetails":"Seniors Meeting, a monthly meeting featuring activities and informative talks on seniors related topics. Contact CAPS for details.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District Community Room 5400 N. Lincoln ave ","modifiedDate":"2017-06-23T14:12:00"},{"calendarId":20,"start":"2017-12-12T19:00:00","end":"2017-12-12T20:00:00","title":"2022 Beat Meeting","eventDetails":"2022 Beat Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Broadway Armory 5917 N. Broadway","modifiedDate":"2017-06-28T23:11:14"},{"calendarId":4,"start":"2017-12-12T19:00:00","end":"2017-12-12T20:00:00","title":"424 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"3200 E. 91st St.","modifiedDate":"2017-06-24T09:41:00"},{"calendarId":24,"start":"2017-12-12T19:00:00","end":null,"title":"2411 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Bernard Horwich Center JCC 3003 W. Touhy","modifiedDate":"2016-12-07T10:17:06"},{"calendarId":8,"start":"2017-12-12T19:00:00","end":"2017-12-12T20:00:00","title":"831/832 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Marquette Park 6734 S. Kedzie","modifiedDate":"2017-05-24T17:30:55"},{"calendarId":6,"start":"2017-12-12T10:00:00","end":"2017-12-12T11:00:00","title":"Business Subcommitte Meeting","eventDetails":"Meet with local businesses as we plan future events to foster a safe commuity","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-05-02T12:40:16"},{"calendarId":19,"start":"2017-12-11T18:30:00","end":"2017-12-11T19:30:00","title":"Beat 1934 & 1935","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"2nd Unitarian Church656 W. Barry","modifiedDate":"2017-06-29T15:04:54"},{"calendarId":3,"start":"2017-12-07T19:00:00","end":"2017-12-07T20:00:00","title":"All Beats Meeting","eventDetails":"All Beats Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District\n7040 S. Cottage Grove\nChicago, Il. 60637\n(312) 747-7004","location":"South Shore Culture Center\r\n7059 South Shore Dr.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":14,"start":"2017-12-07T19:00:00","end":null,"title":"1411/1412 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"St. Nicolai Church3000 N. Kedzie","modifiedDate":"2017-06-12T14:44:48"},{"calendarId":24,"start":"2017-12-07T19:00:00","end":null,"title":"District Advisory Council Meeting","eventDetails":"Not open to the public.","eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District","modifiedDate":"2016-12-07T10:07:35"},{"calendarId":8,"start":"2017-12-07T19:00:00","end":"2017-12-07T20:00:00","title":"834 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Bogan High School 3939 W. 79th St","modifiedDate":"2017-05-24T17:31:19"},{"calendarId":4,"start":"2017-12-07T19:00:00","end":"2017-12-07T20:00:00","title":"434 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"10501 S. Torrence Ave","modifiedDate":"2017-06-24T09:41:39"},{"calendarId":22,"start":"2017-12-07T19:00:00","end":null,"title":"Beat 2211 & 2212 Meetings","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022nd District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:42:45"},{"calendarId":19,"start":"2017-12-07T18:30:00","end":"2017-12-07T19:30:00","title":"Beat 1915","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"Uptown Buena Library929 W. Buena","modifiedDate":"2017-06-29T15:05:03"},{"calendarId":25,"start":"2017-12-07T18:30:00","end":"2017-12-07T19:30:00","title":"2522 Beat Meeting","eventDetails":"2522 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Hermosa Park\n2240 N. Kilbourn","modifiedDate":"2016-12-30T13:07:44"},{"calendarId":14,"start":"2017-12-07T17:00:00","end":null,"title":"Peer Jury ","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2016-12-28T20:12:10"},{"calendarId":3,"start":"2017-12-07T13:00:00","end":"2017-12-07T14:00:00","title":"District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":19,"start":"2017-12-06T19:00:00","end":"2017-12-06T20:00:00","title":"Beat 1923, 24 & 25","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"19th District Police850 W. Addison","modifiedDate":"2017-06-29T15:05:16"},{"calendarId":8,"start":"2017-12-06T19:00:00","end":"2017-12-06T20:00:00","title":"815/821 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Bruno's 4839 S. Harding","modifiedDate":"2017-05-24T17:31:46"},{"calendarId":4,"start":"2017-12-06T19:00:00","end":"2017-12-06T20:00:00","title":"414 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"1750 E. 78th St.","modifiedDate":"2017-06-24T09:42:06"},{"calendarId":25,"start":"2017-12-06T18:30:00","end":"2017-12-06T19:30:00","title":"2512 Beat Meeting","eventDetails":"2512 Beat Meeting","eventUrl":null,"contactDetails":"P.O. Rodriguez A.\n312/746-5090","location":"Shriner's Hospital\n2211 N. Oak Park","modifiedDate":"2016-12-30T13:07:53"},{"calendarId":14,"start":"2017-12-06T18:00:00","end":null,"title":"Court Advocacy","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2016-12-28T20:17:51"},{"calendarId":25,"start":"2017-12-06T10:00:00","end":"2017-12-06T11:00:00","title":"Domestic Violance Meeting","eventDetails":"Domestic Violence","eventUrl":null,"contactDetails":"P.O. Rodriguez A.\n312/746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-30T13:08:07"},{"calendarId":20,"start":"2017-12-06T07:00:00","end":"2017-12-06T08:00:00","title":"2033 Beat Meeting","eventDetails":"2033 Beat Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Bezazian Library 1226 W. Ainslie St.","modifiedDate":"2017-06-23T15:17:09"},{"calendarId":24,"start":"2017-12-05T19:00:00","end":null,"title":"2413 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Green Briar Park 2650 W. Peterson","modifiedDate":"2016-12-07T10:14:42"},{"calendarId":4,"start":"2017-12-05T19:00:00","end":"2017-12-05T20:00:00","title":"433 Beat Community Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"13323 S. Green Bay Ave","modifiedDate":"2017-06-24T09:42:40"},{"calendarId":16,"start":"2017-12-05T19:00:00","end":"2017-12-05T20:00:00","title":"1612 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Olympia Park 6566 N. Avondale","modifiedDate":"2017-02-21T13:47:23"},{"calendarId":8,"start":"2017-12-05T17:00:00","end":"2017-12-05T18:00:00","title":"822/824 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Hernandez Middle School at 3510 W. 55th St.","modifiedDate":"2017-05-24T17:32:10"},{"calendarId":25,"start":"2017-12-05T10:00:00","end":"2017-12-05T11:00:00","title":"Senior Advisory Meeting","eventDetails":"025th District Senior Advisory Meeting ","eventUrl":null,"contactDetails":"025th District Community Relations Office\n312-746-5090","location":"025th District, 5555 W. Grand Ave.","modifiedDate":"2016-12-14T10:17:37"},{"calendarId":7,"start":"2017-12-05T10:00:00","end":"2017-12-05T11:00:00","title":"Faith Base Council Monthly Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Shelton & Sgt. Redrick 312-747-6722","location":"1438 W. 63rd Street","modifiedDate":"2017-07-07T09:47:20"},{"calendarId":20,"start":"2017-12-04T19:00:00","end":"2017-12-04T20:00:00","title":"2011 Beat Meeting","eventDetails":"2011 Beat Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District Community Room5400 N. Lincoln Ave","modifiedDate":"2017-06-28T23:11:11"},{"calendarId":3,"start":"2017-12-02T11:00:00","end":"2017-12-02T13:00:00","title":"Youth/Explorers Meeting","eventDetails":"Youth/Explorers Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"003rd District(Auditorium)\r\n7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":6,"start":"2017-12-02T11:00:00","end":"2017-12-02T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S Halsted St.","modifiedDate":"2017-05-02T12:40:26"},{"calendarId":25,"start":"2017-12-02T08:30:00","end":"2017-12-02T11:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-30T13:08:15"},{"calendarId":14,"start":"2017-11-30T18:30:00","end":null,"title":"1432 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":"014th District CAPS 312-744-1261","location":"Covenant Presbyterian Church 2022 W. Dickens","modifiedDate":"2017-06-28T23:07:59"},{"calendarId":20,"start":"2017-11-29T19:00:00","end":"2017-11-29T20:00:00","title":"2032 Beat Meeting","eventDetails":"2032 Beat Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Ravenswood Evangelical Church 4900 N. Damen","modifiedDate":"2017-06-28T23:11:09"},{"calendarId":20,"start":"2017-11-28T19:00:00","end":"2017-11-28T20:00:00","title":"2031 Beat Meeting","eventDetails":"2031 Beat Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"2031 Beat MeetingDetails: Beat Meeting CAPS 312-742-8770","location":"Swedish Covenant Hospital Anderson Pavilion 3751 W. Winona St.","modifiedDate":"2017-06-28T23:11:08"},{"calendarId":8,"start":"2017-11-28T19:00:00","end":"2017-11-28T20:00:00","title":"813/833 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"West Lawn Park 4233 W. 65th St","modifiedDate":"2017-05-24T17:32:41"},{"calendarId":24,"start":"2017-11-28T19:00:00","end":null,"title":"2422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Willye White Park 1610 W. Howard","modifiedDate":"2016-12-07T10:13:52"},{"calendarId":24,"start":"2017-11-28T19:00:00","end":null,"title":"2433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Edgewater Library 6000 N. Broadway","modifiedDate":"2016-12-07T10:09:31"},{"calendarId":3,"start":"2017-11-28T18:30:00","end":"2017-11-28T20:30:00","title":"003rd District Community Peace Circle","eventDetails":"003rd District Community Peace Circle","eventUrl":null,"contactDetails":"Sgt. Jointer\n003rd District\n7040 S. Cottage Grove\nChicago, IL 60637\n(312) 747-7004","location":"Lincoln Memorial Church\r\n6454 S. Champlain","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":25,"start":"2017-11-28T18:30:00","end":"2017-11-28T19:30:00","title":"2513 Beat Meeting","eventDetails":"2513 Beat Meeting","eventUrl":null,"contactDetails":"P.O. Rodriguez A. \n312/746-5090","location":"Amundsen Park\n6200 W. Bloomingdale","modifiedDate":"2016-12-30T13:08:43"},{"calendarId":6,"start":"2017-11-28T18:30:00","end":"2017-11-28T19:30:00","title":"614 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Foster Park Field House 1440 W. 84th St.","modifiedDate":"2017-06-27T08:38:18"},{"calendarId":11,"start":"2017-11-28T18:00:29","end":"2017-11-28T19:00:29","title":"Beat Meeting: 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2016-12-27T12:14:38"},{"calendarId":3,"start":"2017-11-28T14:00:00","end":"2017-11-28T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 60637\n(312) 747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":22,"start":"2017-11-28T10:30:00","end":null,"title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T10:37:50"},{"calendarId":6,"start":"2017-11-27T18:00:00","end":"2017-11-27T19:00:00","title":"Beat facilitator/DAC","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-05-02T12:40:41"},{"calendarId":3,"start":"2017-11-25T09:00:00","end":"2017-11-25T11:00:00","title":"Peer Jury Meeting","eventDetails":"Peer Jury Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"002nd District\r\n51st Wentworth","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":8,"start":"2017-11-22T19:00:00","end":"2017-11-22T20:00:00","title":"835 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Wrightwood Library 8530 S. Kedzie","modifiedDate":"2017-05-24T17:33:13"},{"calendarId":25,"start":"2017-11-22T18:30:00","end":"2017-11-22T19:30:00","title":"2523 Beat Meeting","eventDetails":"2523 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"St. Joseph\n4021 W. Belmont","modifiedDate":"2016-12-30T13:29:22"},{"calendarId":3,"start":"2017-11-22T18:00:00","end":"2017-11-22T19:00:00","title":"Dac Meeting ","eventDetails":"003rd District advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station 7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-11-22T13:00:00","end":"2017-11-22T14:00:00","title":"Faith-Based Subcommittee","eventDetails":"Faith Based Subcommittee meeting. 4th Wednesday Odd Months","eventUrl":null,"contactDetails":"P.O. Steven Archer\n312-746-5090","location":"5555 W Grand Ave","modifiedDate":"2016-12-15T10:34:34"},{"calendarId":15,"start":"2017-11-22T08:30:00","end":"2017-11-22T09:30:00","title":"BUSINESS MEETING","eventDetails":"Business Owners of the 15th District meet with the Community Organizer and discuss concerns of crime and ways to improve business related issues.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5412 W. MADISON (MAC ARTHURS)","modifiedDate":"2017-06-17T16:25:57"},{"calendarId":8,"start":"2017-11-21T19:00:00","end":"2017-11-21T20:00:00","title":"811 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Good Shepherd Church 5550 S. Merrimac","modifiedDate":"2017-05-24T17:33:30"},{"calendarId":19,"start":"2017-11-21T19:00:00","end":"2017-11-21T20:00:00","title":"Beat 1911 & 1912","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"Sulzer Library4455 N. Lincoln","modifiedDate":"2017-06-29T15:05:35"},{"calendarId":24,"start":"2017-11-21T19:00:00","end":null,"title":"2424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Pottawatomie Park 7340 N. Rogers","modifiedDate":"2016-12-07T10:12:14"},{"calendarId":16,"start":"2017-11-21T19:00:00","end":"2017-11-21T20:00:00","title":"1633 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Merrimac Park 6343 W. Irving Pk Rd.","modifiedDate":"2017-02-21T13:50:36"},{"calendarId":25,"start":"2017-11-21T18:30:00","end":"2017-11-21T19:30:00","title":"2525 Beat Meeting","eventDetails":"2525 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Mozart Park\n2036 N. Avers","modifiedDate":"2016-12-15T10:22:43"},{"calendarId":25,"start":"2017-11-21T18:30:00","end":"2017-11-21T18:30:00","title":"2531 Beat Meeting","eventDetails":"2531 Beat Meeting. 3rd Tuesday Odd Months","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W Grand Ave","modifiedDate":"2016-12-15T10:33:09"},{"calendarId":2,"start":"2017-11-21T18:30:00","end":"2017-11-21T19:30:00","title":"Beat Meeting for Beats 221/223","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"Caps office 312-747-5109","location":"3858 S. Cottage Grove","modifiedDate":"2017-08-22T10:51:54"},{"calendarId":6,"start":"2017-11-21T18:30:00","end":"2017-11-21T19:30:00","title":"613 Beat Meeting","eventDetails":"Meet to discuss concerns wihin the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at n(312)-745-3641","location":"Walter Q. Gresham Elem. School 8524 S. Green","modifiedDate":"2017-06-27T08:48:07"},{"calendarId":11,"start":"2017-11-21T18:00:00","end":"2017-11-21T19:00:00","title":"Beat Meeting: 1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Homan Square Community Center 3559 W. Arthington ","modifiedDate":"2016-12-27T12:16:08"},{"calendarId":16,"start":"2017-11-21T13:00:00","end":"2017-11-21T14:00:00","title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Annie Ruiz (312)742-4521 CAPS016District@chicagopolice.org","location":"5151 N. Milwaukee","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":15,"start":"2017-11-20T15:00:00","end":"2017-11-20T16:00:00","title":"D.A.C MEETING","eventDetails":"District Advisory Committee Subcommittee/Chairpersons of different Committees meet to discuss the quality of life issues within the 15th District. ","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5701 W. MADISON (015th DISTRICT)","modifiedDate":"2017-06-17T16:26:10"},{"calendarId":25,"start":"2017-11-18T13:00:00","end":"2017-11-18T15:00:00","title":"Youth Exploring","eventDetails":"Youth Exploring","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-15T10:19:23"},{"calendarId":6,"start":"2017-11-18T11:00:00","end":"2017-11-18T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and commujnity service opportunities.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-05-02T12:40:49"},{"calendarId":8,"start":"2017-11-16T19:00:00","end":"2017-11-16T20:00:00","title":"District Advisory Council Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"008th District 3420 W. 63rd St","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":14,"start":"2017-11-16T19:00:00","end":null,"title":"1431 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Haas Park 2402 N. Washtenaw","modifiedDate":"2017-06-12T14:46:32"},{"calendarId":3,"start":"2017-11-16T19:00:00","end":"2017-11-16T20:00:00","title":"30 Sector Beat Meeting (331, 332, 333 & 334)","eventDetails":"30 Sector Beat Meeting (331, 332, 333 & 334)","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312)747-7004\n","location":"ABJ Community Service Center\r\n1818 E. 71st St\r\nChicago, IL. 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":16,"start":"2017-11-16T19:00:00","end":"2017-11-16T20:00:00","title":"1611 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"St. Thecla 6333 N. Newcastle","modifiedDate":"2017-02-21T14:25:22"},{"calendarId":25,"start":"2017-11-16T18:30:00","end":"2017-11-16T19:30:00","title":"2533 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2533's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2017-06-26T13:32:43"},{"calendarId":11,"start":"2017-11-16T18:00:00","end":"2017-11-16T19:00:00","title":"Beat Meeting: 1113,14,15","eventDetails":"\nCommunity engagements generating strategies to making neighborhoods safe. \n","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"St. Michaels's MBC 4106 W. Monroe","modifiedDate":"2016-12-27T12:54:18"},{"calendarId":16,"start":"2017-11-16T18:00:00","end":"2017-11-16T19:00:00","title":"DAC Meeting","eventDetails":"Meetng hosted by the District Commander for invited community stakeholders will be held in the Community Room (THIS IS NOT A BEAT MEETING)","eventUrl":null,"contactDetails":"Annie Ruiz-Oquendo","location":"5151 N. Milwaukee","modifiedDate":"2017-05-04T17:33:24"},{"calendarId":3,"start":"2017-11-16T14:00:00","end":"2017-11-16T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen Meeting\n","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 60637\n(312) 747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-11-16T13:30:00","end":"2017-11-16T14:30:00","title":"Business Subcommittee Meeting","eventDetails":"Business Subcommittee Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-15T10:17:18"},{"calendarId":6,"start":"2017-11-16T10:00:00","end":"2017-11-16T11:00:00","title":"Domestic Violence Subcommittee Meeting ","eventDetails":"Meet to discuss topics on Domestic Violence and prevention.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-05-02T12:40:58"},{"calendarId":7,"start":"2017-11-16T10:00:00","end":"2017-11-16T13:00:00","title":"7th District Food Pantry ","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Shelton & Sgt. Redrick 312-747-6722","location":"7158 S. Peoria, Chicago, IL 60621","modifiedDate":"2017-07-12T09:48:23"},{"calendarId":19,"start":"2017-11-15T19:00:00","end":"2017-11-15T20:00:00","title":"Beat 1921, 22 & 31","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"19th Police Auditorium2452 W. Belmont","modifiedDate":"2017-06-29T15:06:33"},{"calendarId":3,"start":"2017-11-15T19:00:00","end":"2017-11-15T20:00:00","title":"20 Sector Beat Meeting (321, 322, 323 & 324)","eventDetails":"20 Sector Beat Meeting (321, 322, 323 & 324)","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District\n7040 S, Cottage Grove\nChicago, IL. 60637","location":"Manor Church 600 E. 73rd St. Chicago, IL. 60619","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":20,"start":"2017-11-15T19:00:00","end":"2017-11-15T20:00:00","title":"2013 Beat Meeting","eventDetails":"2013 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church5437 N. Clark St.","modifiedDate":"2017-06-23T15:18:51"},{"calendarId":14,"start":"2017-11-15T19:00:00","end":null,"title":"1423 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Humboldt Park Field House1400 N. Sacramento","modifiedDate":"2017-06-12T14:47:13"},{"calendarId":16,"start":"2017-11-15T19:00:00","end":"2017-11-15T20:00:00","title":"1623 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"16th District Station Community Room 5151 N. Milwaukee","modifiedDate":"2017-02-21T14:25:59"},{"calendarId":25,"start":"2017-11-15T18:30:00","end":"2017-11-15T19:30:00","title":"2515 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2515's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"St. Stanislaus2310 N. Lorel","modifiedDate":"2017-06-26T13:41:03"},{"calendarId":2,"start":"2017-11-15T18:30:00","end":"2017-11-15T19:30:00","title":"Beat Meeting for Beats 233/234/235","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"Caps office 312-747-5109","location":"1526 E. 55th St.","modifiedDate":"2017-08-22T10:52:16"},{"calendarId":6,"start":"2017-11-15T18:30:00","end":"2017-11-15T19:30:00","title":"624 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"St. Dorothy Catholic Church 450 E. 78th St.","modifiedDate":"2017-06-27T08:47:42"},{"calendarId":6,"start":"2017-11-15T18:30:00","end":"2017-11-15T19:30:00","title":"623 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)- 745-3641","location":"Urban Partnership Bank 7801 S. State","modifiedDate":"2017-06-27T08:47:52"},{"calendarId":10,"start":"2017-11-15T18:00:00","end":"2017-11-15T19:00:00","title":"Beat Meeting 1013","eventDetails":"Beat 1013 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Epiphany Church\nRectory\n2524 S. Keeler Ave","modifiedDate":"2017-01-04T16:00:44"},{"calendarId":22,"start":"2017-11-15T18:00:00","end":null,"title":"Beat 2234 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Beth Eden Church\n11121 S. Loomis","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":8,"start":"2017-11-15T17:00:00","end":"2017-11-15T18:00:00","title":"823/825 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Rita Church at 6243 S. Fairfield","modifiedDate":"2017-05-24T17:33:53"},{"calendarId":3,"start":"2017-11-14T19:00:00","end":"2017-11-14T20:00:00","title":"10 Sector Beat Meeting (311, 312, 313 & 314)","eventDetails":"10 Sector Beat Meeting (311, 312, 313 & 314)","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312)747-7004\n","location":"003rd District\r\n7040 S. Cottage Grove\r\nChicago, IL. 60637\r\n(312)747-7004\r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":22,"start":"2017-11-14T19:00:00","end":null,"title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Robichaux Park\n403 W. 93rd St","modifiedDate":"2016-12-28T10:40:35"},{"calendarId":4,"start":"2017-11-14T19:00:00","end":"2017-11-14T20:00:00","title":"423 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"8930 S. Muskegon Ave","modifiedDate":"2017-06-24T09:43:18"},{"calendarId":8,"start":"2017-11-14T19:00:00","end":"2017-11-14T20:00:00","title":"831/832 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Marquette Park 6734 S. Kedzie","modifiedDate":"2017-05-24T17:34:19"},{"calendarId":24,"start":"2017-11-14T19:00:00","end":null,"title":"2432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District 6464 N. Clark","modifiedDate":"2016-12-07T10:10:26"},{"calendarId":16,"start":"2017-11-14T19:00:00","end":"2017-11-14T20:00:00","title":"1613 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Oriole Park 5430 N. Olcott","modifiedDate":"2017-02-21T14:26:26"},{"calendarId":19,"start":"2017-11-14T18:30:00","end":"2017-11-14T19:30:00","title":"Beat 1933","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"Illinois Masonic836 W. Wellington","modifiedDate":"2017-06-29T15:06:43"},{"calendarId":2,"start":"2017-11-14T18:30:00","end":"2017-11-14T19:30:00","title":"Beat Meeting for Beat 222","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"Caps office 312-747-5109","location":"4434 S. Lake Park","modifiedDate":"2017-08-22T10:52:38"},{"calendarId":6,"start":"2017-11-14T18:30:00","end":"2017-11-14T19:30:00","title":"612 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Southside Tabernacle Church 7724 S. Racine","modifiedDate":"2017-06-27T08:47:29"},{"calendarId":15,"start":"2017-11-14T18:30:00","end":"2017-11-14T19:30:00","title":"BEAT 1511/24 CAPS MEETING","eventDetails":"Residents, Stakeholders and Police Partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5900 W. IOWA (HOPE COMMUNITY CHURCH)","modifiedDate":"2017-06-17T16:26:31"},{"calendarId":10,"start":"2017-11-14T18:00:00","end":"2017-11-14T19:00:00","title":"Beat Meeting 1021","eventDetails":"Beat 1021 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Carey Tercentenary\n1448 S. Homan Ave","modifiedDate":"2017-01-04T15:59:23"},{"calendarId":6,"start":"2017-11-14T10:00:00","end":"2017-11-14T11:00:00","title":"Business Subcommitte Meeting","eventDetails":"Meet with local businesses as we plan future events to foster a safe community.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St. ","modifiedDate":"2017-05-02T12:41:06"},{"calendarId":19,"start":"2017-11-13T19:00:00","end":"2017-11-13T20:00:00","title":"Beat 1932","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"New Life Church1110 W. Lill","modifiedDate":"2017-06-29T15:06:52"},{"calendarId":4,"start":"2017-11-09T19:00:00","end":"2017-11-09T20:00:00","title":"421 & 422 Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"2800 E. 79th St.","modifiedDate":"2017-06-24T09:44:09"},{"calendarId":20,"start":"2017-11-09T19:00:00","end":"2017-11-09T20:00:00","title":"2023 Beat Meeting","eventDetails":"2023 Beat Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Kenmore Plaza5225 N. Kenmore Ave.","modifiedDate":"2017-06-23T15:19:05"},{"calendarId":8,"start":"2017-11-09T19:00:00","end":"2017-11-09T20:00:00","title":"814 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Vittum Park Fieldhouse 5010 W. 50th St","modifiedDate":"2017-05-24T17:34:44"},{"calendarId":14,"start":"2017-11-09T18:30:00","end":null,"title":"1413/1414 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Logan Square Library3030 W. Fullerton","modifiedDate":"2017-06-12T14:47:44"},{"calendarId":22,"start":"2017-11-09T18:30:00","end":null,"title":"Beat 2213 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Ridge Park 9625 S. Longwood DR","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":2,"start":"2017-11-09T18:30:00","end":"2017-11-09T19:30:00","title":"Beat Meeting for Beats 225/231/232","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"Caps office 312-747-5109","location":"5627 S. Michigan Ave","modifiedDate":"2017-08-22T10:53:42"},{"calendarId":6,"start":"2017-11-09T18:30:00","end":"2017-11-09T19:30:00","title":"632 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Tuley Park Field House 501 E. 90th St.","modifiedDate":"2017-06-27T08:47:14"},{"calendarId":6,"start":"2017-11-09T18:30:00","end":"2017-11-09T19:30:00","title":"633 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Tuley Park Field House 501 E. 90th Place","modifiedDate":"2017-06-27T08:47:04"},{"calendarId":15,"start":"2017-11-09T18:30:00","end":"2017-11-09T19:30:00","title":"BEAT 1513N CAPS Meeting","eventDetails":"Residents, Stakeholders and Police Partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5701 W. MADISON (015th DISTRICT)","modifiedDate":"2017-06-17T16:26:45"},{"calendarId":11,"start":"2017-11-09T18:00:00","end":"2017-11-09T19:00:00","title":"Beat Meeting: 1122/23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Legler Chicago Public Library 115 S. Pulaski ","modifiedDate":"2016-12-27T12:16:55"},{"calendarId":10,"start":"2017-11-09T18:00:00","end":"2017-11-09T19:00:00","title":"Beat Meeting 1033","eventDetails":"Beat 1033 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Little Village Library\n2311 S. Kedzie","modifiedDate":"2017-01-04T15:55:50"},{"calendarId":16,"start":"2017-11-09T13:00:00","end":"2017-11-09T14:00:00","title":"Senior Seminar","eventDetails":"This is a safety seminar at the Congregational Church of Jefferson Park and will address senior scams and safety.","eventUrl":null,"contactDetails":"P.O. Annie Ruiz-Oquenco","location":"5318 W. Giddings","modifiedDate":"2017-08-10T14:16:06"},{"calendarId":8,"start":"2017-11-08T19:00:00","end":"2017-11-08T20:00:00","title":"812 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Symphorosa 6135 S. Austin","modifiedDate":"2017-05-24T17:35:06"},{"calendarId":4,"start":"2017-11-08T19:00:00","end":"2017-11-08T20:00:00","title":"411 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"1526 E. 84th St.","modifiedDate":"2017-06-24T09:44:42"},{"calendarId":14,"start":"2017-11-08T18:30:00","end":null,"title":"1421 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Humboldt Park Library1605 N. Troy","modifiedDate":"2017-06-12T14:48:21"},{"calendarId":2,"start":"2017-11-08T18:30:00","end":"2017-11-08T19:30:00","title":"Beat Meeting for Beats 213/215/224","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"Caps office 312-747-5109","location":"4058 S. Michigan Ave","modifiedDate":"2017-08-22T10:54:05"},{"calendarId":14,"start":"2017-11-08T13:30:00","end":null,"title":"Domestic Violence","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:29:37"},{"calendarId":22,"start":"2017-11-08T13:30:00","end":null,"title":"Court Advocacy","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T10:38:56"},{"calendarId":6,"start":"2017-11-08T11:00:00","end":"2017-11-08T12:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Meet with seniors on crime tip prevention and plan fun filled events","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312)-745- 3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-05-02T12:41:15"},{"calendarId":20,"start":"2017-11-08T10:00:00","end":"2017-11-08T11:00:00","title":"Seniors Meeting","eventDetails":"Seniors Meeting, a monthly meeting featuring activities and informative talks on seniors related topics. Contact CAPS for details.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District Community Room 5400 N. Lincoln ave ","modifiedDate":"2017-06-23T14:12:13"},{"calendarId":24,"start":"2017-11-07T19:00:00","end":null,"title":"2412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Warren Park - 6601 N Western","modifiedDate":"2017-06-27T14:56:27"},{"calendarId":22,"start":"2017-11-07T19:00:00","end":null,"title":"Beat 2221 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Christ The King \n9225 S. Hamilton","modifiedDate":"2016-12-28T10:40:54"},{"calendarId":4,"start":"2017-11-07T19:00:00","end":"2017-11-07T20:00:00","title":"432 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"10155 S. Ewing Ave","modifiedDate":"2017-06-24T09:45:21"},{"calendarId":25,"start":"2017-11-07T18:30:00","end":"2017-11-07T19:30:00","title":"2535 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2535's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"Maternity BVM Church3647 W. North Ave.","modifiedDate":"2017-06-26T13:52:51"},{"calendarId":25,"start":"2017-11-07T18:30:00","end":"2017-11-07T19:30:00","title":"2521 Beat Meeting","eventDetails":"2521 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Senior Suites\n2715 N.Cicero","modifiedDate":"2016-12-30T13:31:32"},{"calendarId":11,"start":"2017-11-07T18:30:00","end":"2017-11-07T19:30:00","title":"Beat Meeting: 1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Brian Piccolo School 1041 N. Keeler ","modifiedDate":"2016-12-27T12:53:47"},{"calendarId":19,"start":"2017-11-07T18:30:00","end":"2017-11-07T19:30:00","title":"Beat 1913","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"Courtenay School4420 N. Beacon","modifiedDate":"2017-06-29T15:07:05"},{"calendarId":2,"start":"2017-11-07T18:30:00","end":"2017-11-07T19:30:00","title":"Beat Meeting for Beats 212/214","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"Caps office 312-747-5109","location":"3858 S. Cottage Grove","modifiedDate":"2017-08-22T10:54:49"},{"calendarId":6,"start":"2017-11-07T18:30:00","end":"2017-11-07T19:30:00","title":"611 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"2nd Mt. Vernon Church 2101 W. 79th St.","modifiedDate":"2017-06-27T08:46:47"},{"calendarId":10,"start":"2017-11-07T18:00:00","end":"2017-11-07T19:00:00","title":"Beat Meeting 1014","eventDetails":"Beat 1014 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Lawndale Church\n3839 W. Ogden Ave","modifiedDate":"2017-01-04T16:01:58"},{"calendarId":8,"start":"2017-11-07T17:00:00","end":"2017-11-07T18:00:00","title":"822/824 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Hernandez Middle School at 3510 W. 55th St.","modifiedDate":"2017-05-24T17:35:55"},{"calendarId":25,"start":"2017-11-07T14:00:00","end":"2017-11-07T15:00:00","title":"Court Advocacy","eventDetails":"Court Advocacy","eventUrl":null,"contactDetails":"312-746-5090","location":"25th District Station\n5555 W. Grand Ave.\n","modifiedDate":"2016-12-15T10:13:30"},{"calendarId":7,"start":"2017-11-07T10:00:00","end":"2017-11-07T11:00:00","title":"Faith Base Council Monthly Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Shelton & Sgt. Redrick 312-747-6722","location":"1438 W. 63rd Street","modifiedDate":"2017-07-07T10:08:32"},{"calendarId":3,"start":"2017-11-04T11:00:00","end":"2017-11-04T13:00:00","title":"Youth/Explorers Meeting","eventDetails":"Youth/Explorers Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"003rd District(Auditorium) 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":6,"start":"2017-11-04T11:00:00","end":"2017-11-04T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leardership experience and community sevice opportunities","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-05-02T12:41:24"},{"calendarId":25,"start":"2017-11-04T08:30:00","end":"2017-11-04T11:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-30T13:10:32"},{"calendarId":4,"start":"2017-11-02T19:00:00","end":"2017-11-02T19:00:00","title":"431 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"2255 E. 103rd St.","modifiedDate":"2017-06-24T09:46:06"},{"calendarId":24,"start":"2017-11-02T19:00:00","end":null,"title":"District Advisory Council Meeting","eventDetails":"Not open to the public","eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District","modifiedDate":"2016-12-07T10:07:45"},{"calendarId":8,"start":"2017-11-02T19:00:00","end":"2017-11-02T20:00:00","title":"834 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Bogan High School 3939 W. 79th St","modifiedDate":"2017-05-24T17:36:39"},{"calendarId":16,"start":"2017-11-02T19:00:00","end":"2017-11-02T20:00:00","title":"1631 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"St. Francis Borgia Stokes Center 8025 W. Addison","modifiedDate":"2017-04-18T13:19:39"},{"calendarId":25,"start":"2017-11-02T18:30:00","end":"2017-11-02T19:30:00","title":"2511 Beat Meeting","eventDetails":"2511 Beat Meeting","eventUrl":null,"contactDetails":"P.O.Rodriguez A.\n312/746-5090","location":"Bethesda Home\n2833 N. Nordica","modifiedDate":"2016-12-30T13:13:19"},{"calendarId":15,"start":"2017-11-02T18:30:00","end":"2017-11-02T19:30:00","title":"Beat 1512/23 Caps Meeting","eventDetails":"Residents, Stakeholders and Police Partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5425 W. LAKE ST ( PCC WELLNESS CENTER)","modifiedDate":"2017-06-17T16:27:07"},{"calendarId":6,"start":"2017-11-02T18:30:00","end":"2017-11-02T19:30:00","title":"631 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at n(312)-745-3641","location":"Chatham Fields Lutheran Church 8050 S. St. Lawrence","modifiedDate":"2017-06-27T08:46:32"},{"calendarId":10,"start":"2017-11-02T18:00:00","end":"2017-11-02T19:00:00","title":"Beat Meeting 1011 & 1012","eventDetails":"Beat 1011 & 1012 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Clair House\n1350 S. Harding","modifiedDate":"2017-01-04T16:05:26"},{"calendarId":11,"start":"2017-11-02T18:00:00","end":"2017-11-02T19:00:00","title":"Beat Meeting: 1112/21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2016-12-27T12:54:07"},{"calendarId":14,"start":"2017-11-02T17:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:30:11"},{"calendarId":3,"start":"2017-11-02T13:00:00","end":"2017-11-02T14:00:00","title":"District Clergy Meeting","eventDetails":"003rd District Clergy Meeting\n","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":2,"start":"2017-11-02T13:00:00","end":"2017-11-02T15:00:00","title":"Faith Base Meeting ","eventDetails":"Bethesed A.M.B Church \nPastor David Watkins","eventUrl":null,"contactDetails":"Officer Denise Gathings\n312-747-5109","location":"5301 S Michigan \r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":4,"start":"2017-11-01T19:00:00","end":"2017-11-01T20:00:00","title":"412 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"8455 S. Stony Island Ave","modifiedDate":"2017-06-24T10:07:44"},{"calendarId":8,"start":"2017-11-01T19:00:00","end":"2017-11-01T20:00:00","title":"815/821 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Bruno's 4839 S. Harding","modifiedDate":"2017-05-24T17:37:02"},{"calendarId":16,"start":"2017-11-01T19:00:00","end":"2017-11-01T20:00:00","title":"1621 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"First Church of Forest Glen 5400 N. Lawler","modifiedDate":"2017-02-21T14:37:35"},{"calendarId":14,"start":"2017-11-01T18:30:00","end":null,"title":"Court Advocacy","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:30:18"},{"calendarId":6,"start":"2017-11-01T18:30:00","end":"2017-11-01T19:30:00","title":"622 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"006 District Police Station 7808 S. Halsted ","modifiedDate":"2017-06-27T08:45:50"},{"calendarId":6,"start":"2017-11-01T18:30:00","end":"2017-11-01T19:30:00","title":"621 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and salutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"006 District Police Station 7808 S. Halsted ","modifiedDate":"2017-06-27T08:46:07"},{"calendarId":14,"start":"2017-11-01T18:00:00","end":null,"title":"Beat Factilitator Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:30:24"},{"calendarId":15,"start":"2017-11-01T18:00:00","end":"2017-11-01T19:00:00","title":"Beat 1522/33 CAPS MEETING","eventDetails":"Residents, Stakeholders and Police Partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"645 S. Central (Loretto Hospital)","modifiedDate":"2017-06-17T16:27:35"},{"calendarId":3,"start":"2017-11-01T14:00:00","end":"2017-11-01T15:00:00","title":"Court Advocate Meeting","eventDetails":"003rd District Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-11-01T10:00:00","end":"2017-11-01T11:00:00","title":"Domestic Violence","eventDetails":"Domestic Violence","eventUrl":null,"contactDetails":"P.O. Rodriguez A. \n312/746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-30T13:13:26"},{"calendarId":3,"start":"2017-10-28T09:00:00","end":"2017-10-28T11:00:00","title":"Peer Jury Meeting","eventDetails":"Peer Jury Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"002nd District\r\n51st Wentworth","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":3,"start":"2017-10-26T19:00:00","end":"2017-10-26T20:00:00","title":"Beat Meeting 321 & 324","eventDetails":"Beat Meeting 321 & 324","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District\t\r\n7040 S. Cottage Grove\t \r\nChicago, IL. 60637\r\n(312) 747-7004\r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":16,"start":"2017-10-26T19:00:00","end":"2017-10-26T20:00:00","title":"1634 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"St. Bartholomew 4910 W. Addison","modifiedDate":"2017-02-22T09:52:18"},{"calendarId":7,"start":"2017-10-26T18:30:00","end":"2017-10-26T19:30:00","title":"Community Beat Meeting-Bt. 712","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"Sherwood Pk. 5701 s Shields","modifiedDate":"2017-02-08T12:20:34"},{"calendarId":25,"start":"2017-10-26T18:30:00","end":"2017-10-26T19:30:00","title":"2514 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2514's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"St. Ferdinand's3115 N. Mason","modifiedDate":"2017-06-26T13:33:13"},{"calendarId":6,"start":"2017-10-26T18:30:00","end":"2017-10-26T19:30:00","title":"634 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"St. James A.M.E. Church 9256 S. La Fayette","modifiedDate":"2017-06-27T08:45:34"},{"calendarId":11,"start":"2017-10-26T18:00:00","end":"2017-10-26T19:00:00","title":"Beat Meeting: 1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Eloise McCoy Village Apt. 4650 W. Van Buren","modifiedDate":"2016-12-27T12:52:24"},{"calendarId":22,"start":"2017-10-26T14:00:00","end":null,"title":"DAC Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T10:32:01"},{"calendarId":22,"start":"2017-10-26T13:00:00","end":null,"title":"Beat Facilitators Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T10:32:45"},{"calendarId":16,"start":"2017-10-26T13:00:00","end":"2017-10-26T14:00:00","title":"Senior Seminar","eventDetails":"CPD will be a guest speaker at this event discussing scams related to seniors and safety.","eventUrl":null,"contactDetails":"P.O. Annie Ruiz-Oquenco","location":"5430 N. Olcott","modifiedDate":"2017-08-10T14:18:52"},{"calendarId":22,"start":"2017-10-26T10:30:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T10:32:56"},{"calendarId":17,"start":"2017-10-25T19:30:00","end":"2017-10-25T20:30:00","title":"Combined Beat Meeting 1711-1712","eventDetails":"This is a community meeting where residents meet with the police to address crime issues on the beat, develop strategies to solve problems, and disseminate crime prevention information.","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@Chicagopolice.org","location":"Mayfair Church 5020 N. Pulaski Rd","modifiedDate":"2017-08-13T12:49:00"},{"calendarId":8,"start":"2017-10-25T19:00:00","end":"2017-10-25T20:00:00","title":"835 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Wrightwood Library 8530 S. Kedzie","modifiedDate":"2017-05-24T17:37:21"},{"calendarId":16,"start":"2017-10-25T19:00:00","end":"2017-10-25T20:00:00","title":"1624 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Portage Park Senior Center 4100 N. Long","modifiedDate":"2017-02-22T10:00:04"},{"calendarId":3,"start":"2017-10-25T18:30:00","end":"2017-10-25T20:30:00","title":"003rd District Community Peace Circle","eventDetails":"003rd District Community Peace Circle","eventUrl":null,"contactDetails":"Sgt. Jointer\n003rd District\n7040 S. Cottage Grove\nChicago, IL 60637\n(312) 747-7004","location":"Lincoln Memorial Church\r\n6454 S. Champlain\r\n","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-10-25T18:30:00","end":"2017-10-25T19:30:00","title":"Community Beat Meeting-Bt. 715","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"Lindblom Pk. 6054 s Damen","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":3,"start":"2017-10-25T18:00:00","end":"2017-10-25T19:00:00","title":"Dac Meeting ","eventDetails":"003rd District Advisory committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove\nChicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-10-25T18:00:00","end":"2017-10-25T19:00:00","title":"2534 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2534's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"North /Grand H.S. 4338 W. Wabansia","modifiedDate":"2017-06-26T13:51:21"},{"calendarId":14,"start":"2017-10-25T13:30:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:30:30"},{"calendarId":15,"start":"2017-10-25T10:00:00","end":"2017-10-25T11:00:00","title":"SENIORS MEETING","eventDetails":"Senior Subcommittee Meeting / Senior Citizens related topics w/ Guest Speakers from various agencies and departments.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5701 W. Madison ( 015th District)","modifiedDate":"2017-06-17T16:27:47"},{"calendarId":15,"start":"2017-10-25T08:30:00","end":"2017-10-25T09:30:00","title":"Business Meeting","eventDetails":"Business owners of the 015th district meet with community Organizer and discuss concerns of crime and ways o improve business related issues.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5412 W.MADISON (MAC ARTHUR'S)","modifiedDate":"2017-06-17T16:28:02"},{"calendarId":8,"start":"2017-10-24T19:00:00","end":"2017-10-24T20:00:00","title":"813/833 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"West Lawn Park 4233 W. 65th St","modifiedDate":"2017-05-24T17:37:44"},{"calendarId":3,"start":"2017-10-24T19:00:00","end":"2017-10-24T20:00:00","title":"Beat meeting 322 & 323","eventDetails":"Beat meeting 322 & 323","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Park Manor Church\r\n600 E. 73rd Street\r\nChicago, IL. 60619","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":24,"start":"2017-10-24T19:00:00","end":null,"title":"2431 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"St. Jerome's Parish Center 1709 W. Lunt","modifiedDate":"2016-12-07T10:11:27"},{"calendarId":16,"start":"2017-10-24T19:00:00","end":"2017-10-24T20:00:00","title":"1614 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Salvation Army 8354 W. Foster","modifiedDate":"2017-02-21T15:13:26"},{"calendarId":7,"start":"2017-10-24T18:30:00","end":"2017-10-24T19:30:00","title":"Community Beat Meeting-Bt. 711/713/714","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"007th District Community Room 1438 w 63rd st.","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":25,"start":"2017-10-24T18:30:00","end":"2017-10-24T19:30:00","title":"2532 Beat Meeting","eventDetails":"2532 Beat Meeting. 4th Tuesday Even Months","eventUrl":null,"contactDetails":"312-746-5090","location":"1511 N Long Ave","modifiedDate":"2016-12-15T10:32:59"},{"calendarId":11,"start":"2017-10-24T18:00:00","end":"2017-10-24T19:00:00","title":"Beat Meeting: 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2016-12-27T12:53:33"},{"calendarId":3,"start":"2017-10-24T14:00:00","end":"2017-10-24T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 60637\t\n(312) 747-7004","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":22,"start":"2017-10-24T10:30:00","end":null,"title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T10:33:08"},{"calendarId":25,"start":"2017-10-21T13:00:00","end":"2017-10-21T15:00:00","title":"Youth Exploring","eventDetails":"Youth Exploring","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-15T10:19:33"},{"calendarId":6,"start":"2017-10-21T11:00:00","end":"2017-10-21T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-29T14:26:20"},{"calendarId":20,"start":"2017-10-19T19:00:00","end":"2017-10-19T20:00:00","title":"2024 Beat Meeting","eventDetails":"2024 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Margate Field House4921 N. Marine Dr.","modifiedDate":"2017-06-23T15:19:57"},{"calendarId":25,"start":"2017-10-19T19:00:00","end":"2017-10-19T20:00:00","title":"2524 Beat Meeting","eventDetails":"2524 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Our Lady of Grace\n2446 N. Ridgeway","modifiedDate":"2016-12-30T13:21:38"},{"calendarId":14,"start":"2017-10-19T18:30:00","end":null,"title":"1433 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Pulaski Park1419 W. Blackhawk","modifiedDate":"2017-06-12T14:49:25"},{"calendarId":7,"start":"2017-10-19T18:30:00","end":"2017-10-19T19:30:00","title":"Community Beat Meeting - Bt.735","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Gifts From God Ministry Church 1818 w 74th st.","modifiedDate":"2017-02-22T12:41:36"},{"calendarId":11,"start":"2017-10-19T18:00:00","end":"2017-10-19T19:00:00","title":"Beat Meeting: 1113,14,15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"St. Michaels's MBC 4106 W. Monroe","modifiedDate":"2016-12-27T12:52:34"},{"calendarId":16,"start":"2017-10-19T18:00:00","end":"2017-10-19T19:00:00","title":"DAC Meeting","eventDetails":"Meetng hosted by the District Commander for invited community stakeholders will be held in the Community Room (THIS IS NOT A BEAT MEETING)","eventUrl":null,"contactDetails":"Annie Ruiz-Oquendo ","location":"5151 N. Milwaukee","modifiedDate":"2017-05-04T17:34:04"},{"calendarId":3,"start":"2017-10-19T14:00:00","end":"2017-10-19T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 60637\n(312)747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":6,"start":"2017-10-19T10:00:00","end":"2017-10-19T11:00:00","title":"Domestic Violence Subcommitte Meeting","eventDetails":"Meet to discuss topics on Domestic Violence and prevention.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-29T14:26:39"},{"calendarId":7,"start":"2017-10-19T10:00:00","end":"2017-10-19T13:00:00","title":"7th District Food Pantry ","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Shelton & Sgt. Redrick 312-747-6722","location":"7158 S. Peoria, Chicago, IL 60621","modifiedDate":"2017-07-12T09:49:13"},{"calendarId":17,"start":"2017-10-18T19:30:00","end":"2017-10-18T20:30:00","title":"Combined Beat Meeting 1722-1723","eventDetails":"This is a community meeting where residents meet with the police to address crime issues on the beat, develop strategies to solve problems, and disseminate crime prevention information.","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@Chicagopolice.org","location":"017 District Station 4650 N. Pulaski Rd","modifiedDate":"2017-08-13T12:49:21"},{"calendarId":20,"start":"2017-10-18T19:00:00","end":"2017-10-18T20:00:00","title":"2013 Beat Meeting","eventDetails":"2013 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church5437 N. Clark St.","modifiedDate":"2017-06-23T15:19:18"},{"calendarId":3,"start":"2017-10-18T19:00:00","end":"2017-10-18T20:00:00","title":"Beat Meeting 333 & 334","eventDetails":"Beat Meeting 333 & 334","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"South Shore culture Center 7059 S. South Shore Dr. Chicago, Il. 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":14,"start":"2017-10-18T18:30:00","end":null,"title":"1434 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Bucktown Library1701 N. Milwaukee","modifiedDate":"2017-06-12T14:49:59"},{"calendarId":7,"start":"2017-10-18T18:30:00","end":"2017-10-18T19:30:00","title":"Community Beat Meeting - Bt. 733/734","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Salvation Army 845 w. 69th st.","modifiedDate":"2017-02-22T15:09:31"},{"calendarId":2,"start":"2017-10-18T18:30:00","end":"2017-10-18T19:30:00","title":"Beat Meeting for Beats 233/234/235","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"Caps office 312-747-5109","location":"1526 E. 55th St.","modifiedDate":"2017-08-22T10:55:02"},{"calendarId":22,"start":"2017-10-18T18:00:00","end":null,"title":"Beat 2234 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Beth Eden Church\n11121 S. Loomis","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":10,"start":"2017-10-18T18:00:00","end":"2017-10-18T19:00:00","title":"Beat Meeting 1031 & 1032","eventDetails":"Beat 1031 & 1032 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Toman Library\n2708 S. Homan","modifiedDate":"2017-01-04T15:56:42"},{"calendarId":8,"start":"2017-10-18T17:00:00","end":"2017-10-18T18:00:00","title":"823/825 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Rita Church at 6243 S. Fairfield","modifiedDate":"2017-05-24T17:38:28"},{"calendarId":16,"start":"2017-10-18T10:00:00","end":"2017-10-18T15:00:00","title":"Beauty Bash","eventDetails":"16th District will be holding an event where victims and survivors of domestic violence can find valuable resources as well as a trim and a polish! Schedule Appointment at (312)742-4521 Walk-Ins are welcome!","eventUrl":null,"contactDetails":"P.O. Melissa Tovar","location":"5151 N. Milwaukee","modifiedDate":"2017-08-10T14:23:55"},{"calendarId":8,"start":"2017-10-17T19:00:00","end":"2017-10-17T20:00:00","title":"811 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Good Shepherd Church 5550 S. Merrimac","modifiedDate":"2017-05-24T17:38:51"},{"calendarId":24,"start":"2017-10-17T19:00:00","end":null,"title":"2423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Touhy Park 7348 N. Paulina","modifiedDate":"2016-12-07T10:13:14"},{"calendarId":7,"start":"2017-10-17T18:30:00","end":"2017-10-17T19:30:00","title":"Community Beat Meeting - Bt. 731/732","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Hamilton Park 513 w. 72nd st.","modifiedDate":"2017-02-22T15:10:35"},{"calendarId":2,"start":"2017-10-17T18:30:00","end":"2017-10-17T19:30:00","title":"Beat Meeting for Beats 221/223","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"Caps office 312-747-5109","location":"4314 S. Cottage Grove","modifiedDate":"2017-08-22T10:55:14"},{"calendarId":11,"start":"2017-10-17T18:00:00","end":"2017-10-17T19:00:00","title":"Beat Meeting: 1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841Chicago Police Station3151 W. Harrison Street","location":"Springfield/ Van Buren ","modifiedDate":"2017-08-04T12:03:29"},{"calendarId":16,"start":"2017-10-17T13:00:00","end":"2017-10-17T14:00:00","title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Annie Ruiz (312)742-4521 CAPS016District@chicagopolice.org","location":"5151 N. Milwaukee","modifiedDate":"2017-02-22T09:31:02"},{"calendarId":14,"start":"2017-10-14T10:00:00","end":null,"title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:32:02"},{"calendarId":8,"start":"2017-10-12T19:00:00","end":"2017-10-12T20:00:00","title":"814 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Vittum Park Fieldhouse 5010 W. 50th St","modifiedDate":"2017-05-24T17:39:28"},{"calendarId":14,"start":"2017-10-12T19:00:00","end":null,"title":"1422 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Simons Park1640 N. Drake","modifiedDate":"2017-06-12T14:50:40"},{"calendarId":3,"start":"2017-10-12T19:00:00","end":"2017-10-12T20:00:00","title":"Beat Meeting 331 & 332","eventDetails":"Beat Meeting 331 & 332","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"ABJ Community Service Center 1818 E. 71st Street Chicago, IL. 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":4,"start":"2017-10-12T19:00:00","end":"2017-10-12T20:00:00","title":"421 & 422 Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"2800 E. 79th St.","modifiedDate":"2017-06-24T10:09:16"},{"calendarId":16,"start":"2017-10-12T19:00:00","end":"2017-10-12T20:00:00","title":"1632 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Schorsch Village Hall 6940 W. Belmont","modifiedDate":"2017-02-22T09:40:36"},{"calendarId":22,"start":"2017-10-12T18:30:00","end":null,"title":"Beat 2213","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Ridge Park \n9625 S. Longwood Dr","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-10-12T18:30:00","end":"2017-10-12T19:30:00","title":"Community Beat Meeting-Bt. 724/725","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt.Fraction @312-747-6722","location":"Ogden Pk. 6500 s Racine","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":2,"start":"2017-10-12T18:30:00","end":"2017-10-12T19:30:00","title":"Beat Meeting for Beats 225/231/232","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"Caps office 312-747-5109","location":"5627 S. Michigan Ave","modifiedDate":"2017-08-22T10:55:31"},{"calendarId":15,"start":"2017-10-12T18:30:00","end":"2017-10-12T19:30:00","title":"Beat 1513S Caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"1045 S. Monitor Ave. ( Clark School)","modifiedDate":"2017-06-17T16:28:09"},{"calendarId":10,"start":"2017-10-12T18:00:00","end":"2017-10-12T19:00:00","title":"Beat Meeting 1023 & 1024","eventDetails":"Beat 1023 & 1024 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Mt. Sinai Hospital\n2730 W. 15th Place\nCourtesy Parking given on the block","modifiedDate":"2017-01-04T15:57:48"},{"calendarId":11,"start":"2017-10-12T18:00:00","end":"2017-10-12T19:00:00","title":"Beat Meeting: 1122/23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Legler Chicago Public Library 115 S. Pulaski ","modifiedDate":"2016-12-27T12:52:51"},{"calendarId":16,"start":"2017-10-12T11:00:00","end":"2017-10-12T12:30:00","title":"Senior Seminar","eventDetails":"The Community Relations Office will be a guest speaker at this event and discuss safety and senior scams that are currently issues.","eventUrl":null,"contactDetails":"P.O. Annie Ruiz-Oquenco","location":"6100 N. Central","modifiedDate":"2017-08-10T14:24:54"},{"calendarId":4,"start":"2017-10-11T19:00:00","end":"2017-10-11T20:00:00","title":"413 Beat Community Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"9037 S. Harper Ave","modifiedDate":"2017-06-24T10:16:36"},{"calendarId":14,"start":"2017-10-11T19:00:00","end":null,"title":"1424 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Wicker Park1425 N. Damen","modifiedDate":"2017-06-12T14:52:47"},{"calendarId":8,"start":"2017-10-11T19:00:00","end":"2017-10-11T20:00:00","title":"812 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Clearing Library 6423 W. 63rd Pl","modifiedDate":"2017-05-24T17:39:53"},{"calendarId":20,"start":"2017-10-11T19:00:00","end":"2017-10-11T20:00:00","title":"2012 Beat Meeting","eventDetails":"2012 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"St. Gregory Gym1609 W. Gregory St.","modifiedDate":"2017-06-23T15:20:14"},{"calendarId":19,"start":"2017-10-11T19:00:00","end":"2017-10-11T20:00:00","title":"Beat 1914","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"Clarendon Park4501 N. Clarendon","modifiedDate":"2017-06-29T15:03:39"},{"calendarId":16,"start":"2017-10-11T19:00:00","end":"2017-10-11T20:00:00","title":"1622 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Dunham Park 4638 N. Melvina","modifiedDate":"2017-02-22T09:49:33"},{"calendarId":17,"start":"2017-10-11T19:00:00","end":"2017-10-11T20:00:00","title":"Combined Beat Meeting 1732- 1733","eventDetails":"This is a community meeting where residents meet with the police to address crime issues on the beat, develop strategies to solve problems, and disseminate crime prevention information.","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@Chicagopolice.org","location":"Athletic Field Park 3546 W. Addison ave","modifiedDate":"2017-08-13T12:49:31"},{"calendarId":22,"start":"2017-10-11T18:30:00","end":null,"title":"Beat 2232/2233 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Fernwood Park \n10438 S. Wallace","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-10-11T18:30:00","end":"2017-10-11T19:30:00","title":"Community Beat Meeting-Bt. 726","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt.Fraction @312-747-6722","location":"Lindblom Pk. 6054 s Damen","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":2,"start":"2017-10-11T18:30:00","end":"2017-10-11T19:30:00","title":"Beat Meeting for Beats 213/215/224","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"Caps office 312-747-5109","location":"4058 S. Michigan","modifiedDate":"2017-08-22T10:55:48"},{"calendarId":25,"start":"2017-10-11T18:00:00","end":"2017-10-11T19:00:00","title":"DAC Meeting","eventDetails":"DAC Meeting and Officer of the Month Awards","eventUrl":null,"contactDetails":"312-746-5090","location":"25th District - 5555 W. Grand Ave.","modifiedDate":"2016-12-14T10:25:30"},{"calendarId":11,"start":"2017-10-11T17:00:00","end":"2017-10-11T19:00:00","title":"Taking Our Park Back Initiative ","eventDetails":"Encouraging families to use and enjoy our parks. ","eventUrl":null,"contactDetails":"Alderman Jason C. Ervin 1.773.533.0900","location":"4615 W. Jackson Clark Park ","modifiedDate":"2017-07-27T15:51:44"},{"calendarId":22,"start":"2017-10-11T13:30:00","end":null,"title":"Court Advacacy ","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District\n1900 W Monterey Ave","modifiedDate":"2016-12-28T10:34:04"},{"calendarId":14,"start":"2017-10-11T13:30:00","end":null,"title":"Domestic Violence","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:32:43"},{"calendarId":6,"start":"2017-10-11T11:00:00","end":"2017-10-11T12:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Meet with seniors on crime tip prevention and plan fun filled events.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-29T14:26:53"},{"calendarId":20,"start":"2017-10-11T10:00:00","end":"2017-10-11T11:00:00","title":"Seniors Meeting","eventDetails":"Seniors Meeting, a monthly meeting featuring activities and informative talks on seniors related topics. Contact CAPS for details.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District Community Room 5400 N. Lincoln ave ","modifiedDate":"2017-06-23T14:12:23"},{"calendarId":24,"start":"2017-10-10T19:00:00","end":null,"title":"2411 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Indian Boundary Park 2500 W. Lunt","modifiedDate":"2016-12-07T10:17:15"},{"calendarId":4,"start":"2017-10-10T19:00:00","end":"2017-10-10T20:00:00","title":"424 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"3200 E. 91st St","modifiedDate":"2017-06-24T10:17:52"},{"calendarId":20,"start":"2017-10-10T19:00:00","end":"2017-10-10T20:00:00","title":"2022 Beat Meeting","eventDetails":"2022 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Broadway Armory5917 N. Broadway","modifiedDate":"2017-06-23T15:20:30"},{"calendarId":22,"start":"2017-10-10T19:00:00","end":null,"title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Robichaux Park\n403 W. 93rd St","modifiedDate":"2016-12-28T10:35:23"},{"calendarId":8,"start":"2017-10-10T19:00:00","end":"2017-10-10T20:00:00","title":"831/832 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Marquette Park 6734 S. Kedzie","modifiedDate":"2017-05-24T17:40:12"},{"calendarId":7,"start":"2017-10-10T18:30:00","end":"2017-10-10T19:30:00","title":"Community Beat Meeting-Bt. 722/723","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt.Fraction @312-747-6722","location":"Kennedy-King College 740 w 63rd st","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":11,"start":"2017-10-10T18:30:00","end":"2017-10-10T19:30:00","title":"Beat Meeting: 1124/25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841Chicago Police Station3151 W. Harrison Street","location":" 2622 W. Jackson","modifiedDate":"2017-06-28T23:11:26"},{"calendarId":2,"start":"2017-10-10T18:30:00","end":"2017-10-10T19:30:00","title":"Beat Meeting for Beat 222","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"Caps office 312-747-5109","location":"4434 S. Lake Park","modifiedDate":"2017-08-22T10:56:02"},{"calendarId":15,"start":"2017-10-10T18:30:00","end":"2017-10-10T19:30:00","title":"Beat 1511/24 Caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5900 W.Iowa ( Hope Community Church)","modifiedDate":"2017-06-17T16:28:15"},{"calendarId":10,"start":"2017-10-10T18:00:00","end":"2017-10-10T19:00:00","title":"Beat Meeting 1034","eventDetails":"Beat 1034 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"YMCA- Rauner\n2700 S. Western Ave","modifiedDate":"2017-01-04T15:54:58"},{"calendarId":6,"start":"2017-10-10T10:00:00","end":"2017-10-10T11:00:00","title":"Business Subcommittee Meeting","eventDetails":"Meet with local businesses as we plan future events to foster a safe community.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745- 3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-29T14:27:08"},{"calendarId":19,"start":"2017-10-09T18:30:00","end":"2017-10-19T19:30:00","title":"Beat 1934 & 1935","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"2nd Unitarian Church656 W. Barry","modifiedDate":"2017-06-29T15:03:51"},{"calendarId":3,"start":"2017-10-07T11:00:00","end":"2017-10-07T13:00:00","title":"Youth/Explorers Meeting","eventDetails":"Youth/Explorers Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"003rd District(Auditorium)\r\n7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":6,"start":"2017-10-07T11:00:00","end":"2017-10-07T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Pplice Station 7808 S. Halsted St. ","modifiedDate":"2017-04-29T14:27:20"},{"calendarId":22,"start":"2017-10-07T09:30:00","end":"2017-10-08T10:30:00","title":"Dog Walk Against Domestic Violence","eventDetails":"Dog Walk against Domestic Violence","eventUrl":null,"contactDetails":"P.O. Mary Bochenczak","location":"022nd District 1900 W. Monterey Ave","modifiedDate":"2017-08-08T08:53:00"},{"calendarId":25,"start":"2017-10-07T08:30:00","end":"2017-10-07T11:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-30T13:14:08"},{"calendarId":8,"start":"2017-10-05T19:00:00","end":"2017-10-05T20:00:00","title":"834 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Bogan High School 3939 W. 79th St","modifiedDate":"2017-05-24T17:41:01"},{"calendarId":3,"start":"2017-10-05T19:00:00","end":"2017-10-05T20:00:00","title":"Beat Meeting 313 & 314","eventDetails":"Beat Meeting 313 & 314","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Harris Park Recreation Center 6200 S. Drexel\r\nChicago, IL. 60637","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":4,"start":"2017-10-05T19:00:00","end":"2017-10-05T20:00:00","title":"434 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"10501 S. Torrence Ave","modifiedDate":"2017-06-24T10:19:24"},{"calendarId":22,"start":"2017-10-05T19:00:00","end":null,"title":"Beat 2211/2212 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T10:37:08"},{"calendarId":24,"start":"2017-10-05T19:00:00","end":null,"title":"District Advisory Council Meeting","eventDetails":"Not open to the public","eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District","modifiedDate":"2016-12-07T10:07:54"},{"calendarId":14,"start":"2017-10-05T19:00:00","end":"2017-10-05T20:00:00","title":"1411/1412 Beat Meetings","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":"(312)744-1261","location":"14th District CAPS Office 2150 N California","modifiedDate":"2017-08-21T11:13:00"},{"calendarId":25,"start":"2017-10-05T18:30:00","end":"2017-10-05T19:30:00","title":"2522 Beat Meeting","eventDetails":"2522 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Hermosa Park\n2240 N. Kilbourn","modifiedDate":"2016-12-15T10:24:51"},{"calendarId":19,"start":"2017-10-05T18:30:00","end":"2017-10-05T19:30:00","title":"Beat 1915","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"Uptown Buena Library929 W. Buena","modifiedDate":"2017-06-29T15:04:06"},{"calendarId":15,"start":"2017-10-05T18:30:00","end":"2017-10-05T19:30:00","title":"Beat 1512/23 Caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5425 W. Lake ST ( PCC Wellness Center)","modifiedDate":"2017-06-17T16:28:20"},{"calendarId":11,"start":"2017-10-05T18:00:00","end":"2017-10-05T19:00:00","title":"Beat Meeting: 1112/21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2016-12-27T12:52:12"},{"calendarId":14,"start":"2017-10-05T17:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:32:50"},{"calendarId":22,"start":"2017-10-05T14:00:00","end":null,"title":"Diversity and Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T10:33:36"},{"calendarId":2,"start":"2017-10-05T13:00:00","end":"2017-10-05T15:00:00","title":"Faith Base Meeting ","eventDetails":"Holy Temple\nPastor Lorraine Powell","eventUrl":null,"contactDetails":"Officer Denise Gathings \n312-747-5109","location":"5541 S. State ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":3,"start":"2017-10-05T13:00:00","end":"2017-10-05T14:00:00","title":"District Clergy Meeting","eventDetails":"003RD District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":20,"start":"2017-10-04T19:00:00","end":"2017-10-04T20:00:00","title":"2033 Beat Meeting","eventDetails":"2033 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Bezazian Library1226 W. Ainslie St.","modifiedDate":"2017-06-23T15:38:09"},{"calendarId":3,"start":"2017-10-04T19:00:00","end":"2017-10-04T20:00:00","title":"Beat Meeting 311 & 312","eventDetails":"Beat Meeting 311 & 312","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Bessie Coleman Library\r\n731 E. 63rd Street\r\nChicago, IL. 60637","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":8,"start":"2017-10-04T19:00:00","end":"2017-10-04T20:00:00","title":"815/821 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Bruno's 4839 S. Harding","modifiedDate":"2017-05-24T17:41:22"},{"calendarId":4,"start":"2017-10-04T19:00:00","end":"2017-10-04T20:00:00","title":"414 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"1750 E. 78th St","modifiedDate":"2017-06-24T10:19:54"},{"calendarId":19,"start":"2017-10-04T19:00:00","end":"2017-10-04T20:00:00","title":"Beat 1923, 24 & 25","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"19th District Police850 W. Addison","modifiedDate":"2017-06-29T15:04:17"},{"calendarId":25,"start":"2017-10-04T18:30:00","end":"2017-10-04T19:30:00","title":"2512 Beat Meeting","eventDetails":"2512 Beat Meeting","eventUrl":null,"contactDetails":"P.O. Rodriguez A. \n312/746-5090","location":"Shriner's hospital\n2211 N. Oak Park","modifiedDate":"2016-12-30T13:14:31"},{"calendarId":14,"start":"2017-10-04T18:00:00","end":null,"title":"Court Advocacy","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:32:56"},{"calendarId":15,"start":"2017-10-04T18:00:00","end":"2017-10-04T19:00:00","title":"Beat 1522/33 Caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"645 S. Central (Loretto Hospital)","modifiedDate":"2017-06-17T16:28:27"},{"calendarId":11,"start":"2017-10-04T17:00:00","end":"2017-10-04T19:00:00","title":"Taking Our Park Back Initiative ","eventDetails":"Encouraging families to use and enjoy our parks. ","eventUrl":null,"contactDetails":"Alderman Jason C. Ervin 1.773.533.0900","location":"4100 W. West End Mason Park ","modifiedDate":"2017-07-27T15:51:33"},{"calendarId":3,"start":"2017-10-04T14:00:00","end":"2017-10-04T15:00:00","title":"Court Advocate Meeting","eventDetails":"003rd District Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-10-04T10:00:00","end":"2017-10-04T11:00:00","title":"Domestic Violence","eventDetails":"Domestic Violence","eventUrl":null,"contactDetails":"P.O. Rodriguez A.\n312/746-5090","location":"5555 Grand Ave ","modifiedDate":"2016-12-30T13:14:38"},{"calendarId":4,"start":"2017-10-03T19:00:00","end":"2017-10-03T20:00:00","title":"433 Beat Community Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"13323 S. Green Bay Ave","modifiedDate":"2017-06-24T10:20:27"},{"calendarId":22,"start":"2017-10-03T19:00:00","end":null,"title":"Beat 2221 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Christ The King Church\n9225 S. Hamilton","modifiedDate":"2016-12-28T10:36:01"},{"calendarId":16,"start":"2017-10-03T19:00:00","end":"2017-10-03T20:00:00","title":"1612 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Olympia Park 6566 N. Avondale","modifiedDate":"2017-02-22T09:47:35"},{"calendarId":11,"start":"2017-10-03T18:30:00","end":"2017-10-03T19:30:00","title":"Beat Meeting: 1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Brian Piccolo School 1041 N. Keeler ","modifiedDate":"2016-12-27T12:52:04"},{"calendarId":2,"start":"2017-10-03T18:30:00","end":"2017-10-03T19:30:00","title":"Beat Meeting for Beats 212/214","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"Caps office 312-747-5109","location":"3858 S. Cottage Grove","modifiedDate":"2017-08-22T10:56:14"},{"calendarId":15,"start":"2017-10-03T18:30:00","end":"2017-10-03T19:30:00","title":"Beat 1531/32 Caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"4856 W. CHICAGO AVE (WEST BRANCH LIBRARY)","modifiedDate":"2017-06-17T16:28:46"},{"calendarId":10,"start":"2017-10-03T18:00:00","end":"2017-10-03T19:00:00","title":"Beat Meeting 1022","eventDetails":"Beat 1022 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Albany Terrace\n3030 W. 21st Place","modifiedDate":"2017-01-04T15:58:31"},{"calendarId":8,"start":"2017-10-03T17:00:00","end":"2017-10-03T18:00:00","title":"822/824 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Hernandez Middle School at 3510 W. 55th St.","modifiedDate":"2017-05-24T17:41:37"},{"calendarId":25,"start":"2017-10-03T10:00:00","end":"2017-10-03T11:00:00","title":"Senior Advisory Meeting","eventDetails":"025th District Senior Advisory Meeting","eventUrl":null,"contactDetails":"025th District Community Relations Office\n312-746-5090","location":"025th District, 5555 W. Grand Ave.","modifiedDate":"2016-12-14T10:24:19"},{"calendarId":7,"start":"2017-10-03T10:00:00","end":"2017-10-04T11:00:00","title":"Faith BAse Council monthly Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Shelton & Sgt. Redrick 312-747-6722","location":"1438 W. 63rd Street","modifiedDate":"2017-07-07T10:09:29"},{"calendarId":20,"start":"2017-10-02T19:00:00","end":"2017-10-02T20:00:00","title":"2011 Beat Meeting","eventDetails":"2011 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District5400 N. Lincoln Ave.","modifiedDate":"2017-06-23T15:21:38"},{"calendarId":11,"start":"2017-09-30T14:00:00","end":null,"title":"Gospel Choir Competition","eventDetails":"Free admission sponsered by Cook County Commissioner Richard R. Boykin.","eventUrl":null,"contactDetails":"Anthony Richard 1.312.603.4566","location":"St Michael Missionary Baptist Church 4106 W. Monroe","modifiedDate":"2017-08-23T09:18:01"},{"calendarId":6,"start":"2017-09-30T10:00:00","end":"2017-09-30T14:00:00","title":"Community Engagement - Family & Faith Convention","eventDetails":"The 006th District along with our Faith Based Community are seeking to Empower, Motivate, Encourage and Strengthen the Faith of our communities in building healthier families and a safer enviroment. ","eventUrl":null,"contactDetails":".Contact the CAPS office at (312)-745-3641","location":"Simeon High School, 8147 S. Vincennes","modifiedDate":"2017-08-04T11:12:43"},{"calendarId":8,"start":"2017-09-30T08:30:00","end":"2017-09-30T10:00:00","title":"St Richard Rocket Run","eventDetails":"5K run to promote peace as its a peace-community-youth Archer Heights 3.1 run....must register and there is $25 registration fee that includes bag given to participants","eventUrl":null,"contactDetails":"St Richard 773-585-1221","location":"5030 S Kostner","modifiedDate":"2017-08-17T12:38:00"},{"calendarId":15,"start":"2017-09-29T17:00:00","end":"2017-09-29T20:00:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"(Austin Town Hall) 5610 W. Lake St. Chicago ,IL","modifiedDate":"2017-08-10T12:52:55"},{"calendarId":8,"start":"2017-09-28T19:00:00","end":"2017-09-28T20:00:00","title":"District Advisory Council Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"008th District 3420 W. 63rd St","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":3,"start":"2017-09-28T19:00:00","end":"2017-09-28T20:00:00","title":"Beat Meeting 321 & 324","eventDetails":"Beat Meeting 321 & 324","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District\t\r\n7040 S. Cottage Grove\t \r\nChicago, IL. 60637\r\n(312) 747-7004\r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":8,"start":"2017-09-28T19:00:00","end":"2017-09-28T20:00:00","title":"DAC meeting","eventDetails":"Stakeholders in community meet with Commander to discuss crime issues and solutions.","eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"3420 W 63rd Street","modifiedDate":"2017-08-17T12:34:51"},{"calendarId":7,"start":"2017-09-28T18:30:00","end":"2017-09-28T19:30:00","title":"Community Beat Meeting-Bt. 712","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"Sherwood Pk. 5701 s Shields","modifiedDate":"2017-02-08T12:20:30"},{"calendarId":14,"start":"2017-09-28T18:30:00","end":null,"title":"1432 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":"014th District CAPS 312-744-1261","location":" Covenant Presbyterian Church 2022 W. Dickens","modifiedDate":"2017-06-28T23:07:57"},{"calendarId":6,"start":"2017-09-28T18:30:00","end":"2017-09-28T19:30:00","title":"634 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"St. James A.M.E.Church 9256 S. Lafayette","modifiedDate":"2017-06-27T08:45:13"},{"calendarId":11,"start":"2017-09-28T18:00:00","end":"2017-09-28T19:00:00","title":"Beat Meeting: 1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Eloise McCoy Village Apt. 4650 W. Van Buren","modifiedDate":"2016-12-27T12:50:27"},{"calendarId":15,"start":"2017-09-28T17:00:00","end":"2017-09-28T20:00:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227-2880","location":"(Hubbard Park) 4942-58 W.Hubbard St..Chicago,IL ","modifiedDate":"2017-08-10T12:53:16"},{"calendarId":22,"start":"2017-09-28T10:30:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T10:26:10"},{"calendarId":17,"start":"2017-09-27T19:30:00","end":"2017-09-27T20:30:00","title":"Combined Beat Meeting 1711/1712","eventDetails":"This is a community meeting where residents meet with the police to address crime issues on the beat, develop strategies to solve problems, and disseminate crime prevention information. ","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@Chicagopolice.org","location":"Mayfair Church 5020 N. Pulaski Rd.","modifiedDate":"2017-07-26T11:23:58"},{"calendarId":8,"start":"2017-09-27T19:00:00","end":"2017-09-27T20:00:00","title":"835 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Wrightwood Library 8530 S. Kedzie","modifiedDate":"2017-05-24T17:42:06"},{"calendarId":20,"start":"2017-09-27T19:00:00","end":"2017-09-27T20:00:00","title":"2032 Beat Meeting","eventDetails":"2032 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Ravenswood Evangelical Church4900 N. Damen Ave.","modifiedDate":"2017-06-23T15:21:54"},{"calendarId":25,"start":"2017-09-27T18:30:00","end":"2017-09-27T19:30:00","title":"2523 Beat Meeting","eventDetails":"2523 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"St. Joseph\n4021 W. Belmont","modifiedDate":"2016-12-30T13:28:34"},{"calendarId":7,"start":"2017-09-27T18:30:00","end":"2017-09-27T19:30:00","title":"Community Beat Meeting-Bt. 715","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"Lindblom Pk. 6054 s Damen","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":17,"start":"2017-09-27T18:30:00","end":"2017-09-27T19:30:00","title":"Beat Meeting 1713","eventDetails":"This is a community meeting where residents meet with the police to address crime issues on the beat, develop strategies to solve problems, and disseminate crime prevention information. ","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@Chicagopolice.org","location":"North Park University 5000 N. Spaulding Ave.","modifiedDate":"2017-07-26T11:24:25"},{"calendarId":6,"start":"2017-09-27T18:30:00","end":"2017-09-27T19:30:00","title":"624 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)- 745-3641","location":"St. Dorothy Catholic Church 450 E. 78th St","modifiedDate":"2017-06-27T08:44:59"},{"calendarId":3,"start":"2017-09-27T18:00:00","end":"2017-09-27T19:00:00","title":"Dac Meeting ","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n 7040 S. Cottage Grove Chicago IL. 60637\n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":15,"start":"2017-09-27T18:00:00","end":"2017-09-27T20:30:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"Moore Park 5085 W. Adams St. Chicago, IL","modifiedDate":"2017-08-10T12:54:14"},{"calendarId":12,"start":"2017-09-27T18:00:00","end":"2017-09-27T19:00:00","title":"1235 Beat Community Meeting","eventDetails":"1235 Beat Community Meeting- Las Americas- 1611 S. Racine","eventUrl":null,"contactDetails":"12th District Community Relations Office 312-746-8306","location":"Las Americas- 1611 S. Racine","modifiedDate":"2017-08-22T17:48:03"},{"calendarId":11,"start":"2017-09-27T17:00:00","end":"2017-09-27T19:00:00","title":"Taking Our Park Back Initiative ","eventDetails":"Encouraging families to use and enjoy our parks. ","eventUrl":null,"contactDetails":"Alderman Jason C. Ervin 1.773.533.0900","location":"339 N. St. Louis ","modifiedDate":"2017-07-27T15:51:22"},{"calendarId":25,"start":"2017-09-27T13:00:00","end":"2017-09-27T14:00:00","title":"Faith-Based Subcommittee","eventDetails":"Faith Based Subcommittee meeting. 4th Wednesday Odd Months","eventUrl":null,"contactDetails":"P.O. Steven Archer\n312-746-5090","location":"5555 W Grand Ave","modifiedDate":"2016-12-15T10:34:46"},{"calendarId":15,"start":"2017-09-27T10:00:00","end":"2017-09-27T11:00:00","title":"SENIORS MEETING","eventDetails":"Senior Subcommittee Meeting / Senior Citizens related topics w/ Guest Speakers from various agencies and departments.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5701 W. Madison ( 015th District)","modifiedDate":"2017-06-17T16:28:52"},{"calendarId":15,"start":"2017-09-27T08:30:00","end":"2017-05-27T09:30:00","title":"Business Meeting","eventDetails":"Business owners of the 015th district meet with community Organizer and discuss concerns of crime and ways o improve business related issues.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5412 W.MADISON (MAC ARTHUR'S)","modifiedDate":"2017-06-17T16:28:57"},{"calendarId":24,"start":"2017-09-26T19:00:00","end":null,"title":"2433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Edgewater Library 6000 N. Broadway","modifiedDate":"2016-12-07T10:09:40"},{"calendarId":20,"start":"2017-09-26T19:00:00","end":"2017-09-26T20:00:00","title":"2031 Beat Meeting","eventDetails":"2031 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe..","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Swedish Covenant Hospital-Anderson Pavilion2751 W. Winona St.","modifiedDate":"2017-06-23T15:22:13"},{"calendarId":24,"start":"2017-09-26T19:00:00","end":null,"title":"2422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Willye White Park 1610 W. Howard","modifiedDate":"2016-12-07T10:14:00"},{"calendarId":8,"start":"2017-09-26T19:00:00","end":"2017-09-26T20:00:00","title":"813/833 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"West Lawn Park 4233 W. 65th St","modifiedDate":"2017-05-24T17:42:35"},{"calendarId":3,"start":"2017-09-26T19:00:00","end":"2017-09-26T20:00:00","title":"Beat Meeting 322 & 323","eventDetails":"Beat Meeting 322 & 323","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Park Manor Church\r\n600 E. 73rd Street\r\nChicago, Il. 60619","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":12,"start":"2017-09-26T19:00:00","end":"2017-09-26T20:00:00","title":"1211 Beat Community Meeting","eventDetails":"1211 Beat Community Meeting- Norwegian Hosptial- 1044 N Francisco","eventUrl":null,"contactDetails":"12th District Community Relations Office 312-746-8306","location":"Norwegian Hosptial- 1044 N Francisco","modifiedDate":"2017-08-22T17:48:03"},{"calendarId":7,"start":"2017-09-26T18:30:00","end":"2017-09-26T19:30:00","title":"Community Beat Meeting-Bt. 711/713/714","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"007th District Community Room 1438 w 63rd st.","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":25,"start":"2017-09-26T18:30:00","end":"2017-09-26T19:30:00","title":"2513 Beat Meeting","eventDetails":"2513 Beat Meeting","eventUrl":null,"contactDetails":"P.O. Rodriguez A.\n312/746-5090","location":"Amundsen Park\n6200 W Bloomingdale","modifiedDate":"2016-12-30T13:15:20"},{"calendarId":3,"start":"2017-09-26T18:30:00","end":"2017-09-26T20:30:00","title":"003rd District Community Peace Circle","eventDetails":"003rd District Community Peace circle","eventUrl":null,"contactDetails":"Sgt. Jointer\n003rd District\n7040 S. Cottage Grove\nChicago, IL 60637\n(312) 747-7004","location":"Lincoln Memorial Church\r\n6454 S. Champlain","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":6,"start":"2017-09-26T18:30:00","end":"2017-09-26T19:30:00","title":"614 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Foster Park Field House 1440 W. 84th St.","modifiedDate":"2017-06-27T08:44:36"},{"calendarId":11,"start":"2017-09-26T18:00:00","end":"2017-09-26T19:00:00","title":"Beat Meeting: 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. \n","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2016-12-27T12:51:52"},{"calendarId":3,"start":"2017-09-26T14:00:00","end":"2017-09-26T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 6063(312) 747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":22,"start":"2017-09-26T10:30:00","end":null,"title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T10:26:39"},{"calendarId":8,"start":"2017-09-26T10:00:00","end":"2017-09-26T13:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Senior members gather to discuss senior crime issues and safety protections for seniors","eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"3420 W 63rd Street","modifiedDate":"2017-08-17T12:35:11"},{"calendarId":6,"start":"2017-09-25T18:00:00","end":"2017-09-25T19:00:00","title":"Beat Facilitator/DAC Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-29T14:27:33"},{"calendarId":15,"start":"2017-09-25T15:00:00","end":"2017-09-25T16:00:00","title":"D.A.C Meeting","eventDetails":"District Advisory Committee Subcommittee/ Chairpersons of different subcommittees meet to discuss the quality of life issues within the 015th District.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5701 W. Madison ( 015th District)","modifiedDate":"2017-06-17T16:29:02"},{"calendarId":18,"start":"2017-09-23T10:00:00","end":"2017-09-23T12:00:00","title":"Child Safety Seat Installations","eventDetails":" Child Safety Seat Awareness Month come out meet our certiified technician P.O. Baker and have your childs safety seat checked!","eventUrl":null,"contactDetails":"Community Relations Officer P.O. Baker 312.742.5778","location":"018th District Parking Lot","modifiedDate":"2017-08-20T18:32:20"},{"calendarId":3,"start":"2017-09-23T09:00:00","end":"2017-09-23T11:00:00","title":"Peer Jury Meeting","eventDetails":"Peer Jury Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"002nd District\r\n51st Wentworth","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":8,"start":"2017-09-23T09:00:00","end":"2017-09-23T12:00:00","title":"Peer Jury","eventDetails":"Peer Members discuss youth cases and decide penalty for crime that has been up to be heard by their peers.","eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"155 W 51st Street","modifiedDate":"2017-08-17T12:35:55"},{"calendarId":15,"start":"2017-09-22T17:00:00","end":"2017-09-22T20:00:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"(Austin Town Hall) 5610 W. Lake St. Chicago ,IL","modifiedDate":"2017-08-10T12:54:30"},{"calendarId":14,"start":"2017-09-21T19:00:00","end":null,"title":"1431 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Haas Park 2402 N. Washtenaw","modifiedDate":"2017-06-12T14:53:54"},{"calendarId":16,"start":"2017-09-21T19:00:00","end":"2017-09-21T20:00:00","title":"1611 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"St. Thelca 6333 N. Newcastle","modifiedDate":"2017-02-22T09:55:25"},{"calendarId":25,"start":"2017-09-21T18:30:00","end":"2017-09-21T19:30:00","title":"2533 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2533's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2017-06-26T13:32:17"},{"calendarId":7,"start":"2017-09-21T18:30:00","end":"2017-09-21T19:30:00","title":"Community Beat Meeting - Bt.735","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Gifts From God Ministry Church 1818 w 74th st.","modifiedDate":"2017-02-22T15:16:30"},{"calendarId":11,"start":"2017-09-21T18:00:00","end":"2017-09-21T19:00:00","title":"Beat Meeting: 1113,14,15","eventDetails":"\nCommunity engagements generating strategies to making neighborhoods safe. \n","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"St. Michaels's MBC 4106 W. Monroe","modifiedDate":"2016-12-27T12:50:43"},{"calendarId":16,"start":"2017-09-21T18:00:00","end":"2017-09-21T19:00:00","title":"DAC Meeting","eventDetails":"Meetng hosted by the District Commander for invited community stakeholders will be held in the Community Room (THIS IS NOT A BEAT MEETING)","eventUrl":null,"contactDetails":"Annie Ruiz-Oquendo","location":"5151 N. Milwaukee","modifiedDate":"2017-05-04T17:34:39"},{"calendarId":8,"start":"2017-09-21T18:00:00","end":"2017-09-21T19:00:00","title":"Faith Based Subcommittee Meeting","eventDetails":"Faith Based Leaders come together to discuss strategies to bring peace to community.","eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"3420 W 63rd Street","modifiedDate":"2017-08-17T12:36:22"},{"calendarId":15,"start":"2017-09-21T17:00:00","end":"2017-09-21T20:00:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"(Hubbard Park) 4942-58 W.Hubbard St..Chicago,IL ","modifiedDate":"2017-08-10T12:54:43"},{"calendarId":3,"start":"2017-09-21T14:00:00","end":"2017-09-21T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \n(312) 747-7004\nChicago IL. 60637\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-09-21T13:30:00","end":"2017-09-21T14:30:00","title":"Business Subcommittee Meeting","eventDetails":"Business Subcommittee Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-15T10:17:28"},{"calendarId":6,"start":"2017-09-21T10:00:00","end":"2017-09-21T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":"Meet to discuss topics on Domestic Violence and prevention.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745- 3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-29T14:27:45"},{"calendarId":7,"start":"2017-09-21T10:00:00","end":"2017-09-21T13:00:00","title":"7th District Food Pantry ","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Shelton & Sgt. Redrick 312-747-6722","location":"7158 S Peoria, Chicago, IL 60621","modifiedDate":"2017-07-14T10:57:06"},{"calendarId":17,"start":"2017-09-20T19:30:00","end":"2017-09-20T20:30:00","title":"Combined Beat Meeting 1722/1723","eventDetails":"This is a community meeting where residents meet with the police to address crime issues on the beat, develop strategies to solve problems, and disseminate crime prevention information. ","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@Chicagopolice.org","location":"17th District Community Room 4650 N. Pulaksi Rd.","modifiedDate":"2017-07-26T11:24:41"},{"calendarId":20,"start":"2017-09-20T19:00:00","end":"2017-09-20T20:00:00","title":"2013 Beat Meeting","eventDetails":"2013 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church5437 N. Clark St.","modifiedDate":"2017-06-23T15:22:31"},{"calendarId":14,"start":"2017-09-20T19:00:00","end":null,"title":"1423 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Humboldt Park Field House1400 N. Sacramento","modifiedDate":"2017-06-12T14:54:40"},{"calendarId":19,"start":"2017-09-20T19:00:00","end":"2017-09-20T20:00:00","title":"Beat 1921, 22 & 31","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"19th Police Auditorium2452 W. Belmont","modifiedDate":"2017-06-29T15:02:30"},{"calendarId":3,"start":"2017-09-20T19:00:00","end":"2017-09-20T20:00:00","title":"Beat Meeting 333 & 334","eventDetails":"Beat Meeting 333 & 334","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"South Shore Culture Center 7059 S. South Shore Dr. Chicago, IL. 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":16,"start":"2017-09-20T19:00:00","end":"2017-09-20T20:00:00","title":"1623 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":" 016th District Station Community Room 5151 N. Milwaukee","modifiedDate":"2017-02-22T10:02:18"},{"calendarId":12,"start":"2017-09-20T19:00:00","end":"2017-09-20T20:00:00","title":"1213 Beat Community Meeting","eventDetails":"1213 Beat Community Meeting- 1012 N Noble","eventUrl":null,"contactDetails":"12th District Community Relations Office 312-746-8306","location":"1012 N Noble","modifiedDate":"2017-08-22T17:43:03"},{"calendarId":25,"start":"2017-09-20T18:30:00","end":"2017-09-20T19:30:00","title":"2515 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2515's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"St. Stanislaus2310 N. Lorel","modifiedDate":"2017-06-26T13:42:22"},{"calendarId":7,"start":"2017-09-20T18:30:00","end":"2017-09-20T19:30:00","title":"Community Beat Meeting - Bt. 733/734","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Salvation Army 845 w. 69th st.","modifiedDate":"2017-02-23T09:15:36"},{"calendarId":2,"start":"2017-09-20T18:30:00","end":"2017-09-20T19:30:00","title":"Beat Meeting for Beats 233/234/235","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"1526 E. 55TH ST","modifiedDate":"2017-08-18T14:52:14"},{"calendarId":6,"start":"2017-09-20T18:30:00","end":"2017-09-20T19:30:00","title":"623 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Urban Partnership Bank 7801 S. State","modifiedDate":"2017-06-27T08:44:09"},{"calendarId":17,"start":"2017-09-20T18:15:00","end":"2017-09-20T19:15:00","title":"Beat Meeting 1724","eventDetails":"This is a community meeting where residents meet with the police to address crime issues on the beat, develop strategies to solve problems, and disseminate crime prevention information. ","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@Chicagopolice.org","location":"Horner Park Field House 2741 W. Montrose ","modifiedDate":"2017-07-26T11:24:56"},{"calendarId":10,"start":"2017-09-20T18:00:00","end":"2017-09-20T19:00:00","title":"30 Sector Meting","eventDetails":"30 Sector Meeting\n1031, 1032, 1033, 1034","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"10th District\nCommunity Room\n3315 W. Ogden Ave","modifiedDate":"2017-01-04T15:56:52"},{"calendarId":8,"start":"2017-09-20T18:00:00","end":"2017-09-20T19:00:00","title":"823/825 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Rita Church at 6243 S. Fairfield","modifiedDate":"2017-08-17T11:43:22"},{"calendarId":22,"start":"2017-09-20T18:00:00","end":null,"title":"Beat 2234 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Beth Eden Church\n11121 S. Loomis\n","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":15,"start":"2017-09-20T18:00:00","end":"2017-09-20T20:30:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"5085 W. Adams St. Chicago, IL","modifiedDate":"2017-08-10T12:55:01"},{"calendarId":11,"start":"2017-09-20T17:00:00","end":"2017-09-20T19:00:00","title":"Taking Our Park Back Initiative ","eventDetails":"Encouraging families to use and enjoy our parks. ","eventUrl":null,"contactDetails":"Alderman Jason C. Ervin 1.773.533.0900","location":"3410 W. Madison Garfield Park ","modifiedDate":"2017-07-27T15:51:10"},{"calendarId":18,"start":"2017-09-20T15:00:00","end":"2017-09-20T16:00:00","title":"Near North Security Meeting","eventDetails":"Meet with other security teams to discuss problems in their immediate areas and collectively develop strategies to address them. Security Personnel only","eventUrl":null,"contactDetails":"CommunityRelations Office-312.742.5778 P.O. Robinson","location":"018th District Community Room","modifiedDate":"2017-08-20T18:23:04"},{"calendarId":18,"start":"2017-09-20T10:00:00","end":"2017-09-20T17:00:00","title":"Child Passenger Safety Seat Installations","eventDetails":"Child Safety Seat Installations by our certified technician P.O. Baker. By appointment only, Please call to register","eventUrl":null,"contactDetails":"Community Relations Officer P.O. Baker","location":"018th District Parking lot","modifiedDate":"2017-08-20T18:28:04"},{"calendarId":18,"start":"2017-09-20T09:30:00","end":"2017-09-20T10:30:00","title":"Coffee with the Commander","eventDetails":"Join us for a meet and greet with Commander Bauer of the 018th District. Hosted by NNUP and the 018th District Community Relations Office.","eventUrl":null,"contactDetails":"018 District Community Relations Office 312.742.5778","location":"Eva's Cafe 1447 N. Sedgwick","modifiedDate":"2017-08-20T19:03:12"},{"calendarId":8,"start":"2017-09-19T19:00:00","end":"2017-09-19T20:00:00","title":"811 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Good Shepherd Church 5550 S Merrimac","modifiedDate":"2017-05-24T17:43:30"},{"calendarId":19,"start":"2017-09-19T19:00:00","end":"2017-09-19T20:00:00","title":"Beat 1911 & 1912","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"Sulzer Library4455 N. Lincoln","modifiedDate":"2017-06-29T15:02:42"},{"calendarId":24,"start":"2017-09-19T19:00:00","end":null,"title":"2424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Pottawatomie Park 7340 N. Rogers","modifiedDate":"2016-12-07T10:12:23"},{"calendarId":16,"start":"2017-09-19T19:00:00","end":"2017-09-19T20:00:00","title":"1633 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Merrimac Park 6343 W. Irving Park Rd.","modifiedDate":"2017-02-22T09:58:06"},{"calendarId":12,"start":"2017-09-19T19:00:00","end":"2017-09-19T20:00:00","title":"1223 Beat Community Meeting","eventDetails":"1223 Beat Community Meeting- Westhaven -1939 W Lake","eventUrl":null,"contactDetails":"12th District Community Relations Office 312-746-8306","location":"Westhaven -1939 W Lake","modifiedDate":"2017-08-22T17:43:03"},{"calendarId":25,"start":"2017-09-19T18:30:00","end":"2017-09-19T19:30:00","title":"2525 Beat Meeting","eventDetails":"2525 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Mozart Park\n2036 N. Avers","modifiedDate":"2016-12-15T10:22:54"},{"calendarId":22,"start":"2017-09-19T18:30:00","end":null,"title":"Beat 2222 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS office 312-745-0620","location":"Brainerd Park\r\n1246 W. 92nd St","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":25,"start":"2017-09-19T18:30:00","end":"2017-09-19T19:30:00","title":"2531 Beat Meeting","eventDetails":"2531 Beat Meeting. 3rd Tuesday Odd Months","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W Grand Ave","modifiedDate":"2016-12-15T10:33:21"},{"calendarId":7,"start":"2017-09-19T18:30:00","end":"2017-09-19T19:30:00","title":"Community Meeting for Beats 731 and 732","eventDetails":"This meeting is to identify issues affecting quality of life, and crime and disorder in your neighborhood and to work with local police and residents to develop strategies to address those issues.","eventUrl":null,"contactDetails":"7th District Community Policing Office, 312-747-6722","location":"Hamilton Park, 513 W. 72nd st.","modifiedDate":"2017-08-09T12:59:53"},{"calendarId":2,"start":"2017-09-19T18:30:00","end":"2017-09-19T19:30:00","title":"Beat Meeting for Beats 221/223","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-4119","location":"4314 S COTTAGE GROVE","modifiedDate":"2017-08-22T10:56:34"},{"calendarId":6,"start":"2017-09-19T18:30:00","end":"2017-09-19T19:30:00","title":"613 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Walter Q. Gresham Elem. School 8524 S. Green St.","modifiedDate":"2017-06-27T08:43:48"},{"calendarId":11,"start":"2017-09-19T18:00:00","end":"2017-09-19T19:00:00","title":"Beat Meeting: 1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Homan Square Community Center 3559 W. Arthington ","modifiedDate":"2016-12-27T12:51:14"},{"calendarId":16,"start":"2017-09-19T13:00:00","end":"2017-09-19T14:00:00","title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Annie Ruiz (312)742-4521 CAPS016District@chicagopolice.org","location":"5151 N. Milwaukee","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":17,"start":"2017-09-19T11:00:00","end":"2017-09-19T12:00:00","title":"Senior Sub-Committee Meeting ","eventDetails":"The Senior Sub-Committee Meeting is a monthly meeting featuring activities and informative talks on seniors related topics. Contact CAPS for details.","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@Chicagopolice.org","location":"017th District Community Room 4650 N. Pulaski Rd","modifiedDate":"2017-07-26T11:25:07"},{"calendarId":18,"start":"2017-09-19T11:00:00","end":"2017-09-19T14:00:00","title":"Senior Lincoln Park Conservatory Field Trip","eventDetails":"Meet us at the Lincoln Park Conservatory for a fun filled day with our Seniors! Register with P.O. Ramirez","eventUrl":null,"contactDetails":"018th District Community Relations Officer-P.O. S. Ramirez","location":"2391 N. Stockton Lincoln Park Conservatory","modifiedDate":"2017-08-20T18:15:19"},{"calendarId":18,"start":"2017-09-18T11:30:00","end":"2017-09-19T13:00:00","title":"Senior Bingo","eventDetails":"Join us for Bingo and refreshments at Stamps Rhine Center for an afternoon of Bingo with our seniors.","eventUrl":null,"contactDetails":"018th District Community Relations Office P.O. Ramirez 312-742-5778","location":"Stamps Rhine Center 1327 N. Larrabee","modifiedDate":"2017-08-20T18:08:04"},{"calendarId":18,"start":"2017-09-17T07:00:00","end":"2017-09-17T14:00:00","title":"CPD Child Passenger Safety Seat Installations","eventDetails":"Child Safety Seat Installations by our certified technician P.O. Baker. By appointment only, Please call to register","eventUrl":null,"contactDetails":"P.O. Baker 312.742.5778","location":"018th District Parking Lot","modifiedDate":"2017-08-20T18:23:04"},{"calendarId":25,"start":"2017-09-16T13:00:00","end":"2017-09-16T15:00:00","title":"Youth Exploring","eventDetails":"Youth Exploring","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-15T10:19:52"},{"calendarId":6,"start":"2017-09-16T11:00:00","end":"2017-09-16T12:00:00","title":"Law Explorers Meeting ","eventDetails":"Gain leadership experience and and community service opportunities.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-29T14:27:56"},{"calendarId":18,"start":"2017-09-16T10:00:00","end":"2017-09-16T12:00:00","title":"Peer Jury","eventDetails":"Peer Jury-Open to Peer Jury Members Only ","eventUrl":null,"contactDetails":"018th District Community Relations P.O. M. Garcia","location":"018th District Community Room","modifiedDate":"2017-08-20T18:08:04"},{"calendarId":15,"start":"2017-09-15T17:00:00","end":"2017-09-15T20:00:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"(Austin Town Hall) 5610 W. Lake St. Chicago ,IL","modifiedDate":"2017-08-10T12:55:12"},{"calendarId":8,"start":"2017-09-14T19:00:00","end":"2017-09-14T20:00:00","title":"814 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Vittum Park Fieldhouse 5010 W. 50th St","modifiedDate":"2017-05-24T17:43:50"},{"calendarId":4,"start":"2017-09-14T19:00:00","end":"2017-09-14T20:00:00","title":"421 & 422 Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"2800 E. 79th St.","modifiedDate":"2017-06-24T10:21:04"},{"calendarId":20,"start":"2017-09-14T19:00:00","end":"2017-09-14T20:00:00","title":"2023 Beat Meeting","eventDetails":"2023 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Kenmore Plaza5225 N. Kenmore Ave.","modifiedDate":"2017-06-23T15:22:45"},{"calendarId":3,"start":"2017-09-14T19:00:00","end":"2017-09-14T20:00:00","title":"Beat Meeting 331 & 332","eventDetails":"Beat Meeting 331 & 332","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"ABJ Community Service Center 1818 E. 71st Street Chicago, IL. 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":12,"start":"2017-09-14T19:00:00","end":"2017-09-14T20:00:00","title":"1215 Beat Community Meeting","eventDetails":"1215 Beat Community Meeting- Goldblatts Building 1615 W Chicago","eventUrl":null,"contactDetails":"12th District Community Relations Office 312-746-8306","location":"1615 W Chicago","modifiedDate":"2017-08-22T17:38:03"},{"calendarId":14,"start":"2017-09-14T18:30:00","end":null,"title":"1413/1414 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Logan Square Library3030 W. Fullerton","modifiedDate":"2017-06-12T14:57:40"},{"calendarId":22,"start":"2017-09-14T18:30:00","end":null,"title":"Beat 2213 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Ridge Park\n9625 S. Longwood","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-09-14T18:30:00","end":"2017-09-14T19:30:00","title":"Community Beat Meeting-Bt. 724/725","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt.Fraction @312-747-6722","location":"Ogden Pk. 6500 s Racine","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":2,"start":"2017-09-14T18:30:00","end":"2017-09-14T19:30:00","title":"Beat Meeting for Beats 225-231-232","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-5109","location":"5627 S MICHIGAN AVE","modifiedDate":"2017-08-22T10:56:47"},{"calendarId":6,"start":"2017-09-14T18:30:00","end":"2017-09-14T19:30:00","title":"632 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Tuley Park Field House 501 E. 90th Place","modifiedDate":"2017-06-27T08:43:30"},{"calendarId":6,"start":"2017-09-14T18:30:00","end":"2017-09-14T19:30:00","title":"633 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Tuley Park Field House 501 E. 90th Place","modifiedDate":"2017-06-27T08:43:21"},{"calendarId":15,"start":"2017-09-14T18:30:00","end":"2017-09-14T19:30:00","title":"Beat 1513N caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5701 W. Madison ( 015th District)","modifiedDate":"2017-06-17T16:29:09"},{"calendarId":10,"start":"2017-09-14T18:00:00","end":"2017-09-14T19:00:00","title":"20 Sector Meeting","eventDetails":"20 Sector Meeting\n1021, 1022, 1023, 1024","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"10th District \nCommunity Room\n3315 W. Ogden Ave","modifiedDate":"2017-01-04T15:59:43"},{"calendarId":11,"start":"2017-09-14T18:00:00","end":"2017-09-14T19:00:00","title":"Beat Meeting: 1122/23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Legler Chicago Public Library 115 S. Pulaski ","modifiedDate":"2016-12-27T12:51:00"},{"calendarId":18,"start":"2017-09-14T18:00:00","end":"2017-09-14T19:00:00","title":"1811, 1812,& 1813 Beat Meeting","eventDetails":"Come out and meet your beat officer, discuss current crime trends and share ideas for problem solving in your community.","eventUrl":null,"contactDetails":"Community Relations Office- 312.742.5778","location":"St James Lutheran Church & School 2101 N. Fremont","modifiedDate":"2017-08-18T16:33:00"},{"calendarId":15,"start":"2017-09-14T17:00:00","end":"2017-09-14T20:00:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"(Hubbard Park) 4942-58 W.Hubbard St..Chicago,IL ","modifiedDate":"2017-08-10T12:55:24"},{"calendarId":18,"start":"2017-09-14T09:00:00","end":"2017-09-14T14:00:00","title":"Senior Fest 2017","eventDetails":"Come out and meet us at Millennium Park for a day of fun, picnic lunches, senior resource fairs, dancing and bingo!","eventUrl":null,"contactDetails":"P.O. S. Ramirez 312.742.5778","location":"Millennium Park- 201 E. Randolph","modifiedDate":"2017-08-18T16:38:00"},{"calendarId":10,"start":"2017-09-14T06:00:00","end":"2017-08-15T07:00:00","title":"20 Sector Community Beat Meeting ","eventDetails":"20 Sector Beats will come together to discuss community issues. ","eventUrl":null,"contactDetails":"CAPS Office Sgt. Lara 312-747-7190","location":"10th District 3315 W. Ogden Ave.","modifiedDate":"2017-08-10T10:35:39"},{"calendarId":8,"start":"2017-09-13T19:00:00","end":"2017-09-13T20:00:00","title":"812 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Symphorosa 6135 S. Austin","modifiedDate":"2017-05-24T17:44:07"},{"calendarId":4,"start":"2017-09-13T19:00:00","end":"2017-09-13T20:00:00","title":"411 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"1526 E. 84th St.","modifiedDate":"2017-06-24T10:21:31"},{"calendarId":17,"start":"2017-09-13T19:00:00","end":"2017-09-13T20:00:00","title":"Combined Beat Meeting 1732/1733","eventDetails":"This is a community meeting where residents meet with the police to address crime issues on the beat, develop strategies to solve problems, and disseminate crime prevention information. ","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@Chicagopolice.org","location":"Athletic Park Field House 3546 W. Addison","modifiedDate":"2017-07-26T11:25:35"},{"calendarId":7,"start":"2017-09-13T18:30:00","end":"2017-09-13T19:30:00","title":"Community Beat Meeting-Bt. 726","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt.Fraction @312-747-6722","location":"Lindblom Pk. 6054 s Damen","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":14,"start":"2017-09-13T18:30:00","end":null,"title":"1421 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Humboldt Park Library1605 N. Troy","modifiedDate":"2017-06-12T14:58:15"},{"calendarId":22,"start":"2017-09-13T18:30:00","end":null,"title":"Beat 2232/2233 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Fernwood Park\n10438 S. Wallace","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":2,"start":"2017-09-13T18:30:00","end":"2017-09-13T19:30:00","title":"Beat Meeting for Beats 213-215-224","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-5109","location":"4058 S MICHIGAN AVE","modifiedDate":"2017-08-22T10:56:58"},{"calendarId":15,"start":"2017-09-13T18:00:00","end":"2017-09-13T20:30:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"Moore Park 5085 W. Adams St. Chicago, IL","modifiedDate":"2017-08-10T12:55:49"},{"calendarId":12,"start":"2017-09-13T18:00:00","end":"2017-09-13T19:00:00","title":"1231 Beat Meeting","eventDetails":"1231 Beat Meeting at Academy Square 318 S. Throop","eventUrl":null,"contactDetails":"12th District Community Relations Office","location":"Academy Sq. 318 S. Throop","modifiedDate":"2017-08-22T17:38:03"},{"calendarId":11,"start":"2017-09-13T17:00:00","end":"2017-09-13T19:00:00","title":"Taking Our Park Back Initiative ","eventDetails":"Encouraging families to use and enjoy our parks. ","eventUrl":null,"contactDetails":"Alderman Jason C. Ervin 1.773.533.0900","location":"230 N. Kolmar Tilton Park ","modifiedDate":"2017-07-27T15:51:00"},{"calendarId":18,"start":"2017-09-13T15:30:00","end":"2017-09-13T16:30:00","title":"30 Sector Hospitality Meeting","eventDetails":"Business owners and stakeholders discuss problems and develop strategies to address issues and concerns related to businesses within the district.","eventUrl":null,"contactDetails":"P.O. G. Incaprera 312.742.5880 ext 1208","location":"169 W. Kinzie-- HighLine","modifiedDate":"2017-08-18T16:28:00"},{"calendarId":22,"start":"2017-09-13T13:30:00","end":null,"title":"Court Adocacy ","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T10:27:38"},{"calendarId":14,"start":"2017-09-13T13:30:00","end":null,"title":"Domestic Violence Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:33:29"},{"calendarId":6,"start":"2017-09-13T11:00:00","end":"2017-09-13T12:00:00","title":"Senior Subcommittee meeting","eventDetails":"Meet with seniors on crime tip prevention and plan fun filled events.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-29T14:28:05"},{"calendarId":20,"start":"2017-09-13T10:00:00","end":"2017-09-13T11:00:00","title":"Seniors Meeting","eventDetails":"Seniors Meeting, a monthly meeting featuring activities and informative talks on seniors related topics. Contact CAPS for details.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District Community Room 5400 N. Lincoln ave ","modifiedDate":"2017-06-23T14:12:35"},{"calendarId":18,"start":"2017-09-13T10:00:00","end":"2017-09-13T17:00:00","title":"Child Passenger Safety Seat Installations","eventDetails":"Child Car Seat Installations by Certified Technician P.O. T. Baker by appointment only. 312.742.5778","eventUrl":null,"contactDetails":"P.O. T. Baker 312.742.5778","location":"1160 N. Larrabee- 018th District Parking Lot ","modifiedDate":"2017-08-18T16:28:00"},{"calendarId":24,"start":"2017-09-12T19:00:00","end":null,"title":"2432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District 6464 N. Clark","modifiedDate":"2016-12-07T10:10:38"},{"calendarId":4,"start":"2017-09-12T19:00:00","end":"2017-09-12T20:00:00","title":"423 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"8930 S. Muskegon Ave","modifiedDate":"2017-06-24T09:39:06"},{"calendarId":8,"start":"2017-09-12T19:00:00","end":"2017-09-12T20:00:00","title":"831/832 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Marquette Park 6734 S. Kedzie","modifiedDate":"2017-05-24T17:44:29"},{"calendarId":22,"start":"2017-09-12T19:00:00","end":null,"title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Robichaux Park\n403 W. 93rd St","modifiedDate":"2016-12-28T10:30:51"},{"calendarId":16,"start":"2017-09-12T19:00:00","end":"2017-09-12T20:00:00","title":"1613 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Oriole Park 5430 N. Olcott","modifiedDate":"2017-02-21T14:47:11"},{"calendarId":17,"start":"2017-09-12T19:00:00","end":"2017-09-12T20:00:00","title":"Beat Meeting 1731","eventDetails":"This is a community meeting where residents meet with the police to address crime issues on the beat, develop strategies to solve problems, and disseminate crime prevention information. ","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@chicagopolice.org","location":"Kilbourn Park 3501 N. Kilbourn","modifiedDate":"2017-07-26T11:26:02"},{"calendarId":11,"start":"2017-09-12T18:30:00","end":"2017-09-12T19:30:00","title":"Beat Meeting: 1124/25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"JLM Abundant Life Center 2622 W. Jackson","modifiedDate":"2016-12-27T12:51:32"},{"calendarId":19,"start":"2017-09-12T18:30:00","end":"2017-09-12T19:30:00","title":"Beat 1933","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"Illinois Masonic836 W. Wellington","modifiedDate":"2017-06-29T15:02:54"},{"calendarId":7,"start":"2017-09-12T18:30:00","end":"2017-09-12T19:30:00","title":"Community Beat Meeting-Bt. 722/723","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt.Fraction @312-747-6722","location":"Kennedy-King College 740 w 63rd st","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":2,"start":"2017-09-12T18:30:00","end":"2017-09-12T19:30:00","title":"Beat Meeting for Beat 222","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"Caps office 312-747-5109","location":"4434 S LAKE PARK","modifiedDate":"2017-08-22T10:57:20"},{"calendarId":6,"start":"2017-09-12T18:30:00","end":"2017-09-12T19:30:00","title":"612 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Southside Tabernacle Church 7724 S. Racine","modifiedDate":"2017-06-27T08:42:59"},{"calendarId":15,"start":"2017-09-12T18:30:00","end":"2017-09-12T19:30:00","title":"Beat 1511/24 Caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5900 W.Iowa ( Hope Community Church)","modifiedDate":"2017-06-17T16:29:15"},{"calendarId":18,"start":"2017-09-12T18:30:00","end":"2017-09-12T19:30:00","title":"1821, 1822, 1823 Beat Meeting","eventDetails":"Please note the time change for our 20 sector beat meeting this month.Come out and meet your beat officer, discuss current crime trends and share ideas for problem solving in your community. ","eventUrl":null,"contactDetails":"018th District Community Relations Office","location":"018th Dist Community Room","modifiedDate":"2017-08-20T18:33:49"},{"calendarId":12,"start":"2017-09-12T18:00:00","end":"2017-09-12T19:00:00","title":"1233 Community Meeting","eventDetails":"1233 Community Meeting- 12th District 1412 S Blue Island","eventUrl":null,"contactDetails":"12th District Community relations Office 312-746-8306","location":"12th District 1412 S. Blue Island","modifiedDate":"2017-08-16T11:03:02"},{"calendarId":18,"start":"2017-09-12T17:30:00","end":"2017-09-12T18:30:00","title":"District Advisory Committee","eventDetails":"District Advisory Committee Members","eventUrl":null,"contactDetails":"018th District Community Relations ","location":"018th District Community Room ","modifiedDate":"2017-07-25T12:18:00"},{"calendarId":17,"start":"2017-09-12T17:00:00","end":"2017-09-12T18:30:00","title":"Workshop for Landlords & Property Managers","eventDetails":"A large part of 17th District community is filled with condo/apartment buildings. Our goal is to teach managers and property owners how to work with the police to improve the safety surrounding their properties. ","eventUrl":null,"contactDetails":"William Townsell 312-745-5900 Ext 85131 (william.townsell@chicagopolice.org)","location":"017th District Community Room 4650 N. Pulaski Rd","modifiedDate":"2017-08-13T12:50:04"},{"calendarId":22,"start":"2017-09-12T10:00:00","end":null,"title":"Clergy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T10:26:51"},{"calendarId":6,"start":"2017-09-12T10:00:00","end":"2017-09-12T11:00:00","title":"Business Subcommittee Meeting","eventDetails":"Meet with local businesses as we plan future events to foster a safe community.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-29T14:28:16"},{"calendarId":19,"start":"2017-09-11T19:00:00","end":"2017-09-11T20:00:00","title":"Beat 1932","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"New Life Church1110 W. Lill","modifiedDate":"2017-06-29T15:03:06"},{"calendarId":2,"start":"2017-09-11T18:30:00","end":"2017-09-11T19:30:00","title":"Beat Meeting for Beat 211","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"3240 S INDIANA AVE","modifiedDate":"2017-08-18T14:51:47"},{"calendarId":15,"start":"2017-09-11T15:00:00","end":"2017-09-11T16:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic violence Subcommittee Meeting/Subcommittee Members discuss and plan upcoming events for Domestic Violence Victims and Promote Awareness.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5701 W. Madison ( 015th District)","modifiedDate":"2017-06-17T16:29:20"},{"calendarId":18,"start":"2017-09-10T07:00:00","end":"2017-09-10T14:00:00","title":"CPD Child Passenger Safety Seat Installations","eventDetails":"Child passenger safety seat installations by certified technician P.O. Baker by appointment only 312.742.5778","eventUrl":null,"contactDetails":"Community Relations Office P.O. T. Baker 312.742.5778","location":"018th District Parking Lot 1160 N. Larrabee","modifiedDate":"2017-08-18T16:18:00"},{"calendarId":19,"start":"2017-09-09T13:00:00","end":"2017-09-09T16:00:00","title":"MENTAL HEALTH SERVICE FAIR","eventDetails":"Mental Health Fair is open to the community and will include local service providers and hospital resources. ","eventUrl":null,"contactDetails":"19th District Mental Health Resource Officer Kate Sanchez 312-744-4155","location":"Truman College 4530 N. Racine","modifiedDate":"2017-08-23T18:28:46"},{"calendarId":14,"start":"2017-09-09T10:00:00","end":null,"title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:33:35"},{"calendarId":17,"start":"2017-09-09T10:00:00","end":"2017-09-09T11:00:00","title":"Women Self Defence Class","eventDetails":"Another great oppurtunity for women to learn basic self defence.Our primary goal is to teach women awareness and prevention of violent attacks. The class will be held at Eugine Field Park, dress comfortably. ","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 (CAPS.017district@chicagopolice.org)","location":"5100 N. Ridgeway ave Chicago IL 60625","modifiedDate":"2017-08-13T12:50:44"},{"calendarId":15,"start":"2017-09-08T17:00:00","end":"2017-09-08T20:00:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"(Austin Town Hall) 5610 W. Lake St. Chicago ,IL","modifiedDate":"2017-08-10T12:56:02"},{"calendarId":18,"start":"2017-09-08T14:00:00","end":"2017-09-08T18:00:00","title":"Buy Buy Baby/CPD Child Passsenger Safety Seat Event","eventDetails":"Car Seat Safety Awareness Month- Car Seat Safety Event with Installations by certified technicians and demonstrations. ","eventUrl":null,"contactDetails":"P.O. T. Baker 312.742.5778","location":"Buy Buy Baby 1419 N. Kingsbury","modifiedDate":"2017-08-18T16:13:00"},{"calendarId":4,"start":"2017-09-07T19:00:00","end":"2017-09-07T20:00:00","title":"431 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"2255 E. 103rd St.","modifiedDate":"2017-06-24T09:38:17"},{"calendarId":8,"start":"2017-09-07T19:00:00","end":"2017-09-07T20:00:00","title":"834 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Bogan High School 3939 W. 79th St","modifiedDate":"2017-05-24T17:44:54"},{"calendarId":24,"start":"2017-09-07T19:00:00","end":null,"title":"District Advisory Council Meeting","eventDetails":"Not open to the public","eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District","modifiedDate":"2016-12-07T10:08:03"},{"calendarId":3,"start":"2017-09-07T19:00:00","end":"2017-09-07T20:00:00","title":"Beat Meeting 313 & 314","eventDetails":"Beat Meeting 313 & 314","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Harris Park Recreation Center 6200 S. Drexel\r\nChicago, IL. 60637","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":16,"start":"2017-09-07T19:00:00","end":"2017-09-07T20:00:00","title":"1631 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"St. Francis Borgia Stokes Center 8025 W. Addison","modifiedDate":"2017-04-18T13:20:54"},{"calendarId":25,"start":"2017-09-07T18:30:00","end":"2017-09-07T19:30:00","title":"2511 Beat Meeting","eventDetails":"2511 Beat Meeting","eventUrl":null,"contactDetails":"P.O. Rodriguez A.\n312/746-5090","location":"Bethesda Home\n2833 N. Nordica","modifiedDate":"2016-12-30T13:15:28"},{"calendarId":15,"start":"2017-09-07T18:30:00","end":"2017-09-07T19:30:00","title":"Beat 1512/23 Caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5425 W. Lake ST ( PCC Wellness Center)","modifiedDate":"2017-06-17T16:29:26"},{"calendarId":6,"start":"2017-09-07T18:30:00","end":"2017-09-07T19:30:00","title":"631 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Chatham Fields Lutheran Church 8050 S. St Lawrence","modifiedDate":"2017-06-27T08:42:22"},{"calendarId":11,"start":"2017-09-07T18:00:00","end":"2017-09-07T19:00:00","title":"Beat Meeting: 1112/21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2016-12-27T12:50:09"},{"calendarId":18,"start":"2017-09-07T18:00:00","end":"2017-09-07T19:00:00","title":"1831, 1832 & 1833 Beat Meeing","eventDetails":"Come out meet your beat officer, discuss current trends and share ideas for problem solving in your community.","eventUrl":null,"contactDetails":"Community Relations Office 312.742.5778","location":"Access Living 115 W. Chicago Ave.","modifiedDate":"2017-08-18T16:03:02"},{"calendarId":14,"start":"2017-09-07T17:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:33:42"},{"calendarId":15,"start":"2017-09-07T17:00:00","end":"2017-08-07T20:00:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"(Hubbard Park) 4942-58 W.Hubbard St..Chicago,IL ","modifiedDate":"2017-08-10T12:57:48"},{"calendarId":22,"start":"2017-09-07T14:00:00","end":null,"title":"Diversity and Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T10:27:27"},{"calendarId":2,"start":"2017-09-07T13:00:00","end":"2017-09-07T15:00:00","title":"Faith Base Meeting ","eventDetails":"Mt. Eagle MB Church \nElder Osmond Hooks Sr.","eventUrl":null,"contactDetails":"Officer Denise Gathings \n312-747-5109","location":"4559 S. St Lawrence ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":3,"start":"2017-09-07T13:00:00","end":"2017-09-07T14:00:00","title":"District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312)747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":10,"start":"2017-09-07T12:00:00","end":"2017-09-07T13:30:00","title":"Senior Event","eventDetails":"Cook County Elder Justice Center : Bankruptcy: The Decision and Consequences","eventUrl":null,"contactDetails":"Ernestine Durham","location":"50 W. Washington, Daley Center","modifiedDate":"2017-08-17T15:26:42"},{"calendarId":8,"start":"2017-09-06T19:00:00","end":"2017-09-06T20:00:00","title":"815/821 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Bruno's 4839 S Harding","modifiedDate":"2017-05-24T17:45:16"},{"calendarId":3,"start":"2017-09-06T19:00:00","end":"2017-09-06T20:00:00","title":"Beat Meeting 311 & 312","eventDetails":"Beat Meeting 311 & 312","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Bessie Coleman Library\r\n731 E. 63RD Street\r\nChicago, IL. 60637","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":16,"start":"2017-09-06T19:00:00","end":"2017-09-06T20:00:00","title":"1621 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"First Church Of Forest Glen 5400 N. Lawler","modifiedDate":"2017-02-22T10:15:21"},{"calendarId":12,"start":"2017-09-06T19:00:00","end":"2017-09-06T20:00:00","title":"1221 Community Meeting","eventDetails":"1221 Community Meeting- Smith Park 2526 W Grand","eventUrl":null,"contactDetails":"12th District Community relations Office 312-746-8306","location":"Smith Park- 2526 W Grand","modifiedDate":"2017-08-16T10:58:00"},{"calendarId":14,"start":"2017-09-06T18:30:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:33:49"},{"calendarId":6,"start":"2017-09-06T18:30:00","end":"2017-09-06T19:30:00","title":"621 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"006 District Police Station 7808 S. Halsted","modifiedDate":"2017-06-27T08:41:53"},{"calendarId":6,"start":"2017-09-06T18:30:00","end":"2017-09-06T19:30:00","title":"622 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"006 District Police Station 7808 S. Halsted","modifiedDate":"2017-06-27T08:41:26"},{"calendarId":14,"start":"2017-09-06T18:00:00","end":null,"title":"Beat Facilitator Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:33:57"},{"calendarId":4,"start":"2017-09-06T18:00:00","end":"2017-09-06T20:00:00","title":"412 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"8455 S. Stony Island Ave","modifiedDate":"2017-06-24T09:37:27"},{"calendarId":10,"start":"2017-09-06T18:00:00","end":"2017-09-06T19:00:00","title":"10 Sector Meeting","eventDetails":"10 Sector Meeting\n1011, 1012, 1013, 1014","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"10th District\nCommunity Room\n3315 W. Ogden Ave","modifiedDate":"2017-01-04T16:05:38"},{"calendarId":15,"start":"2017-09-06T18:00:00","end":"2017-09-06T20:30:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"Moore Park 5085 W. Adams St. Chicago, IL","modifiedDate":"2017-08-10T12:58:53"},{"calendarId":15,"start":"2017-09-06T18:00:00","end":"2017-09-06T19:00:00","title":"Beat 1522/33 Caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"645 S. Central (Loretto Hospital)","modifiedDate":"2017-06-17T16:30:51"},{"calendarId":11,"start":"2017-09-06T17:00:00","end":"2017-09-06T19:00:00","title":"Taking Our Park Back Initiative ","eventDetails":"Encouraging families to use and enjoy our parks. ","eventUrl":null,"contactDetails":"Alderman Jason C. Ervin 1.773.533.0900","location":"4712 W. Ohio ","modifiedDate":"2017-07-27T15:50:44"},{"calendarId":8,"start":"2017-09-06T16:00:00","end":"2017-09-06T17:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":"Members get together to discuss stratgies on how to get information and awareness to domestic violence issues","eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"3843 W. 63rd Street","modifiedDate":"2017-08-17T12:37:13"},{"calendarId":18,"start":"2017-09-06T15:00:00","end":"2017-09-06T16:00:00","title":"20 Sector Hospitality Meeting","eventDetails":"Business owners and stakeholders discuss problems and develop strategies to address issues and concern related to businesses within the district. ","eventUrl":null,"contactDetails":"P.O. G. Incaprera 312.742.5880 Ext. 1208","location":"16 W. Division She-Nanigans","modifiedDate":"2017-08-18T15:58:00"},{"calendarId":3,"start":"2017-09-06T14:00:00","end":"2017-09-06T15:00:00","title":"Court Advocate Meeting","eventDetails":"003rd District Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-09-06T10:00:00","end":"2017-09-06T11:00:00","title":"Domectic Violence Meeting","eventDetails":"Domestic Violence","eventUrl":null,"contactDetails":"P.O. Rodriguez A.\n312/746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-30T13:48:15"},{"calendarId":18,"start":"2017-09-06T10:00:00","end":"2017-09-06T17:00:00","title":" Child Passenger Safety Seat Installation","eventDetails":"Child Car Seat Installations by Certified Technician P.O. Baker by appointment only 312.742.5778","eventUrl":null,"contactDetails":"Community Relations Office-P.O.Thomas Baker 312.742.5778","location":"018th District Parking Lot 1160 N. Larrabee","modifiedDate":"2017-08-18T15:43:00"},{"calendarId":10,"start":"2017-09-06T06:00:00","end":"2017-08-16T07:00:00","title":"10 Sector Community Meeting ","eventDetails":"10 Sector Beats will have a community meeting in the 10th District Community room to discuss the community events.","eventUrl":null,"contactDetails":"CAPS Office Sgt. Lara 312-747-7190","location":"10th District 3315 W. Ogden Ave.","modifiedDate":"2017-08-10T10:38:04"},{"calendarId":4,"start":"2017-09-05T19:00:00","end":"2017-09-05T20:00:00","title":"432 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"10155 Ewing Ave","modifiedDate":"2017-06-24T09:33:35"},{"calendarId":22,"start":"2017-09-05T19:00:00","end":null,"title":"Beat 2221 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Christ The King Church\n9225 S. Hamilton","modifiedDate":"2016-12-28T10:31:10"},{"calendarId":12,"start":"2017-09-05T19:00:00","end":"2017-09-05T19:00:00","title":"1225 Community Meeting","eventDetails":"1225 Community Meeting-Chicago Hope Academy-2108 W Ogden","eventUrl":null,"contactDetails":"12th District Community relations Office 312-746-8306","location":"Chicago Hope Academy 2108 W Ogden","modifiedDate":"2017-08-16T10:58:00"},{"calendarId":11,"start":"2017-09-05T18:30:00","end":"2017-09-05T19:30:00","title":"Beat Meeting: 1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Brian Piccolo School 1041 N. Keeler ","modifiedDate":"2016-12-27T12:49:54"},{"calendarId":19,"start":"2017-09-05T18:30:00","end":"2017-09-05T19:30:00","title":"Beat 1913","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"Courtenay School4420 N. Beacon","modifiedDate":"2017-06-29T15:03:18"},{"calendarId":25,"start":"2017-09-05T18:30:00","end":"2017-09-05T19:30:00","title":"2535 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2535's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"Maternity BVM Church3647 W. North Ave.","modifiedDate":"2017-06-26T13:52:29"},{"calendarId":25,"start":"2017-09-05T18:30:00","end":"2017-09-05T19:30:00","title":"2521 Beat Meeting","eventDetails":"2521 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Senior Suites\n2715 N. Cicero","modifiedDate":"2016-12-30T13:29:45"},{"calendarId":2,"start":"2017-09-05T18:30:00","end":"2017-09-05T19:30:00","title":"Beat Meeting for Beats 212/214","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"Caps office 312-747-5109","location":"3858 S COTTAGE GROVE","modifiedDate":"2017-08-22T11:03:10"},{"calendarId":6,"start":"2017-09-05T18:30:00","end":"2017-09-05T19:30:00","title":"611 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"2nd Mt. Vernon Annex Church 2101 W. 79th St.","modifiedDate":"2017-06-27T08:39:19"},{"calendarId":15,"start":"2017-09-05T18:30:00","end":"2017-09-05T19:30:00","title":"Beat 1531/32 Caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"4856 W. CHICAGO AVE (WEST BRANCH LIBRARY)","modifiedDate":"2017-06-17T16:30:35"},{"calendarId":18,"start":"2017-09-05T18:00:00","end":"2017-09-05T19:00:00","title":"1814, 1824, 1834 Beat Meeting ","eventDetails":"Please come out and meet your beat officer and discuss current crime trends and share ideas for problem solving in your community.","eventUrl":null,"contactDetails":"018th District Community Relations Office 312.742.5778","location":"59 W. North Avenue- Latin Upper School","modifiedDate":"2017-08-17T19:28:05"},{"calendarId":8,"start":"2017-09-05T17:00:00","end":"2017-09-05T18:00:00","title":"822/824 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Hernandez Middle School at 3510 W. 55th St.","modifiedDate":"2017-05-24T17:45:35"},{"calendarId":25,"start":"2017-09-05T14:00:00","end":"2017-09-05T15:00:00","title":"Court Advocacy","eventDetails":"Court Advocacy","eventUrl":null,"contactDetails":"312-746-5090","location":"25th District Station\n5555 W. Grand Ave.\n","modifiedDate":"2016-12-15T10:13:40"},{"calendarId":18,"start":"2017-09-05T09:00:00","end":"2017-09-05T12:00:00","title":"Senior Shedd Aquarium Field Trip","eventDetails":"Come out and Join the 018th District Community Relations Office and Seniors from the community for a Fun day at the Shedd Aquarium!","eventUrl":null,"contactDetails":"P.O. Ramirez 312.742.5778","location":"1200 N. Lake Shore Drive","modifiedDate":"2017-08-17T19:28:05"},{"calendarId":17,"start":"2017-09-03T10:00:00","end":"2017-09-03T12:00:00","title":"Senior Bingo Event at the Bites, Bike and Brew Fest","eventDetails":"Come out and join us! The 17th District CAPS office is hosting a Bingo Event for Seniors. Please call the CAPS office for details. ","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 (CAPS.017district@chicagopolice.org)","location":"4800 N. Kostner ave.","modifiedDate":"2017-08-15T12:45:44"},{"calendarId":6,"start":"2017-09-03T10:00:00","end":"2017-08-13T14:00:00","title":"6th Annual, 006th District CAPS / Free Back to School Hair Cut","eventDetails":"Free Back to School Hair Cuts, 17 years of age and Older must show school I.D. or be accompanied by a guardian.","eventUrl":null,"contactDetails":"For more information contact the 6th District CAPS Office at 312-745-3641","location":"006th District Communtiy Room, 7808 S. Halsted Street","modifiedDate":"2017-08-22T10:38:01"},{"calendarId":18,"start":"2017-09-03T07:00:00","end":"2017-09-03T14:00:00","title":"Child Passenger Safety Seat Installations","eventDetails":"Safety Seat Installations will be performed by our certified technician/P.O. Baker in the 018th District parking lot from 10-3pm by appointment only ","eventUrl":null,"contactDetails":"P.O. Thomas Baker 312.742.5778","location":"018th District Parking Lot 1160 N. Larrabee","modifiedDate":"2017-08-20T18:27:59"},{"calendarId":3,"start":"2017-09-02T11:00:00","end":"2017-09-02T13:00:00","title":"Youth/Explorers Meeting","eventDetails":"Youth/Explorers Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"003rd District(Auditorium) 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":6,"start":"2017-09-02T11:00:00","end":"2017-09-02T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-29T14:28:27"},{"calendarId":8,"start":"2017-09-02T10:00:00","end":"2017-09-02T12:00:00","title":"Faith in Action Peace Walk","eventDetails":"St Gall and other churches in area to have youth/young adults and residents to walk for peace on the streets of Gage Park. Will start at Montefalco Church and walk to St Gall Parish 5500 S Kedzie with resource fair in parking lot of St Gall beginning at 11:00 a.m.","eventUrl":null,"contactDetails":"Warrior of Peace 773-990-0590","location":"5443 S Washtenaw ","modifiedDate":"2017-08-17T12:37:47"},{"calendarId":25,"start":"2017-09-02T08:30:00","end":"2017-09-02T11:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-30T13:21:20"},{"calendarId":15,"start":"2017-09-01T17:00:00","end":"2017-09-01T20:00:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"(Austin Town Hall) 5610 W. Lake St. Chicago ,IL","modifiedDate":"2017-08-10T12:59:06"},{"calendarId":3,"start":"2017-08-31T19:00:00","end":"2017-08-31T20:00:00","title":"30 Sector Beat Meeting (331, 332, 333 & 334)","eventDetails":"30 Sector Beat Meeting ( 331, 332, 333 & 334","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312)747-7004\n","location":"ABJ Community Service Center\r\n1818 E. 71st ST.\r\nChicago, IL. 60649\r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":15,"start":"2017-08-31T18:00:00","end":"2017-08-31T20:00:00","title":"Austin Police Youth Baseball League Awards Ceremony","eventDetails":"Awards Ceremony for the Austin Police Youth Baseball League","eventUrl":null,"contactDetails":"015th District Caps Office (312) 743-1495","location":"(Columbus Park) 501 S Central","modifiedDate":"2017-08-10T16:54:02"},{"calendarId":15,"start":"2017-08-31T17:00:00","end":"2017-08-31T20:00:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"(Hubbard Park) 4942-58 W.Hubbard St..Chicago,IL ","modifiedDate":"2017-08-10T12:59:16"},{"calendarId":15,"start":"2017-08-30T18:00:00","end":"2017-08-30T20:30:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"Moore Park 5085 W. Adams St. Chicago, IL","modifiedDate":"2017-08-10T12:59:43"},{"calendarId":5,"start":"2017-08-30T13:00:00","end":"2017-08-30T15:00:00","title":"Kick Back Wednesday Youth Event","eventDetails":"A pop-up play event sponosored by the Department to provide fun and healthy activities for young people and an opportunity for positive interaction between police, young people and other neighborhoord residents","eventUrl":null,"contactDetails":"Margie Reid, 5th District Community Organizer, 312-747-3100","location":"Golden Gates, 13000 S. Eberhart","modifiedDate":"2017-06-27T13:28:01"},{"calendarId":18,"start":"2017-08-29T11:30:00","end":"2017-08-29T13:00:00","title":"Senior Bingo","eventDetails":"Come out and join us for Summer Senior Bingo at Stamps Rhine Center!","eventUrl":null,"contactDetails":"P.O. Ramirez, S. 312.742.5778","location":"Stamps Rhine Center 1327 N. Larrabee","modifiedDate":"2017-07-14T13:23:00"},{"calendarId":11,"start":"2017-08-29T10:30:00","end":"2017-08-29T12:30:00","title":"Internet Safety & Cyberbullying Presentation ","eventDetails":"SGA Youth and Family Services and The 011th District Police Caps Unit invite you to attend a free Internet Safety & Cyberbullying Presentation. Speaker ASA Angelica G. Johnson","eventUrl":null,"contactDetails":"Pauline Dengler Cmty Liaison 1.312.325.9701","location":"Garfield Center 10 S. Kedzie ","modifiedDate":"2017-08-21T14:23:00"},{"calendarId":11,"start":"2017-08-29T10:00:00","end":"2017-08-29T14:00:00","title":"Let's Take Back Our Madison Corridor","eventDetails":"011th Dist. CAPS Assist. State's Attorney's office,Alderman's Office,Garfield Chamber of Commerce assemble at 10Am Madison/Keeler., End with food at Madison/Keeler.","eventUrl":null,"contactDetails":"011th Dist CAPS 312-746-9841","location":"3800-4200 W. Madison","modifiedDate":"2017-08-17T17:26:34"},{"calendarId":11,"start":"2017-08-29T10:00:00","end":null,"title":"Let's Take Back Our Madison Corridor","eventDetails":"Assemble at 10 am Madison/Hamlin End with food at Madison/Keeler. ASA Attirney's Office, Alderman's Office, Garfield Park Chamber of Commerce. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"3800-4200 W. Madison ","modifiedDate":"2017-08-23T08:58:01"},{"calendarId":15,"start":"2017-08-29T10:00:00","end":"2017-08-29T14:00:00","title":"Shredding Event","eventDetails":"Bring all unwanted papers and documents and other related items that needs to shredded.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station, 5701 W. Madison","modifiedDate":"2017-08-10T13:00:02"},{"calendarId":15,"start":"2017-08-28T14:00:00","end":"2017-08-28T17:00:00","title":"2nd Annual Austin Unites Back To School Celebration","eventDetails":"Celebrating Back to School by offering school supplies, haircuts, immunizations/dental exams and much more","eventUrl":null,"contactDetails":"CAPS Office, 312-743-1495","location":"15th Distriict Station Parking Lot, 5701 W. Madison","modifiedDate":"2017-08-10T13:00:35"},{"calendarId":4,"start":"2017-08-28T10:00:00","end":"2017-08-28T13:00:00","title":"Play Streets","eventDetails":"PlayStreets Chicago encourages neighborhood organizations and residents to join their neighbors in getting active and moving.","eventUrl":null,"contactDetails":"Olivia Hernandez 773 731-0109","location":"2944 E. 88th Street ","modifiedDate":"2017-07-06T09:53:01"},{"calendarId":9,"start":"2017-08-27T16:00:00","end":"2017-08-27T18:00:00","title":"Shakespeare in the Park","eventDetails":"Come watch Romeo and Juliet at Ping Tom Park","eventUrl":null,"contactDetails":"009th District CAPS - 312-747-3501","location":"Ping Tom Park - 1700 S. Wentworth","modifiedDate":"2017-07-13T09:47:59"},{"calendarId":11,"start":"2017-08-27T15:30:00","end":"2017-08-27T18:30:00","title":"Back To School Rally Christian Faith M.B.C. ","eventDetails":"Back To School Rally Food Prizes Music Games","eventUrl":null,"contactDetails":"Rev. Morris Purnell Jr. 1.815.575.7316","location":"4656 W. Superior ","modifiedDate":"2017-08-21T14:18:00"},{"calendarId":11,"start":"2017-08-27T14:30:00","end":"2017-08-27T15:30:00","title":"Old St. Paul M.B. Church Peace march ","eventDetails":"Reverend Jakes from Old St. Paul M.B. Church will lead a Peace march 1.773.531.2031","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"3151 W. Harrison to 531 N. Kedzie","modifiedDate":"2017-08-21T14:18:00"},{"calendarId":11,"start":"2017-08-27T14:00:00","end":"2017-08-27T17:30:00","title":"Jensen School Back To School Community Outreach","eventDetails":"Food Fun Games and More","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"3030 W. Harrison","modifiedDate":"2017-06-29T10:43:00"},{"calendarId":15,"start":"2017-08-26T17:30:00","end":"2017-08-26T19:00:00","title":"Marching for a Better Westside of Chicago","eventDetails":"March for Peace sponsored by State Representative Lashawn Ford.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Central and Corcoran Pl","modifiedDate":"2017-08-10T13:02:02"},{"calendarId":11,"start":"2017-08-26T15:30:00","end":"2017-08-26T17:00:00","title":"God Over Violence Peace Rally","eventDetails":"Food, Games, Basketball Tournament, Live Concert & much more.","eventUrl":null,"contactDetails":"Jeremiah Brownlee 773-606-0006","location":"3601 W. Chicago Ave.","modifiedDate":"2017-08-16T14:57:58"},{"calendarId":7,"start":"2017-08-26T12:00:00","end":"2017-08-26T15:00:00","title":"7th District Back to School Event","eventDetails":"Free: haircuts, school supplies, giveaways and food. Enjoy music, information and resources","eventUrl":null,"contactDetails":"CAPS Office: 312-747-6722","location":"1463 W 63rd Street NW Parking Lot","modifiedDate":"2017-08-11T16:23:01"},{"calendarId":10,"start":"2017-08-26T10:00:00","end":"2017-08-26T16:00:00","title":"10th District Explorers Car Wash","eventDetails":"Annual 10th District Car Wash. All proceeds will go to sponsor the 10th District Explorers trip to Six Flags Fright Fest. ","eventUrl":null,"contactDetails":"10th District CAPS office","location":"3315 West Ogden","modifiedDate":"2017-08-10T10:38:45"},{"calendarId":11,"start":"2017-08-26T09:30:00","end":"2017-08-26T14:00:00","title":"28th Ward Back To School Parade ","eventDetails":"Free Give Aways / Back To School Items and Much More","eventUrl":null,"contactDetails":"28th Ward 1.773.533.0900","location":"Marshall High School 3250 W. Adams","modifiedDate":"2017-08-04T11:14:04"},{"calendarId":11,"start":"2017-08-25T17:00:00","end":"2017-08-25T22:00:00","title":"Light In The Night Event West Garfield Park Green & Clean ","eventDetails":null,"eventUrl":null,"contactDetails":"West Garfield Park Cmty Stakeholders 1.773.287.5821","location":"Kostner & Congress","modifiedDate":"2017-08-04T11:28:00"},{"calendarId":11,"start":"2017-08-25T17:00:00","end":"2017-08-25T22:00:00","title":"Community Pride Night West Garfield Park Cmty Stakeholders","eventDetails":null,"eventUrl":null,"contactDetails":"West Garfield Park Cmty Stakeholders 773.287.5821","location":"3854 W. Van Buren Vacant lot ","modifiedDate":"2017-08-21T14:28:00"},{"calendarId":15,"start":"2017-08-25T17:00:00","end":"2017-08-25T20:00:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"(Austin Town Hall) 5610 W. Lake St. Chicago ,IL","modifiedDate":"2017-08-10T13:02:35"},{"calendarId":11,"start":"2017-08-25T13:00:00","end":"2017-08-25T16:00:00","title":"City Gardens Back To School Bash","eventDetails":"\"Food Games Music\" Raffle Give away given every hour of the event ","eventUrl":null,"contactDetails":"Gloria Williams 1.312.492.6645","location":"2540 W. Jackson Park 574","modifiedDate":"2017-08-23T09:13:01"},{"calendarId":2,"start":"2017-08-25T12:00:00","end":"2017-08-22T02:00:00","title":"Random Act of Kindness","eventDetails":"CAPS officer are going to various location in the 002nd district. To distribute book bags containing school supplies to residents within the district.","eventUrl":null,"contactDetails":"Sgt. Campbell 312 745-4119","location":"Various location in the 002nd District","modifiedDate":"2017-08-22T14:33:01"},{"calendarId":7,"start":"2017-08-25T09:30:00","end":"2017-08-25T14:30:00","title":"Chicago Cares Volunteer event","eventDetails":"Vacant lot clean up with Team Englewood","eventUrl":null,"contactDetails":"312.780.0800 or email: info@chicagocares.org","location":"815 W. 63rd st.","modifiedDate":"2017-08-08T19:18:37"},{"calendarId":16,"start":"2017-08-24T19:00:00","end":"2017-08-24T20:00:00","title":"1634 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"St. Bartholomew 4910 W. Addison","modifiedDate":"2017-02-22T10:25:38"},{"calendarId":25,"start":"2017-08-24T18:30:00","end":"2017-08-24T19:30:00","title":"2514 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2514's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"St. Ferdinand's3115 N. Mason","modifiedDate":"2017-06-26T13:37:03"},{"calendarId":7,"start":"2017-08-24T18:30:00","end":"2017-08-24T19:30:00","title":"Community Meeting - Beat 712","eventDetails":"Come meet with police officers working in your neighborhood to discuss crime and disorder issues and strategies to address those issues.","eventUrl":null,"contactDetails":"P.O. Heins or Sgt. Redrick 312-747-6722","location":"Sherwood Park, 5701 S. Shields","modifiedDate":"2017-07-26T19:19:21"},{"calendarId":11,"start":"2017-08-24T18:00:00","end":"2017-08-24T19:00:00","title":"Beat Meeting: 1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Eloise McCoy Village Apt. 4650 W. Van Buren","modifiedDate":"2016-12-27T12:48:14"},{"calendarId":22,"start":"2017-08-24T18:00:00","end":"2017-08-08T20:30:00","title":"Neighborhood Watch-Digital Age","eventDetails":"Learn how to be an active parnter in preventing/reducing crime, utilize OEMC's private camera initiative & digital ways to stay informed.","eventUrl":null,"contactDetails":"PO Beamon 312-745-0620","location":"Beverly Arts, 2407 W. 111th St.","modifiedDate":"2017-08-09T09:39:00"},{"calendarId":11,"start":"2017-08-24T18:00:00","end":"2017-08-24T21:00:00","title":"Movie in the Park 574 Ghostbuster","eventDetails":"Event sponsored by The Community Builders and City Gardens","eventUrl":null,"contactDetails":"RSC: Gloria Williams 1.312.492.6645","location":"2540 W. Jackson Park 574","modifiedDate":"2017-08-23T09:08:03"},{"calendarId":10,"start":"2017-08-24T17:30:00","end":"2017-08-24T19:30:00","title":"10th District Explorers Shakespeare In The Park @ Piotrowski Park","eventDetails":"Piotrowski Park is hosting Shakespeare In The Park. 10th district explorers will help set-up event and will also help clean up the park after the event. ","eventUrl":null,"contactDetails":"10th District CAPS office","location":"4247 West 31st ","modifiedDate":"2017-08-10T10:39:08"},{"calendarId":15,"start":"2017-08-24T17:00:00","end":"2017-08-24T20:00:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"(Hubbard Park) 5085 W. Adams St. Chicago, IL","modifiedDate":"2017-08-10T13:02:45"},{"calendarId":15,"start":"2017-08-24T17:00:00","end":"2017-08-24T19:00:00","title":"Austin Police Youth Baseball League","eventDetails":"Police Youth Baseball teams gather for a game.","eventUrl":null,"contactDetails":"015th District Caps Office (312) 743-1495","location":"(Columbus Park) 501 S Central","modifiedDate":"2017-08-10T16:54:45"},{"calendarId":22,"start":"2017-08-24T14:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPs Office (312)745-0620","location":"1900 W. Monterey\n022nd District","modifiedDate":"2016-12-28T11:48:53"},{"calendarId":22,"start":"2017-08-24T13:00:00","end":null,"title":"Beat Facilitators","eventDetails":null,"eventUrl":null,"contactDetails":"022nd District Station","location":"1900 W. Monterey","modifiedDate":"2016-12-28T11:49:07"},{"calendarId":17,"start":"2017-08-24T13:00:00","end":"2017-08-24T19:00:00","title":"Senior Trip ","eventDetails":"This is a Senior Trip for the 017th District Sub-Committee Members. Please contact the 017th District CAPS office for more details. ","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@Chicagopolice.org","location":"For location details Please contact CAPS Office","modifiedDate":"2017-07-26T11:26:47"},{"calendarId":18,"start":"2017-08-24T11:00:00","end":"2017-08-24T12:00:00","title":"Random Acts of Kindness","eventDetails":"018th District Community Relations Officers will be out randomly doing Acts of kindness within the 018th District !","eventUrl":null,"contactDetails":"018th District Community Relations Office ","location":"018th District","modifiedDate":"2017-07-14T13:13:00"},{"calendarId":22,"start":"2017-08-24T10:30:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPs Office (312)745-0620","location":"1900 W. Monterey\n022nd District Station","modifiedDate":"2017-08-09T10:04:54"},{"calendarId":8,"start":"2017-08-24T10:00:00","end":"2017-08-24T12:30:00","title":"Back to School Craft Day","eventDetails":"Craft day for youth in district with Officers before the start of the school year. Must register by calling Relations office with name of attendee","eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"3420 W 63rd Street","modifiedDate":"2017-08-17T11:39:12"},{"calendarId":7,"start":"2017-08-24T09:30:00","end":"2017-08-24T14:30:00","title":"Chicago CARES Volunteer Event","eventDetails":"Vacant lot clean up with Team Englewood","eventUrl":null,"contactDetails":"312.780.0800 or email: info@chicagocares.org","location":"815 W. 63rd St","modifiedDate":"2017-08-08T19:18:37"},{"calendarId":8,"start":"2017-08-23T19:00:00","end":"2017-08-23T20:00:00","title":"835 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Wrightwood Library 8530 S. Kedzie","modifiedDate":"2017-05-24T17:45:55"},{"calendarId":16,"start":"2017-08-23T19:00:00","end":"2017-08-23T20:00:00","title":"1624 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Portage Park Senior Center 4100 N. Long","modifiedDate":"2017-02-22T10:36:05"},{"calendarId":7,"start":"2017-08-23T18:30:00","end":"2017-08-23T19:30:00","title":"Community Beat Meeting-Bt. 715","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Heins or Sgt. Redrick 312-747-6722","location":"Lindblom Pk. 6054 s Damen","modifiedDate":"2017-07-26T19:18:21"},{"calendarId":9,"start":"2017-08-23T18:30:00","end":"2017-08-23T19:30:00","title":"Bt. 914 Community Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"Chinatown Public Library, 2100 S. Wentworth","modifiedDate":"2017-08-09T11:49:15"},{"calendarId":17,"start":"2017-08-23T18:30:00","end":"2017-08-23T08:00:00","title":"\"Keeping It Real\" Burglary Prevention Workshop","eventDetails":"This is a Community Workshop that ALL community members are invited to attend. This workshop will include an in-depth discussion on burglary awareness by a panel of \"Professional Burglars\" who want to give back to the community. ","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@chicagopolice.org","location":"017th District Community Room 4650 N. Pulaski Rd.","modifiedDate":"2017-07-26T11:27:00"},{"calendarId":3,"start":"2017-08-23T18:00:00","end":"2017-08-23T19:00:00","title":"Dac Meeting ","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-08-23T18:00:00","end":"2017-08-23T19:00:00","title":"2534 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2534's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"North /Grand H.S. 4338 W. Wabansia","modifiedDate":"2017-06-26T13:48:26"},{"calendarId":15,"start":"2017-08-23T18:00:00","end":"2017-08-23T20:30:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"Moore Park 5085 W. Adams St. Chicago, IL","modifiedDate":"2017-08-10T13:03:16"},{"calendarId":7,"start":"2017-08-23T16:00:00","end":"2017-08-30T19:00:00","title":"Boom Box Englewood","eventDetails":"08/23/17 Cook out 4-7pm; 08/24/17-Meet the Brewers 2-7pm; 08/25/17- Meet the Brewers Food Truck 4-7pm08/26/17-12-2 pm Community Meet up & Pop Wedding from 2-5pm; 08/27/17 - 9am Brew Beer with EB; 08/28/2017 12-4pm Community setup and Farm Stand; 08/29/2017- 12-2- Community Meet up and 5-7 pm - Homebrew Club and Final Event 08/30/17- 2-4pm Meet the Brewers and closing event 4-7pm DJ NGL3 of Beehyve ","eventUrl":"englewoodbrews.com","contactDetails":"Englewood Brews","location":"833 West 63rd Street","modifiedDate":"2017-08-11T16:18:38"},{"calendarId":19,"start":"2017-08-23T15:00:00","end":"2017-08-23T17:00:00","title":"19th District Youth Council Meeting","eventDetails":"Youth Council will be meeting to schedule future events for the upcoming school year and to hear a guest speaker regarding Cyber Bullying and Youth Violence prevention. ","eventUrl":null,"contactDetails":"19th District Community Policing Office","location":"850 W. Addison St.","modifiedDate":"2017-08-16T16:28:00"},{"calendarId":5,"start":"2017-08-23T13:00:00","end":"2017-08-23T15:00:00","title":"Kick Back Wednesday Youth Event","eventDetails":"A pop-up play event sponosored by the Department to provide fun and healthy activities for young people and an opportunity for positive interaction between police, young people and other neighborhoord residents","eventUrl":null,"contactDetails":"Margie Reid, 5th District Community Organizer, 312-747-3100","location":"Carver Park, 939 E. 132nd Street","modifiedDate":"2017-06-27T13:33:00"},{"calendarId":11,"start":"2017-08-23T09:30:00","end":"2017-08-23T14:00:00","title":"Seniors & Youth @ Waveland Bowl","eventDetails":"Seniors and youth are inviited to bowl @ waveland bowling alley Aug 23, 2017 from 9:30- 2pm. $5.00 per person. Bus departs 011th dist. @ 09:30am. ","eventUrl":null,"contactDetails":"011 Dist CAPS 312-746-9841","location":"3151 W. Harrison St","modifiedDate":"2017-08-16T15:01:05"},{"calendarId":11,"start":"2017-08-23T09:30:00","end":"2017-08-23T14:00:00","title":"Seniors & Youth @ Waveland Bowl","eventDetails":"Seniors and youth are inviited to bowl @ waveland bowling alley Aug 23, 2017 from 9:30- 2pm. $5.00 per person. Bus departs 011th dist. @ 09:30am. ","eventUrl":null,"contactDetails":"011 Dist CAPS 312-746-9841","location":"3151 W. Harrison St","modifiedDate":"2017-08-16T15:01:57"},{"calendarId":15,"start":"2017-08-23T08:30:00","end":"2017-08-23T09:30:00","title":"Business Meeting","eventDetails":"Business owners of the 015th district meet with community Organizer and discuss concerns of crime and ways o improve business related issues.","eventUrl":null,"contactDetails":"Caps Office ( 312) 743-1495","location":"5412 W.MADISON (MAC ARTHUR'S)","modifiedDate":"2017-06-17T16:30:28"},{"calendarId":7,"start":"2017-08-23T08:00:00","end":"2017-08-23T20:00:00","title":"3rd Annual Back to School Event","eventDetails":"Internation Networking Event, Food, Fun, Music and Giveaways","eventUrl":null,"contactDetails":"Ms. Kesha: 773-440-7966","location":"6801 South Ashland","modifiedDate":"2017-08-11T15:58:01"},{"calendarId":3,"start":"2017-08-22T19:00:00","end":"2017-08-22T20:00:00","title":"20 Sector Beat Meeting (321, 322, 323 & 324)","eventDetails":"20 Sector Beat Meeting (321, 322, 323 & 323)","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District\n7040 S. Cottage Grove\nChicago, IL. 60637\n","location":"Manor Church 600 E. 73rd St. Chicago, IL. 60619","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":8,"start":"2017-08-22T19:00:00","end":"2017-08-22T20:00:00","title":"813/833 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"West Lawn Park 4233 W. 65th St","modifiedDate":"2017-05-24T17:46:25"},{"calendarId":16,"start":"2017-08-22T19:00:00","end":"2017-08-22T20:00:00","title":"1614 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Salvation Army 8354 W. Foster","modifiedDate":"2017-02-22T10:37:13"},{"calendarId":9,"start":"2017-08-22T19:00:00","end":"2017-08-22T20:00:00","title":"Bt. 923 Community Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"St. Simon's Church, 5157 S. California","modifiedDate":"2017-08-09T11:49:46"},{"calendarId":7,"start":"2017-08-22T18:30:00","end":"2017-08-22T19:30:00","title":"Community Beat Meeting-Bt. 711/713/714","eventDetails":".","eventUrl":null,"contactDetails":"P.O. Heins or Sgt. Redrick @312-747-6722","location":"007th District Community Room 1438 w 63rd st.","modifiedDate":"2017-07-26T19:06:10"},{"calendarId":3,"start":"2017-08-22T18:30:00","end":"2017-08-22T20:30:00","title":"003rd District Community Peace Circle","eventDetails":"003rd District Community Peace Circle","eventUrl":null,"contactDetails":"Sgt. Jointer\n003rd District\n7040 S. Cottage Grove\nChicago, IL 60637\n(312) 747-7004","location":"Lincoln Memorial Church\r\n6454 S. Champlain","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":25,"start":"2017-08-22T18:30:00","end":"2017-08-22T19:30:00","title":"2532 Beat Meeting","eventDetails":"2532 Beat Meeting. 4th Tuesday Even Months","eventUrl":null,"contactDetails":"312-746-5090","location":"1511 N Long Ave","modifiedDate":"2016-12-15T10:33:33"},{"calendarId":11,"start":"2017-08-22T18:00:00","end":"2017-08-22T19:00:00","title":"Beat Meeting: 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. \n","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2016-12-27T12:49:42"},{"calendarId":11,"start":"2017-08-22T18:00:00","end":"2017-08-22T20:00:00","title":"Operation: Wake-Up!","eventDetails":"Community Rally. Beat meeting, parent patrols, block club oranginizing, peer jury, youth council.","eventUrl":null,"contactDetails":"011th Dist CAPS 312-746-9841","location":"1000 N. Monticello","modifiedDate":"2017-08-17T17:28:02"},{"calendarId":9,"start":"2017-08-22T18:00:00","end":"2017-08-22T19:00:00","title":"Bt. 922 Community Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"Shields Middle School, 2611 W. 48th St.","modifiedDate":"2017-08-09T11:50:22"},{"calendarId":12,"start":"2017-08-22T18:00:00","end":"2017-08-22T19:00:00","title":"1232 Community Relations Meeting","eventDetails":"1232 Community Relations Meeting","eventUrl":null,"contactDetails":"12th District Community relations Office 312-746-8306","location":"12th District 1412 S. Blue Island","modifiedDate":"2017-08-16T10:53:00"},{"calendarId":8,"start":"2017-08-22T18:00:00","end":"2017-08-22T19:30:00","title":"Alas Con Valor Metropolitan Family","eventDetails":"Mental well being workshop, discussion on domestic violence. Must register with group","eventUrl":null,"contactDetails":"Metropolitan 773-884-2221","location":"3843 W. 63rd Street","modifiedDate":"2017-08-17T11:39:37"},{"calendarId":15,"start":"2017-08-22T17:00:00","end":"2017-08-22T19:00:00","title":"Austin Police Youth Baseball League Practice Day","eventDetails":"Area Youth Baseball League Coached by 015th District Officers and the State Police.","eventUrl":null,"contactDetails":"015th District Caps Office (312) 743-1495","location":"(Columbus Park) 501 S Central","modifiedDate":"2017-08-10T16:55:13"},{"calendarId":11,"start":"2017-08-22T16:00:00","end":"2017-08-22T19:00:00","title":"Operation Wake Up Community Rally","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"1000 N. Monticello ","modifiedDate":"2017-08-21T14:08:02"},{"calendarId":20,"start":"2017-08-22T16:00:00","end":"2017-08-22T18:00:00","title":"Bike Ambassadors","eventDetails":"Bike Ambassadors along with Chicago Police CAPS officers promote safety and public-awareness for all road users.","eventUrl":null,"contactDetails":"3127428770","location":"Broadway/Foster","modifiedDate":"2017-06-23T14:58:36"},{"calendarId":3,"start":"2017-08-22T14:00:00","end":"2017-08-22T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 60637\n(312) 747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":18,"start":"2017-08-22T13:00:00","end":"2017-08-22T14:00:00","title":"Senior Emergency ID Bracelet","eventDetails":"Emergency Identification Bracelet Program Workshop-- Your ID number reveals important information about the registered senior (60+) or disabled c itizen in casae of an emergency.","eventUrl":null,"contactDetails":"P.O. Ramirez, S. 312.742.5778","location":"Flannery Apt 1507 N. Clybourn","modifiedDate":"2017-07-14T13:08:02"},{"calendarId":22,"start":"2017-08-22T10:30:00","end":null,"title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPs Office (312)745-0620","location":"1900 W. Monterey\n022nd District Station","modifiedDate":"2016-12-28T11:49:45"},{"calendarId":8,"start":"2017-08-22T10:00:00","end":"2017-08-22T12:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Senior members is district gather for discussion on crime prevention and safety issues focusing on senior population.","eventUrl":null,"contactDetails":"Community Policing 312 -747-8724","location":"3420 W 63rd Street","modifiedDate":"2017-08-17T11:40:09"},{"calendarId":11,"start":"2017-08-22T09:00:00","end":null,"title":"Dream Court Redevelopment Cmty Basketball Court","eventDetails":"To find out more about the court launch or basketball leagues contact the Office of Community Affairs at 312.745-5155.","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"601 N. Harding (Ohio and Harding Park )","modifiedDate":"2017-07-19T12:26:03"},{"calendarId":4,"start":"2017-08-21T10:00:00","end":"2017-08-21T13:00:00","title":"Play Streets","eventDetails":"PlayStreets Chicago encourages neighborhood organizations and residents to join their neighbors in getting active and moving.","eventUrl":null,"contactDetails":"Olivia Hernandez 773 731-0109","location":"87th Baltimore","modifiedDate":"2017-07-06T09:48:01"},{"calendarId":18,"start":"2017-08-20T10:00:00","end":"2017-07-20T15:00:00","title":"59th Annual Air and Water Show","eventDetails":"Come out and join us for the 59th Annual Air and Water Show!!","eventUrl":null,"contactDetails":"018th District Community Relations Office","location":"North Avenue Beach","modifiedDate":"2017-07-14T13:28:00"},{"calendarId":25,"start":"2017-08-19T15:00:00","end":"2017-08-19T19:00:00","title":"Playstreets & Hoops Block Party","eventDetails":"Northwest Side Housing Center's Basketball & Block Party event for the kids.","eventUrl":null,"contactDetails":"25th District Community Relations 3127465090","location":"5100 W. Fletcher","modifiedDate":"2017-08-16T14:53:01"},{"calendarId":25,"start":"2017-08-19T13:00:00","end":"2017-08-19T15:00:00","title":"Youth Exploring","eventDetails":"Youth Exploring","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-15T10:20:01"},{"calendarId":8,"start":"2017-08-19T12:00:00","end":"2017-08-19T16:00:00","title":"18th Ward Back to School Picnic","eventDetails":"Alderman Curtis' Welcome Back to School Picnic, open to residents of the 18th Ward to enjoy a day with family, friends and neighbors.","eventUrl":null,"contactDetails":"18th Ward 773-284-5057","location":"Hayes Park 2936 W. 85th Street","modifiedDate":"2017-08-17T11:40:34"},{"calendarId":6,"start":"2017-08-19T11:00:00","end":"2017-08-19T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-29T14:28:37"},{"calendarId":7,"start":"2017-08-19T10:00:00","end":"2017-08-20T12:00:00","title":"Englewood Back to School Parade and \"Peace in the streets\" event in Ogden Park","eventDetails":"The Englewood Back to School Parade is the second oldest African American parade in the city (55 years). This event has always been a jewel in the community which promoted a day of peace & pride. Community involvement helps highlight the importance of encouraging, advising, and teaching our youth as well as showing others how important it is to be involved as a supplemental guide for our youth. The event focuses on the possibilities not the circumstances in Englewood.","eventUrl":null,"contactDetails":"Nicole Vaughn 773/619-7247 or email: englewoodparade@gmail.com","location":"Start 57 & Halsted down to 67th, then west on 67th to Ogden Park. ","modifiedDate":"2017-08-16T14:25:28"},{"calendarId":11,"start":"2017-08-19T10:00:00","end":"2017-08-19T12:00:00","title":"Sweep N' Greet","eventDetails":"Community Residents and Stake holders & 011th Dist CAPS Invite youto beautify our Community. ","eventUrl":null,"contactDetails":"312-746-9841","location":"900 N. Springfield","modifiedDate":"2017-08-16T14:59:52"},{"calendarId":22,"start":"2017-08-19T10:00:00","end":"2017-08-08T16:00:00","title":"Back to School Health Fair","eventDetails":"Food, book bags, health/Dental screenings, face painting, flue shots, pony rides & more","eventUrl":null,"contactDetails":"PO Beamon 312-745-0620","location":"Holy Cross Church, 1201 W. 111th Pl","modifiedDate":"2017-08-09T09:40:06"},{"calendarId":25,"start":"2017-08-19T10:00:00","end":null,"title":"39th Annual Danny K. Davis Back to School Parade","eventDetails":"Parade will start in the 25th District and move south into the 15th District ending with a large picnic/party in Columbus Park.","eventUrl":null,"contactDetails":"25th District Community Relations - 3127465090","location":"Central and Bloomingdale","modifiedDate":"2017-08-16T14:48:01"},{"calendarId":25,"start":"2017-08-19T10:00:00","end":"2017-08-19T14:00:00","title":"Hoops & Playstreets Block Party","eventDetails":"Northwest Side Housing Center's Basketball & Block Party event for the kids.","eventUrl":null,"contactDetails":"Community Relations 312-746-5090","location":"5300 W. Parker","modifiedDate":"2017-08-16T14:53:01"},{"calendarId":18,"start":"2017-08-19T10:00:00","end":"2017-08-19T15:00:00","title":"59th Annual Air and Water Show","eventDetails":"Come out and join us for the 59th Annual Chicago Air and Water Show!","eventUrl":null,"contactDetails":"Community Relations Office","location":"North Avenue Beach","modifiedDate":"2017-07-14T13:28:00"},{"calendarId":11,"start":"2017-08-19T09:00:00","end":"2017-08-19T12:00:00","title":"Health Fair and Choir Musical","eventDetails":"Health Fair and Choir Musical.","eventUrl":null,"contactDetails":"Reverend James C. Hicks","location":"Original Greater Garfield Park Missionary Bapist Church 3813 W. Division","modifiedDate":"2017-08-16T15:00:17"},{"calendarId":17,"start":"2017-08-19T09:00:00","end":"2017-08-19T12:00:00","title":"33rd Ward Back To School Event","eventDetails":"The 017th district CAPS office is participating in the 33rd Ward Back to School Event please call CAPS for more details. ","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@Chicagopolice.org","location":"Roosevelt H.S. 3436 W. Wilson Ave","modifiedDate":"2017-07-26T11:28:17"},{"calendarId":16,"start":"2017-08-19T08:00:00","end":"2017-08-19T12:00:00","title":"Girl Scout Carwash","eventDetails":"The Girl Scouts are holding a carwash at the 016th District from 0800 - Noon on 19 Aug 2017. Come out and show your support!","eventUrl":null,"contactDetails":"P.O. Robin Ratledge","location":"5151 N. Milwakee","modifiedDate":"2017-08-09T18:36:52"},{"calendarId":11,"start":"2017-08-19T07:45:00","end":"2017-08-19T10:15:00","title":"B. Present 5k ","eventDetails":"B. PRESENT 1st Annual 5k in Garfield Park ","eventUrl":null,"contactDetails":"Alderman Jason C. Ervin 1.773.533.0900","location":"100 N. Central Park Chicago IL 60624","modifiedDate":"2017-07-27T15:58:00"},{"calendarId":19,"start":"2017-08-18T23:00:00","end":"2017-08-18T23:59:00","title":"Lakeview Community Walk/Positive Loitering","eventDetails":"Community Members will join 19th District Officers for a Walk through the neighborhood to promote positive loitering and community involvement. ","eventUrl":null,"contactDetails":"19th District Community Policing Office","location":"Meeting at Roscoe and Halsted at 2300 hours","modifiedDate":"2017-08-16T16:49:58"},{"calendarId":11,"start":"2017-08-18T17:00:00","end":"2017-08-18T22:00:00","title":"Light In The Night Event Back To School Celebration & Giveaway","eventDetails":null,"eventUrl":null,"contactDetails":"West Garfield Park Cmty Stakeholders 1.773.287.5821","location":"Clark Park- 4615 W. Jackson ","modifiedDate":"2017-08-04T11:28:00"},{"calendarId":6,"start":"2017-08-18T14:00:00","end":"2017-08-19T08:00:00","title":"Peace in the Park After Dark","eventDetails":"Overnight camping experience for children age 7-14","eventUrl":null,"contactDetails":"Contact the Community Policing Office at (312) 745-3641","location":"Cole Park, 361 E. 85th Street","modifiedDate":"2017-08-08T13:57:37"},{"calendarId":11,"start":"2017-08-18T10:00:00","end":"2017-08-18T14:00:00","title":"27th Ward Hiring Event ","eventDetails":null,"eventUrl":null,"contactDetails":"Alicia Ivy 1.312.432.1995","location":"Salvation Army 825 N. Christiana","modifiedDate":"2017-08-11T16:13:01"},{"calendarId":25,"start":"2017-08-17T19:00:00","end":"2017-08-17T20:00:00","title":"2524 Beat Meeting","eventDetails":"2524 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Our Lady Of Grace\n2446 N. Ridgeway","modifiedDate":"2016-12-30T13:22:10"},{"calendarId":20,"start":"2017-08-17T19:00:00","end":"2017-08-17T20:00:00","title":"2024 Beat Meeting","eventDetails":"2024 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Margate Field House4921 N. Marine Dr.","modifiedDate":"2017-06-23T15:23:13"},{"calendarId":3,"start":"2017-08-17T19:00:00","end":"2017-08-17T20:00:00","title":"10 Sector Beat Meeting (311, 312, 313 & 314)","eventDetails":"10 Sector Beat Meeting (311, 312, 313 & 314)","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312)747-7004\n","location":"003rd District\r\n7040 S. Cottage Grove\r\nChicago, IL. 60637\r\n(312)747-7004\r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":8,"start":"2017-08-17T19:00:00","end":"2017-08-17T20:30:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":"members of subcommittee meet to review cases they have been on and upcoming cases to attend","eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"4233 W. 65th Street","modifiedDate":"2017-08-17T11:40:56"},{"calendarId":14,"start":"2017-08-17T18:30:00","end":null,"title":"1433 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":"Caps office 312-744-1261","location":"Pulaski Park1419 W. Blackhawk","modifiedDate":"2017-07-19T14:42:32"},{"calendarId":7,"start":"2017-08-17T18:30:00","end":"2017-08-17T19:30:00","title":"Community Beat Meeting - Bt.735","eventDetails":".","eventUrl":null,"contactDetails":"P.O. Heins or Sgt. Redrick 312-747-6722","location":"Gifts From God Ministry Church 1818 w 74th st.","modifiedDate":"2017-07-26T19:07:54"},{"calendarId":2,"start":"2017-08-17T18:30:00","end":"2017-08-17T19:30:00","title":"Beat Meeting for Beats 212/214","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"3858 S COTTAGE GROVE","modifiedDate":"2017-08-22T11:03:49"},{"calendarId":11,"start":"2017-08-17T18:00:00","end":"2017-08-17T19:00:00","title":"Beat Meeting: 1113,14,15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"St. Michaels's MBC 4106 W. Monroe","modifiedDate":"2016-12-27T12:48:30"},{"calendarId":16,"start":"2017-08-17T18:00:00","end":"2017-08-17T19:00:00","title":"DAC Meeting","eventDetails":"Meetng hosted by the District Commander for invited community stakeholders will be held in the Community Room (THIS IS NOT A BEAT MEETING)","eventUrl":null,"contactDetails":"Annie Ruiz-Oquendo","location":"5151 N. Milwaukee","modifiedDate":"2017-05-04T17:34:59"},{"calendarId":11,"start":"2017-08-17T18:00:00","end":"2017-08-17T19:00:00","title":"Beat meeting 1113/14/15","eventDetails":"beat meeting 1113/14/15","eventUrl":null,"contactDetails":"011th Dist CAPS","location":"4106 W. Monroe","modifiedDate":"2017-08-17T17:27:02"},{"calendarId":11,"start":"2017-08-17T18:00:00","end":"2017-08-17T20:00:00","title":"State of Emergency Tour","eventDetails":"Cook county Commissioner Dennis Deer, County Commissioner Richard R. Boykin, UCAN and Rev. Ira Acree present state of emergency tour. What is the city and county plan for safe neighborhoods","eventUrl":null,"contactDetails":"danielle.watson@cookcountyil.gov 312-603-4566","location":"UCAN 3605 W. Fillmore ","modifiedDate":"2017-08-17T17:27:10"},{"calendarId":8,"start":"2017-08-17T18:00:00","end":"2017-08-17T19:00:00","title":"Faith Based Subcommittee Meeting","eventDetails":"Faith Based Leaders and Stakeholder meeting to discuss peace strategies and solutions to crimes in area.","eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"3420 W 63rd Street","modifiedDate":"2017-08-17T11:41:15"},{"calendarId":15,"start":"2017-08-17T17:00:00","end":"2017-08-17T20:00:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"(Hubbard Park) 4942-58 W.Hubbard St..Chicago,IL ","modifiedDate":"2017-08-10T13:03:28"},{"calendarId":15,"start":"2017-08-17T17:00:00","end":"2017-08-17T19:00:00","title":"Game Day","eventDetails":"Police Youth Baseball teams gather for a game.","eventUrl":null,"contactDetails":"015th District Caps Office (312) 743-1495","location":"(Columbus Park) 501 S Central","modifiedDate":"2017-08-10T16:55:44"},{"calendarId":3,"start":"2017-08-17T14:00:00","end":"2017-08-17T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 60637\n(312)747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":11,"start":"2017-08-17T13:30:00","end":"2017-08-17T16:30:00","title":"Nia Family Center \"Baby Shaken Presentation\"","eventDetails":null,"eventUrl":null,"contactDetails":"Nia Family Center 1.773.722.0115","location":"744 N. Monticello Ave. ","modifiedDate":"2017-08-04T12:08:02"},{"calendarId":25,"start":"2017-08-17T13:30:00","end":"2017-08-17T14:30:00","title":"Business Association Meeting","eventDetails":"All business owners/managers are invited to meet with 25th District Officers, share concerns, and network with other business leaders.","eventUrl":null,"contactDetails":"25th District Community Relations - 3127465090","location":"25th District Community Room","modifiedDate":"2017-08-16T14:48:01"},{"calendarId":19,"start":"2017-08-17T12:00:00","end":"2017-08-17T14:00:00","title":"19th District Senior BBQ","eventDetails":"Senior Community Members Annual BBQ-- Free Food & Drinks","eventUrl":null,"contactDetails":"19th District Community Policing Office 3127440064","location":"850 W. Addison St.","modifiedDate":"2017-08-16T16:24:06"},{"calendarId":4,"start":"2017-08-17T11:00:00","end":"2017-08-17T14:00:00","title":"Play Streets","eventDetails":"PlayStreets Chicago encourages neighborhood organizations and residents to join their neighbors in getting active and moving.","eventUrl":null,"contactDetails":"April Morris 773 734-9181","location":"9108 S. Brandon","modifiedDate":"2017-07-06T09:43:01"},{"calendarId":6,"start":"2017-08-17T10:00:00","end":"2017-08-17T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":"Meet to discuss topics on Domestic Violence and prevention.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-29T14:29:01"},{"calendarId":7,"start":"2017-08-17T10:00:00","end":"2017-08-17T13:00:00","title":"7th District Food Pantry","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Shelton & Sgt. Redrick 312-747-6722","location":"7158 S. Peoria, Chicago, IL 60621","modifiedDate":"2017-07-14T10:58:23"},{"calendarId":17,"start":"2017-08-16T19:30:00","end":"2017-08-16T20:30:00","title":"Combined Beat Meeting 1722/1723","eventDetails":"This is a community meeting where residents meet with the police to address crime issues on the beat, develop strategies to solve problems, and disseminate crime prevention information. ","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@chicagopolice.org","location":"017th District Community Room 4650 N. Pulaski Rd.","modifiedDate":"2017-07-26T11:28:31"},{"calendarId":20,"start":"2017-08-16T19:00:00","end":"2017-08-16T20:00:00","title":"2013 Beat Meeting","eventDetails":"2013 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church5437 N. Clark St.","modifiedDate":"2017-06-23T15:23:28"},{"calendarId":14,"start":"2017-08-16T18:30:00","end":null,"title":"1434 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":"Caps office 312-744-1261","location":"Bucktown Library1701 N. Milwaukee","modifiedDate":"2017-07-19T14:42:52"},{"calendarId":7,"start":"2017-08-16T18:30:00","end":"2017-08-16T19:30:00","title":"Community Beat Meeting - Bt. 733/734","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Heins or Sgt. Redrick 312-747-6722","location":"Salvation Army 845 w. 69th st.","modifiedDate":"2017-07-26T19:16:44"},{"calendarId":1,"start":"2017-08-16T18:30:00","end":"2017-08-16T19:30:00","title":"CAPS Beat 133 Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312.745.4381 CAPS.001District@chicagopolice.org","location":"Trinity Church 125 E 26th St","modifiedDate":"2017-03-21T16:44:19"},{"calendarId":2,"start":"2017-08-16T18:30:00","end":"2017-08-16T19:30:00","title":"Beat Meeting for Beats 233/234/235","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"1526 E. 55TH ST","modifiedDate":"2017-08-22T11:04:04"},{"calendarId":10,"start":"2017-08-16T18:00:00","end":"2017-08-16T19:00:00","title":"Beat Meeting 1031 & 1032","eventDetails":"Beat 1031 & 1032 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Toman Library\n2708 S. Pulaski Rd","modifiedDate":"2017-01-04T15:57:04"},{"calendarId":9,"start":"2017-08-16T18:00:00","end":"2017-08-16T19:00:00","title":"Bt. 925 Community Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"St. Gabe's Church, 4500 S. Wallace","modifiedDate":"2017-08-09T11:50:34"},{"calendarId":15,"start":"2017-08-16T18:00:00","end":"2017-08-16T20:30:00","title":"Chicago Nights/Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"Moore Park 5085 W. Adams St. Chicago, IL","modifiedDate":"2017-08-10T13:03:54"},{"calendarId":12,"start":"2017-08-16T18:00:00","end":"2017-08-16T19:00:00","title":"1234 Community Meeting","eventDetails":"1234 Community Meeting","eventUrl":null,"contactDetails":"12th District Community relations Office 312-746-8306","location":".","modifiedDate":"2017-08-16T10:48:00"},{"calendarId":11,"start":"2017-08-16T17:30:00","end":"2017-08-16T19:30:00","title":"Healthy Kids Town Hall Meeting","eventDetails":"Earlier this year, CDPH released a Healthy Kids report showcasing the progress Chicago has made in a number of key areas while also highlighting the challenges that still remain. This summer CDPH will host a series of town hall meetings to discuss the state of youth health with residents. We are seeking feedback on five policies we are currently exploring based on the key areas highlighted in the report: improving homes, empowering parents, promoting vaccines, mitigating trauma, and reducing obesity. ","eventUrl":null,"contactDetails":"Chicago Department of Public Health, 312-747-9884","location":"Legler Library, 115 S. Pulaski","modifiedDate":"2017-07-19T08:57:59"},{"calendarId":10,"start":"2017-08-16T17:30:00","end":"2017-08-16T19:30:00","title":"Court Advocacy meeting/training ","eventDetails":"Meeting with 011th district Court Advocacy Officer, subcommittee and Community Justice Center. ","eventUrl":null,"contactDetails":"Pauline M. Dengler (312) 325-9700","location":"11th district Station","modifiedDate":"2017-08-10T10:39:36"},{"calendarId":8,"start":"2017-08-16T17:00:00","end":"2017-08-16T18:00:00","title":"823/825 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Rita Church at 6243 S. Fairfield","modifiedDate":"2017-05-24T17:46:38"},{"calendarId":11,"start":"2017-08-16T17:00:00","end":"2017-08-16T19:00:00","title":"Taking Our Park Back Initiative ","eventDetails":"Encouraging families to use and enjoy our parks. ","eventUrl":null,"contactDetails":"Alderman Jason C. Ervin 1.773.533.0900","location":"3035 W. Van Buren Horan Park ","modifiedDate":"2017-07-27T15:50:06"},{"calendarId":18,"start":"2017-08-16T15:00:00","end":"2017-08-16T16:00:00","title":"Near North Security Meeting","eventDetails":"Meeeting with security teams to discuss problems in their immediate areas and develop strategies to address them.","eventUrl":null,"contactDetails":"P.O. Robinson 312.742.5778","location":"018th District Community Room 1160 N. Larrabee","modifiedDate":"2017-07-14T12:43:00"},{"calendarId":5,"start":"2017-08-16T13:00:00","end":"2017-08-16T15:00:00","title":"Kick Back Wednesday Youth Event","eventDetails":"A pop-up play event sponosored by the Department to provide fun and healthy activities for young people and an opportunity for positive interaction between police, young people and other neighborhoord residents","eventUrl":null,"contactDetails":"Margie Reid, 5th District Community Organizer, 312-747-3100","location":"Langley Playlot, 11255 S. Langley","modifiedDate":"2017-06-27T13:28:01"},{"calendarId":16,"start":"2017-08-16T12:00:00","end":"2017-08-16T15:00:00","title":"Back to School Spectacular","eventDetails":"The Back to School Spectacular is a fun way to get excited about the start of the school year! We will have giveaways, crafts, activities, a jump house, a talk from Officer Friendly about safety and a healthy lunch!","eventUrl":null,"contactDetails":"P.O. Melissa Lehrmann","location":"Chopin Park 3420 N. Long Ave","modifiedDate":"2017-08-09T18:37:30"},{"calendarId":10,"start":"2017-08-16T06:00:00","end":"2017-08-16T07:59:00","title":"1031 & 1032 Beat Community Meeting","eventDetails":"Community residents from beats 1031 & 1032, will meet at the Public Library to discuss issues and concerns revolving the community areas. Problem solving suggestions and community envolvement will be addressed ","eventUrl":null,"contactDetails":"Caps Office 312-747-7511 Sgt. Lara","location":"2708 S. Pulaski Rd. ","modifiedDate":"2017-08-17T15:28:15"},{"calendarId":10,"start":"2017-08-16T06:00:00","end":"2017-08-16T07:00:00","title":"Community Beat Meeting for 1031 & 1032","eventDetails":"Community residents and the Chicago Police Department of the 10th District will meet to discuss community issues and concerns.","eventUrl":null,"contactDetails":"-10th District Caps Office Sgt. Lara 312747-7190","location":"Toman Library 2708 S. Pulaski Rd. ","modifiedDate":"2017-08-10T10:39:57"},{"calendarId":8,"start":"2017-08-15T19:00:00","end":"2017-08-15T20:00:00","title":"811 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Good Shepherd Church 5550 S Merrimac","modifiedDate":"2017-05-24T17:47:03"},{"calendarId":12,"start":"2017-08-15T19:00:00","end":"2017-08-15T20:00:00","title":"Beat Meeting 1212","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at St. Helen's School Basement, 2345 W. Augusta on the 1st Tuesday of the even months. ","modifiedDate":"2017-05-24T17:28:37"},{"calendarId":22,"start":"2017-08-15T18:30:00","end":null,"title":"Beat Meeting 2222","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office (312)745-0620","location":"1246 W. 92nd St.\nBrainerd Park","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-08-15T18:30:00","end":"2017-08-15T19:30:00","title":"Community Beat Meeting - Bt. 731/732","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Heins or Sgt. Redrick 312-747-6722","location":"Hamilton Park 513 w. 72nd st.","modifiedDate":"2017-07-26T19:15:35"},{"calendarId":1,"start":"2017-08-15T18:30:00","end":"2017-08-15T19:30:00","title":"CAPS Beat 131/132 Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312.745.4381 CAPS.001District@chicagopolice.org","location":"1st District Community Room 1718 S State St","modifiedDate":"2017-03-21T16:44:34"},{"calendarId":2,"start":"2017-08-15T18:30:00","end":"2017-08-15T19:30:00","title":"Beat Meeting for Beats 221/223","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"4314 S COTTAGE GROVE","modifiedDate":"2017-08-22T11:04:18"},{"calendarId":11,"start":"2017-08-15T18:00:00","end":"2017-08-15T19:00:00","title":"Beat Meeting: 1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Homan Square Community Center 3559 W. Arthington ","modifiedDate":"2016-12-27T12:49:10"},{"calendarId":11,"start":"2017-08-15T18:00:00","end":"2017-08-15T19:00:00","title":"Beat meeting 1133/34","eventDetails":"Beat meeting 1133/34","eventUrl":null,"contactDetails":"011th dist CAPS beat meeting 1133/34","location":"3559 W. Arthington Homan Square Cmty Center","modifiedDate":"2017-08-17T17:27:20"},{"calendarId":9,"start":"2017-08-15T18:00:00","end":"2017-08-15T19:00:00","title":"Bt. 932-934-935 Community Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"Westhaven Homes, 850 W. Garfield Blvd.","modifiedDate":"2017-08-09T11:50:44"},{"calendarId":15,"start":"2017-08-15T18:00:00","end":"2017-08-15T20:00:00","title":"Parent Networking Cafe","eventDetails":"Healthy and productive mentoring as it will enhance social and emotional outcomes for young women by providing information and resources from community sponsors.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"5300 W. Quincy St.","modifiedDate":"2017-08-10T16:56:18"},{"calendarId":15,"start":"2017-08-15T17:00:00","end":"2017-08-15T19:00:00","title":"Practice Day","eventDetails":"Area Youth Baseball League Coached by 015th District Officers and the State Police.","eventUrl":null,"contactDetails":"015th District Caps Office (312) 743-1495","location":"(Columbus Park) 501 S Central","modifiedDate":"2017-08-10T16:56:57"},{"calendarId":20,"start":"2017-08-15T16:00:00","end":"2017-08-15T18:00:00","title":"Bike Ambassadors","eventDetails":"Bike Ambassadors along with Chicago Police CAPS officers promote safety and public-awareness for all road users.","eventUrl":null,"contactDetails":"3127428770","location":"Foster/Washtenaw","modifiedDate":"2017-06-23T14:58:57"},{"calendarId":16,"start":"2017-08-15T13:00:00","end":"2017-08-15T14:00:00","title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Annie Ruiz (312)742-4521 CAPS016District@chicagopolice.org","location":"5151 N. Milwaukee","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":17,"start":"2017-08-15T10:30:00","end":"2017-08-15T11:30:00","title":"Senior Citizen Sub-Committee Meeting","eventDetails":"The Senior Citizen Sub-Committee is a monthly meeting featuring activities and informative talks on seniors related topics. Contact CAPS for details.","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@Chicagopolice.org","location":"017th District Community Room 4650 N. Pulaski Rd.","modifiedDate":"2017-07-26T11:28:42"},{"calendarId":10,"start":"2017-08-15T09:30:00","end":"2017-08-15T13:00:00","title":"10th District Explorers Volunteer at Jesse Brown VA Hospital","eventDetails":"10th District Explorers will help The Greater Chicago Food Depository give food to our veterans ","eventUrl":null,"contactDetails":"10th District CAPS office","location":"820 South Damen","modifiedDate":"2017-08-10T10:40:19"},{"calendarId":19,"start":"2017-08-14T18:30:00","end":"2017-08-14T19:30:00","title":"Beat 1934 & 1935","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"2nd Unitarian Church656 W. Barry","modifiedDate":"2017-06-29T14:35:36"},{"calendarId":2,"start":"2017-08-14T18:30:00","end":"2017-08-14T19:30:00","title":"Beat Meeting for Beats 211","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"3240 S INDIANA AVE","modifiedDate":"2017-08-22T11:04:37"},{"calendarId":15,"start":"2017-08-14T15:00:00","end":"2017-08-14T16:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic violence Subcommittee Meeting/Subcommittee Members discuss and plan upcoming events for Domestic Violence Victims and Promote Awareness.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5701 W. Madison ( 015th District)","modifiedDate":"2017-06-17T16:30:22"},{"calendarId":4,"start":"2017-08-14T10:00:00","end":"2017-08-14T13:00:00","title":"Play Streets","eventDetails":"PlayStreets Chicago encourages neighborhood organizations and residents to join their neighbors in getting active and moving.","eventUrl":null,"contactDetails":"Olivia Hernandez 773 731-0109","location":"8911 S. Exchange","modifiedDate":"2017-07-06T09:48:01"},{"calendarId":17,"start":"2017-08-13T11:00:00","end":"2017-08-13T23:00:00","title":"Chicago Korean Fest","eventDetails":"Chicago Korean Fest is in it 22nd Annual year with talented local prerformers, City agncies, Asian American food venders showcasing the diversity and uniqueness that is Chicago it will be better then last year. ","eventUrl":null,"contactDetails":"Brian Park 847-863-7648","location":"5601 N. Spaulding","modifiedDate":"2017-08-13T12:50:19"},{"calendarId":16,"start":"2017-08-13T10:30:00","end":"2017-08-13T12:00:00","title":"Faith and Action Event","eventDetails":"Please join us for a morning of thanks and prayer along with a meet and greet of your 16th District Officers! 10:30am mass, 11:30am outdoor roll call and a 11:45am meet and greet.","eventUrl":null,"contactDetails":"P.O. Melissa Lehrmann","location":"5212 W. Agatite, Our Lady of Victory Church","modifiedDate":"2017-08-09T18:37:51"},{"calendarId":22,"start":"2017-08-13T10:00:00","end":"2017-08-08T15:30:00","title":"Back to School-Basebal Game","eventDetails":"Youth tailgate cookout, Kansas City Royals Baseball game, book bag/school supply & tee shirt giveaway to participating youth. ","eventUrl":null,"contactDetails":"PO Northcross 312-745-0620","location":"11300 S. Vincennes","modifiedDate":"2017-08-09T09:56:36"},{"calendarId":7,"start":"2017-08-12T12:00:00","end":"2017-08-12T16:00:00","title":"Police Youth Baseball League Championship Game","eventDetails":"Englewood Police League South Side All-Stars (Boys & Girls) take on the North Lawndale Police League All-Stars for the City-wide Championship ay UIC Granderson Stadium. Come one and all to experience Police League Youth Baseball at it's finest! Free admission! Support youth baseball. Sponsors are \" Get in Chicago\", Cub charities, BBF family Services,Chicago park District, Teamwork Englewood, Fovever Fitness, Chicago and the Chicago Police Department.","eventUrl":null,"contactDetails":"Perry Gunn at Teamwork Englewood - (773) 488-6600","location":"Curtis Granderson Stadium - 901 W. Roosevelt Road","modifiedDate":"2017-08-07T18:28:02"},{"calendarId":15,"start":"2017-08-12T12:00:00","end":"2017-08-12T16:00:00","title":"Citywide Police Youth Baseball Tournament","eventDetails":"Police Youth Baseball teams gather for a game.","eventUrl":null,"contactDetails":"015th District Caps Office (312) 743-1495","location":"(Curtis Granderson Stadium) 901 W. Roosevelt Rd","modifiedDate":"2017-08-10T17:00:53"},{"calendarId":17,"start":"2017-08-12T11:00:00","end":"2017-08-12T23:00:00","title":"Chicago Korean Fest","eventDetails":"Chicago Korean Fest is in it 22nd Annual year with talented local prerformers, City agncies, Asian American food venders showcasing the diversity and uniqueness that is Chicago it will be better then last year. ","eventUrl":null,"contactDetails":"Brian Park 847-863-7648","location":"5601 N. Spaulding","modifiedDate":"2017-08-13T12:50:31"},{"calendarId":15,"start":"2017-08-12T10:00:00","end":"2017-08-12T13:00:00","title":"Explorer and Cub Scouts Fishing Derby","eventDetails":"Learn to fish with Chicago Park District certified fishing instructors and volunteers.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Columbus Park Refectory, 5701 W. Jackson","modifiedDate":"2017-08-10T17:00:08"},{"calendarId":25,"start":"2017-08-12T10:00:00","end":"2017-08-12T14:00:00","title":"Playstreets / Hoops Event","eventDetails":null,"eventUrl":null,"contactDetails":"NWSHC","location":"3000 N. Mobile","modifiedDate":"2017-08-08T13:43:01"},{"calendarId":11,"start":"2017-08-11T17:00:00","end":"2017-08-11T22:00:00","title":"Light In The Night Event Outdoor Movie Night at Tilton Park ","eventDetails":null,"eventUrl":null,"contactDetails":"West Garfield Park Cmty Stakeholders 1.773.287.5821","location":"Tilton Park 230 N. Kolmar ","modifiedDate":"2017-08-04T11:23:00"},{"calendarId":15,"start":"2017-08-11T17:00:00","end":"2017-08-11T20:00:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"(Austin Town Hall) 5610 W. Lake St. Chicago ,IL","modifiedDate":"2017-08-10T16:59:56"},{"calendarId":15,"start":"2017-08-11T16:00:00","end":"2017-08-11T17:00:00","title":"Safe Zone","eventDetails":"Police, Community Residents, Clergy, Elected Officals and other stakeholders will collectively host a positive loitering event and provide resources to the community.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Laramie and Lake St.","modifiedDate":"2017-08-10T16:59:42"},{"calendarId":11,"start":"2017-08-11T10:00:00","end":"2017-08-11T14:00:00","title":"After School Matters Summer Showcase The Crossover ","eventDetails":null,"eventUrl":null,"contactDetails":"Divine Purpose 224-651-5578","location":"4540 W. Washington United For Better Living","modifiedDate":"2017-08-04T12:03:02"},{"calendarId":9,"start":"2017-08-11T09:00:00","end":"2017-07-11T15:00:00","title":"Play Streets 2017","eventDetails":"Join the Brighton Park Neighborhood Council and Chicago Dept. of Health at Kelly Park for a day of sports and fun. A DJ and Bouncey house will be there also.","eventUrl":null,"contactDetails":"009th District CAPS, 312-747-8227","location":"Kelly Park, 4101 S. California","modifiedDate":"2017-08-09T11:50:54"},{"calendarId":25,"start":"2017-08-11T09:00:00","end":"2017-08-11T12:00:00","title":"CPS Back-To-School Open House","eventDetails":null,"eventUrl":null,"contactDetails":"312-746-5090","location":"Kelvyn Park High School - 4343 W. Wrightwood","modifiedDate":"2017-08-08T13:43:01"},{"calendarId":14,"start":"2017-08-10T19:00:00","end":null,"title":"1422 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":"Caps office 312-744-1261","location":"Habitat Company1402 N. Kedzie","modifiedDate":"2017-07-19T14:43:06"},{"calendarId":4,"start":"2017-08-10T19:00:00","end":"2017-08-10T20:00:00","title":"421 & 422 Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"2800 E. 79th St.","modifiedDate":"2017-06-24T09:32:54"},{"calendarId":8,"start":"2017-08-10T19:00:00","end":"2017-08-10T20:00:00","title":"814 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Vittum Park Fieldhouse 5010 W. 50th St","modifiedDate":"2017-05-24T17:47:28"},{"calendarId":16,"start":"2017-08-10T19:00:00","end":"2017-08-10T20:00:00","title":"1632 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Schorsch Village Hall 6940 W. Belmont","modifiedDate":"2017-08-09T18:28:38"},{"calendarId":7,"start":"2017-08-10T18:30:00","end":"2017-08-10T19:30:00","title":"Community Beat Meeting-Bt. 724/725","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Heins or Sgt. Redrick 312-747-6722","location":"Ogden Pk. 6500 s Racine","modifiedDate":"2017-07-26T19:15:09"},{"calendarId":1,"start":"2017-08-10T18:30:00","end":"2017-08-10T19:30:00","title":"CAPS 10 Sector Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312.745.4381 CAPS.001District@chicagopolice.org","location":"Condo Building 130 N Garland Ct","modifiedDate":"2017-03-21T16:44:45"},{"calendarId":2,"start":"2017-08-10T18:30:00","end":"2017-08-10T19:30:00","title":" Beat Meeting for Beats 225-231-232","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"5627 S MICHIGAN AVE","modifiedDate":"2017-08-22T11:04:52"},{"calendarId":22,"start":"2017-08-10T18:30:00","end":null,"title":"2213 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPs Office (312)745-0620","location":"9625 S. Longwood Dr.\nRidge Park","modifiedDate":"2017-08-09T09:57:42"},{"calendarId":15,"start":"2017-08-10T18:30:00","end":"2017-08-10T19:30:00","title":"Beat 1513S Caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"Caps Office ( 312) 743-1495","location":"1045 S. Monitor Ave. ( Clark School)","modifiedDate":"2017-06-17T16:30:16"},{"calendarId":10,"start":"2017-08-10T18:00:00","end":"2017-08-10T19:00:00","title":"Beat Meeting 1023 & 1024","eventDetails":"Beat 1023 & 1024 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Mt. Sinai Hospital\n2730 W. 15th Place\nCourtesy Parking Given on said block","modifiedDate":"2017-01-04T15:58:03"},{"calendarId":11,"start":"2017-08-10T18:00:00","end":"2017-08-10T19:00:00","title":"Beat Meeting: 1122/23","eventDetails":"\nCommunity engagements generating strategies to making neighborhoods safe. \n","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Legler Chicago Public Library 115 S. Pulaski ","modifiedDate":"2016-12-27T12:48:45"},{"calendarId":12,"start":"2017-08-10T18:00:00","end":"2017-08-10T19:00:00","title":"Beat Meeting 1214","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":" Bennett Day School 955 W, Grand ","modifiedDate":"2017-05-24T17:20:11"},{"calendarId":9,"start":"2017-08-10T18:00:00","end":"2017-08-10T19:00:00","title":"Bt. 931-933 Community Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"Cornell Square Park, 1809 W. 50th St.","modifiedDate":"2017-08-09T11:51:04"},{"calendarId":15,"start":"2017-08-10T17:00:00","end":"2017-08-10T20:00:00","title":"Chicago Nights/ Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227 -2880","location":"(Hubbard Park) 4942-58 W.Hubbard St..Chicago,IL ","modifiedDate":"2017-08-10T16:59:21"},{"calendarId":15,"start":"2017-08-10T17:00:00","end":"2017-08-10T19:00:00","title":"Austin Police Youth Baseball League","eventDetails":"Area Youth Baseball League Coached by 015th District Officers and the State Police.","eventUrl":null,"contactDetails":"015th District Caps Office (312) 743-1495","location":"(Columbus Park) 501 S Central","modifiedDate":"2017-08-10T16:59:05"},{"calendarId":20,"start":"2017-08-10T16:00:00","end":"2017-08-10T18:00:00","title":"Bike Ambassadors","eventDetails":"Bike Ambassadors along with Chicago Police CAPS officers promote safety and public-awareness for all road users.","eventUrl":null,"contactDetails":"3127428770","location":"Broadway/Lawrence","modifiedDate":"2017-06-23T14:59:05"},{"calendarId":10,"start":"2017-08-10T15:30:00","end":"2017-08-09T19:00:00","title":"B-Ball on the Block","eventDetails":"Basketball Event sponsored by Saint Anothny Hospital, where the youth of the community play in a basketball tournament. ","eventUrl":null,"contactDetails":"Caps Office (312) 747-7511","location":"3315 W. Ogden Ave","modifiedDate":"2017-08-10T10:40:41"},{"calendarId":1,"start":"2017-08-10T15:00:00","end":"2017-08-10T16:00:00","title":"1st District DAC Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312.745.4381 CAPS.001District@chicagopolice.org","location":"1st District Community Room 1718 S State St","modifiedDate":"2017-03-21T16:45:06"},{"calendarId":18,"start":"2017-08-10T11:00:00","end":"2017-08-10T12:00:00","title":"Positive Loitering","eventDetails":"Come out and join us as we pass out safety tips dinforma","eventUrl":null,"contactDetails":"018th District Community Relations Office 312.742.5778","location":"Dearborn & Illinois","modifiedDate":"2017-07-14T12:33:00"},{"calendarId":10,"start":"2017-08-10T06:00:00","end":"2017-08-10T07:59:00","title":"1023 Community Beat Meeting ","eventDetails":"Community Resident from the beat 1023 will have a public meeting to discuss the problem issues and concersn arising from the community, everyone is welcome to come.","eventUrl":null,"contactDetails":"CAPS Office Sgt. Lara 312-747-7190","location":"3315 w, ogden ave. ","modifiedDate":"2017-08-17T15:27:49"},{"calendarId":20,"start":"2017-08-09T19:00:00","end":"2017-08-09T20:00:00","title":"2012 Beat Meeting","eventDetails":"2012 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS-742-8770","location":"St. Gregory Gym1609 W. Gregory St.","modifiedDate":"2017-06-23T15:24:37"},{"calendarId":4,"start":"2017-08-09T19:00:00","end":"2017-08-09T20:00:00","title":"413 Beat Community Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"9037 S. Harper Ave","modifiedDate":"2017-06-24T09:32:16"},{"calendarId":8,"start":"2017-08-09T19:00:00","end":"2017-08-09T20:00:00","title":"812 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Clearing Library 6423 W. 63rd Pl","modifiedDate":"2017-05-24T17:47:46"},{"calendarId":19,"start":"2017-08-09T19:00:00","end":"2017-08-09T20:00:00","title":"Beat 1914","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"Clarendon Park4501 N. Clarendon","modifiedDate":"2017-06-29T14:35:55"},{"calendarId":14,"start":"2017-08-09T19:00:00","end":null,"title":"1424 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":"Caps office 312-744-1261","location":"Wicker Park1425 N. Damen","modifiedDate":"2017-07-19T14:44:09"},{"calendarId":16,"start":"2017-08-09T19:00:00","end":"2017-08-09T20:00:00","title":"1622 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Dunham Park 4638 N. Melvina","modifiedDate":"2017-02-22T10:47:30"},{"calendarId":9,"start":"2017-08-09T19:00:00","end":"2017-08-09T20:00:00","title":"Bt. 912 Community Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"St. Maurice Church, 3625 S. Hoyne","modifiedDate":"2017-08-09T11:51:16"},{"calendarId":17,"start":"2017-08-09T19:00:00","end":"2017-08-09T20:00:00","title":"Combined Beat Meeting 1732/1733","eventDetails":"This is a community meeting where residents meet with the police to address crime issues on the beat, develop strategies to solve problems, and disseminate crime prevention information. ","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@chicagopolice.org","location":"Athletic Park Field House 3546 W. Addison","modifiedDate":"2017-07-26T11:28:53"},{"calendarId":7,"start":"2017-08-09T18:30:00","end":"2017-08-09T19:30:00","title":"Community Beat Meeting-Bt. 726","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Heins or Sgt. Redrick 312-747-6722","location":"Lindblom Pk. 6054 S. Damen","modifiedDate":"2017-07-26T19:14:25"},{"calendarId":1,"start":"2017-08-09T18:30:00","end":"2017-08-09T19:30:00","title":"CAPS 20 Sector Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312.745.4381 CAPS.001District@chicagopolice.org","location":"University Center 525 S State St. ","modifiedDate":"2017-03-21T16:44:56"},{"calendarId":2,"start":"2017-08-09T18:30:00","end":"2017-08-09T19:30:00","title":"Beat Meeting for Beats 213-215-224","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"4058 S MICHIGAN AVE","modifiedDate":"2017-08-22T11:05:18"},{"calendarId":22,"start":"2017-08-09T18:30:00","end":null,"title":"Beat Meeting 2232/2233","eventDetails":null,"eventUrl":null,"contactDetails":"CAPs Office (312)745-0620","location":"10438 S. Wallace\nFernwood Park","modifiedDate":"2017-08-09T09:58:56"},{"calendarId":25,"start":"2017-08-09T18:00:00","end":"2017-08-09T19:00:00","title":"DAC Meeting","eventDetails":"DAC Meeting and Officer of the Month Awards","eventUrl":null,"contactDetails":"312-746-5090","location":"25th District - 5555 W. Grand Ave.","modifiedDate":"2017-08-16T14:41:06"},{"calendarId":18,"start":"2017-08-09T15:30:00","end":"2017-08-09T16:30:00","title":"30 Sector Hospitality Meeting","eventDetails":"Business Owners and stakeholders discuss problems and develop strategies to address issues and concerns related to businesses within the district.","eventUrl":null,"contactDetails":"P.O. G. Incaprera 312.742.5880 ext 1208","location":"HighLine 169 W. Kinzie","modifiedDate":"2017-07-14T11:28:00"},{"calendarId":11,"start":"2017-08-09T15:00:00","end":"2017-08-09T18:00:00","title":"Mosaic Reveal 345 Art Gallery ","eventDetails":"Join us for the unveiling of Mosaic design completed by 15 incredible After School Matter students.","eventUrl":null,"contactDetails":"Cory Williams 773.909.0971","location":"345 N. Kedzie Ave.","modifiedDate":"2017-08-04T12:13:00"},{"calendarId":22,"start":"2017-08-09T13:30:00","end":null,"title":"Court Advocacy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPs Office (312)745-0620","location":"1900 W. Monterey\n022nd Dist. Station","modifiedDate":"2016-12-28T11:52:55"},{"calendarId":14,"start":"2017-08-09T13:30:00","end":null,"title":"Domestic Violence","eventDetails":"The Domestic Violence Sub-Committee is comprised of community members and stake holders who meet and discuss ways to empower individuals who are affected by domestic violence.","eventUrl":null,"contactDetails":"Linda Rosales (312)744-1261","location":"2150 N. California","modifiedDate":"2017-07-19T15:07:50"},{"calendarId":5,"start":"2017-08-09T13:00:00","end":"2017-08-09T13:00:00","title":"Kick Back Wednesday Youth Event","eventDetails":"A pop-up play event sponosored by the Department to provide fun and healthy activities for young people and an opportunity for positive interaction between police, young people and other neighborhoord residents","eventUrl":null,"contactDetails":"Margie Reid, 5th District Community Organizer, 312-747-3100","location":"Kensington Park, 345 E. 118th Street","modifiedDate":"2017-06-27T13:28:00"},{"calendarId":6,"start":"2017-08-09T11:00:00","end":"2017-08-09T12:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Meet with seniors on crime tip prevention and plan fun filled events.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-29T14:29:10"},{"calendarId":18,"start":"2017-08-09T11:00:00","end":"2017-08-09T12:30:00","title":"Senior Domestic Violence Workshop","eventDetails":"Domestic Violence Workshop designed specifically for seniors.","eventUrl":null,"contactDetails":"P.O. Ramirez 312.742.5778","location":"Zelda Ormes 116 W. Elm","modifiedDate":"2017-07-14T11:28:00"},{"calendarId":25,"start":"2017-08-09T10:00:00","end":"2017-08-09T11:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence","eventUrl":null,"contactDetails":"P.O. Rodriguez A.\n312/746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-30T13:48:23"},{"calendarId":20,"start":"2017-08-09T10:00:00","end":"2017-08-09T11:00:00","title":"Seniors Meeting","eventDetails":"Seniors Meeting, a monthly meeting featuring activities and informative talks on seniors related topics. Contact CAPS for details.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District Community Room 5400 N. Lincoln ave ","modifiedDate":"2017-06-23T14:12:48"},{"calendarId":15,"start":"2017-08-09T00:00:00","end":"2017-08-09T23:59:00","title":"Chicago Nights/Summer Lights","eventDetails":"To engage youth, families and individuals of all ages in organized activities and receive information about available resources.","eventUrl":null,"contactDetails":"Build Organization,Inc., (773) 227-2880","location":"5085 W. Adams St. Chicago, IL","modifiedDate":"2017-08-10T16:58:28"},{"calendarId":20,"start":"2017-08-08T19:00:00","end":"2017-08-08T20:00:00","title":"2022 Beat Meeting","eventDetails":"2022 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Broadway Armory5917 N. Broadway","modifiedDate":"2017-06-23T15:24:52"},{"calendarId":4,"start":"2017-08-08T19:00:00","end":"2017-08-08T20:00:00","title":"424 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"3200 E. 91st St.","modifiedDate":"2017-06-24T09:31:37"},{"calendarId":22,"start":"2017-08-08T19:00:00","end":null,"title":"Beat Meeting 2223","eventDetails":null,"eventUrl":null,"contactDetails":"CAPs Office (312)745-0620","location":"403 W. 93rd St.\nRobichaux Park","modifiedDate":"2016-12-28T10:33:26"},{"calendarId":8,"start":"2017-08-08T19:00:00","end":"2017-08-08T20:00:00","title":"831/832 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Marquette Park 6734 S. Kedzie","modifiedDate":"2017-05-24T17:48:20"},{"calendarId":11,"start":"2017-08-08T18:30:00","end":"2017-08-08T19:30:00","title":"Beat Meeting: 1124/25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"JLM Abundant Life Center 2622 W. Jackson","modifiedDate":"2016-12-27T12:49:28"},{"calendarId":7,"start":"2017-08-08T18:30:00","end":"2017-08-08T19:30:00","title":"Community Beat Meeting-Bt. 722/723","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Heins or Sgt. Redrick 312-747-6722","location":"Kennedy-King College 740 w 63rd st","modifiedDate":"2017-07-26T19:17:11"},{"calendarId":15,"start":"2017-08-08T18:30:00","end":"2017-08-08T19:30:00","title":"Beat 1511/24 Caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"Caps Office ( 312) 743-1495","location":"5900 W.Iowa ( Hope Community Church)","modifiedDate":"2017-06-17T16:30:08"},{"calendarId":2,"start":"2017-08-08T18:30:00","end":"2017-08-08T19:30:00","title":"Beat Meeting for Beat 222","eventDetails":"Officers and residents come together to problem solve issues pertaining to the beat that they reside on.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"4434 S LAKE PARK","modifiedDate":"2017-08-22T11:05:35"},{"calendarId":9,"start":"2017-08-08T18:30:00","end":"2017-08-08T19:30:00","title":"Bt. 913-915 Community Meetiing","eventDetails":null,"eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"St. Barb's Church 2859 S. Throop","modifiedDate":"2017-08-09T11:51:32"},{"calendarId":10,"start":"2017-08-08T18:00:00","end":"2017-08-08T19:00:00","title":"Beat Meeting 1034","eventDetails":"Beat 1034 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"YMCA- Rauner\n2700 W. Western Ave\n","modifiedDate":"2017-01-04T15:55:10"},{"calendarId":18,"start":"2017-08-08T18:00:00","end":"2017-08-08T19:00:00","title":"Court Advocacy Meeting","eventDetails":"Court Advocacy Team Leader meets with the 018th district court advocates to discuss and update advocates on current court cases.","eventUrl":null,"contactDetails":"P.O. A. Robinson 312.742.5778","location":"018th District 1160 N. Larrabee Community Room","modifiedDate":"2017-07-14T11:23:00"},{"calendarId":4,"start":"2017-08-08T18:00:00","end":"2017-08-08T20:00:00","title":"Healthy Kids Town Hall Meeting","eventDetails":"Earlier this year, CDPH released a Healthy Kids report showcasing the progress Chicago has made in a number of key areas while also highlighting the challenges that still remain. This summer CDPH will host a series of town hall meetings to discuss the state of youth health with residents. We are seeking feedback on five policies we are currently exploring based on the key areas highlighted in the report: improving homes, empowering parents, promoting vaccines, mitigating trauma, and reducing obesity. ","eventUrl":null,"contactDetails":"Chicago Department of Public Health, 312-747-9884","location":"Rowan Park Field House, 11546 S. Avenue L","modifiedDate":"2017-07-19T08:52:59"},{"calendarId":22,"start":"2017-08-08T18:00:00","end":"2017-08-08T20:00:00","title":"Positive Loitering/ Outdoor Roll Call","eventDetails":"Positive Loitering - community members gathering on the block due to recent increase in crime/illegal activity.","eventUrl":null,"contactDetails":"PO Beamon 312-745-0620","location":"8900 Block of S. Parnell Ave.","modifiedDate":"2017-08-09T09:59:44"},{"calendarId":18,"start":"2017-08-08T13:00:00","end":"2017-08-08T15:00:00","title":"Senior & Explorer CPR Workshop","eventDetails":"Come out and Learn CPR with our Seniors and 018th District Explorers!","eventUrl":null,"contactDetails":"P.O. S. Ramirez 312.742.5778 ","location":"Elizabeth Woods Apt 2140 N. Clark","modifiedDate":"2017-07-14T11:13:00"},{"calendarId":22,"start":"2017-08-08T10:00:00","end":null,"title":"Clergy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPs Office (312)745-0620","location":"1900 W. Monterey\n022nd District Station","modifiedDate":"2016-12-28T11:50:16"},{"calendarId":6,"start":"2017-08-08T10:00:00","end":"2017-08-08T11:00:00","title":"Business Subcommittee Meeting","eventDetails":"Meet with local businesses as we plan future events to foster a safe community.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312)-744-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-29T14:29:20"},{"calendarId":7,"start":"2017-08-08T10:00:00","end":"2017-08-08T11:59:00","title":"7th District Business Sub-committee meeting","eventDetails":"The business sub committee meets monthly to discuss important business related topics of concern to the (7th district) Englewood, West Englewood and Greater Crand Crossing communities. This month items related to local Day Care Facility operations are on the agenda.","eventUrl":null,"contactDetails":"Officer Janice Wilson at Englewood CAPS office /312-747-6722","location":"007th district community room","modifiedDate":"2017-08-07T18:31:57"},{"calendarId":22,"start":"2017-08-08T10:00:00","end":"2017-08-08T12:00:00","title":"Faith Based Clergy Meeting","eventDetails":"Local churches & community resource providers meet to share materials & conduct presentations for the clergyman","eventUrl":null,"contactDetails":"PO Northcross 312-745-0620","location":"1900 W. Monterey","modifiedDate":"2017-08-09T10:00:01"},{"calendarId":11,"start":"2017-08-08T09:30:00","end":"2017-08-08T13:30:00","title":"Garfield Community Service Center Community Resource Fair ","eventDetails":"Free Give Aways / Dental Exams/ Back To School Vaccines and Much More","eventUrl":null,"contactDetails":"Garfield Cmty Center 1.312.743.0206","location":"10 S. Kedzie ","modifiedDate":"2017-08-04T11:13:52"},{"calendarId":10,"start":"2017-08-08T06:00:00","end":"2017-08-08T07:00:00","title":"1034 BEAT MEETING FOR THE COMMUNITY","eventDetails":"Community Beat Meeting for the residents, community and business personell to discuss current issues happening in the community. ","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-7190 SGT. LARA","location":"3315 W. OGDEN AVE","modifiedDate":"2017-08-17T15:27:26"},{"calendarId":10,"start":"2017-08-08T06:00:00","end":"2017-08-09T07:00:00","title":"Community Beat Meeting for 1034","eventDetails":"Community residents and the Chicago Police Department of the 10th District will meet to discuss community issues and concerns.","eventUrl":null,"contactDetails":"CAPS Office Sgt. Lara 312-747-7190","location":"YMCA Rauner 2700 S. Western Ave. ","modifiedDate":"2017-08-10T10:41:16"},{"calendarId":20,"start":"2017-08-07T19:00:00","end":"2017-08-07T20:00:00","title":"2011 Beat Meeting","eventDetails":"2011 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District5400 N. Lincoln Ave.","modifiedDate":"2017-06-23T15:25:09"},{"calendarId":11,"start":"2017-08-07T15:30:00","end":"2017-08-12T20:30:00","title":"Delano Classic Basketball Tournament ","eventDetails":"Neigborhood basketball tournament sponsored by the local businesses on Madison. Monday August 7 to Saturday 12 from 3:30 pm to 8:30 pm.","eventUrl":null,"contactDetails":"Joe Black Life Restaurant 1.773.521.8000","location":"Melody School 3900 W. Wilcox","modifiedDate":"2017-08-04T13:33:00"},{"calendarId":17,"start":"2017-08-07T11:00:00","end":"2017-08-07T12:00:00","title":"Senior Bingo Event","eventDetails":"Come out and join us! The 017th District CAPS office is hosting a Summer Senior Bingo Event please call the CAPS office for more details. ","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 or E-Mail CAPS.017District@Chicagopolice.org","location":"017th District Community Room 4650 N. Pulaski Rd.","modifiedDate":"2017-07-26T11:29:05"},{"calendarId":4,"start":"2017-08-07T10:00:00","end":"2017-08-07T13:00:00","title":"Play Streets","eventDetails":"PlayStreets Chicago encourages neighborhood organizations and residents to join their neighbors in getting active and moving.","eventUrl":null,"contactDetails":"Olivia Hernandez 773 731-0109","location":"8800 S. Houston","modifiedDate":"2017-07-06T09:48:01"},{"calendarId":7,"start":"2017-08-05T15:00:00","end":"2017-08-05T18:00:00","title":"So Fresh Saturdays","eventDetails":" A community driven edutainment series that will showcase various artistic expressions and educational workshops focusing on youth entrepreneurship, hip hop, media, social networks, community activism, and culturally relevant history using various media formats.","eventUrl":null,"contactDetails":"Residents Association of Greater Englewood (R.A.G.E.) email: Joinrage@gmail.com; phone: 866-845-1035","location":"Ogden Park, 6500 S. Racine","modifiedDate":"2017-08-05T21:03:03"},{"calendarId":3,"start":"2017-08-05T11:00:00","end":"2017-08-05T13:00:00","title":"Youth/Explorers Meeting","eventDetails":"Youth/Explorers Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"003rd District(Auditorium) 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":6,"start":"2017-08-05T11:00:00","end":"2017-08-05T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-29T14:29:30"},{"calendarId":11,"start":"2017-08-05T11:00:00","end":"2017-08-05T19:00:00","title":"Community Health Fair Kingdom Lifeline Ministries","eventDetails":"Health Fair Food -Beverages-Clothings","eventUrl":null,"contactDetails":"KingdomLifeline Ministries 1.630.886.6470","location":"4039 W. Van Buren ","modifiedDate":"2017-08-04T11:13:33"},{"calendarId":16,"start":"2017-08-05T10:00:00","end":"2017-08-05T16:00:00","title":"Keeping Kids Sfe Project at Mike Anderson Chevrolet","eventDetails":"Free health and safety fair will be providing FBI quality digital fingerprint records for children. ","eventUrl":null,"contactDetails":"Mike Anderson Chevrolet","location":"5333 W. Irving Park Rd","modifiedDate":"2017-08-09T18:38:14"},{"calendarId":25,"start":"2017-08-05T08:30:00","end":"2017-08-05T11:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-30T13:22:17"},{"calendarId":11,"start":"2017-08-04T17:00:00","end":"2017-08-04T22:00:00","title":"Light In The Night Event Peace Be Still- Westside Cowboy Event ","eventDetails":null,"eventUrl":null,"contactDetails":"West Garfield Park Cmty Stakeholders 1.773.287.5821","location":"4205 W. Madison","modifiedDate":"2017-08-04T11:23:00"},{"calendarId":7,"start":"2017-08-04T16:00:00","end":"2017-08-04T18:00:00","title":"68th & Hermitage Block Party - Presented by Teamwork Englewood","eventDetails":"Pop-up block club engagement of food, fun and music for all ages. Presented by Teamwork Englewood, a C.P.D. community partner whom unites the many organizations serving Englewood residents and works toward the common goal of building stronger neighborhoods, as capacity builder and a catalyst for positive community change. ","eventUrl":null,"contactDetails":"Mr. Chauncey P. Harrison, Project Coordinator for Public Safety, at (773) 488-6600","location":"6800 Block of Hermitage","modifiedDate":"2017-08-07T18:44:47"},{"calendarId":22,"start":"2017-08-03T19:00:00","end":null,"title":"Beat 2211/2212 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPs Office (312)745-0620","location":"1900 W. Monterey\n022nd District Community Room","modifiedDate":"2016-12-28T10:26:27"},{"calendarId":24,"start":"2017-08-03T19:00:00","end":null,"title":"District Advisory Council Meeting","eventDetails":"Not open to the public","eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District","modifiedDate":"2016-12-07T10:08:12"},{"calendarId":14,"start":"2017-08-03T19:00:00","end":null,"title":"1411/1412 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":"Caps office 312-744-1261","location":"St. Nicolai Church3000 N. Kedzie","modifiedDate":"2017-07-19T14:44:41"},{"calendarId":8,"start":"2017-08-03T19:00:00","end":"2017-08-03T20:00:00","title":"834 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Bogan High School 3939 W. 79th St","modifiedDate":"2017-05-24T17:48:39"},{"calendarId":4,"start":"2017-08-03T19:00:00","end":"2017-08-03T20:00:00","title":"434 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"10501 S. Torrence Ave","modifiedDate":"2017-06-24T09:31:03"},{"calendarId":19,"start":"2017-08-03T18:30:00","end":"2017-08-03T19:30:00","title":"Beat 1915","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"Uptown Buena Library929 W. Buena","modifiedDate":"2017-06-29T14:36:08"},{"calendarId":25,"start":"2017-08-03T18:30:00","end":"2017-08-03T19:30:00","title":"2522 Beat Meeting","eventDetails":"2522 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Hermosa Park\n2240 N. Kilbourn\n","modifiedDate":"2016-12-15T10:25:02"},{"calendarId":15,"start":"2017-08-03T18:30:00","end":"2017-08-03T19:30:00","title":"Beat 1512/23 Caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5425 W. Lake ST ( PCC Wellness Center)","modifiedDate":"2017-06-17T16:30:02"},{"calendarId":11,"start":"2017-08-03T18:00:00","end":"2017-08-03T19:00:00","title":"Beat Meeting: 1112/21","eventDetails":"\nCommunity engagements generating strategies to making neighborhoods safe. \n","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2016-12-27T12:48:00"},{"calendarId":14,"start":"2017-08-03T17:00:00","end":null,"title":"Peer Jury","eventDetails":"Peer jury is designed to give individuals who have committed a non-violent offense to be adjudicated based on the recommendation of their peers","eventUrl":null,"contactDetails":"Seth Wiselogel (312)744-1261","location":"2150 N. California","modifiedDate":"2017-07-19T15:37:20"},{"calendarId":20,"start":"2017-08-03T16:00:00","end":"2017-08-03T18:00:00","title":"Bike Ambassadors","eventDetails":"Bike Ambassadors along with Chicago Police CAPS officers promote safety and public-awareness for all road users.","eventUrl":null,"contactDetails":"3127428770","location":"Sheridan/Thorndale","modifiedDate":"2017-06-23T14:59:50"},{"calendarId":22,"start":"2017-08-03T14:00:00","end":null,"title":"Diversity snd Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPs Office (312)745-0620","location":"1900 W. Monterey\n022nd District Station","modifiedDate":"2016-12-28T11:50:40"},{"calendarId":2,"start":"2017-08-03T13:00:00","end":"2017-08-03T15:00:00","title":"Faith-Based Meeting ","eventDetails":"Meet with other faith-based leaders in the neighborhood and police to discuss crime and safety issues, and the way faith-based organizations and their congregations can contribute to improving the community","eventUrl":null,"contactDetails":"Officer Denise Gathings 312-747-5109","location":"Cathedral Missionary Baptist Church, 4821 S Wabash ","modifiedDate":"2017-07-19T09:28:40"},{"calendarId":3,"start":"2017-08-03T13:00:00","end":"2017-08-03T14:00:00","title":"District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":4,"start":"2017-08-02T19:00:00","end":"2017-08-02T20:00:00","title":"412 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"1750 E. 78th St.","modifiedDate":"2017-06-24T09:28:35"},{"calendarId":19,"start":"2017-08-02T19:00:00","end":"2017-08-02T20:00:00","title":"Beat 1923, 24 & 25","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"19th District Police850 W. Addison","modifiedDate":"2017-06-29T14:36:24"},{"calendarId":8,"start":"2017-08-02T19:00:00","end":"2017-08-02T20:00:00","title":"815/821 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Bruno's 4839 S. Harding","modifiedDate":"2017-05-24T17:49:04"},{"calendarId":20,"start":"2017-08-02T19:00:00","end":"2017-08-02T20:00:00","title":"2033 Beat Meeting","eventDetails":"2033 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Bezazian Library1226 W. Ainslie St.","modifiedDate":"2017-06-23T15:25:47"},{"calendarId":9,"start":"2017-08-02T19:00:00","end":"2017-08-02T20:00:00","title":"Bt. 911-921 Community Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"Davis School Annex, 3050 W. 39th Place","modifiedDate":"2017-08-09T11:51:45"},{"calendarId":25,"start":"2017-08-02T18:30:00","end":"2017-08-02T19:30:00","title":"2512 Beat Meeting","eventDetails":"2512 Beat Meeting","eventUrl":null,"contactDetails":"P.O.Rodriguez A. \n312/746-5090","location":"Shriner's Hospital\n2211 N. Oak Park","modifiedDate":"2016-12-30T13:29:04"},{"calendarId":14,"start":"2017-08-02T18:00:00","end":null,"title":"Court Advocacy Meeting","eventDetails":"Court Advocacy Team Leader meets with current court advocates to discuss on going court cases and will advise of any new or old cases that have been closed. ","eventUrl":null,"contactDetails":"Seth Wiselogal (312)744-1261","location":"2150 N. California","modifiedDate":"2017-07-19T16:06:49"},{"calendarId":15,"start":"2017-08-02T18:00:00","end":"2017-08-02T19:00:00","title":"Beat 1522/33 Caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"645 S. Central (Loretto Hospital)","modifiedDate":"2017-06-17T16:29:54"},{"calendarId":12,"start":"2017-08-02T18:00:00","end":"2017-08-02T19:00:00","title":"Beat Meeting 1224","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"Chicago Police Academy 1300 W. Jackson","modifiedDate":"2017-05-24T17:25:58"},{"calendarId":11,"start":"2017-08-02T17:00:00","end":"2017-08-02T19:00:00","title":"Taking Our Park Back Initiative ","eventDetails":"Encouraging families to use and enjoy our parks. ","eventUrl":null,"contactDetails":"Alderman Jason C. Ervin 1.773.533.0900","location":"515 S. Washtenaw Altgeld Park ","modifiedDate":"2017-07-27T15:49:50"},{"calendarId":18,"start":"2017-08-02T15:00:00","end":"2017-08-02T16:00:00","title":"20 Sector Hospitality Meeting","eventDetails":"Business owners and residents discuss problems and develop strategies to address issues and concerns related to businesses within the district.","eventUrl":null,"contactDetails":"P.O. G. Incaprera 312.742.5880 ext 1208","location":"She-Nanigans 15 W. Division","modifiedDate":"2017-07-14T11:08:35"},{"calendarId":3,"start":"2017-08-02T14:00:00","end":"2017-08-02T15:00:00","title":"Court Advocate Meeting","eventDetails":"003rd District Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":5,"start":"2017-08-02T13:00:00","end":"2017-08-02T15:00:00","title":"Kick Back Wednesday Youth Event","eventDetails":"A pop-up play event sponosored by the Department to provide fun and healthy activities for young people and an opportunity for positive interaction between police, young people and other neighborhoord residents","eventUrl":null,"contactDetails":"Margie Reid, 5th District Community Organizer, 312-747-3100","location":"White Park, 1120 W. 122nd Street","modifiedDate":"2017-06-27T13:23:01"},{"calendarId":24,"start":"2017-08-01T18:00:00","end":"2017-08-01T20:00:00","title":"National Night Out -- Beat 2433","eventDetails":"Join friends, neighbors and police to stand up against crime in your neighborhood","eventUrl":null,"contactDetails":"Community Policing Office, (312) 744-6321","location":"Swift School at Thorndale and Winthrop","modifiedDate":"2017-07-11T09:50:32"},{"calendarId":24,"start":"2017-08-01T18:00:00","end":"2017-08-01T18:30:00","title":"National Night Out -- Beats 2422, 2423 and 2424","eventDetails":"Join friends, neighbors and police to stand up against crime in your neighborhood","eventUrl":null,"contactDetails":"Community Policing Office (312) 744-6321","location":"Touhy Park, 7348 N. Paulina","modifiedDate":"2017-07-11T09:48:10"},{"calendarId":24,"start":"2017-08-01T18:00:00","end":"2017-08-01T21:00:00","title":"National Night Out -- Beats 2411, 2412 and 2413","eventDetails":"Join friends, neighbors and police to stand up against crime in your neighborhood","eventUrl":null,"contactDetails":"Community Policing Office, (312) 744-6321","location":"Warren Park, 6601 N. Western","modifiedDate":"2017-07-11T11:49:07"},{"calendarId":15,"start":"2017-08-01T18:00:00","end":"2017-08-01T20:00:00","title":"National Night Out -- 15th District","eventDetails":"COMMUNITY STAKEHOLDERS IN COLLABORATION WITH LAW ENFORCEMENT PARTICPATE IN A COMMUNITY EVENT TO HEIGHTEN AWARENESS ON CRIME AND DISORDER.","eventUrl":null,"contactDetails":"Community Policing Office, 312-743-1495","location":"Moore Park, 5055 W. Adams","modifiedDate":"2017-07-11T07:48:28"},{"calendarId":8,"start":"2017-08-01T18:00:00","end":"2017-08-01T21:00:00","title":"National Night Out -- 8th District","eventDetails":"Annual peace gathering and march with face painting, raffles, refreshments. Movie in the Park \"Sing\" begins at dusk. In addition, the Clearing Night Force Watch will hold a memorial motorcade to remember lives lost to violence. The motorcade will begin at 7:00 p.m. at Hale Park, 62nd Street and Melvina. For more information on the motorcade contact Clearing Night Force at 773-340-8021.","eventUrl":null,"contactDetails":"Community Policing Office, 312-747-8724","location":"West Lawn Park, 4233 W. 65th Street","modifiedDate":"2017-07-14T13:47:02"},{"calendarId":1,"start":"2017-08-01T18:00:00","end":"2017-08-01T20:30:00","title":"National Night Out --1st District","eventDetails":"Come join the 1st District Community Relations Team for a night of fun! Get to know your neighbors, learn about police programs, participate in activites, enjoy giveaways, and help build a stronger community! ","eventUrl":null,"contactDetails":"1st District Community Relations, 1718 S. Sate Street 312-745-7381 CAPS.001district@ChicagoPolice.org ","location":"The Women's Park, 1801 S. Indiana Ave ","modifiedDate":"2017-07-11T07:47:42"},{"calendarId":9,"start":"2017-08-01T18:00:00","end":"2017-08-01T19:00:00","title":"Bt. 924 Community Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"Davis Square Park, 4430 S. Marshfield","modifiedDate":"2017-08-09T11:52:00"},{"calendarId":10,"start":"2017-08-01T18:00:00","end":"2017-08-01T19:00:00","title":"Beat Meeting 1022","eventDetails":"Beat 1022 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Albany Terrace3030 W. 21st Place","modifiedDate":"2017-08-10T10:43:02"},{"calendarId":19,"start":"2017-08-01T18:00:00","end":"2017-08-01T20:00:00","title":"National Night Out -- 19th District","eventDetails":"Community event with 19th District Officers celebrating National Night Out Against Crime","eventUrl":null,"contactDetails":"19th District Community Policing Office 3127440064","location":"Hamlin Park, 3035 N. Hoyne","modifiedDate":"2017-07-11T07:53:07"},{"calendarId":6,"start":"2017-08-01T17:30:00","end":"2017-08-01T20:00:00","title":"National Night Out -- 6th District","eventDetails":"Join us to celebrate the police and community working together with food, fun and activities for young people","eventUrl":null,"contactDetails":"Community Policing Office, (312)- 745-3641","location":"Police Station, 7808 S. Halsted St.","modifiedDate":"2017-07-11T07:54:39"},{"calendarId":9,"start":"2017-08-01T17:30:00","end":"2017-08-01T20:00:00","title":"National Night Out -- 9th District","eventDetails":"Come to McKinley Park to show your support, activities for the whole family, Music, food, fishing and much more..","eventUrl":null,"contactDetails":"Community Policing Office, 312-747-3501","location":"McKinley Park, 2210 W. Pershing Road","modifiedDate":"2017-07-11T09:55:07"},{"calendarId":22,"start":"2017-08-01T17:00:00","end":"2017-08-01T20:00:00","title":"National Night Out -- 22nd District","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing Office, 312-745-0620","location":"District Station, 1900 W. Monterey","modifiedDate":"2017-07-11T07:56:42"},{"calendarId":14,"start":"2017-08-01T17:00:00","end":"2017-08-01T20:00:00","title":"National Night Out -- 14th District","eventDetails":"Join friends and neighbors for food, fun and activities. Free raffles and prizes. Live band, singers and dancers, DJ, face painting, inflatable jump house, pie the police game, Fire truck, U.S. Army display show and obstacle course, senior bingo, bike ambassadors, PNC basket hoops game, Lowes activity table, and National Guard climbing wall. ","eventUrl":null,"contactDetails":"Community Policing Office, 312-744-1261","location":"District Station, 2150 N. California","modifiedDate":"2017-07-19T15:43:10"},{"calendarId":20,"start":"2017-08-01T17:00:00","end":"2017-06-23T19:00:00","title":"National Night Out -- 20th District","eventDetails":"Join the Chicago Police 20th District as we host National Night Out, a community event that brings the community together with Police for a fun filled family event. We will be featuring the Jessie White Tumblers, Chicago Fire Dept, Chicago Police Canine and Mounted Units, Dj Joey and lots of other entertainment. Free Hot Dogs and other giveaways.","eventUrl":null,"contactDetails":"Community Policing Office, 312-742-8770","location":"Margate Park, 4921 N. Marine Drive","modifiedDate":"2017-07-11T08:02:10"},{"calendarId":24,"start":"2017-08-01T17:00:00","end":"2017-08-01T19:00:00","title":"National Night Out -- Beats 2431 and 2432","eventDetails":"Join friends, neighbors and police to stand up against crime in your neighborhood","eventUrl":null,"contactDetails":"Community Policing Ofice, (312) 744-6321","location":"District Station, 6464 N. Clark","modifiedDate":"2017-07-11T09:53:53"},{"calendarId":25,"start":"2017-08-01T17:00:00","end":"2017-08-01T20:00:00","title":"National Night Out -- 25th District","eventDetails":"Our annual community-building campaign that promotes police-community partnerships and neighborhood camaraderie to make our neighborhoods safer, better places to live. We will have a jumping jack, a dunk-tank, face-painters, and a DJ for the kids for the kids. Bingo for the adults. Free food, soda, and water. Demos from CPD SWAT, Canine, and the Bomb Squad. Raffle prizes and a lot more - DON'T MISS IT !!!","eventUrl":null,"contactDetails":"Community Policing Office, (312) 746-5090 or Caps025District@chicagopolice.org","location":"District Station, 5555 W. Grand, Front Parking Lot","modifiedDate":"2017-07-11T09:59:00"},{"calendarId":17,"start":"2017-08-01T17:00:00","end":"2017-08-01T20:00:00","title":"National Night Out -- 17th Distict","eventDetails":"The 17th District is hosting their annual NNO with entertainment, childrens games and activities, resourse tables, city service representatives and much more.","eventUrl":null,"contactDetails":"Community Policing Office, 312-742-4588 or Email CAPS.017District@chicagopolice.org","location":"District Station, 4650 N. Pulaski, East Parking Lot","modifiedDate":"2017-07-11T09:57:33"},{"calendarId":12,"start":"2017-08-01T17:00:00","end":"2017-08-01T20:00:00","title":"National Night Out -- 12th District","eventDetails":"Join friends, neighbors and police for the annual night out against crime. Enjoy a night out with the whole family with food, fun and activities for young people and show your support for preventing crime and violence in your neighborhood. ","eventUrl":null,"contactDetails":"Community Policing Office, 312-746-8306","location":"District Station, 1412 S. Blue Island Ave","modifiedDate":"2017-07-12T08:08:32"},{"calendarId":3,"start":"2017-08-01T17:00:00","end":"2017-08-01T20:00:00","title":"National Night Out -- 3rd District","eventDetails":"Join friends, neighbors and police for the annual night our against crime. Come for food, fun and activities for young people and show your support for reducing crime and violence in your community.","eventUrl":null,"contactDetails":"Community Policing Office, 312-747-7004","location":"Meyering Park, 7140 S. King Drive","modifiedDate":"2017-07-12T08:05:50"},{"calendarId":2,"start":"2017-08-01T17:00:00","end":"2017-08-01T20:00:00","title":"National Night Out -- 2nd District","eventDetails":"National Night Out is a community-police awareness raising event. Residents can meet with their neighbors and neighborhood police officers and partake in food, play games etc. Other National Night Out events will be held at: KLEO Center, 119 E. Garfield; Greater Metro Baptist Church, 5856 S. Wabash; Margaret Field Manor, 4500 S. Wabash (all from 2-4 pm); Trinity Acres, 3939 S. Calumet (4-6 pm); and 5301 S. Wabash (12-4 pm)","eventUrl":null,"contactDetails":"Community Policing Office, 312 747-5109","location":"4434 S. Lake Park","modifiedDate":"2017-07-13T08:24:42"},{"calendarId":16,"start":"2017-08-01T17:00:00","end":"2017-08-01T21:00:00","title":"National Night Out -- 16th District","eventDetails":"Please join us for a night of family fun to celebrate police and the community coming together to make our homes, streets, schools, and parks safer. Activities, food and a blood drive enhance the fun! Each time you dontate blood, you help safe a life! LifeSource Donor Coach will be parked on Ardmore at the corner of Ardmore and Natoma.","eventUrl":null,"contactDetails":"16th District Community Policing Office, 312-742-4521","location":"Norwood Park, 5801 N. Natoma","modifiedDate":"2017-07-11T07:57:59"},{"calendarId":11,"start":"2017-08-01T16:00:00","end":"2017-08-01T20:00:00","title":"National Night Out -- 11th District","eventDetails":"Join friends and neighbors for FUN... Food...Games... Music... Raffles ","eventUrl":null,"contactDetails":"Community Policing Office, 312-746-9841","location":"Kells Park, 3201 W. Chicago Ave. ","modifiedDate":"2017-07-11T08:03:16"},{"calendarId":10,"start":"2017-08-01T16:00:00","end":"2017-08-01T19:00:00","title":"National Night Out -- 10th District","eventDetails":"Join your neighbors, friends and police for the annual night out against crime. Commnity leaders, advocates, faith-based organizations and community residents come together to enjoy a night of fun and community engagement to help prevent and reduce crime and violence.","eventUrl":null,"contactDetails":"Community Policing Office, 312-747-7511","location":"District Station, 3315 W. Ogden (West Parking Lot)","modifiedDate":"2017-07-12T08:29:10"},{"calendarId":5,"start":"2017-08-01T16:00:00","end":"2017-08-01T20:00:00","title":"National Night Out -- 5th District","eventDetails":"Join friends, neighbors and police at the National Night Out against crime. Our theme is \" A Night To Unite For Peace\" and our agenda includes: a tribute to children impacted by gun violence, a demonstation by BMX bike club, the Chicago Boyz, After School Matters, Achord Choir and much more.","eventUrl":null,"contactDetails":"Community Policing Office, 312-747-3100","location":"Gately Park, 744 E 103rd Street","modifiedDate":"2017-07-12T08:12:40"},{"calendarId":18,"start":"2017-08-01T16:00:00","end":"2017-08-01T19:00:00","title":"National Night Out - 18th District","eventDetails":"Join friends, neighbors and police in the annual National Night Out against crime and help to build strong community partnerships that promote safe neighborhoods. Please join us for childrens games, activities, resource tables, give-aways, demonstrations from SWAT, Canine, and Mounted Unit, the Chicago Fire Department and a family style BBQ. ","eventUrl":null,"contactDetails":"Community Policing Office, 312-742-5778","location":"District Station, 1160 N. Larrabee (West Parking Lot)","modifiedDate":"2017-07-12T09:08:37"},{"calendarId":7,"start":"2017-08-01T15:00:00","end":"2017-08-01T19:00:00","title":"National Night Out -- 7th District","eventDetails":"National Night Out is an annual community event that promotes police-community partnerships and neighborhood camaraderie to make our neighborhoods safer, more caring places to live. This event is free to the community, music and entertainment provided by WKKC Radio 89.3, food, games, entertainment, raffles and more. Our theme is \"rodeo\" so come out and have a great time!","eventUrl":null,"contactDetails":"Community Policing Office, 312-747-6722","location":"Ogden Park, 6500 S. Racine","modifiedDate":"2017-07-12T08:10:14"},{"calendarId":4,"start":"2017-08-01T15:00:00","end":"2017-08-01T19:00:00","title":"National Night Out -- 4th District","eventDetails":"National Night Out is an annual community-building campaign that promotes police-community partnerships and neighborhood camaraderie to make our neighborhoods safer, more caring places to live. National Night Out enhances the relationship between neighbors and law enforcement while bringing back a true sense of community. ","eventUrl":null,"contactDetails":"Community Policing Office, 312-747-1708","location":"Jesse Owens Park, 8800 S. Clyde Avenue","modifiedDate":"2017-07-11T08:04:30"},{"calendarId":25,"start":"2017-08-01T10:00:00","end":"2017-08-01T11:00:00","title":"Senior Advisory Meeting","eventDetails":"025th District Senior Advisory Meeting ","eventUrl":null,"contactDetails":"025th District Community Relations Office\n312-746-5090","location":"025th District, 5555 W. Grand Ave.","modifiedDate":"2016-12-14T10:24:30"},{"calendarId":7,"start":"2017-08-01T10:00:00","end":"2017-08-01T11:00:00","title":"Faith Base Council Monthly Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Shelton & Sgt. Redrick 312-747-6722","location":"1438 W. 63rd Street","modifiedDate":"2017-06-23T18:08:36"},{"calendarId":4,"start":"2017-07-31T19:00:00","end":"2017-07-31T20:00:00","title":"433 Beat Community Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"13323 S. Green Bay Ave.","modifiedDate":"2017-06-24T09:27:54"},{"calendarId":9,"start":"2017-07-31T09:30:00","end":"2017-07-31T11:30:00","title":"Healthy Kids Town Hall Meeting","eventDetails":"Earlier this year, CDPH released a Healthy Kids report showcasing the progress Chicago has made in a number of key areas while also highlighting the challenges that still remain. This summer CDPH will host a series of town hall meetings to discuss the state of youth health with residents. We are seeking feedback on five policies we are currently exploring based on the key areas highlighted in the report: improving homes, empowering parents, promoting vaccines, mitigating trauma, and reducing obesity. ","eventUrl":null,"contactDetails":"Chicago Department of Public Health, 312-747-9884","location":"Shields Middle School, 2611 W. 48th Street","modifiedDate":"2017-07-19T08:52:59"},{"calendarId":11,"start":"2017-07-30T14:00:00","end":"2017-07-30T16:00:00","title":"Harvest Homes Apartments Ribbon Cutting Ceremony","eventDetails":null,"eventUrl":null,"contactDetails":"People's Church Of The Harvest (773) 533-6877","location":"3520 W. Fifth Ave. ","modifiedDate":"2017-07-27T15:49:23"},{"calendarId":7,"start":"2017-07-29T14:00:00","end":"2017-07-29T16:00:00","title":"Drum Circle for Peace Series","eventDetails":"Drum Circle for Peace Series brings master drummers to engage people of all ages and experience levels to get together to learn the art of community drumming. Participants learn how to work together to build a poly-rythmic sound.The practice helps to embody village building, inclusivity, cooperation and conflict resolution.","eventUrl":null,"contactDetails":"Chicago Park District- Moran Park","location":"5727 S. Racine","modifiedDate":"2017-07-26T10:58:06"},{"calendarId":2,"start":"2017-07-29T13:00:00","end":"2017-07-29T17:00:00","title":"Faith In Action ","eventDetails":"Chi Town Cool Down- Food, Music and Fun ","eventUrl":null,"contactDetails":"Antonio Davis 773 709-7179","location":"5301 S. Michigan","modifiedDate":"2017-07-13T17:03:04"},{"calendarId":7,"start":"2017-07-29T11:00:00","end":"2017-07-29T13:00:00","title":"Alderman Toni Foulkes Block Party","eventDetails":"Alderman Toni Foulkes Block Party","eventUrl":null,"contactDetails":"16th Ward Office","location":"1504 W. 63rd St","modifiedDate":"2017-07-26T10:59:33"},{"calendarId":5,"start":"2017-07-28T21:00:00","end":"2017-07-29T01:00:00","title":"Friday Night Peace Campaign","eventDetails":"Come join friends and neighbors for a positive loitering event with worship, outreach and community prayer designed to reduce crime and violence sponsored by the 5th District Pastoral Subcommittee","eventUrl":null,"contactDetails":"5th District Community Policing Office, 312-747-3100","location":"109th Street and Wentworth","modifiedDate":"2017-06-27T13:43:00"},{"calendarId":11,"start":"2017-07-28T18:00:00","end":"2017-07-28T19:00:00","title":"100 Blocks 100 Churches","eventDetails":"Join Legacy Church Pastor Bryant for the 100 Blocks 100 Churches.","eventUrl":null,"contactDetails":"011 District CAPS 1.312.746.9841","location":"Congress/ Kostner","modifiedDate":"2017-06-26T16:43:00"},{"calendarId":11,"start":"2017-07-28T17:00:00","end":"2017-07-28T21:00:00","title":"Safe Light Night Free Food And Entertainment","eventDetails":null,"eventUrl":null,"contactDetails":"West Garfield Park Cmty Satekholders 1.773.287.5821","location":"Clark Park 4615 W. Jackson ","modifiedDate":"2017-07-27T15:49:04"},{"calendarId":8,"start":"2017-07-28T12:00:00","end":"2017-07-28T13:30:00","title":"First Tee Youth Golf","eventDetails":"Youth learning to golf","eventUrl":null,"contactDetails":"Community Policing 312 747-8724","location":"6734 S. Kedzie","modifiedDate":"2017-07-06T09:35:27"},{"calendarId":7,"start":"2017-07-28T11:00:00","end":"2017-07-28T14:00:00","title":"Plaza Play Day","eventDetails":"The event offers children a chance to come out and play in the plaza and experience a game truck, food, music and more. Put on by Teamwork Englewood.","eventUrl":null,"contactDetails":"Teamwork Englewood 773-488-6600","location":"815 W. 63rd","modifiedDate":"2017-07-26T11:12:55"},{"calendarId":8,"start":"2017-07-27T19:00:00","end":"2017-07-27T20:00:00","title":"District Advisory Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"008th District 3420 W. 63rd St","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":7,"start":"2017-07-27T18:30:00","end":"2017-07-27T19:30:00","title":"Community Meeting -- Beat 712","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"7th District Community Policing Office, 312-747-6722","location":"Sherwood Park, 5701 S. Shields","modifiedDate":"2017-06-28T23:07:41"},{"calendarId":14,"start":"2017-07-27T18:30:00","end":null,"title":"1432 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":"014th District CAPS 312-744-1261","location":"Covenant Presbyterian Church 2022 W. Dickens","modifiedDate":"2017-06-28T23:07:56"},{"calendarId":6,"start":"2017-07-27T18:30:00","end":"2017-07-27T19:30:00","title":"634 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"St. James A.M.E. Church 9256 S. Lafayette","modifiedDate":"2017-06-26T10:08:51"},{"calendarId":11,"start":"2017-07-27T18:00:00","end":"2017-07-27T19:00:00","title":"Beat Meeting: 1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841Chicago Police Station3151 W. Harrison Street","location":"Enola Dew Apartments 4623 W. Gladys","modifiedDate":"2017-07-27T15:31:46"},{"calendarId":11,"start":"2017-07-27T18:00:00","end":"2017-07-27T19:30:00","title":"24 Ward Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"4242 W. Roosevelt United Baptist Church","modifiedDate":"2017-07-27T15:44:58"},{"calendarId":5,"start":"2017-07-27T18:00:00","end":"2017-07-27T19:00:00","title":"005th District DAC Sub-Committee Meeting","eventDetails":"Members of the various 005th District sub-committees assemble once a month to discuss various ways to utilize funds that have been approved to spend on various CAPS oreinted activities for the community.","eventUrl":null,"contactDetails":"005th District CAPS @ 312 747 3100","location":"727 E 111th St","modifiedDate":"2017-06-27T14:13:00"},{"calendarId":20,"start":"2017-07-27T16:00:00","end":"2017-07-27T18:00:00","title":"Bike Ambassadors","eventDetails":"Bike Ambassadors along with Chicago Police CAPS officers promote safety and public-awareness for all road users.","eventUrl":null,"contactDetails":"3127428770","location":"Western/Lawrence","modifiedDate":"2017-06-23T14:59:44"},{"calendarId":4,"start":"2017-07-27T11:00:00","end":"2017-07-27T14:00:00","title":"Play Streets","eventDetails":"PlayStreets Chicago encourages neighborhood organizations and residents to join their neighbors in getting active and moving.","eventUrl":null,"contactDetails":"April Morris 773 734-9181","location":"8802 S. Burley ","modifiedDate":"2017-07-06T09:39:04"},{"calendarId":22,"start":"2017-07-27T10:30:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T11:38:15"},{"calendarId":17,"start":"2017-07-26T19:30:00","end":"2017-07-26T20:30:00","title":"1711/1712 Combined Beat Meeting","eventDetails":"The Beat Meeting is about Community Members, Police and Elected Officials coming together to resolve and strategize together about chronic crime related and quality of life issues.","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588","location":"5020 N. Pulaski Rd. / Mayfair Church","modifiedDate":"2017-06-13T18:04:16"},{"calendarId":20,"start":"2017-07-26T19:00:00","end":"2017-07-26T20:00:00","title":"2032 Beat Meeting","eventDetails":"2032 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe..","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Ravenswood Evangelical Church4900 N. Damen Ave.","modifiedDate":"2017-06-23T15:25:27"},{"calendarId":3,"start":"2017-07-26T19:00:00","end":"2017-07-26T20:00:00","title":"All Beats Meeting","eventDetails":"All Beats Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District\n7040 S. Cottage Grove\nChicago, Il. 60637\n(312) 747-7004","location":"South Shore Culture Center\r\n7059 S. South Shore Dr.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":8,"start":"2017-07-26T19:00:00","end":"2017-07-26T20:00:00","title":"835 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Parking Lot at 3250 W. 87th St","modifiedDate":"2017-07-26T16:24:42"},{"calendarId":7,"start":"2017-07-26T18:30:00","end":"2017-07-26T19:30:00","title":"Community Meeting - Beat 715","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"7th District Community Policing Office, 312-747-6722","location":"Lindblom Park, 6054 S. Damen","modifiedDate":"2017-06-28T23:07:44"},{"calendarId":25,"start":"2017-07-26T18:30:00","end":"2017-07-26T19:30:00","title":"2523 Beat Meeting","eventDetails":"2523 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"St. Joseph\n4021 W. Belmont","modifiedDate":"2016-12-30T13:31:25"},{"calendarId":17,"start":"2017-07-26T18:30:00","end":"2017-07-26T19:30:00","title":"1713 Beat Meeting ","eventDetails":"The Beat Meeting is about Community Members, Police and Elected Officials coming together to resolve and strategize together about chronic crime related and quality of life issues.","eventUrl":null,"contactDetails":"017 District CAPS Office","location":"5000 N. Spaulding / North Park University","modifiedDate":"2017-06-13T18:03:59"},{"calendarId":9,"start":"2017-07-26T18:30:00","end":"2017-07-26T19:30:00","title":"Beat 914 Community Meeting","eventDetails":"Chinatown Public Library / Come out and meet your Beat Officers!! Discuss upcoming events in your community!! Learn about crime(s) in your area...","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"2100 S. Wentworth","modifiedDate":"2017-06-23T13:49:13"},{"calendarId":6,"start":"2017-07-26T18:30:00","end":"2017-07-26T19:30:00","title":"624 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"St. Dorothy Catholic Church 450 E. 78th St.","modifiedDate":"2017-06-26T10:09:58"},{"calendarId":3,"start":"2017-07-26T18:00:00","end":"2017-07-26T19:00:00","title":"Dac Meeting ","eventDetails":"003rd District Advisory Committee Meeting ","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"South Shore Cultural Center\r\n7059 S South Shore Dr, \r\nChicago, IL 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":12,"start":"2017-07-26T18:00:00","end":"2017-07-18T19:00:00","title":"Beat Meeting 1235","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"Las Americas 1611 S. Racine","modifiedDate":"2017-05-27T07:43:00"},{"calendarId":25,"start":"2017-07-26T18:00:00","end":"2017-07-26T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"All Churches & Faith-Based Institutions in the 25th District are encouraged to participate in our mission to stop the violence and take-back the neighborhood by wearing red, standing outside their churches, and helping to get the word out to \"PUT THE GUNS DOWN!\"","eventUrl":null,"contactDetails":"312-746-5090","location":"All Churches & Faith-Based Locations","modifiedDate":"2017-05-30T10:28:00"},{"calendarId":15,"start":"2017-07-26T18:00:00","end":"2017-07-26T19:00:00","title":"100 Blocks, 100 Churches Community Event","eventDetails":"Residents, stakeholders, business owners, faith based and the police gather each Wednesday Evening to hold a positive loitering and smoke event and engagement and engage the public with information and resources. ","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"Targeted Locations, To Be Determined","modifiedDate":"2017-05-30T13:54:54"},{"calendarId":19,"start":"2017-07-26T18:00:00","end":"2017-07-26T19:00:00","title":"Faith in Action Peace Walk","eventDetails":"The 19th District Community Policing Office and beat officers will join members of the Uptown Baptist Church for a Peace Walk through the neighborhood. ","eventUrl":null,"contactDetails":"19th District Community Policing 312-744-0064","location":"1011 W. Wilson Ave","modifiedDate":"2017-07-10T16:18:00"},{"calendarId":11,"start":"2017-07-26T18:00:00","end":"2017-07-26T19:00:00","title":"100 Blocks, 100 Churches","eventDetails":"Join faith leaders from across the 11th District for positive loitering and prayer designed to prevent and reduce crime at the following locations: Kilpatrick and Maypole; Central Park and Fifth Avenue; Madison and California; Huron and Central Park; Western and Jackson; Congress and Kostner; and California and Glaldys","eventUrl":null,"contactDetails":"11th District Community Policing Office, 312-746-9841","location":"Various","modifiedDate":"2017-07-05T10:47:16"},{"calendarId":11,"start":"2017-07-26T17:00:00","end":"2017-07-26T19:00:00","title":"Taking ou Park Back Initiative ","eventDetails":"Encouraging families to use and enjoy our parks. ","eventUrl":null,"contactDetails":"Alderman Jason C. Ervin 1.773.533.0900","location":"3301 W. Gladys","modifiedDate":"2017-07-27T15:48:00"},{"calendarId":8,"start":"2017-07-26T17:00:00","end":"2017-07-26T20:00:00","title":"8th District Annual Cruise Night","eventDetails":"Display of vehicles with prevention information available","eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"3205 W 87th Street","modifiedDate":"2017-07-06T09:36:00"},{"calendarId":14,"start":"2017-07-26T13:30:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:35:55"},{"calendarId":25,"start":"2017-07-26T13:00:00","end":"2017-07-26T14:00:00","title":"Faith-Based Subcommittee","eventDetails":"Faith Based Subcommittee meeting. 4th Wednesday Odd Months","eventUrl":null,"contactDetails":"P.O. Steven Archer\n312-746-5090","location":"5555 W Grand Ave","modifiedDate":"2016-12-15T10:24:21"},{"calendarId":5,"start":"2017-07-26T13:00:00","end":"2017-07-26T15:00:00","title":"Kick Back Wednesday Youth Event","eventDetails":"A pop-up play event sponosored by the Department to provide fun and healthy activities for young people and an opportunity for positive interaction between police, young people and other neighborhoord residents","eventUrl":null,"contactDetails":"Margie Reid, 5th District Community Organizer, 312-747-3100","location":"Cooper Park, 1323 W. 117th Street","modifiedDate":"2017-06-27T13:18:01"},{"calendarId":2,"start":"2017-07-26T13:00:00","end":"2017-07-27T15:00:00","title":"Smoke Out ","eventDetails":"CAPS officers engaging the community in conversation and dissemnating informational flyers. Light refreshments are also provided.","eventUrl":null,"contactDetails":"CAPS Office 312 747-5109","location":"4300 S. Michigan","modifiedDate":"2017-07-22T14:38:00"},{"calendarId":15,"start":"2017-07-26T10:00:00","end":"2017-07-26T11:00:00","title":"SENIORS MEETING","eventDetails":"Senior Subcommittee Meeting / Senior Citizens related topics w/ Guest Speakers from various agencies and departments.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5701 W. Madison ( 015th District)","modifiedDate":"2017-05-30T13:55:20"},{"calendarId":5,"start":"2017-07-26T10:00:00","end":"2017-07-26T11:00:00","title":"005th District Business Meeting","eventDetails":"Business Meetings are designed to discuss the current state of the various meetings and ways in which they can be improved.","eventUrl":null,"contactDetails":"005th District CAPS @ 312 747 3100","location":"727 E 111th St","modifiedDate":"2017-06-27T14:08:03"},{"calendarId":15,"start":"2017-07-26T08:30:00","end":"2017-07-26T09:30:00","title":"Business Meeting","eventDetails":"Business owners of the 015th district meet with community Organizer and discuss concerns of crime and ways o improve business related issues.","eventUrl":null,"contactDetails":"Caps Office ( 312) 743-1495","location":"5412 W.MADISON (MAC ARTHUR'S)","modifiedDate":"2017-05-30T13:12:11"},{"calendarId":20,"start":"2017-07-25T19:00:00","end":"2017-07-25T20:00:00","title":"2031 Beat Meeting","eventDetails":"2031 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Swedish Community Hospital-Anderson Pavilion2751 W. Winona St.","modifiedDate":"2017-06-23T15:26:10"},{"calendarId":8,"start":"2017-07-25T19:00:00","end":"2017-07-25T20:00:00","title":"813/833 Beat Meetign","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"West Lawn Park 4233 W. 65th St","modifiedDate":"2017-05-24T17:49:48"},{"calendarId":24,"start":"2017-07-25T19:00:00","end":null,"title":"2433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Edgewater Library 6000 N. Broadway","modifiedDate":"2016-12-07T10:09:49"},{"calendarId":24,"start":"2017-07-25T19:00:00","end":null,"title":"2422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Willye White Park 1610 W. Howard","modifiedDate":"2016-12-07T10:14:08"},{"calendarId":9,"start":"2017-07-25T19:00:00","end":"2017-07-25T20:00:00","title":"Bt. 923 Community Meeting","eventDetails":"St. Simon's Church","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"5157 S. California","modifiedDate":"2017-05-18T10:28:47"},{"calendarId":12,"start":"2017-07-25T19:00:00","end":"2017-07-25T20:00:00","title":"Beat Meeting 1211","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"Norwegian Hospital 1044 N. Francisco ","modifiedDate":"2017-05-24T17:38:00"},{"calendarId":25,"start":"2017-07-25T18:30:00","end":"2017-07-25T19:30:00","title":"2513 Beat Meeting","eventDetails":"2513 Beat Meeting","eventUrl":null,"contactDetails":"P.O. Rodriguez A \n312/746-5090","location":"Amundsen Park\n6200 W. Bloomingdale","modifiedDate":"2016-12-30T13:30:09"},{"calendarId":3,"start":"2017-07-25T18:30:00","end":"2017-07-25T20:30:00","title":"003rd District Community Peace Circle","eventDetails":"003rd District Community Peace Circle","eventUrl":null,"contactDetails":"Sgt. Jointer\n003rd District\n7040 S. Cottage Grove\nChicago, IL 60637\n(312) 747-7004","location":"Lincoln Memorial Church\r\n6454 S. Champlain","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-07-25T18:30:00","end":"2017-07-25T19:30:00","title":"Community Meeting - Beats 711, 713 and 714","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"7th District Community Policing Office, 312-747-6722","location":"7th District Station, 1438 W. 63rd Street","modifiedDate":"2017-06-28T23:07:42"},{"calendarId":6,"start":"2017-07-25T18:30:00","end":"2017-07-25T19:30:00","title":"614 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Foster Park Field House 1440 W. 84th St.","modifiedDate":"2017-06-26T10:10:47"},{"calendarId":11,"start":"2017-07-25T18:00:00","end":"2017-07-25T19:00:00","title":"Beat Meeting: 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. \n","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2016-12-27T12:47:34"},{"calendarId":9,"start":"2017-07-25T18:00:00","end":"2017-07-25T19:00:00","title":"Beat 922 Community Meeting","eventDetails":"Shields Middle School","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"2611 W. 48th Street","modifiedDate":"2017-05-18T10:25:40"},{"calendarId":5,"start":"2017-07-25T17:30:00","end":"2017-07-25T19:30:00","title":"Healthy Kids Town Hall Meeting","eventDetails":"Earlier this year, CDPH released a Healthy Kids report showcasing the progress Chicago has made in a number of key areas while also highlighting the challenges that still remain. This summer CDPH will host a series of town hall meetings to discuss the state of youth health with residents. We are seeking feedback on five policies we are currently exploring based on the key areas highlighted in the report: improving homes, empowering parents, promoting vaccines, mitigating trauma, and reducing obesity. ","eventUrl":null,"contactDetails":"Chicago Department of Public Health, 312-747-9984","location":"West Pullman Library, 830 W. 119th Street","modifiedDate":"2017-07-19T08:47:59"},{"calendarId":3,"start":"2017-07-25T14:00:00","end":"2017-07-25T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 60637\t\n(312) 747-7004","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":2,"start":"2017-07-25T13:00:00","end":"2017-07-25T14:30:00","title":"Smoke Out","eventDetails":"CAPS officers engaging the community in conversation and dissemnating informational flyers. Light refreshments are also provided.","eventUrl":null,"contactDetails":"CAPS Office 312 747-5109","location":"5100 S. Calumet ","modifiedDate":"2017-07-22T14:36:01"},{"calendarId":18,"start":"2017-07-25T12:30:00","end":"2017-07-25T15:00:00","title":"Chicago History Museum Senior Field Trip","eventDetails":"Registration Required please contact P.O. S. Ramirez 312.742.5778 ","eventUrl":null,"contactDetails":"018th District Community Relations P.O. S. Ramirez 312.742.5778","location":"1601 N. Clark Chicago History Museum ","modifiedDate":"2017-06-15T14:08:03"},{"calendarId":22,"start":"2017-07-25T10:30:00","end":null,"title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T11:38:23"},{"calendarId":11,"start":"2017-07-25T10:00:00","end":"2017-07-25T12:00:00","title":"Chicago/Division Corridor Business Forum","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"825 N. Christiana","modifiedDate":"2017-07-27T15:47:34"},{"calendarId":5,"start":"2017-07-25T10:00:00","end":"2017-07-25T11:00:00","title":"005th District Court Advocacy Sub-Committee Meeting","eventDetails":"005th District Court Advocates meet and discuss cases that are currently in the criminal justice system that they wish to attend. They are also given information with respect to how the justice system works","eventUrl":null,"contactDetails":"005th District CAPS @ 312 747 3100","location":"727 E 111th St Community Room","modifiedDate":"2017-06-27T14:03:03"},{"calendarId":7,"start":"2017-07-25T10:00:00","end":"2017-07-25T11:30:00","title":"Faith Based Subcommittee Meeting","eventDetails":"The 007th District Faith Based Subcommittee is hosting a meeting to elect new members to the Executive Council. This meeting will take the place of the August 1st meeting. Please join us as we look forward to electing new leadership.","eventUrl":null,"contactDetails":"007th District Community Policing Office, 312-747-6722","location":"007th District Community Room, 1438 W. 63rd Street","modifiedDate":"2017-07-14T15:41:32"},{"calendarId":6,"start":"2017-07-24T18:00:00","end":"2017-07-24T20:00:00","title":"Beat Facilitator DAC Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-28T16:03:19"},{"calendarId":16,"start":"2017-07-24T18:00:00","end":null,"title":"Crime Prevention Seminar","eventDetails":"Join Alderman Napolitano and 016ht District COmmander Looney to discuss recent 41st ward crime and police patrols. There will also be a special presentation regarding burglary prevention.","eventUrl":null,"contactDetails":"Alderman Napolitano","location":"5115 N. Mont Clare Ave, Beyenka Hall","modifiedDate":"2017-08-09T18:38:45"},{"calendarId":1,"start":"2017-07-24T14:00:00","end":"2017-07-24T15:00:00","title":"CAPS 30 Sector Business Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"001st district community relations 312.745.4381 or CAPS.001district@chicagopolice.org","location":"1st District Community Room 1718 S State St","modifiedDate":"2017-03-13T15:18:07"},{"calendarId":11,"start":"2017-07-24T12:00:00","end":"2017-07-24T17:00:00","title":"Community and Friend Fest sponsored by Ombudsman","eventDetails":"Ombudsman West Campus Free Food,Music and giveaways for all.","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"2401 W. Congress ","modifiedDate":"2017-07-19T12:19:18"},{"calendarId":4,"start":"2017-07-24T10:00:00","end":"2017-07-24T13:00:00","title":"Play Streets","eventDetails":"PlayStreets Chicago encourages neighborhood organizations and residents to join their neighbors in getting active and moving.","eventUrl":null,"contactDetails":"Olivia Hernandez 773 731-0109","location":"8805 S. Exchange ","modifiedDate":"2017-07-06T09:43:01"},{"calendarId":11,"start":"2017-07-22T11:00:00","end":"2017-07-22T15:00:00","title":"Free Will Bapstist Church Safe & Peaceful Community Outreach Picnic","eventDetails":"Food Fun Games Music and Much More . All are welcome to attend!","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"525 S. California Avenue","modifiedDate":"2017-07-12T14:54:34"},{"calendarId":11,"start":"2017-07-22T11:00:00","end":"2017-07-22T19:00:00","title":"Nook Block Club BBQ ","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"2400 W. Flournoy ","modifiedDate":"2017-07-19T12:19:34"},{"calendarId":2,"start":"2017-07-22T11:00:00","end":"2017-07-23T15:00:00","title":"Real Talk Workshop for Teen Girls","eventDetails":"Young Teen Girls will be coming together to discuss Law Enforcement opportunities, Human Trafficking and the Shaken Baby Syndrome .","eventUrl":null,"contactDetails":"CAPS Office Officer Gathings/Officer Cuyler 312-747-5109","location":"5109 S. Wentworth","modifiedDate":"2017-06-29T17:35:06"},{"calendarId":7,"start":"2017-07-22T10:00:00","end":"2017-07-22T14:00:00","title":"Evening Star M.B. Church Back to School Evangelistic Community Event","eventDetails":"Back to School Evangelistic Community Event featuring Chicago's own performing artist Corey Barksdale with \"Persona\", free blood pressure, blood sugar, and cholestrerol checks. There will be free food, games and prizes for all. The first 100 people will receive a free gift for attending. There will be Jumping Jack fun and free school supplies.","eventUrl":null,"contactDetails":"Evening Star M.B. Church, 773-925-6160","location":"2050 W. 59th Street","modifiedDate":"2017-07-12T09:43:35"},{"calendarId":11,"start":"2017-07-22T10:00:00","end":"2017-07-22T11:00:00","title":"Westside Walk to Wellsness","eventDetails":"Starting at New Mount Pilgrim Missionary Baptist Church 4301 W. Washington and ending at 100 N. Central Park Garfield Park. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"4301 W. Washington","modifiedDate":"2017-07-12T14:55:01"},{"calendarId":18,"start":"2017-07-22T09:00:00","end":"2017-07-22T12:00:00","title":"018th District Youth Law Enforcement Explorers","eventDetails":"018th District Explorers meet the 3rd Saturday of each month from 10am-12pm, grades 6-12 are welcome to join. Have a great time with your peers and chicago police officers while learning aspects of Law Enforcement. Attend the many activities, outings and community events planned.","eventUrl":null,"contactDetails":"P.O. A. Robinson 312.742.5778","location":"018th District Community Room 1160 N. Larrabee","modifiedDate":"2017-06-15T14:03:03"},{"calendarId":5,"start":"2017-07-22T08:30:00","end":"2017-07-22T09:30:00","title":"Peer Jury","eventDetails":"Peer jury is designed to give individuals who have committed a non-violent offense to be adjudicated based on the recommendation of their peers","eventUrl":null,"contactDetails":"005th District CAPS @ 312 747 3100","location":"727 E 111th St","modifiedDate":"2017-06-27T14:03:03"},{"calendarId":5,"start":"2017-07-21T21:00:00","end":"2017-07-22T01:00:00","title":"Friday Night Peace Campaign","eventDetails":"Come join friends and neighbors for a positive loitering event with worship, outreach and community prayer designed to reduce crime and violence sponsored by the 5th District Pastoral Subcommittee","eventUrl":null,"contactDetails":"5th District Community Policing Office, 312-747-3100","location":"109th Street and Wentworth","modifiedDate":"2017-06-27T13:43:00"},{"calendarId":9,"start":"2017-07-21T18:00:00","end":"2017-07-21T20:00:00","title":"Faith Based Cultural Connection","eventDetails":"Join us for an evening of great fellowship including music, dance, drumming, light refreshments and more!","eventUrl":null,"contactDetails":"009th District CAPS, 312 747-8227","location":"Sherman Park - 1301 W. 52nd St.","modifiedDate":"2017-07-13T09:48:16"},{"calendarId":11,"start":"2017-07-21T18:00:00","end":"2017-07-21T19:00:00","title":"100 Blocks 100 Churches","eventDetails":"Join Legacy Church Pastor Bryant for the 100 Blocks 100 Churches.","eventUrl":null,"contactDetails":"011 District CAPS 1.312.746.9841","location":"Congress/ Kostner","modifiedDate":"2017-06-26T16:43:00"},{"calendarId":11,"start":"2017-07-21T16:30:00","end":"2017-07-21T21:00:00","title":" Community and Family Fun Night","eventDetails":null,"eventUrl":null,"contactDetails":"Fathers Who Care 773-287-5821","location":"230 N. Kolmar Chicago IL 60624","modifiedDate":"2017-07-19T12:19:48"},{"calendarId":11,"start":"2017-07-21T12:30:00","end":"2017-07-21T15:00:00","title":"Youth Peace Circles","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS","location":"1040 N. Keeler Piccolo School","modifiedDate":"2017-07-12T14:55:16"},{"calendarId":8,"start":"2017-07-21T12:00:00","end":"2017-07-21T13:30:00","title":"First Tee Youth Golf","eventDetails":"Youth Learning to Golf","eventUrl":null,"contactDetails":"Community Policing 312 -747-8724","location":"6734 S. kedzie","modifiedDate":"2017-07-06T09:36:26"},{"calendarId":18,"start":"2017-07-21T09:00:00","end":"2017-07-21T12:00:00","title":"Rincon Car Seat Installation Event","eventDetails":"P.O. Baker will be conducting Safety Seat Inspections and Installations ","eventUrl":null,"contactDetails":"P.O. T. Baker 312.742.5778","location":"To Be Announced","modifiedDate":"2017-06-15T13:48:01"},{"calendarId":8,"start":"2017-07-21T08:00:00","end":"2017-07-21T15:00:00","title":"Life Source Blood Drive","eventDetails":"The 008th District along with Life Source will be hosting a blood drive in our Community Room. Try to stop by and make a contribution.","eventUrl":null,"contactDetails":"Jaime Cardona","location":"008th District Community Room 3420 W. 63rd St.","modifiedDate":"2017-05-25T16:58:01"},{"calendarId":14,"start":"2017-07-20T19:00:00","end":null,"title":"1431 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Haas Park 2402 N. Washtenaw","modifiedDate":"2017-06-12T15:02:57"},{"calendarId":16,"start":"2017-07-20T19:00:00","end":"2017-07-20T20:00:00","title":"1611 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"Community Policing Office (312) 742-4521 or CAPS016District@chicagopolice.org","location":"St. Thelca 6333 N. Newcastle","modifiedDate":"2017-07-06T08:51:52"},{"calendarId":5,"start":"2017-07-20T19:00:00","end":"2017-07-20T20:00:00","title":"Community Meeting -- Beat 533","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"5th District Community Policing Office, 312-747-3100","location":"Altgeld Health Center, 1029 E. 130th Street","modifiedDate":"2017-06-27T13:13:00"},{"calendarId":25,"start":"2017-07-20T18:30:00","end":"2017-07-20T19:30:00","title":"2533 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2533's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2017-06-26T13:30:27"},{"calendarId":7,"start":"2017-07-20T18:30:00","end":"2017-07-20T19:30:00","title":"Community Meeting - Beat 735","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"7th District Community Policing Office, 312-747-6722","location":"Gifts From God Ministry Church, 1818 W. 74th Street","modifiedDate":"2017-06-28T23:07:54"},{"calendarId":2,"start":"2017-07-20T18:30:00","end":"2017-06-20T19:30:00","title":"212 & 214 Beat meeting","eventDetails":"Officers and citizens meet to discuss issues on the beat.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"3858 S. Cottage Grove","modifiedDate":"2017-06-22T13:40:21"},{"calendarId":11,"start":"2017-07-20T18:00:00","end":"2017-07-20T19:00:00","title":"Beat Meeting: 1113,14,15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"St. Michaels's MBC 4106 W. Monroe","modifiedDate":"2016-12-27T12:46:34"},{"calendarId":16,"start":"2017-07-20T18:00:00","end":"2017-07-20T19:00:00","title":"DAC Meeting","eventDetails":"Meetng hosted by the District Commander for invited community stakeholders will be held in the Community Room (THIS IS NOT A BEAT MEETING)","eventUrl":null,"contactDetails":"Annie Ruiz-Oquendo","location":"5151 N. Milwaukee","modifiedDate":"2017-05-04T17:35:27"},{"calendarId":11,"start":"2017-07-20T18:00:00","end":"2017-07-20T19:30:00","title":"24th Ward Public Safety Meeting","eventDetails":"Panel Guest Coock County States Attorney Kim Foxx, Illinois State Senator Patricia Van Pelt, State Rep. Arthur Turner, 10th & 11th District Commanders, American Civil Liberties Union","eventUrl":null,"contactDetails":"24th Ward Office, 773-533-2400","location":"UCAN, 3605 W. Fillmore","modifiedDate":"2017-07-05T11:16:04"},{"calendarId":8,"start":"2017-07-20T18:00:00","end":"2017-07-20T19:00:00","title":"Faith Based Meeting","eventDetails":"Chicago Police and local religious organizations partner to form a bond and promote peace in the community.","eventUrl":null,"contactDetails":"8th District CAPS - P.O. Tracy #11583","location":"8th District Community Room - 3420 W. 63rd St","modifiedDate":"2017-07-06T09:36:57"},{"calendarId":3,"start":"2017-07-20T14:00:00","end":"2017-07-20T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 6063(312) 747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":11,"start":"2017-07-20T14:00:00","end":"2017-07-20T15:00:00","title":"Internet Safety-Cyberbullying Presentation for Parents","eventDetails":"In cooperation with Nia Family Center and Cook County States's Attorney Office.","eventUrl":null,"contactDetails":"011th District CAPS","location":"744 N. Monticello Nia Family Center ","modifiedDate":"2017-07-12T14:55:41"},{"calendarId":25,"start":"2017-07-20T13:30:00","end":"2017-07-20T14:30:00","title":"Business Subcommittee Meeting","eventDetails":"Business Subcommittee Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-15T10:17:44"},{"calendarId":18,"start":"2017-07-20T11:00:00","end":"2017-07-20T12:00:00","title":"Senior Emergency ID Bracelet","eventDetails":"Emergency Identification Bracelet Program Workshop-- Your ID number reveals important information about the registered senior (60+) or disabled citizen in case of an emergency","eventUrl":null,"contactDetails":"P.O. Ramirez 312.742.5778","location":"Zelda Ormes 116 W. Elm","modifiedDate":"2017-06-15T13:43:01"},{"calendarId":18,"start":"2017-07-20T11:00:00","end":"2017-07-20T12:00:00","title":"Senior Emergency ID Bracelet","eventDetails":"Emergency Identification Bracelet Program Workshop-- Your ID number reveals important information about the registered senior (60+) or disabled citizen in case of an emergency","eventUrl":null,"contactDetails":"P.O. Ramirez 312.742.5778","location":"Zelda Ormes 116 W. Elm","modifiedDate":"2017-06-15T13:43:01"},{"calendarId":6,"start":"2017-07-20T10:00:00","end":"2017-07-20T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":"Meet to discuss topics on Domestic Violence and prevention","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-28T16:03:55"},{"calendarId":7,"start":"2017-07-20T10:00:00","end":"2017-07-20T13:00:00","title":"7th District Food Pantry ","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Shelton & Sgt. Redrick 312-747-6722","location":"7158 S. Peoria St. Chicago, IL 60621","modifiedDate":"2017-06-23T18:01:39"},{"calendarId":2,"start":"2017-07-20T09:00:00","end":"2017-07-21T13:00:00","title":"The Ninth Annual Basketball Camp","eventDetails":"Juvenile Intervention and Support Center, Chicago Police Department Youth Investigations Section, Chicago Department of Family and Support Services and the Cook County Juvenile Probation Department in conjunction with the American Camp Association, presents their Ninth Annual Basketball Camp.","eventUrl":null,"contactDetails":"P.O. Cuyler 312-745-4119","location":"1300 W. Jackson","modifiedDate":"2017-07-13T17:39:42"},{"calendarId":17,"start":"2017-07-19T19:30:00","end":"2017-07-19T20:30:00","title":"1722/1723 Combined Beat Meeting","eventDetails":"The Beat Meeting is about Community Members, Police and Elected Officials coming together to resolve and strategize together about chronic crime related and quality of life issues.","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588","location":"4650 N. Pulaski Rd. / 017th District Community Room","modifiedDate":"2017-06-13T18:03:40"},{"calendarId":20,"start":"2017-07-19T19:00:00","end":"2017-07-19T20:00:00","title":"2013 Beat Meeting","eventDetails":"2013 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church5437 N. Clark St.","modifiedDate":"2017-06-23T15:26:38"},{"calendarId":14,"start":"2017-07-19T19:00:00","end":null,"title":"1423 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Humboldt Park Field House1400 N. Sacramento","modifiedDate":"2017-06-12T15:03:26"},{"calendarId":19,"start":"2017-07-19T19:00:00","end":"2017-07-19T20:00:00","title":"Beat 1921, 22 & 31","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information. ","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"19th Police Auditorium2452 W. Belmont","modifiedDate":"2017-06-29T14:21:43"},{"calendarId":16,"start":"2017-07-19T19:00:00","end":"2017-07-19T20:00:00","title":"1623 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"16th District Station Community Room 5151 N. Milwaukee","modifiedDate":"2017-02-22T10:51:30"},{"calendarId":12,"start":"2017-07-19T19:00:00","end":"2017-07-19T20:00:00","title":"Beat Meeting 1213","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"1012 N. Noble, 2nd Floor ","modifiedDate":"2017-05-24T17:43:00"},{"calendarId":5,"start":"2017-07-19T19:00:00","end":"2017-07-19T20:00:00","title":"Community Meeting -- Beat 532","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"5th District Community Policing Office, 312-747-3100","location":"St. Anthony Church, 11533 S. Prairie","modifiedDate":"2017-06-27T13:08:03"},{"calendarId":25,"start":"2017-07-19T18:30:00","end":"2017-07-19T19:30:00","title":"2515 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2515's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"St. Stanislaus2310 N. Lorel","modifiedDate":"2017-06-26T13:43:48"},{"calendarId":7,"start":"2017-07-19T18:30:00","end":"2017-07-19T19:30:00","title":"Community Meeting - Beats 733 and 734","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"7th District Community Policing Office, 312-747-6722","location":"Salvation Army, 845 W. 69th Street","modifiedDate":"2017-06-28T23:07:52"},{"calendarId":2,"start":"2017-07-19T18:30:00","end":"2017-07-19T19:30:00","title":"233-234-235 Beat meeting","eventDetails":"Officers and citizens meet to discuss issues on the beat.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"1526 E. 55th St","modifiedDate":"2017-06-22T13:40:44"},{"calendarId":6,"start":"2017-07-19T18:30:00","end":"2017-07-19T19:30:00","title":"623 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Urban Partnership Bank 7801 S. State","modifiedDate":"2017-06-26T10:12:51"},{"calendarId":17,"start":"2017-07-19T18:15:00","end":"2017-07-19T19:15:00","title":"1724 Beat Meeting","eventDetails":"The Beat Meeting is about Community Members, Police and Elected Officials coming together to resolve and strategize together about chronic crime related and quality of life issues.","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588","location":"2741 W. Montrose / Horner Park Field House","modifiedDate":"2017-06-13T18:03:25"},{"calendarId":10,"start":"2017-07-19T18:00:00","end":"2017-07-19T19:00:00","title":"Beat Meeting 1013","eventDetails":"Beat 1013 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Epiphany Church\nRectory\n2524 S. Keeler Ave","modifiedDate":"2017-01-04T16:04:34"},{"calendarId":9,"start":"2017-07-19T18:00:00","end":"2017-07-19T19:00:00","title":"Beat 925 Community Meeting","eventDetails":"St. Gabe's Church","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"4500 S. Wallace","modifiedDate":"2017-05-18T10:29:21"},{"calendarId":25,"start":"2017-07-19T18:00:00","end":"2017-07-19T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"All Churches & Faith-Based Institutions in the 25th District are encouraged to participate in our mission to stop the violence and take-back the neighborhood by wearing red, standing outside their churches, and helping to get the word out to \"PUT THE GUNS DOWN!\"","eventUrl":null,"contactDetails":"312-746-5090","location":"All Churches & Faith-Based Locations","modifiedDate":"2017-05-30T10:28:00"},{"calendarId":15,"start":"2017-07-19T18:00:00","end":"2017-07-19T19:00:00","title":"100 Blocks, 100 Churches Community Event","eventDetails":"Residents, stakeholders, business ownbers, faith-based institutions, and the police gather each Wednesday evening to hold a positive loitering smoke event and engage the public with information and resources.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"15th District Targeted Locations To Be Determined","modifiedDate":"2017-05-30T13:56:06"},{"calendarId":22,"start":"2017-07-19T18:00:00","end":null,"title":"Beat 2234 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Beth Eden Church\n11121 S. Loomis","modifiedDate":"2017-08-09T10:01:20"},{"calendarId":11,"start":"2017-07-19T18:00:00","end":"2017-07-19T19:00:00","title":"100 Blocks, 100 Churches","eventDetails":"Join faith leaders from across the 11th District for positive loitering and prayer designed to prevent and reduce crime at the following locations: Kilpatrick and Maypole; Central Park and Fifth Avenue; Madison and California; Huron and Central Park; Western and Jackson; Congress and Kostner; and California and Glaldys","eventUrl":null,"contactDetails":"11th District Community Policing Office, 312-746-9841","location":"Various","modifiedDate":"2017-07-05T09:50:55"},{"calendarId":8,"start":"2017-07-19T17:00:00","end":"2017-07-19T18:00:00","title":"823/825 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Rita Church at 6243 S. Fairfield","modifiedDate":"2017-05-24T17:50:06"},{"calendarId":11,"start":"2017-07-19T16:00:00","end":"2017-07-19T19:00:00","title":"Linden Playlot Park Clean & Green Faith & Action","eventDetails":"Nobel Neighbors, Ward 37 & 011th District join together to clean up the Linden Playlot Park along with 100 Blocks 100 Churches praying in the area. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"1129-1147 N. Pulaski","modifiedDate":"2017-07-12T14:56:09"},{"calendarId":18,"start":"2017-07-19T15:00:00","end":"2017-07-19T16:00:00","title":"Near North Security Meeting","eventDetails":"Meeting with security teams to discuss problems in their immediate areas and develop strategies.","eventUrl":null,"contactDetails":"P.O. A. Robinson 312.742.5778 ","location":"018th District Community Room","modifiedDate":"2017-06-15T13:38:01"},{"calendarId":18,"start":"2017-07-19T15:00:00","end":"2017-07-19T16:00:00","title":"10 Sector Hospitality Meeting","eventDetails":"Business owners and Entertainment Venues discuss concerns and share problem solving techniques. ","eventUrl":null,"contactDetails":"P.O. G. Incaprera 312.742.5880 ext 1208","location":"T.B.A.","modifiedDate":"2017-06-15T14:13:01"},{"calendarId":1,"start":"2017-07-19T15:00:00","end":"2017-07-19T18:00:00","title":"2017 Peace Rally ","eventDetails":"Come and join the 1st District Community Relations Team in collaboration with E&ES Family Works, and True Rock Mininstries for a Peace Rally! Food, Entertainment, Music, Resources, and Fun! Come out and support Peace and Unity in the Dearborn Homes! ","eventUrl":null,"contactDetails":"1st District Community Relations 1718 S. State Street 312-745-4381 CAPS.001District@ChicagoPolice.org","location":"2930 S. Dearborn Street Dearborn Homes Baskeball Court ","modifiedDate":"2017-07-10T12:27:11"},{"calendarId":5,"start":"2017-07-19T13:00:00","end":"2017-07-19T15:00:00","title":"Kick Back Wednesday Youth Event","eventDetails":"A pop-up play event sponosored by the Department to provide fun and healthy activities for young people and an opportunity for positive interaction between police, young people and other neighborhoord residents","eventUrl":null,"contactDetails":"Margie Reid, 5th District Community Organizer, 312-747-3100","location":"West Pullman Park, 401 W. 123rd Street","modifiedDate":"2017-06-27T13:46:09"},{"calendarId":2,"start":"2017-07-19T11:00:00","end":"2017-07-20T16:00:00","title":"Ten-Year Anniversary Double Duty Classic","eventDetails":"002nd District CAPS are taking their Seniors to the Chicago White Sox Park to celebrate the history and tradition of Negro Leagues baseball as they showcase the next generation of inner-city baseball players.","eventUrl":null,"contactDetails":"P.O.Cuyler 312-745-4119","location":"333 W. 35th Street","modifiedDate":"2017-07-13T18:21:56"},{"calendarId":5,"start":"2017-07-19T11:00:00","end":"2017-07-19T12:00:00","title":"005th District Senior Meeting","eventDetails":"Seniors are provided with pertinent information and are engaged in activities designed to allow them to interact with members of the community.","eventUrl":null,"contactDetails":"005th District CAPS @ 312 747 3100","location":"727 E 111th St","modifiedDate":"2017-06-27T13:58:00"},{"calendarId":8,"start":"2017-07-18T19:00:00","end":"2017-07-18T20:00:00","title":"811 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Good Shepherd Church 5550 S Merrimac","modifiedDate":"2017-05-24T17:50:29"},{"calendarId":19,"start":"2017-07-18T19:00:00","end":"2017-07-18T20:00:00","title":"Beat 1911 & 1912","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"Sulzer Library4455 N. Lincoln","modifiedDate":"2017-06-29T14:23:06"},{"calendarId":24,"start":"2017-07-18T19:00:00","end":null,"title":"2424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Pottawatomie Park 7340 N. Rogers","modifiedDate":"2016-12-07T10:12:32"},{"calendarId":16,"start":"2017-07-18T19:00:00","end":"2017-07-18T20:00:00","title":"1633 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Merrimac Park 6343 W. Irving Park Rd.","modifiedDate":"2017-02-22T11:40:11"},{"calendarId":12,"start":"2017-07-18T19:00:00","end":"2017-07-18T20:00:00","title":"Beat Meeting 1223","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"Westhaven Park Community Room 1939 W. Lake St.","modifiedDate":"2017-05-30T11:30:43"},{"calendarId":5,"start":"2017-07-18T19:00:00","end":"2017-07-18T20:00:00","title":"Community Meeting -- Beat 531","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"5th District Community Policing Office, 312-745-3100","location":"Green Stone United Methodist Church, 11211 S. St. Lawrence","modifiedDate":"2017-06-27T13:08:03"},{"calendarId":25,"start":"2017-07-18T18:30:00","end":"2017-07-18T19:30:00","title":"2531 Beat Meeting","eventDetails":"2531 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W Grand Ave","modifiedDate":"2016-12-15T10:33:43"},{"calendarId":25,"start":"2017-07-18T18:30:00","end":"2017-07-18T19:30:00","title":"2525 Beat Meeting","eventDetails":"2525 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Mozart Park\n2036 N. Avers","modifiedDate":"2016-12-15T10:23:30"},{"calendarId":22,"start":"2017-07-18T18:30:00","end":null,"title":"Beat 2222 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Brainerd Park\n1246 W. 92nd St","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-07-18T18:30:00","end":"2017-07-18T19:30:00","title":"Community Meeting - Beats 731 and 732","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"7th District Community Policing Office, 312-747-6722","location":"Hamilton Park, 513 W. 72nd Street","modifiedDate":"2017-06-28T23:07:51"},{"calendarId":1,"start":"2017-07-18T18:30:00","end":"2017-07-18T19:30:00","title":"CAPS Beat 131/132 Residential Meeting ","eventDetails":"Come join your 001st District Police to help solve local Community problems","eventUrl":null,"contactDetails":"001st district community relations 312.745.4381 or CAPS.001district@chicagopolice.org","location":"Hilliard Apartments 30 W Cermak ","modifiedDate":"2017-07-10T12:21:21"},{"calendarId":2,"start":"2017-07-18T18:30:00","end":"2017-07-18T19:30:00","title":"221 & 223 Beat meeting","eventDetails":"Officers and citizens meet to discuss issues on the beat.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"4314 S. Cottage Grove","modifiedDate":"2017-06-22T13:41:02"},{"calendarId":6,"start":"2017-07-18T18:30:00","end":"2017-07-18T19:30:00","title":"613 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Walter Q. Gresham Elem. School 8524 S. Green St.","modifiedDate":"2017-07-15T14:12:04"},{"calendarId":11,"start":"2017-07-18T18:00:00","end":"2017-07-18T19:00:00","title":"Beat Meeting: 1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841Chicago Police Station3151 W. Harrison Street","location":"Outside Beat Meeting - 3600 W. Lexington ","modifiedDate":"2017-07-19T12:24:53"},{"calendarId":9,"start":"2017-07-18T18:00:00","end":"2017-07-18T19:00:00","title":"Beat 932, 934, 935 Community Meeting","eventDetails":"Westhaven Senior Homes","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"850 W. Garfield","modifiedDate":"2017-05-18T10:29:36"},{"calendarId":11,"start":"2017-07-18T16:00:00","end":"2017-07-18T17:00:00","title":"Girls Mentoring Camp ","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS","location":"011 District 3151 W. Harrison","modifiedDate":"2017-07-12T14:56:20"},{"calendarId":20,"start":"2017-07-18T16:00:00","end":"2017-07-18T18:00:00","title":"Bike Ambassadors","eventDetails":"Bike Ambassadors along with Chicago Police CAPS officers promote safety and public-awareness for all road users.","eventUrl":null,"contactDetails":"3127428770","location":"Broadway/Lawrence","modifiedDate":"2017-06-23T14:59:31"},{"calendarId":16,"start":"2017-07-18T13:00:00","end":"2017-07-18T14:00:00","title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Annie Ruiz (312)742-4521 CAPS016District@chicagopolice.org","location":"5151 N. Milwaukee","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":7,"start":"2017-07-18T13:00:00","end":"2017-07-18T16:00:00","title":"Senior Citizen Subcommittee Meeting","eventDetails":"Monthly senior citizen subcommittee meeting which is held on the 3rd Tuesday of each month.","eventUrl":null,"contactDetails":"Tolton Manner Sr. Homes 773-783-7800","location":"6435 S. Stewart","modifiedDate":"2017-07-17T14:13:43"},{"calendarId":17,"start":"2017-07-18T11:00:00","end":"2017-07-18T12:00:00","title":"Senior Citizen Sub-Committee Meeting","eventDetails":"This meeting is for all 017th District Seniors to network, learn about scams and crime related issues, gain knowledged about resources offered to them and a variety of other topics. Free blood pressure checks are offered before the meeting. ","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588","location":"4650 N. Pulaski Rd. / 017th District Community Room","modifiedDate":"2017-06-13T18:02:20"},{"calendarId":11,"start":"2017-07-18T11:00:00","end":null,"title":"United For A Better Living Faith Based Meeting","eventDetails":"011th District CAPS and United For A Better Living hosting Faith Based Meeting on July 18, 2017 @ 11:00 am. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":" 4540 W. Washington","modifiedDate":"2017-07-19T12:21:19"},{"calendarId":2,"start":"2017-07-18T11:00:00","end":"2017-07-18T15:00:00","title":"Senior Salad Fiesta ","eventDetails":"002nd District Senior event come join us for salad.","eventUrl":null,"contactDetails":"P.O. Cuyler 312 747-5109","location":"5101 S. Wentworth Ave.","modifiedDate":"2017-07-06T16:54:25"},{"calendarId":16,"start":"2017-07-18T10:30:00","end":"2017-07-18T15:00:00","title":"Kids on Bikes","eventDetails":"Bicycle safety day at Day Camps at Shabbona Park","eventUrl":null,"contactDetails":"P.O. Robin Ratledge","location":"6935 W. Addison","modifiedDate":"2017-07-05T11:25:23"},{"calendarId":6,"start":"2017-07-18T06:30:00","end":"2017-07-18T07:30:00","title":"613 Beat Meeting","eventDetails":"New locaton this month ONLY! Meet to discuss concerns and solutions to issues in the 6th District.","eventUrl":null,"contactDetails":"Contact the CAPS Officer at (312) 745-3641","location":"Word of Life Kingdom Church 8347 S. Racine Ave","modifiedDate":"2017-07-15T14:08:28"},{"calendarId":4,"start":"2017-07-17T18:00:00","end":"2017-07-17T20:00:00","title":"Faith In Action","eventDetails":"The Clergy and Community coming together to offer resources to residents so they can regain control of their neighborhoods and parks ","eventUrl":null,"contactDetails":"004th District CAPS Office 312 747-1708","location":"8132 S. Phillips (Eckersall Park)","modifiedDate":"2017-06-24T10:38:01"},{"calendarId":9,"start":"2017-07-17T18:00:00","end":"2017-07-17T20:30:00","title":"Faith in Action-Hoyne Park","eventDetails":"Join area residents and 009th District Police in a Peace Ralley at Hoyne Park.","eventUrl":null,"contactDetails":"009th District CAPS 312 747-8227","location":"3417 S. Hamilton","modifiedDate":"2017-07-07T08:05:58"},{"calendarId":18,"start":"2017-07-16T11:00:00","end":"2017-07-16T15:00:00","title":"018th District Explorers Outing","eventDetails":"Pending approval","eventUrl":null,"contactDetails":"P.O. Baker 312.742.5778","location":"018th District Community Room 1160 N. Larrabee","modifiedDate":"2017-06-15T13:33:01"},{"calendarId":25,"start":"2017-07-15T13:00:00","end":"2017-07-15T15:00:00","title":"Youth Exploring","eventDetails":"Youth Exploring","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-15T10:20:11"},{"calendarId":11,"start":"2017-07-15T12:00:00","end":"2017-07-15T15:00:00","title":"Bridging The Divide with Chicago And You","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"3151 W. Harrison ","modifiedDate":"2017-07-12T14:57:02"},{"calendarId":11,"start":"2017-07-15T12:00:00","end":"2017-07-15T15:00:00","title":"1st Annual Community Safety Fair ","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"825 N. Christiana Salvation Army Freedom Center","modifiedDate":"2017-07-12T14:56:28"},{"calendarId":7,"start":"2017-07-15T12:00:00","end":"2017-07-15T16:30:00","title":"Health and Wellness Festival","eventDetails":"Health and Wellness Festival providing fun, food and live music performances for kids and families of the community. Vendors will be on site providing health screenings and more. ","eventUrl":null,"contactDetails":"WWW.REDEEMEDCDC.ORG; SPIRITREDEEMED@YAHOO.COM 773-453-5217 OR 773-737-3500","location":"Sprit Redeemed MB Church Parking Lot, 6601 - 09 S. Ashland Avenue","modifiedDate":"2017-07-14T15:42:09"},{"calendarId":6,"start":"2017-07-15T11:00:00","end":"2017-07-15T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-28T16:04:13"},{"calendarId":5,"start":"2017-07-15T11:00:00","end":"2017-07-15T16:00:00","title":"Faith in Action/My Brother's Keeper Annual Barbecue","eventDetails":"Join friends and neighbors for a day of food, fun and fellowship sponsored by the 5th District Pastoral Subcommittee and the Promised Land Missionary Baptist Church","eventUrl":null,"contactDetails":"5th District Community Policing Office, 312-747-3100","location":"119th and Union","modifiedDate":"2017-06-27T13:48:00"},{"calendarId":7,"start":"2017-07-15T10:30:00","end":"2017-07-15T12:00:00","title":"17th Ward \"Focus on Youth Expo\"","eventDetails":"Resoource fair for youth with several speakers on family support services, park activities, workforce oportunities, schools and speical programs.","eventUrl":null,"contactDetails":"17th Ward Office 773-783-3672","location":"Ogden Park, 6500 S. Racine","modifiedDate":"2017-07-14T17:55:02"},{"calendarId":7,"start":"2017-07-15T10:00:00","end":"2017-07-15T16:00:00","title":"Rock The Wood","eventDetails":"This event is an Englewood Resource Fair providing health screenings, FAFSA, Resume Training and more. There will be free food, games, and workshops.","eventUrl":null,"contactDetails":"For Reservations call 773-778-7780; www.rockthewood.com","location":"Harper High School Parking Lot; 6520 S. Wood Street","modifiedDate":"2017-07-14T10:59:02"},{"calendarId":11,"start":"2017-07-15T10:00:00","end":"2017-07-15T11:00:00","title":"Westside Walk to Wellness ","eventDetails":"Westside Walk to Wellness will step off from New Mount Pilgrim Missionary Baptist Church, 4301 W. Washington and end at the Garfield Park Golden Dome, 100 N. Central Park. ","eventUrl":null,"contactDetails":"11th District Community Policing Office, 312-746-9841","location":"4301 W. Washington","modifiedDate":"2017-07-05T11:18:19"},{"calendarId":2,"start":"2017-07-15T08:30:00","end":"2017-07-15T13:30:00","title":"Movie in the Park","eventDetails":"A concert in the park with Young teen girls> (Bonding)","eventUrl":null,"contactDetails":"CAPS Office Officer Gathings 312-747-5109","location":"200 Ravinia Rd","modifiedDate":"2017-06-29T17:31:46"},{"calendarId":5,"start":"2017-07-14T21:00:00","end":"2017-07-15T01:00:00","title":"Friday Night Peace Campaign ","eventDetails":"Come join friends and neighbors for a positive loitering event with worship, outreach and community prayer designed to reduce crime and violence sponsored by the 5th District Pastoral Subcommittee","eventUrl":null,"contactDetails":"5th District Community Policing Officer, 312-747-3100","location":"109th Street and Wentworth","modifiedDate":"2017-06-27T13:38:00"},{"calendarId":11,"start":"2017-07-14T18:00:00","end":"2017-07-14T19:00:00","title":"100 Blocks 100 Churches","eventDetails":"Join Legacy Church Pastor Bryant for the 100 Blocks 100 Churches.","eventUrl":null,"contactDetails":"011 District CAPS 1.312.746.9841","location":"Congress/ Kostner","modifiedDate":"2017-06-26T16:38:00"},{"calendarId":8,"start":"2017-07-14T18:00:00","end":"2017-07-14T20:00:00","title":"Burglary Seminar","eventDetails":"Keepin it Real Presentation","eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"6325 W. 56th Street","modifiedDate":"2017-07-06T09:37:25"},{"calendarId":11,"start":"2017-07-14T16:00:00","end":"2017-07-14T21:00:00","title":"Community Block Club Party ","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"3800-3900 W. Grenshaw","modifiedDate":"2017-07-19T12:22:37"},{"calendarId":11,"start":"2017-07-14T15:00:00","end":"2017-07-14T19:30:00","title":"BUILD Block Club Party ","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"4700 W. Gladys","modifiedDate":"2017-07-12T14:56:37"},{"calendarId":11,"start":"2017-07-14T15:00:00","end":"2017-07-14T19:30:00","title":"Build Block Club Party ","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"4700 W. Gladys ","modifiedDate":"2017-07-19T12:22:48"},{"calendarId":7,"start":"2017-07-14T15:00:00","end":"2017-07-15T17:00:00","title":"Drum circle for Peace","eventDetails":"All ages and experience levels get together to learn the art of community drumming, learning to work together to build a poly-rythmic sound.The practice embodys village building, inclusivity, cooperation and conflict resolution. ","eventUrl":null,"contactDetails":"For further info call 773 800 2738","location":"Hamilton Park, 513 W . 72nd st.","modifiedDate":"2017-07-14T18:18:00"},{"calendarId":11,"start":"2017-07-14T12:30:00","end":"2017-07-14T15:00:00","title":"Piccolo Elementary Youth Peace Circles and various activities","eventDetails":"Piccolo Elementary Youth Peace Circles and various activities in cooperation with 011th District Officers and DBE Foundation. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"1040 N. Keeler ","modifiedDate":"2017-07-05T11:18:53"},{"calendarId":11,"start":"2017-07-14T12:00:00","end":"2017-07-14T16:00:00","title":"Playstreet at 4000 W. Carroll ","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"4000 W. Carroll ","modifiedDate":"2017-07-19T12:21:37"},{"calendarId":8,"start":"2017-07-14T12:00:00","end":"2017-07-14T13:30:00","title":"First Tee Youth Golf","eventDetails":"Youth learning to golf","eventUrl":null,"contactDetails":"Community Policing 312 747-8724","location":"6734 S. Kedzie","modifiedDate":"2017-07-06T09:37:56"},{"calendarId":4,"start":"2017-07-14T10:00:00","end":"2017-07-14T13:00:00","title":"Play Streets","eventDetails":"PlayStreets Chicago encourages neighborhood organizations and residents to join their neighbors in getting active and moving.","eventUrl":null,"contactDetails":"Olivia Hernandez 773 731-0109","location":"2944 E. 88th Street ","modifiedDate":"2017-07-06T09:43:01"},{"calendarId":20,"start":"2017-07-13T19:00:00","end":"2017-07-13T20:00:00","title":"2023 Beat Meeting","eventDetails":"2023 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Kenmore Plaza5225 N. Kenmore Ave.","modifiedDate":"2017-06-23T15:27:11"},{"calendarId":8,"start":"2017-07-13T19:00:00","end":"2017-07-13T20:00:00","title":"814 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Vittum Park Fieldhouse 5010 W. 50th St","modifiedDate":"2017-05-24T17:50:49"},{"calendarId":4,"start":"2017-07-13T19:00:00","end":"2017-07-13T20:00:00","title":"421 & 422 Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"2800 E. 79th St.","modifiedDate":"2017-06-24T09:25:43"},{"calendarId":12,"start":"2017-07-13T19:00:00","end":"2017-07-13T20:00:00","title":"Beat Meeting 1215","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"Goldblatt's Building 1615 W. Chicago Ave. ","modifiedDate":"2017-05-27T07:28:00"},{"calendarId":5,"start":"2017-07-13T19:00:00","end":"2017-07-13T20:00:00","title":"Community Meeting -- Beat 524","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"5th District Community Policing Office, 312-747-3100","location":"Lutheran Church of the Holy Spirit, 1335 W. 115th Street","modifiedDate":"2017-06-27T13:03:03"},{"calendarId":7,"start":"2017-07-13T18:30:00","end":"2017-07-13T19:30:00","title":"Community Meeting -Beats 724 and 725","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"7th District Community Policing Office, 312-747-6722","location":"Ogden Park, 6500 S. Racine","modifiedDate":"2017-06-28T23:07:47"},{"calendarId":14,"start":"2017-07-13T18:30:00","end":null,"title":"1413/1414 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Logan Square Library3030 W. Fullerton","modifiedDate":"2017-06-12T15:04:00"},{"calendarId":22,"start":"2017-07-13T18:30:00","end":null,"title":"Beat 2213 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Ridge Park \n9625 S. Longwoog ","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":1,"start":"2017-07-13T18:30:00","end":"2017-07-13T19:30:00","title":"CAPS 10 Sector Residential Meeting ","eventDetails":"Join 001st District Police and help solve problems in your neighborhood","eventUrl":null,"contactDetails":"001st district community relations 312.745.4381 or CAPS.001district@chicagopolice.org","location":"Condo Building 400 E Randolph St","modifiedDate":"2017-07-10T12:20:40"},{"calendarId":15,"start":"2017-07-13T18:30:00","end":"2017-07-13T19:30:00","title":"Beat 1513N caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5701 W. Madison ( 015th District)","modifiedDate":"2017-05-30T13:09:04"},{"calendarId":6,"start":"2017-07-13T18:30:00","end":"2017-07-13T19:30:00","title":"Beat 632 and 633 Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (3120-745-3641","location":"Tuley Park Field House 501 E. 90th Place","modifiedDate":"2017-06-26T10:59:10"},{"calendarId":10,"start":"2017-07-13T18:00:00","end":"2017-07-13T19:00:00","title":"Beat Meeting 1033","eventDetails":"Beat 1033 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Little Village Library\n2311 S. Kedzie","modifiedDate":"2017-01-04T15:56:08"},{"calendarId":11,"start":"2017-07-13T18:00:00","end":"2017-07-13T19:00:00","title":"Beat Meeting: 1122/23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Legler Chicago Public Library 115 S. Pulaski ","modifiedDate":"2016-12-27T12:46:48"},{"calendarId":18,"start":"2017-07-13T18:00:00","end":"2017-07-13T19:00:00","title":"1811, 1812 & 1813 Beat Meeting","eventDetails":"Come out and meet your neighbor and beat officer and share ideas for problem solving in your communit.y","eventUrl":null,"contactDetails":"018th District Community Relations 312.742.5778 ","location":"St James Lutheran Church 2101 N. Fremont","modifiedDate":"2017-06-15T13:28:01"},{"calendarId":9,"start":"2017-07-13T18:00:00","end":"2017-07-13T19:00:00","title":"Beat 931-933 Community Meeting","eventDetails":"Cornell Square Park...Come out and meet your Beat Officers!! Discuss upcoming events in your community!! Learn about crime(s) in your area...","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"1809 W. 50th Street","modifiedDate":"2017-06-23T13:51:33"},{"calendarId":7,"start":"2017-07-13T17:00:00","end":"2017-07-13T19:00:00","title":"Englewood Youth Baseball Games","eventDetails":"Englewood Police/Youth Baseball League was established in 2015 to strengthen relationships between Chicago Police Department and youth of the Englewood community through baseball. Chicago Police Officers volunteer as coaches and mentors to Englewood Police/Youth Baseball League. Teamwork Englewood established and manages Englewood Police/Youth Baseball League. Games and practices take place at Hamilton Park Cultural Center.","eventUrl":null,"contactDetails":"Andrea Natay @ 312 221-7296","location":"Hamilton Park, 513 W. 72nd St","modifiedDate":"2017-07-12T20:04:30"},{"calendarId":4,"start":"2017-07-13T14:00:00","end":"2017-07-13T17:00:00","title":"Play Streets","eventDetails":"PlayStreets Chicago encourages neighborhood organizations and residents to join their neighbors in getting active and moving.","eventUrl":null,"contactDetails":"April Morris 773 734-9181","location":"7900 S. Manistee","modifiedDate":"2017-07-06T09:28:00"},{"calendarId":11,"start":"2017-07-13T12:00:00","end":"2017-07-13T13:00:00","title":"3200-3300 W. Maypole Community Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"3222 W. Maypole Dr. Chappell Housing Complex","modifiedDate":"2017-07-12T14:56:47"},{"calendarId":5,"start":"2017-07-13T11:00:00","end":"2017-07-13T12:00:00","title":"005th District Pastoral Sub-Committee Meeting","eventDetails":"005th District Pastoral Sub-Committee is comprised of various pastors throughout the 005th District who work on a consistent basis in assiting the community in building a relationship with the police.","eventUrl":null,"contactDetails":"005th District CAPS @ 312 747 3100","location":"727 E 111th St Community Room","modifiedDate":"2017-06-27T13:53:00"},{"calendarId":10,"start":"2017-07-13T06:00:00","end":"2017-07-13T07:00:00","title":"Community Beat Meeting for 1033","eventDetails":"Community residents and the Chicago Police Department of the 10th District will meet to discuss community issues and concerns.","eventUrl":null,"contactDetails":"-10th District Caps Office Sgt. Lara -","location":"2311 S. Kedzie Little Village Library","modifiedDate":"2017-08-10T10:42:04"},{"calendarId":4,"start":"2017-07-12T20:00:00","end":"2017-07-12T20:00:00","title":"411 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"1526 E. 84th St.","modifiedDate":"2017-06-24T09:24:15"},{"calendarId":8,"start":"2017-07-12T19:00:00","end":"2017-07-12T20:00:00","title":"812 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Clearing Library 6423 W. 63rd Pl","modifiedDate":"2017-05-24T17:51:11"},{"calendarId":17,"start":"2017-07-12T19:00:00","end":"2017-07-12T20:00:00","title":"1732/1733 combined Beat Meeting","eventDetails":"The Beat Meeting is about Community Members, Police and Elected Officials coming together to resolve and strategize together about chronic crime related and quality of life issues.","eventUrl":null,"contactDetails":"017th District CAPS Office","location":"3546 W. Addison / Athletic Park Field House","modifiedDate":"2017-06-13T18:01:56"},{"calendarId":9,"start":"2017-07-12T19:00:00","end":"2017-07-12T20:00:00","title":"Beat 912 Community Meeting","eventDetails":"St. Maurice Church","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"3625 S. Hoyne","modifiedDate":"2017-05-18T10:30:40"},{"calendarId":5,"start":"2017-07-12T19:00:00","end":"2017-07-12T20:00:00","title":"Community Meeting -- Beat 523","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"5th District Community Policing Office, 312-747-3100","location":"St. Peter and Paul Church, 12425 S. Halsted","modifiedDate":"2017-06-27T13:03:48"},{"calendarId":19,"start":"2017-07-12T18:30:00","end":"2017-07-12T19:30:00","title":"Beat 1913","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"Courtenay School4420 N. Beacon","modifiedDate":"2017-06-29T14:23:49"},{"calendarId":14,"start":"2017-07-12T18:30:00","end":null,"title":"1421 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Humboldt Park library1605 N. Troy","modifiedDate":"2017-06-12T15:04:37"},{"calendarId":7,"start":"2017-07-12T18:30:00","end":"2017-07-12T19:30:00","title":"Community Meeting - Beat 726","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"7th District Community Policing Office, 312-747-6722","location":"Lindblom Park, 6054 S. Damen","modifiedDate":"2017-06-28T23:07:49"},{"calendarId":1,"start":"2017-07-12T18:30:00","end":"2017-07-12T19:30:00","title":"CAPS 20 Sector Residential Meeting ","eventDetails":"Meet your 001 District Police and help with problem solving","eventUrl":null,"contactDetails":"001st district community relations 312.745.4381 or CAPS.001district@chicagopolice.org","location":"University Center 525 S State St","modifiedDate":"2017-07-10T12:19:41"},{"calendarId":16,"start":"2017-07-12T18:30:00","end":"2017-07-12T19:30:00","title":"Faith in Action with Storehouse Church","eventDetails":"Come join the 016th District officers and Storehouse Church parishioners for a meet and greet out door rollcall. Refreshments to follow.","eventUrl":null,"contactDetails":"P.O. Melissa Lehrmann","location":"Storehouse Church 5701 W. Montrose","modifiedDate":"2017-08-09T18:39:14"},{"calendarId":2,"start":"2017-07-12T18:30:00","end":"2017-07-12T19:30:00","title":"213/215/224 Beat meeting","eventDetails":"Officers and citizens meet to discuss issues on the beat.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"4058 S. Michigan Ave","modifiedDate":"2017-06-22T13:41:29"},{"calendarId":25,"start":"2017-07-12T18:00:00","end":"2017-07-12T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"All Churches & Faith-Based Institutions in the 25th District are encouraged to participate in our mission to stop the violence and take-back the neighborhood by wearing red, standing outside their churches, and helping to get the word out to \"PUT THE GUNS DOWN!\"","eventUrl":null,"contactDetails":"312-746-5090","location":"All Churches & Faith-Based Locations","modifiedDate":"2017-05-30T10:23:00"},{"calendarId":12,"start":"2017-07-12T18:00:00","end":"2017-07-12T19:00:00","title":"Beat Meeting 1231","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"Academy Square, 318 S. Throop","modifiedDate":"2017-05-27T07:38:00"},{"calendarId":15,"start":"2017-07-12T18:00:00","end":"2017-07-12T19:00:00","title":"100 Blocks, 100 Churches Community Event","eventDetails":"Residents, stakeholders, business ownbers, faith-based institutions, and the police gather each Wednesday evening to hold a positive loitering smoke event and engage the public with information and resources.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"15th District Targeted Locations To Be Determined","modifiedDate":"2017-05-30T13:53:03"},{"calendarId":11,"start":"2017-07-12T18:00:00","end":"2017-07-12T19:00:00","title":"Alderman Mitts Unity Walk in Conjuction with 37 Ward-Minister Alliance.","eventDetails":"Alderman Mitts Unity Walk in Conjuction with 37 Ward-Minister Alliance.","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"3915 W. Chicago ","modifiedDate":"2017-07-12T14:57:49"},{"calendarId":11,"start":"2017-07-12T18:00:00","end":"2017-07-12T19:00:00","title":"100 Blocks, 100 Churches","eventDetails":"Join faith leaders from across the 11th District for positive loitering and prayer designed to prevent and reduce crime at the following locations: Kilpatrick and Maypole; Central Park and Fifth Avenue; Madison and California; Huron and Central Park; Western and Jackson; Congress and Kostner; and California and Glaldys","eventUrl":null,"contactDetails":"11th District Community Policing Office, (312) 746-9841","location":"Various (see details)","modifiedDate":"2017-06-29T11:42:24"},{"calendarId":9,"start":"2017-07-12T18:00:00","end":"2017-07-12T21:00:00","title":"11th Ward \"Wild West Senior Fest\"","eventDetails":"Join Commissioner John Daley and Alderman Patrick Thompson for a night of fun at Armour Square Park.","eventUrl":null,"contactDetails":"009th District CAPS 312-747-8227","location":"Armour Square Park, 3309 S. Shields","modifiedDate":"2017-07-07T08:06:29"},{"calendarId":18,"start":"2017-07-12T15:30:00","end":"2017-07-12T16:30:00","title":"30 Sector Hospitality Meeting","eventDetails":"Business Owners and Residents share ideas for problem solving in your community","eventUrl":null,"contactDetails":"P.O. G. Incaprera 312.742.5880 ext 1208","location":"High Line169 W. Kinzie","modifiedDate":"2017-06-15T13:28:01"},{"calendarId":14,"start":"2017-07-12T13:30:00","end":null,"title":"Domestic Violence","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:36:48"},{"calendarId":22,"start":"2017-07-12T13:30:00","end":null,"title":"Court Advocacy","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T11:48:23"},{"calendarId":5,"start":"2017-07-12T13:00:00","end":"2017-07-12T15:00:00","title":"Kick Back Wednesday Youth Event","eventDetails":"A pop-up play event sponosored by the Department to provide fun and healthy activities for young people and an opportunity for positive interaction between police, young people and other neighborhoord residents","eventUrl":null,"contactDetails":"Margie Reid, 5th District Community Organizer, 312-747-3100","location":"Smith Park, 9912 S. Princeton","modifiedDate":"2017-06-27T13:18:01"},{"calendarId":6,"start":"2017-07-12T11:00:00","end":"2017-07-12T12:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Meet with seniors on crime tip prevention and plan fun filled events.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St. ","modifiedDate":"2017-04-28T16:04:28"},{"calendarId":20,"start":"2017-07-12T10:00:00","end":"2017-07-12T11:00:00","title":"Seniors Meeting","eventDetails":"Seniors Meeting, a monthly meeting featuring activities and informative talks on seniors related topics. Contact CAPS for details.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District Community Room 5400 N. Lincoln ave ","modifiedDate":"2017-06-23T14:13:04"},{"calendarId":18,"start":"2017-07-12T10:00:00","end":"2017-07-12T12:00:00","title":"Senior Illinois Rules of the Road","eventDetails":"Review Course designed to give seniors the knowledge and confidence to obtain and renew their drivers license. Course includes an explanation of driving exam with a practice written exam. ","eventUrl":null,"contactDetails":"P.O. S. Ramirez 312.742.5778","location":"Elizabeth Woods Apts 2111 N. Halsted ","modifiedDate":"2017-06-15T13:18:01"},{"calendarId":7,"start":"2017-07-12T10:00:00","end":"2017-07-12T12:00:00","title":"Metropolitan Family Services Greater Englewood Open House","eventDetails":"Join us to learn about the many services offered by Metropolitan Family Services. Enjoy refreshments and let us know how we can partner to Mpower the Greater Englewood community.","eventUrl":null,"contactDetails":"Metropolitan Family Services, RSVP at metrogreaterenglewoodopenhouse.eventbrite.com","location":" 5338 S. Loomis Blvd","modifiedDate":"2017-07-07T09:50:45"},{"calendarId":7,"start":"2017-07-12T10:00:00","end":"2017-07-12T13:00:00","title":"Englewood Women's Initiative","eventDetails":"Learn skills to improve your life and secure your family's economic future. Get employable skills for in-demand jobs. Train for good paying legacy careers in construction and manufacturing trades.","eventUrl":null,"contactDetails":"Teamwork Englewood, 773-488-6600","location":"Teamwork Englewood, 815 W.63rd Street, 2nd Floor ","modifiedDate":"2017-07-07T09:33:00"},{"calendarId":11,"start":"2017-07-12T08:00:00","end":"2017-07-12T18:59:00","title":"Playstreet 3300-3099 W. Maypole","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS","location":"3300-3099 W. Maypole","modifiedDate":"2017-07-12T14:57:16"},{"calendarId":4,"start":"2017-07-11T19:00:00","end":"2017-07-11T20:00:00","title":"423 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"8930 S. Muskegon Ave","modifiedDate":"2017-06-24T09:23:22"},{"calendarId":24,"start":"2017-07-11T19:00:00","end":null,"title":"2412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Northtown Library 6435 N. California","modifiedDate":"2017-06-30T12:48:32"},{"calendarId":24,"start":"2017-07-11T19:00:00","end":null,"title":"2432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District 6464 N. Clark","modifiedDate":"2016-12-07T10:10:47"},{"calendarId":22,"start":"2017-07-11T19:00:00","end":null,"title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Robichaux Park\n403 W. 93rd St","modifiedDate":"2016-12-28T11:48:38"},{"calendarId":8,"start":"2017-07-11T19:00:00","end":"2017-07-11T20:00:00","title":"831/832 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Marquette Park 6734 S. Kedzie","modifiedDate":"2017-05-24T17:51:36"},{"calendarId":16,"start":"2017-07-11T19:00:00","end":"2017-07-11T20:00:00","title":"1613 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Oriole Park 5430 N. Olcott","modifiedDate":"2017-02-22T11:38:29"},{"calendarId":17,"start":"2017-07-11T19:00:00","end":"2017-07-11T20:00:00","title":"1731 Beat Meeting","eventDetails":"The Beat Meeting is about Community Members, Police and Elected Officials coming together to resolve and strategize together about chronic crime related and quality of life issues.","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588","location":"3501 N. Kilbourn / KIlbourn Park Field House","modifiedDate":"2017-06-13T18:01:36"},{"calendarId":5,"start":"2017-07-11T19:00:00","end":"2017-07-11T20:00:00","title":"Community Meeting -- Beat 522","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"5th District Community Policing Office, 312-747-3100","location":"Greater Canaan Missionary Baptist Church, 35 W. 119th Street","modifiedDate":"2017-06-27T13:03:03"},{"calendarId":19,"start":"2017-07-11T18:30:00","end":"2017-07-11T19:30:00","title":"Beat 1933","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"Illinois Masonic836 W. Wellington","modifiedDate":"2017-06-29T14:24:09"},{"calendarId":11,"start":"2017-07-11T18:30:00","end":"2017-07-11T19:30:00","title":"Beat Meeting: 1124/25","eventDetails":"Community engagement and generating strategies to make neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841 Chicago Police Station3151 W. Harrison Street","location":"2718 W. Jackson Blvd.","modifiedDate":"2017-07-07T16:56:32"},{"calendarId":7,"start":"2017-07-11T18:30:00","end":"2017-07-11T19:30:00","title":"Community Meeting - Beats 722 and 723","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"7th District Community Policing Office, 312-747-6722","location":"Kennedy-King College, 740 W. 63rd Street, U Building","modifiedDate":"2017-06-28T23:07:46"},{"calendarId":9,"start":"2017-07-11T18:30:00","end":"2017-07-11T19:30:00","title":"Beat 913-915 Community Meeting","eventDetails":"St. Barbara's Church","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"2859 S. Throop","modifiedDate":"2017-05-18T10:30:55"},{"calendarId":15,"start":"2017-07-11T18:30:00","end":"2017-07-11T19:30:00","title":"Beat 1531/32 Caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"4856 W. CHICAGO AVE (WEST BRANCH LIBRARY)","modifiedDate":"2017-05-30T13:09:55"},{"calendarId":11,"start":"2017-07-11T18:30:00","end":"2017-07-11T19:30:00","title":"28th Ward Community Meeting ","eventDetails":"Monthly meeting with Alderman Ervin to discuss issues in the ward","eventUrl":null,"contactDetails":"28th Ward Office, 773-533-0900","location":"Garfield Park Golden Dome, 100 N. Central Park ","modifiedDate":"2017-07-05T11:22:53"},{"calendarId":2,"start":"2017-07-11T18:30:00","end":"2017-07-11T19:30:00","title":"222 Beat meeting","eventDetails":"Officers and citizens meet to discuss issues on the beat.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"4434 S. Lake Park","modifiedDate":"2017-06-22T13:41:44"},{"calendarId":6,"start":"2017-07-11T18:30:00","end":"2017-07-11T19:30:00","title":"612 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solution to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Southside Tabernacle Church 7724 S. Racine","modifiedDate":"2017-06-26T10:20:37"},{"calendarId":15,"start":"2017-07-11T18:30:00","end":"2017-07-11T19:30:00","title":"Beat 1511/24 Caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5900 W.Iowa ( Hope Community Church)","modifiedDate":"2017-06-17T16:31:04"},{"calendarId":10,"start":"2017-07-11T18:00:00","end":"2017-07-11T19:00:00","title":"Beat Meeting 1021","eventDetails":"Beat 1021 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Carey Tercentenary\n1448 S. Homan Ave","modifiedDate":"2017-01-04T15:59:52"},{"calendarId":18,"start":"2017-07-11T18:00:00","end":"2017-07-11T19:00:00","title":"1821,1822 & 1823 Beat Meeting","eventDetails":"Come out meet your neighbor and Beat officer, Discuss current crime trends and share ideas for problem solving in your community.","eventUrl":null,"contactDetails":"018th District Community Relations Office 312.742.5778 ","location":"018th District Community Room 1160 N. Larrabee","modifiedDate":"2017-06-15T13:13:01"},{"calendarId":18,"start":"2017-07-11T18:00:00","end":"2017-07-11T19:00:00","title":"1821,1822 & 1823 Beat Meeting","eventDetails":"Come out meet your neighbor and Beat officer, Discuss current crime trends and share ideas for problem solving in your community.","eventUrl":null,"contactDetails":"018th District Community Relations Office 312.742.5778 ","location":"018th District Community Room 1160 N. Larrabee","modifiedDate":"2017-06-15T13:13:01"},{"calendarId":12,"start":"2017-07-11T18:00:00","end":"2017-07-11T19:00:00","title":"Beat Meeting 1233","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"12th District, 1412 S. Blue Island","modifiedDate":"2017-05-27T07:38:00"},{"calendarId":20,"start":"2017-07-11T16:00:00","end":"2017-07-11T18:00:00","title":"Bike Ambassadors","eventDetails":"Bike Ambassadors along with Chicago Police CAPS officers promote safety and public-awareness for all road users.","eventUrl":null,"contactDetails":"3127428770","location":"Sheridan/Ardmore","modifiedDate":"2017-06-23T14:59:25"},{"calendarId":17,"start":"2017-07-11T11:00:00","end":"2017-07-11T12:00:00","title":"Domestic Violence Sub-Committee ","eventDetails":"This meeting is about community members and police partnering together to decrease/raise awarness about Domestic Violence and related issues.","eventUrl":null,"contactDetails":"017th District CAPS Office/ Officer Parks 312-742-4588","location":"4650 N. Pulaski Rd. /017th District Community Room","modifiedDate":"2017-06-13T18:00:39"},{"calendarId":19,"start":"2017-07-11T11:00:00","end":"2017-07-11T12:00:00","title":"Coffee With A Cop","eventDetails":"Join us at Starbucks to meet Officers from the 19th District.","eventUrl":null,"contactDetails":"19th District Community Policing Office 3127440064","location":"1601 W. Irving Park Rd","modifiedDate":"2017-06-29T15:21:56"},{"calendarId":22,"start":"2017-07-11T10:00:00","end":null,"title":"Clergy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T11:48:08"},{"calendarId":6,"start":"2017-07-11T10:00:00","end":"2017-07-11T11:00:00","title":"Business Subcommittee Meeting","eventDetails":"Meet the local businesses as we plan future events to foster a safe community.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-28T16:04:40"},{"calendarId":7,"start":"2017-07-11T10:00:00","end":"2017-07-11T11:00:00","title":"Faith-Based Council Monthly Meeting","eventDetails":"Meeting of faith based leaders from the 7th District to discuss ways the faith community can help implement strategies to prevent and reduce crime and disorder. The council meets the second Tuesday of every month.","eventUrl":null,"contactDetails":"Officer Shelton or Sgt. Rederick, 312-747-6722","location":"7th District Station, 1438 W. 63rd Street","modifiedDate":"2017-06-28T23:10:59"},{"calendarId":7,"start":"2017-07-11T09:00:00","end":"2017-07-11T14:00:00","title":"Gordie's Foundation Annual Community Resources and Job Fair","eventDetails":"Meet with recruiters from various companies, learn about what community resources are available in Englewood.","eventUrl":null,"contactDetails":"Gordie's Foundation 773-912-6558","location":"6430 S. Ashland Avenue","modifiedDate":"2017-07-12T09:41:36"},{"calendarId":10,"start":"2017-07-11T06:00:00","end":"2017-07-11T07:00:00","title":"Community Beat Meeting for 1021","eventDetails":"Join the CAPS & Bear Officers in a meeting to discuss 1021 beat issues, problems, concern and pending community events.","eventUrl":null,"contactDetails":"CAPS Office 312-747-7190 Sgt. Lara ","location":" Carey Tercentenary 1448 S. Homan Ave.","modifiedDate":"2017-08-10T10:42:25"},{"calendarId":19,"start":"2017-07-10T19:00:00","end":"2017-07-10T20:00:00","title":"Beat 1932","eventDetails":"Community Meeting to address crime issues on the beat, develop strategies to solve problems, and dissemination of crime prevention information","eventUrl":null,"contactDetails":"019 Community Policing312-744-0064","location":"New Life Church1110 W. Lill","modifiedDate":"2017-06-29T14:24:33"},{"calendarId":2,"start":"2017-07-10T18:30:00","end":"2017-07-10T19:30:00","title":"211 Beat meeting","eventDetails":"Officers and citizens meet to discuss issues on the beat.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"3240 S. Indiana ave","modifiedDate":"2017-06-22T13:42:01"},{"calendarId":15,"start":"2017-07-10T15:00:00","end":"2017-07-10T16:00:00","title":"DOMESTIC VIOLENCE MEETING","eventDetails":"Domestic violence Subcommittee Meeting/Subcommittee Members discuss and plan upcoming events for Domestic Violence Victims and Promote Awareness.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"5701 W. Madison","modifiedDate":"2017-05-30T13:10:06"},{"calendarId":14,"start":"2017-07-08T22:00:00","end":null,"title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:36:56"},{"calendarId":7,"start":"2017-07-08T15:00:00","end":"2017-07-08T19:00:00","title":"So Fresh Saturday","eventDetails":"A community driven edutainment series that will showcase various artistic expressions and educational workshops focusing on youth entrepreneurship, hip hop, media, social networks, community activism, and culturally relevant history using various media formats.","eventUrl":null,"contactDetails":"Residents Association of Greater Englewood (R.A.G.E.) email: Joinrage@gmail.com; phone: 866-845-1035","location":"Hermitage Park, 5839 S. Wood Street","modifiedDate":"2017-07-12T09:40:08"},{"calendarId":11,"start":"2017-07-08T10:00:00","end":"2017-07-08T14:00:00","title":"West Humboldt Park Farmers Market ","eventDetails":"The WHP Farmer's Market continues to flourish as a one-stop shop where community members can gather to purchase healthy food options such as fresh fruits, vegetables, and so much more! ","eventUrl":null,"contactDetails":"011th District CAPS ","location":"3601 W. Chicago ","modifiedDate":"2017-07-05T11:13:07"},{"calendarId":5,"start":"2017-07-08T00:00:00","end":"2017-07-08T23:59:00","title":"005th District CAPS Explorers Meeting","eventDetails":"005th District is comprised of youth who engage and partake in activities designed to build relationships between youth and the police","eventUrl":null,"contactDetails":"005th District CAPS @ 312 747 3100","location":"727 E 111th St Community Room","modifiedDate":"2017-06-27T13:48:00"},{"calendarId":5,"start":"2017-07-07T21:00:00","end":"2017-07-08T01:00:00","title":"Friday Night Peace Campaign","eventDetails":"Come join friends and neighbors for a positive loitering event with worship, outreach and community prayer designed to reduce crime and violence sponsored by the 5th District Pastoral Subcommittee","eventUrl":null,"contactDetails":"5th District Community Policing Office, 312-747-3100","location":"109th Street and Wentworth","modifiedDate":"2017-06-27T13:38:00"},{"calendarId":11,"start":"2017-07-07T18:00:00","end":"2017-07-07T19:00:00","title":"100 Blocks, 100 Churches","eventDetails":"Join Legacy Church Pastor Bryant for positiver loitering and prayer designed to prevent and reduce crime","eventUrl":null,"contactDetails":"11th District Community Policing Office, (312) 746-9841","location":"Congress and Kostner","modifiedDate":"2017-06-29T12:27:39"},{"calendarId":9,"start":"2017-07-07T17:00:00","end":"2017-07-08T05:00:00","title":"Increase the Peace Event","eventDetails":"The Resurrection Project is hosting an \"Increase the Peace Event\" at St. Joseph's Church including a March through the surrounding neighborhood. ","eventUrl":null,"contactDetails":"009th District CAPS 312-747-8227","location":"4800 S. Hermitage","modifiedDate":"2017-07-07T08:07:02"},{"calendarId":8,"start":"2017-07-07T12:00:00","end":"2017-07-07T13:30:00","title":"First Tee Youth Golf","eventDetails":"Youth learning to golf","eventUrl":null,"contactDetails":"Community Policing 312 747-8724","location":"6734 S. Kedzie","modifiedDate":"2017-07-06T09:38:44"},{"calendarId":8,"start":"2017-07-06T19:00:00","end":"2017-07-06T20:00:00","title":"834 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Bogan High School 3939 W. 79th St","modifiedDate":"2017-05-24T17:52:00"},{"calendarId":24,"start":"2017-07-06T19:00:00","end":null,"title":"District Advisory Council Meeting","eventDetails":"Not open to the public","eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District","modifiedDate":"2016-12-07T10:08:22"},{"calendarId":4,"start":"2017-07-06T19:00:00","end":"2017-07-06T20:00:00","title":"431 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"2255 E. 10rd St.","modifiedDate":"2017-06-24T09:22:40"},{"calendarId":16,"start":"2017-07-06T19:00:00","end":"2017-07-06T20:30:00","title":"1631 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"St. Francis Borgia Stokes Center 8025 W. Addison","modifiedDate":"2017-04-18T13:21:32"},{"calendarId":12,"start":"2017-07-06T19:00:00","end":"2017-07-06T20:00:00","title":"Beat Meeting 1225","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"Chicago Hope Academy 2108 W. Ogden","modifiedDate":"2017-05-27T07:33:00"},{"calendarId":15,"start":"2017-07-06T18:30:00","end":"2017-07-06T19:30:00","title":"Beat 1512/23 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495\t","location":"PCC Family Health Ctr.\n5425 W. Lake St.\n","modifiedDate":"2017-01-09T12:56:58"},{"calendarId":25,"start":"2017-07-06T18:30:00","end":"2017-07-06T19:30:00","title":"2511 Beat Meeting","eventDetails":"2511 Beat Meeting","eventUrl":null,"contactDetails":"P.O. Rodriguez A.\n312/746-5090","location":"Bethesda Home\n2833 N. Nordica","modifiedDate":"2016-12-30T13:30:50"},{"calendarId":6,"start":"2017-07-06T18:30:00","end":"2017-07-06T19:30:00","title":"631 Beat Meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Chatham Fields Lutheran Church 8050 S. St Lawrence","modifiedDate":"2017-06-26T10:21:16"},{"calendarId":11,"start":"2017-07-06T18:00:00","end":"2017-07-06T19:00:00","title":"Beat Meeting: 1112/21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2016-12-27T12:45:57"},{"calendarId":18,"start":"2017-07-06T18:00:00","end":"2017-07-06T19:00:00","title":"1831, 1832 & 1833 Beat Meeting","eventDetails":"Come out meet your neighbors and beat officers, discuss current crime trends and share ideas for problem solving in your community. ","eventUrl":null,"contactDetails":"018th District Community Relations Office 312.742.5778","location":"Access Living 115 W. Chicago Ave.","modifiedDate":"2017-06-15T13:08:03"},{"calendarId":10,"start":"2017-07-06T18:00:00","end":"2017-07-06T19:00:00","title":"Community Beat Meeting for 1011 & 1012 ","eventDetails":"Residents of the community and Chicago Police Department will gather together to discuss problems, concerns or valid information that can benefit the community. ","eventUrl":null,"contactDetails":"10th District CAPS Office 312-747-7190","location":"1350 S. Harding ","modifiedDate":"2017-08-10T10:42:44"},{"calendarId":16,"start":"2017-07-06T18:00:00","end":"2017-07-06T19:00:00","title":"Pre-CAPS Adult Social","eventDetails":"Prior to Beat 1631 CAPS meeting please join the 016th District Police Department and Alderman Nicholas Sposato for a Pre-CAPS Adult Social at St. Francis Borgia parking lot. There will be food, beverages, and prizes.","eventUrl":null,"contactDetails":"Alderman Nicholas Sposato","location":"8033 W. Addison","modifiedDate":"2017-07-05T11:24:45"},{"calendarId":14,"start":"2017-07-06T17:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:37:02"},{"calendarId":20,"start":"2017-07-06T16:00:00","end":"2017-07-06T18:00:00","title":"Bike Ambassadors","eventDetails":"Bike Ambassadors along with Chicago Police CAPS officers promote safety and public-awareness for all road users.","eventUrl":null,"contactDetails":"3127428770","location":"Western/Lawrence","modifiedDate":"2017-06-23T14:59:16"},{"calendarId":22,"start":"2017-07-06T14:00:00","end":null,"title":"Diversity & Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T11:48:16"},{"calendarId":3,"start":"2017-07-06T13:00:00","end":"2017-07-06T14:00:00","title":"District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":2,"start":"2017-07-06T13:00:00","end":"2017-07-06T15:00:00","title":"Faith Base Meeting ","eventDetails":"Mooses Temple MC Church \nRev. Wade Hudson ","eventUrl":null,"contactDetails":"Officer Denise Gathings \n312-747-5109","location":"5845 S State","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":4,"start":"2017-07-06T11:00:00","end":"2017-07-06T14:00:00","title":"Play Streets","eventDetails":"PlayStreets Chicago encourages neighborhood organizations and residents to join their neighbors in getting active and moving.","eventUrl":null,"contactDetails":"April Morris 773 734-9181","location":"8500 S. Kingston","modifiedDate":"2017-07-06T09:28:00"},{"calendarId":5,"start":"2017-07-06T00:00:00","end":"2017-07-06T00:00:00","title":"Community Meeting -- Beat 513","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"5th District Community Policing Office, 312-747-3100","location":"Lavizzo School, 138 W. 109th Street","modifiedDate":"2017-06-28T22:36:49"},{"calendarId":5,"start":"2017-07-06T00:00:00","end":"2017-07-06T23:59:00","title":"Domestic Violence Sub-Committee Meeting","eventDetails":"The Domestic Violence Sub-Committee is comprised of community members and stake holders who meet and discuss ways to empower individuals who are affected by domestic violence.","eventUrl":null,"contactDetails":"005th District CAPS @312 747 3100","location":"727 E 111th St Community Room","modifiedDate":"2017-06-27T14:15:10"},{"calendarId":8,"start":"2017-07-05T19:00:00","end":"2017-07-05T20:00:00","title":"815/821 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Bruno's 4839 S. Harding","modifiedDate":"2017-05-24T17:52:19"},{"calendarId":4,"start":"2017-07-05T19:00:00","end":"2017-07-05T20:00:00","title":"412 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"8455 S. Stony Island Ave","modifiedDate":"2017-06-24T09:21:56"},{"calendarId":16,"start":"2017-07-05T19:00:00","end":"2017-07-05T20:00:00","title":"1621 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"First Church Of Forest Glen 5400 N. Lawler","modifiedDate":"2017-02-22T11:44:02"},{"calendarId":5,"start":"2017-07-05T19:00:00","end":"2017-07-05T20:00:00","title":"Community Meeting -- Beat 512","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"5th District Community Policing Office, 312-747-3100","location":"Christian Missionary Baptist Church, 132 W. 104th Street","modifiedDate":"2017-06-28T23:10:54"},{"calendarId":9,"start":"2017-07-05T19:00:00","end":"2017-07-05T20:00:00","title":"Beat 911-921 Community Meeting","eventDetails":"Davis School Annex Building/Come out and meet your Beat Officers!! Discuss upcoming events in your community!! Learn about crime(s) in your area...","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"3050 W. 39th Place","modifiedDate":"2017-06-23T13:50:21"},{"calendarId":12,"start":"2017-07-05T19:00:00","end":"2017-07-05T20:00:00","title":"Beat Meeting 1221","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"Smith Park 2526 W. Grand Ave.","modifiedDate":"2017-05-27T07:28:00"},{"calendarId":14,"start":"2017-07-05T18:30:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:37:09"},{"calendarId":6,"start":"2017-07-05T18:30:00","end":"2017-07-05T19:30:00","title":"Beat 621 and 622 meeting","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"006 District Police Station 7808 S. Halsed","modifiedDate":"2017-06-26T11:00:06"},{"calendarId":14,"start":"2017-07-05T18:00:00","end":null,"title":"Beat Facilitator Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:37:15"},{"calendarId":15,"start":"2017-07-05T18:00:00","end":"2017-07-05T19:00:00","title":"100 Blocks, 100 Churches Community Event","eventDetails":"Residents, stakeholders, business owners, faith based and the police gather each Wednesday Evening to hold a positive loitering and smoke event and engage the public with information and resources.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Targeted Locations, To Be Determined","modifiedDate":"2017-01-09T12:57:08"},{"calendarId":18,"start":"2017-07-05T18:00:00","end":"2017-07-05T19:00:00","title":"1814, 1824, 1834 Beat Meeting","eventDetails":"Come out meet your neighbor and beat officer and join us as we share ideas for problem solving in your community.","eventUrl":null,"contactDetails":"Community Relations Office 312.742.5778","location":"Latin Upper School 59 W. North Ave","modifiedDate":"2017-06-15T12:58:00"},{"calendarId":25,"start":"2017-07-05T18:00:00","end":"2017-07-05T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"All Churches & Faith-Based Institutions in the 25th District are encouraged to participate in our mission to stop the violence and take-back the neighborhood by wearing red, standing outside their churches, and helping to get the word out to \"PUT THE GUNS DOWN!\"","eventUrl":null,"contactDetails":"312-746-5090","location":"All Churches & Faith-Based Locations","modifiedDate":"2017-05-30T10:23:00"},{"calendarId":15,"start":"2017-07-05T18:00:00","end":"2017-07-05T19:00:00","title":"Beat 1522/33 Caps Meeting","eventDetails":"Residents ,Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions.","eventUrl":null,"contactDetails":"CAPS OFFICE (312) 743-1495","location":"645 S. Central (Loretto Hospital)","modifiedDate":"2017-05-30T13:10:19"},{"calendarId":11,"start":"2017-07-05T18:00:00","end":"2017-07-05T19:00:00","title":"100 Blocks, 100 Churches","eventDetails":"Join faith leaders from across the 11th District for positive loitering and prayer designed to prevent and reduce crime at the following locations: Kilpatrick and Maypole; Central Park and Fifth Avenue; Madison and California; Huron and Central Park; Western and Jackson; Congress and Kostner; and California and Glaldys","eventUrl":null,"contactDetails":"11th District Community Policing Office, 312-746-9841","location":"Various (see details)","modifiedDate":"2017-06-29T11:43:02"},{"calendarId":3,"start":"2017-07-05T14:00:00","end":"2017-07-05T15:00:00","title":"Court Advocate Meeting","eventDetails":"003rd District Court Advocate Meeting ","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-07-05T10:00:00","end":"2017-07-05T11:00:00","title":"Domestic Violence ","eventDetails":"Domestic Violence","eventUrl":null,"contactDetails":"P.O. Rodriguez A. \n312/746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-30T13:29:10"},{"calendarId":11,"start":"2017-07-05T10:00:00","end":"2017-07-05T14:00:00","title":"2017 Safe Haven Summer Program ","eventDetails":"St. Stephen AME Church","eventUrl":null,"contactDetails":"011 District CAPS 1.312.746.9841","location":"3042 W. Washington","modifiedDate":"2017-06-26T16:58:00"},{"calendarId":4,"start":"2017-07-03T19:00:00","end":"2017-07-03T20:00:00","title":"432 Community Beat Meeting","eventDetails":"Community and Police coming together to discuss and find solutions to the issues that are affecting their neighborhoods. ","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"10155 S. Ewing Ave","modifiedDate":"2017-06-24T09:21:06"},{"calendarId":5,"start":"2017-07-03T19:00:00","end":"2017-07-03T20:00:00","title":"Community Meeting -- Beat 511","eventDetails":"Come meet with police officers working in your neighborhood and help to identify and prioritize crime and disorder issues and develop strategies to address those issues","eventUrl":null,"contactDetails":"5th District Community Policing Office, 312-747-3100","location":"Rosehaven Manor Church, 10220 S. Michigan","modifiedDate":"2017-06-28T23:10:53"},{"calendarId":3,"start":"2017-07-01T11:00:00","end":"2017-07-01T13:00:00","title":"Youth/Explorers Meeting","eventDetails":"Youth/Explores Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"003rd District(Auditorium\r\n 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":6,"start":"2017-07-01T11:00:00","end":"2017-07-01T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312) 745-3641","location":"6th District Police Station 7808 S. Halsted","modifiedDate":"2017-04-28T16:04:55"},{"calendarId":11,"start":"2017-07-01T10:00:00","end":"2017-07-01T14:00:00","title":"WHP Farmers Market ","eventDetails":null,"eventUrl":null,"contactDetails":"011 District CAPS 1.312.746.9841","location":"3601 W. Chicago ","modifiedDate":"2017-06-26T16:58:00"},{"calendarId":25,"start":"2017-07-01T08:30:00","end":"2017-07-01T11:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-30T13:30:59"},{"calendarId":7,"start":"2017-06-30T18:00:00","end":"2017-06-30T20:00:00","title":"Faith Base Peace and Prayer Walk","eventDetails":null,"eventUrl":null,"contactDetails":"officer Shelton & Sgt. Redrick 312-747-6722","location":"6300 S. Ashland Ave. to 7100 S. Ashland Ave.","modifiedDate":"2017-06-23T18:05:25"},{"calendarId":11,"start":"2017-06-30T12:30:00","end":"2017-06-30T15:00:00","title":"Piccolo Elementary school Peace Circles & Many More Activities","eventDetails":"Piccolo Elementary School Summer Students doing Peace Circles & many more activities. Partnership with Piccolo, 011th District CAPS & DBE Foundation. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"1040 N. Keeler ","modifiedDate":"2017-06-30T17:33:02"},{"calendarId":11,"start":"2017-06-29T09:00:00","end":"2017-06-29T11:00:00","title":"Mental Health First Aid Training For Faith Community","eventDetails":"Hartgrove Hospital is hosting a free training. This training is designed for Faith leaders. Continental Breakfast starts at 8:30 am. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841 Hartgrove 773.413.1807","location":"5730 W. Roosevelt Rd. ","modifiedDate":"2017-06-13T14:33:01"},{"calendarId":17,"start":"2017-06-28T19:30:00","end":"2017-06-28T20:30:00","title":"Beat Meeting for Beat 1711 & 1712","eventDetails":"Combined Beat Meeting for Beat 1711 and beat 1712","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"Mayfair Church - 5020 N. Pulaski ","modifiedDate":"2017-04-27T12:02:56"},{"calendarId":8,"start":"2017-06-28T19:00:00","end":"2017-06-28T20:00:00","title":"835 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Wrightwood LIbrary 8530 S. Kedzie","modifiedDate":"2017-05-24T17:52:41"},{"calendarId":16,"start":"2017-06-28T19:00:00","end":"2017-06-28T20:00:00","title":"1624 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Portage Park Senior Center 4100 N. Long","modifiedDate":"2017-02-21T14:43:58"},{"calendarId":7,"start":"2017-06-28T18:30:00","end":"2017-06-28T19:30:00","title":"Community Beat Meeting-Bt. 715","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"Lindblom Pk. 6054 s Damen","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":9,"start":"2017-06-28T18:30:00","end":"2017-06-28T19:30:00","title":"Beat 914 Community Meeting","eventDetails":"Chinatown Public Library","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"2100 S. Wentworth","modifiedDate":"2017-05-18T10:32:03"},{"calendarId":25,"start":"2017-06-28T18:00:00","end":"2017-06-28T19:00:00","title":"2534 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2534's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"North /Grand H.S. 4338 W. Wabansia","modifiedDate":"2017-06-26T13:33:20"},{"calendarId":15,"start":"2017-06-28T18:00:00","end":"2017-06-28T19:00:00","title":"100 Blocks, 100 Churches Community Event","eventDetails":"Residents, stakeholders, business owners, faith based and the police gather each Wednesday Evening to hold a positive loitering and smoke event and engage the public with information and resources.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Targeted Locations, to be determined","modifiedDate":"2017-01-03T14:20:20"},{"calendarId":3,"start":"2017-06-28T18:00:00","end":"2017-06-28T19:00:00","title":"Dac Meeting ","eventDetails":"003rd District Advisory Committee meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n 7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-06-28T18:00:00","end":"2017-06-28T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"All Churches & Faith-Based Institutions in the 25th District are encouraged to participate in our mission to stop the violence and take-back the neighborhood by wearing red, standing outside their churches, and helping to get the word out to \"PUT THE GUNS DOWN!\"","eventUrl":null,"contactDetails":"312-746-5090","location":"All Churches & Faith-Based Locations","modifiedDate":"2017-05-30T10:23:00"},{"calendarId":2,"start":"2017-06-28T14:30:00","end":"2017-06-28T15:30:00","title":"Random Acts of Kindness to Kids Day","eventDetails":"Officers engaging youth and passing out toys in various locations in the 002nd district.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"002 District","modifiedDate":"2017-06-28T17:56:48"},{"calendarId":15,"start":"2017-06-28T10:00:00","end":"2017-06-28T12:00:00","title":"Senior Meeting","eventDetails":"Senior Subcommittee Meeting / Senior Citizens related topics w/ Guest Speakers from various agencies and departments","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:20:27"},{"calendarId":15,"start":"2017-06-28T08:30:00","end":"2017-06-28T09:30:00","title":"Business Meeting","eventDetails":"Business owners of the 15th District meet with Community Organizer and discuss concerns of crime and ways to improve business related issues","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"MacArthur's Restaurant\n5412 W. Madison\n","modifiedDate":"2017-01-03T14:20:40"},{"calendarId":3,"start":"2017-06-27T19:00:00","end":"2017-06-27T20:00:00","title":"Beat meeting 322 & 323","eventDetails":"Beat Meeting 322 & 323","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Park Manor Church\r\n600 E. 73rd Street\r\nChicago, Il. 60619","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":24,"start":"2017-06-27T19:00:00","end":null,"title":"2431 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"St. Jerome's Parish Center 1709 W. Lunt","modifiedDate":"2016-12-07T10:11:37"},{"calendarId":8,"start":"2017-06-27T19:00:00","end":"2017-06-27T20:00:00","title":"813/833 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"West Lawn Park 4233 W. 65th Street","modifiedDate":"2017-05-24T17:53:05"},{"calendarId":16,"start":"2017-06-27T19:00:00","end":"2017-06-27T20:00:00","title":"1614 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Salvation Army 8354 W. Foster","modifiedDate":"2017-02-21T14:45:17"},{"calendarId":9,"start":"2017-06-27T19:00:00","end":"2017-06-27T20:00:00","title":"Bt. 923 Community Meeting","eventDetails":"St. Simon's Church","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"5157 S. California","modifiedDate":"2017-05-18T10:32:15"},{"calendarId":3,"start":"2017-06-27T18:30:00","end":"2017-06-27T20:30:00","title":"003rd District Community Peace Circle","eventDetails":"003rd District Community Peace Circle","eventUrl":null,"contactDetails":"Sgt. Jointer\n003rd District\n7040 S. Cottage Grove\nChicago, IL 60637\n(312) 747-7004","location":"Lincoln Memorial Church\r\n6454 S. Champlain","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-06-27T18:30:00","end":"2017-06-27T19:30:00","title":"Community Beat Meeting-Bt. 711/713/714","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"007th District Community Room 1438 w 63rd st.","modifiedDate":"2017-02-08T12:20:41"},{"calendarId":25,"start":"2017-06-27T18:30:00","end":"2017-06-27T19:30:00","title":"2532 Beat Meeting","eventDetails":"2532 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"1511 N Long Ave","modifiedDate":"2016-12-15T10:33:52"},{"calendarId":11,"start":"2017-06-27T18:00:00","end":"2017-06-27T19:00:00","title":"Beat Meeting 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Altgeld Park \n515 S. Washtenaw","modifiedDate":"2016-12-27T12:45:40"},{"calendarId":12,"start":"2017-06-27T18:00:00","end":"2017-06-27T19:00:00","title":"Beat Meeting 1232","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"12th District, 1412 S. Blue Island","modifiedDate":"2017-05-24T17:21:24"},{"calendarId":9,"start":"2017-06-27T18:00:00","end":"2017-06-27T19:00:00","title":"Bt. 922 Community Meeting","eventDetails":"Shields Middle School","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"2611 W. 48th Street","modifiedDate":"2017-05-18T10:32:25"},{"calendarId":20,"start":"2017-06-27T16:00:00","end":"2017-06-27T18:00:00","title":"Bike Ambassadors","eventDetails":"Bike Ambassadors along with Chicago Police CAPS officers promote safety and public-awareness for all road users.","eventUrl":null,"contactDetails":"3127428770","location":"Broadway/Lawrence","modifiedDate":"2017-06-23T14:58:17"},{"calendarId":3,"start":"2017-06-27T14:00:00","end":"2017-06-27T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 6063\n(312)747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":11,"start":"2017-06-27T12:30:00","end":"2017-09-01T12:50:00","title":"The Lunch Bus","eventDetails":"The Lunch Bus Free Food by Greater Chicago Food Depository at Legler Library. Monday Through Friday From June 26 to Sept. 01. ","eventUrl":null,"contactDetails":"011 District CAPS 1.312.746.9841","location":"115 S. Pulaski ","modifiedDate":"2017-06-26T17:03:02"},{"calendarId":22,"start":"2017-06-27T10:30:00","end":null,"title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T11:48:46"},{"calendarId":5,"start":"2017-06-27T10:00:00","end":"2017-06-27T11:00:00","title":"COURT ADVOCACY","eventDetails":"005TH DISTRICT CAPS COURT ADVOCACY SUB-COMMITTEE","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"005TH DISTRICT \n727 E 111TH STREET","modifiedDate":"2017-02-21T16:55:57"},{"calendarId":6,"start":"2017-06-24T12:00:00","end":"2017-06-24T15:00:00","title":"2017 Summer Breakout","eventDetails":"Community engagement fun day","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-28T16:05:11"},{"calendarId":5,"start":"2017-06-24T08:00:00","end":"2017-06-24T11:00:00","title":"PEER JURY","eventDetails":"005TH DISTRICT CAPS PEER JURY","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"005TH DISTRICT727 E 111TH STREET","modifiedDate":"2017-06-22T16:35:21"},{"calendarId":18,"start":"2017-06-23T11:00:00","end":"2017-06-23T13:00:00","title":"Random Acts of Kindness","eventDetails":"The 018th District Communty Relations Officers will be touring the 018th District, performing \"Random Acts of Kindness\" and encouraging others to pay it forward.","eventUrl":null,"contactDetails":"018th District Community Relations Office","location":"018th District","modifiedDate":"2017-05-27T15:28:00"},{"calendarId":3,"start":"2017-06-22T19:00:00","end":"2017-06-22T20:00:00","title":"Beat Meeting 321 & 324","eventDetails":"Beat Meeting 321 & 324","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District \t\r\n7040 S. Cottage Grove\t \r\nChicago, IL. 60637\r\n(312) 747-7004\r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":16,"start":"2017-06-22T19:00:00","end":"2017-06-22T20:00:00","title":"1634 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"St. Bartholomew Church Krueger 4910 W. Addison","modifiedDate":"2017-02-21T14:42:54"},{"calendarId":7,"start":"2017-06-22T18:30:00","end":"2017-06-22T19:30:00","title":"Community Beat Meeting-Bt. 712","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"Sherwood Pk. 5701 s Shields","modifiedDate":"2017-02-08T12:20:25"},{"calendarId":14,"start":"2017-06-22T18:30:00","end":null,"title":"1433 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Pulaski Park1419 W. Blackhawk","modifiedDate":"2017-06-12T15:05:19"},{"calendarId":25,"start":"2017-06-22T18:30:00","end":"2017-06-22T19:30:00","title":"2514 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2514's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"3115 N. Mason","modifiedDate":"2017-06-26T13:37:33"},{"calendarId":11,"start":"2017-06-22T18:00:00","end":"2017-06-22T19:00:00","title":"Beat Meeting: 1131,32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841Chicago Police Station3151 W. Harrison Street","location":"4623 W. Gladys Enola Dew Apartment","modifiedDate":"2017-06-28T23:11:23"},{"calendarId":5,"start":"2017-06-22T18:00:00","end":"2017-06-22T19:00:00","title":"DISTRICT ADVISORY COMMITTEE","eventDetails":"005TH DISTRICT CAPS DISTRICT ADVISORY COMMITTEE","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"005TH DISTRICT\n727 E 111TH STREET","modifiedDate":"2017-02-21T16:55:29"},{"calendarId":2,"start":"2017-06-22T16:00:00","end":"2017-06-22T21:00:00","title":"Peace Rally","eventDetails":"Peace Rally, free food and entertainment.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"5100 S. CALUMET","modifiedDate":"2017-06-22T13:43:35"},{"calendarId":22,"start":"2017-06-22T14:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T11:45:19"},{"calendarId":1,"start":"2017-06-22T14:00:00","end":"2017-06-22T15:00:00","title":"CAPS 10 Sector Business Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"001st district community relations 312.745.4381 or CAPS.001district@chicagopolice.org","location":"Chicago Theater 175 N State St","modifiedDate":"2017-03-13T13:48:07"},{"calendarId":22,"start":"2017-06-22T13:00:00","end":null,"title":"Beat Facilitators Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T11:45:26"},{"calendarId":22,"start":"2017-06-22T10:30:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W Monterey Ave","modifiedDate":"2016-12-28T11:48:00"},{"calendarId":17,"start":"2017-06-21T19:30:00","end":"2017-06-21T20:30:00","title":"Beat Meeting for Beat 1722 & 1723","eventDetails":"Combined BEat Meeting for Beat 1722 and beat 1723","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski - 17th District Community Room","modifiedDate":"2017-04-27T12:03:17"},{"calendarId":20,"start":"2017-06-21T19:00:00","end":"2017-06-21T20:00:00","title":"2013 Beat Meeting","eventDetails":"2013 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church5437 N. Clark St.","modifiedDate":"2017-06-23T15:31:06"},{"calendarId":5,"start":"2017-06-21T19:00:00","end":"2017-06-21T20:00:00","title":"BEAT 532 CAPS MEETING","eventDetails":"BEAT 532 CAPS MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"ST. ANTHONY CHURCH11533 S Prairie","modifiedDate":"2017-06-22T16:33:51"},{"calendarId":8,"start":"2017-06-21T19:00:00","end":"2017-06-21T20:00:00","title":"823/825 Beat Meeting","eventDetails":"Meeting with local residents, organizations and police to identfiy and prioritze crime and quality of life concerns and develop strategies to address those issues","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Rita Cascia Church, 6243 S. Fairfield","modifiedDate":"2017-05-24T17:53:41"},{"calendarId":14,"start":"2017-06-21T18:30:00","end":null,"title":"1434 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Bucktown Library1701 N. Milwaukee","modifiedDate":"2017-06-12T15:06:03"},{"calendarId":7,"start":"2017-06-21T18:30:00","end":"2017-06-21T19:30:00","title":"Community Beat Meeting - Bt. 733/734","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Salvation Army 845 w. 69th st.","modifiedDate":"2017-02-23T09:20:18"},{"calendarId":1,"start":"2017-06-21T18:30:00","end":"2017-06-21T19:30:00","title":"CAPS Beat 133 Residential Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"001st district community relations 312.745.4381 or CAPS.001district@chicagopolice.org","location":"Trinity Episcopal Church 125 E 26th St","modifiedDate":"2017-03-13T13:48:36"},{"calendarId":2,"start":"2017-06-21T18:30:00","end":"2017-06-21T19:30:00","title":"233/234/235 BEAT MEETING","eventDetails":"CITIZENS AND POLICE DISCUSS ISSUES ON THE BEAT","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"1526 E. 55TH ST","modifiedDate":"2017-05-23T08:34:10"},{"calendarId":15,"start":"2017-06-21T18:00:00","end":"2017-06-21T19:00:00","title":"100 Blocks, 100 Churches Community Event","eventDetails":"Residents, stakeholders, business owners, faith based and the police gather each Wednesday Evening to hold a positive loitering and smoke event and engage the public with information and resources.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Targeted Locations, To be determined","modifiedDate":"2017-01-03T14:20:34"},{"calendarId":10,"start":"2017-06-21T18:00:00","end":"2017-06-21T19:00:00","title":"Beat Meeting 1031 & 1032","eventDetails":"Beat 1031 & 1032 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Toman Library\n2708 S. Pulaski Rd","modifiedDate":"2017-01-04T15:57:12"},{"calendarId":12,"start":"2017-06-21T18:00:00","end":"2017-06-21T19:00:00","title":"Beat Meeting 1234","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"Harrison Park, 1824 S. Wood Street ","modifiedDate":"2017-05-17T12:53:00"},{"calendarId":25,"start":"2017-06-21T18:00:00","end":"2017-06-21T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"All Churches & Faith-Based Institutions in the 25th District are encouraged to participate in our mission to stop the violence and take-back the neighborhood by wearing red, standing outside their churches, and helping to get the word out to \"PUT THE GUNS DOWN!\"","eventUrl":null,"contactDetails":"312-746-5090","location":"All Churches & Faith-Based Locations","modifiedDate":"2017-05-30T10:23:00"},{"calendarId":11,"start":"2017-06-21T18:00:00","end":"2017-06-21T19:00:00","title":"100 Block- 100 Churches ","eventDetails":"100 Block - 100 Churches Evangelist Mrs. Hughes","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"Madison/California/Fifth Ave","modifiedDate":"2017-06-13T16:03:02"},{"calendarId":11,"start":"2017-06-21T18:00:00","end":"2017-06-21T19:00:00","title":"100 Block- 100 Churches People's Church Of The Harvest ","eventDetails":"Faith & Action 100 Block- 100 Churches People's Church Of The Harvest ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"Central Park / Van Buren ","modifiedDate":"2017-06-13T16:03:02"},{"calendarId":11,"start":"2017-06-21T18:00:00","end":"2017-06-21T19:00:00","title":"100 Block- 100 Churches ","eventDetails":"100 Block - 100 Churches Pastor Mc Farland United Fellowship Church ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"Kilpatrick/Maypole","modifiedDate":"2017-06-13T16:08:02"},{"calendarId":9,"start":"2017-06-21T18:00:00","end":"2017-06-21T19:00:00","title":"Beat 925 Community Meeting","eventDetails":"St. Gabe's Church","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"4500 S. Wallace","modifiedDate":"2017-05-18T10:32:37"},{"calendarId":5,"start":"2017-06-21T17:00:00","end":"2017-06-21T18:00:00","title":"YOUTH COUNCIL MEETING","eventDetails":"005TH DISTRICT CAPS YOUTH COUNCIL MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"005TH DISTRICT\n727 E 111TH STREET","modifiedDate":"2017-02-21T16:56:08"},{"calendarId":18,"start":"2017-06-21T15:00:00","end":"2017-06-21T16:00:00","title":"Near North Security Meeting","eventDetails":"Must Register-Security personnel and managers partner together to discuss current patterns, trends and collectively strategize to develop solutions. ","eventUrl":null,"contactDetails":"P.O. A. Robinson 312.742.5778","location":"018th District Community Room -1160 N. Larrabee","modifiedDate":"2017-05-26T16:16:01"},{"calendarId":5,"start":"2017-06-21T13:00:00","end":"2017-06-21T14:00:00","title":"SENIOR'S SUB-COMMITTEE","eventDetails":"005TH DISTRICT CAPS SENIOR'S SUB-COMMITTEE\n","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"005TH DISTRICT \n727 E 111TH STREET","modifiedDate":"2017-02-21T16:56:18"},{"calendarId":11,"start":"2017-06-21T13:00:00","end":"2017-06-21T15:00:00","title":"Faith & Action Oakley Apartments & Park 574","eventDetails":null,"eventUrl":null,"contactDetails":"011District CAPS 1.312.746.9841","location":"2540 W. Jackson ","modifiedDate":"2017-06-21T16:29:31"},{"calendarId":20,"start":"2017-06-21T11:00:00","end":"2017-06-21T14:00:00","title":"Blood Drive","eventDetails":"20th District along with Lifesource is hosting a Blood Drive. Give the gift of life, Give Blood. The blood drive will take place in the community room located at the 20th District 5400 N. Lincoln ave, on June 21st, 2017 from 11am to 2pm.","eventUrl":null,"contactDetails":"CAPS Office 312-742-8770","location":"5400 N. Lincoln Ave","modifiedDate":"2017-05-24T14:03:04"},{"calendarId":18,"start":"2017-06-21T09:30:00","end":"2017-06-21T13:00:00","title":"CANCELLED******Coffee with the Commander*****CANCELLED","eventDetails":"Eva's Cafe","eventUrl":null,"contactDetails":"Community Relations","location":"1447 N. Sedgwick","modifiedDate":"2017-06-20T15:12:21"},{"calendarId":24,"start":"2017-06-20T19:00:00","end":null,"title":"2423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Touhy Park 7348 N. Paulina","modifiedDate":"2016-12-07T10:13:26"},{"calendarId":8,"start":"2017-06-20T19:00:00","end":"2017-06-20T20:00:00","title":"811 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Good Shepherd Church 5550 S. Merrimac","modifiedDate":"2017-05-24T17:54:24"},{"calendarId":5,"start":"2017-06-20T19:00:00","end":"2017-06-20T20:00:00","title":"BEAT 531 CAPS MEETING","eventDetails":"BEAT 531 CAPS MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"GREEN STONE UNTIED METHODIST\n11211 ST. LAWRENCE","modifiedDate":"2017-02-21T16:53:17"},{"calendarId":22,"start":"2017-06-20T18:30:00","end":null,"title":"Beat 2222 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Brainerd Park\n1246 W. 92nd St","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-06-20T18:30:00","end":"2017-06-20T19:30:00","title":"Community Beat Meeting - Bt. 731/732","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Hamilton Park 513 w. 72nd st.","modifiedDate":"2017-02-23T09:20:44"},{"calendarId":1,"start":"2017-06-20T18:30:00","end":"2017-06-20T19:30:00","title":"CAPS Beat 131/132 Residential Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"001st district community relations 312.745.4381 or CAPS.001district@chicagopolice.org","location":"1st District Community Room 1718 S State St","modifiedDate":"2017-03-13T13:48:47"},{"calendarId":2,"start":"2017-06-20T18:30:00","end":"2017-06-20T19:30:00","title":"221/223 BEAT MEETING","eventDetails":"CITIZENS AND POLICE DISCUSS ISSUES ON THE BEAT","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"4314 S GOTTAGE GROVE","modifiedDate":"2017-05-23T08:35:50"},{"calendarId":11,"start":"2017-06-20T18:00:00","end":"2017-06-20T19:00:00","title":"Beat Meeting: 1133,34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Homan Square Community Center 3559 W. Arthington ","modifiedDate":"2016-12-27T12:44:57"},{"calendarId":11,"start":"2017-06-20T18:00:00","end":"2017-06-20T19:00:00","title":"100 Block- 100 Churches Pastor Miller ","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"Huron/Central Park ","modifiedDate":"2017-06-13T15:58:00"},{"calendarId":9,"start":"2017-06-20T18:00:00","end":"2017-06-20T19:00:00","title":"Bt. 932,934,935 Community Meeting","eventDetails":"Westhaven Senior Homes","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"850 W. Garfield","modifiedDate":"2017-05-18T10:28:15"},{"calendarId":9,"start":"2017-06-20T18:00:00","end":"2017-06-20T19:00:00","title":"Bt. 932,934,935 Community Meeting","eventDetails":"Westhaven Senior Homes","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"850 W. Garfield","modifiedDate":"2017-05-23T08:10:16"},{"calendarId":11,"start":"2017-06-20T16:00:00","end":"2017-06-20T17:00:00","title":"Girls Mentoring Camp ","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"3151 W. Harrison","modifiedDate":"2017-06-13T15:53:00"},{"calendarId":16,"start":"2017-06-20T13:00:00","end":"2017-06-20T14:00:00","title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Jennene Whalen (312)742-4521 CAPS016District@chicagopolice.org","location":"5151 N. Milwaukee","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":18,"start":"2017-06-20T13:00:00","end":"2017-06-20T15:00:00","title":"CFD Home Fire & Burn Prevention & Senior Safety Workshop","eventDetails":"Come learn about Fire Safety, Fall prevention, Kitchen Safety and Building Evacuation for Tenants, Presented by CFD","eventUrl":null,"contactDetails":"P.O. Ramirez 312.742.5778","location":"Margaret Day Blake Apt-.2140 N. Clark","modifiedDate":"2017-06-02T16:53:00"},{"calendarId":17,"start":"2017-06-20T11:00:00","end":"2017-06-20T13:00:00","title":"Senior Citizen Monthly Subcommittee Meeting ","eventDetails":"Monthly Senior Citizen Meeting ","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"17th District Community Room - 4650 N. Pulaski ","modifiedDate":"2017-04-27T12:03:26"},{"calendarId":11,"start":"2017-06-20T10:00:00","end":"2017-06-20T14:45:00","title":"Melody School Basketball Tournament ","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"3937 W. Wilcox","modifiedDate":"2017-06-13T15:43:00"},{"calendarId":11,"start":"2017-06-20T09:00:00","end":"2017-06-20T15:00:00","title":"Frazier Elementary Celebration Of School Year ","eventDetails":"Frazier Elementary Celebration of School Year Picnic across the street from the school at their park. ","eventUrl":null,"contactDetails":"011District CAPS 1.312.746.9841","location":"3958 W. Grenshaw ","modifiedDate":"2017-06-21T16:33:01"},{"calendarId":9,"start":"2017-06-17T18:30:00","end":"2017-06-17T20:30:00","title":"Kids and Kops open Gym","eventDetails":null,"eventUrl":null,"contactDetails":"009th District Caps Office 312-747-8227","location":"Cornell Square Park 1809 W. 52nd St.","modifiedDate":"2017-06-14T13:55:53"},{"calendarId":11,"start":"2017-06-17T14:00:00","end":"2017-06-17T18:00:00","title":"Father's Day BBQ Kells Park ","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"3201 W. Chicago Ave ","modifiedDate":"2017-06-13T15:43:00"},{"calendarId":25,"start":"2017-06-17T13:00:00","end":"2017-06-17T15:00:00","title":"Youth Exploring","eventDetails":"Youth Exploring","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-15T10:20:31"},{"calendarId":9,"start":"2017-06-17T12:00:00","end":"2017-06-17T15:00:00","title":"12th Ward Bike the Boulevard","eventDetails":"Ride your bike down Archer from Rockwell to Hoyne Park","eventUrl":null,"contactDetails":"009th District Caps Office 312-747-8227","location":"3900 S. Archer","modifiedDate":"2017-06-14T13:56:08"},{"calendarId":15,"start":"2017-06-17T12:00:00","end":"2017-06-17T13:30:00","title":"Explorer Scouts Meeting","eventDetails":"Come explore career opportunities and receive information regarding youth programs from various guest speakers for ages :11 to 20 years old ","eventUrl":null,"contactDetails":"Caps Office ( 312) 743-1495","location":"5701 W. Madison","modifiedDate":"2017-05-30T13:10:31"},{"calendarId":6,"start":"2017-06-17T11:00:00","end":"2017-06-17T12:00:00","title":"Law Explores Meeting","eventDetails":"Gain leadership experience and community service opportunities","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-28T16:05:26"},{"calendarId":8,"start":"2017-06-17T11:00:00","end":"2017-06-17T14:00:00","title":"008th District Bicycle Safety and Repair Cookout","eventDetails":"Please join the the 008th District for our 1st Annual Bicycle safety and repair cookout. We will be cooking hotdogs, fixing bikes and passing out bike safety equipment for kids.","eventUrl":null,"contactDetails":"008th District Community Policing Office 312-747-8724","location":"Wentworth Park at 5625 S. Mobile Ave.","modifiedDate":"2017-05-30T15:13:00"},{"calendarId":15,"start":"2017-06-17T10:00:00","end":"2017-06-17T12:00:00","title":"Block Club Training","eventDetails":"Community Organizer and residents partner on solving chronic crime and disorders and strategize together for solutions as block clubs and neighborhood watches are created.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:20:11"},{"calendarId":6,"start":"2017-06-17T10:00:00","end":"2017-06-17T16:00:00","title":"Chicago Police 006th District Annual Car & Motorcycle Show","eventDetails":"006th District Annual Car & Motorcycle Show. Registration 9:00am","eventUrl":null,"contactDetails":"Contact the CAPS Office 312-745-3641","location":"3250 W 87th Street (Ultra Foods Lot)","modifiedDate":"2017-04-19T14:58:00"},{"calendarId":11,"start":"2017-06-17T10:00:00","end":"2017-06-17T14:00:00","title":"Eagle Scout Block Party ","eventDetails":"Eagle Scout Block Party @ Our Lady The Angels Church ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"3808 W. Iowa ","modifiedDate":"2017-06-13T15:43:00"},{"calendarId":17,"start":"2017-06-17T09:00:00","end":"2017-06-17T14:00:00","title":"Peer Jury/Youth Beat Meeting ","eventDetails":"Monthly Peer Jury Meeting ","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski - 17th District Community Room","modifiedDate":"2017-04-27T12:03:35"},{"calendarId":11,"start":"2017-06-17T09:00:00","end":"2017-06-17T14:00:00","title":"Junettenth African- American Awareness & appreciation Parade Celebrating","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"2901 W. Monroe - Garfield Park ","modifiedDate":"2017-06-13T15:38:00"},{"calendarId":12,"start":"2017-06-17T09:00:00","end":"2017-06-17T12:00:00","title":"Police Explorer Meeting ","eventDetails":"The Chicago Police Explorer Program was established to assist any youth who is interested in law enforcement. Anyone who is from the age of 12 to 20 will be able to join the Explorer program. The explorer will receive community service hours for their participation. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"1412 S. Blue Island, 12th District ","modifiedDate":"2017-05-24T17:38:00"},{"calendarId":4,"start":"2017-06-16T17:00:00","end":"2017-06-16T20:00:00","title":"Faith In Action","eventDetails":"A night of fun and reflection with the community and the local faith base clergy. Original Date Was Rain Out","eventUrl":null,"contactDetails":"004th District CAPS Office 312 747-1708","location":"3325 E. 108th Street","modifiedDate":"2017-06-24T09:11:27"},{"calendarId":11,"start":"2017-06-16T13:30:00","end":"2017-06-16T15:00:00","title":"Basketball Rematch Camelot Vs. 011th District Officers","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"230 N. Kolmar ","modifiedDate":"2017-06-13T15:33:00"},{"calendarId":20,"start":"2017-06-15T19:00:00","end":"2017-06-15T20:00:00","title":"2024 Beat Meeting","eventDetails":"2024 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Margate Field House4921 N. Marine Dr.","modifiedDate":"2017-06-23T15:27:39"},{"calendarId":25,"start":"2017-06-15T19:00:00","end":"2017-06-15T20:00:00","title":"2524 Beat Meeting","eventDetails":"2524 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Our Lady of Grace\n2446 N. Ridgeway","modifiedDate":"2016-12-30T13:28:27"},{"calendarId":8,"start":"2017-06-15T19:00:00","end":"2017-06-15T20:00:00","title":"814 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Vittum Park Fieldhouse 5010 W. 50th St","modifiedDate":"2017-05-24T17:54:44"},{"calendarId":5,"start":"2017-06-15T19:00:00","end":"2017-06-15T20:00:00","title":"BEAT 533 CAPS MEETING","eventDetails":"BEAT 533 CAPS MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"ALTGELD HEALTH CENTER\n1029 E 130TH STREET","modifiedDate":"2017-02-21T16:52:54"},{"calendarId":7,"start":"2017-06-15T18:30:00","end":"2017-06-15T19:30:00","title":"Community Beat Meeting - Bt.735","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Gifts From God Ministry Church 1818 w 74th st.","modifiedDate":"2017-02-23T09:21:06"},{"calendarId":9,"start":"2017-06-15T18:30:00","end":"2017-06-15T20:30:00","title":"Kids and Kops open Gym","eventDetails":null,"eventUrl":null,"contactDetails":"009th District Caps Office 312-747-8227","location":"Cornell Square Park 1809 W. 52nd St.","modifiedDate":"2017-06-14T13:56:29"},{"calendarId":11,"start":"2017-06-15T18:00:00","end":"2017-06-15T19:00:00","title":"Beat Meeting : 1113,14,15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"St. Michaels's MBC \n4106 W. Monroe","modifiedDate":"2016-12-27T12:44:29"},{"calendarId":16,"start":"2017-06-15T18:00:00","end":"2017-06-15T19:00:00","title":"DAC Meeting","eventDetails":"Meetng hosted by the District Commander for invited communmity stakeholders ill be held in the Community Room (THIS IS NOT A BEAT MEETING)","eventUrl":null,"contactDetails":"Annie Ruiz-Oquendo","location":"5151 N. Milwaukee","modifiedDate":"2017-05-04T17:35:58"},{"calendarId":3,"start":"2017-06-15T14:00:00","end":"2017-06-15T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 60637\n(312) 747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":6,"start":"2017-06-15T10:00:00","end":"2017-06-15T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":"Meet to discuss topics on Domestic Violence and prevention.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-28T16:05:39"},{"calendarId":19,"start":"2017-06-14T19:00:00","end":"2017-06-14T20:00:00","title":"Beat 1914","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Clarendon Park\n4501 N. Clarendon","modifiedDate":"2016-12-06T12:51:32"},{"calendarId":14,"start":"2017-06-14T19:00:00","end":null,"title":"1424 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Wicker Park1425 N. Damen","modifiedDate":"2017-06-12T15:06:33"},{"calendarId":4,"start":"2017-06-14T19:00:00","end":"2017-06-14T20:00:00","title":"413 Beat Community Meeting","eventDetails":"St. Ailbe Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"9037 S. Harper Ave","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":3,"start":"2017-06-14T19:00:00","end":"2017-06-14T20:00:00","title":"Beat Meeting 333 & 334","eventDetails":"Beat Meeting 333 & 334","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"South Shore Culture Center 7059 S. South Shore Dr. Chicago, IL. 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":20,"start":"2017-06-14T19:00:00","end":"2017-06-14T20:00:00","title":"2012 Beat Meeting","eventDetails":"2012 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"St. Gregory Church1609 W. Gregory St.","modifiedDate":"2017-06-23T15:28:02"},{"calendarId":8,"start":"2017-06-14T19:00:00","end":"2017-06-14T20:00:00","title":"812 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Clearing Library 6423 W. 63rd Place","modifiedDate":"2017-05-24T17:55:10"},{"calendarId":16,"start":"2017-06-14T19:00:00","end":"2017-06-14T20:00:00","title":"1622 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Dunham Park 4638 N. Melvina","modifiedDate":"2017-02-21T14:49:17"},{"calendarId":5,"start":"2017-06-14T19:00:00","end":"2017-06-14T20:00:00","title":"BEAT 523 CAPS MEETING","eventDetails":"BEAT 523 CAPS MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"ST. PETER & PAUL\n12425 S HALSTED","modifiedDate":"2017-02-21T16:53:35"},{"calendarId":17,"start":"2017-06-14T19:00:00","end":"2017-06-14T20:00:00","title":"Beat Meeting for Beat 1732 & 1733","eventDetails":"Please call CAPS office for further information at(312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","eventUrl":null,"contactDetails":"Combined monthly beat meeting","location":"Athletic Field Park - 3546 W. Addison","modifiedDate":"2017-04-27T12:03:43"},{"calendarId":9,"start":"2017-06-14T19:00:00","end":"2017-06-14T20:00:00","title":"Beat 912 Community Meeting","eventDetails":"St. Maurice Church","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"3625 S. Hoyne","modifiedDate":"2017-05-18T10:33:09"},{"calendarId":22,"start":"2017-06-14T18:30:00","end":null,"title":"Beat 2232/2233 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Fernwood Park\n10438 S. Wallace","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-06-14T18:30:00","end":"2017-06-14T19:30:00","title":"Community Beat Meeting-Bt. 726","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt.Fraction @312-747-6722","location":"Lindblom Pk. 6054 s Damen","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":1,"start":"2017-06-14T18:30:00","end":"2017-06-14T19:30:00","title":"CAPS 20 Sector Residential","eventDetails":null,"eventUrl":null,"contactDetails":"001st district community relations 312.745.4381 or CAPS.001district@chicagopolice.org","location":"University Center 525 S State St","modifiedDate":"2017-03-13T13:49:02"},{"calendarId":2,"start":"2017-06-14T18:30:00","end":"2017-06-14T19:30:00","title":"213/215/224 BEAT MEETING","eventDetails":"CITIZENS AND POLICE DISCUSS ISSUES ON THE BEAT","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"4058 S. MICHIGAN AVE","modifiedDate":"2017-05-23T08:36:28"},{"calendarId":25,"start":"2017-06-14T18:00:00","end":"2017-06-14T19:00:00","title":"DAC Meeting","eventDetails":"DAC Meeting and Officer of the Month Awards","eventUrl":null,"contactDetails":"312-746-5090","location":"25th District - 5555 W. Grand Ave.","modifiedDate":"2016-12-14T10:25:51"},{"calendarId":15,"start":"2017-06-14T18:00:00","end":"2017-06-14T19:00:00","title":"100 Blocks, 100 Churches Community Event","eventDetails":"Residents, stakeholders, business owners, faith based and the police gather each Wednesday Evening to hold a positive loitering and smoke event and engage the public with information and resources.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Targeted Locations\nTo Be Determined","modifiedDate":"2017-01-03T14:20:48"},{"calendarId":25,"start":"2017-06-14T18:00:00","end":"2017-06-14T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"All Churches & Faith-Based Institutions in the 25th District are encouraged to participate in our mission to stop the violence and take-back the neighborhood by wearing red, standing outside their churches, and helping to get the word out to \"PUT THE GUNS DOWN!\"","eventUrl":null,"contactDetails":"312-746-5090","location":"All Churches & Faith-Based Locations","modifiedDate":"2017-05-30T10:18:00"},{"calendarId":11,"start":"2017-06-14T18:00:00","end":"2017-06-14T19:00:00","title":"100 Block- 100 Churches ","eventDetails":"Faith & Action 100 Block- 100 Churches Evangelist Mrs. Hughes","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"Madison/California/Fifth Ave","modifiedDate":"2017-06-13T15:33:00"},{"calendarId":11,"start":"2017-06-14T18:00:00","end":"2017-06-14T19:00:00","title":"100 Block- 100 Churches ","eventDetails":"Faith & Action 100 Block- 100 Churches Pastor Mc Farland United Fellowship Church","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"Kilpatrick/Maypole","modifiedDate":"2017-06-13T15:33:00"},{"calendarId":11,"start":"2017-06-14T18:00:00","end":"2017-06-14T19:00:00","title":"100 Block- 100 Churches ","eventDetails":"Faith & Action 100 Block- 100 Churches Pastor Eaddy ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"Central Park/ Van Buren ","modifiedDate":"2017-06-13T15:28:00"},{"calendarId":14,"start":"2017-06-14T13:30:00","end":null,"title":"Domestic Violence Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:38:21"},{"calendarId":22,"start":"2017-06-14T13:30:00","end":null,"title":"Court Advocacy","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2016-12-28T11:49:38"},{"calendarId":9,"start":"2017-06-14T13:30:00","end":"2017-06-14T15:00:00","title":"009th District Senior Meeting","eventDetails":"Meeting Cancelled, Community Room Closed","eventUrl":null,"contactDetails":"009th District Caps Office 312-747-8227","location":"Meeting Cancelled","modifiedDate":"2017-06-14T13:56:45"},{"calendarId":6,"start":"2017-06-14T11:00:00","end":"2017-06-14T12:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Meet with seniors on crime tip prevention and plan fun filled events.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312)-745- 3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-28T16:05:57"},{"calendarId":18,"start":"2017-06-14T11:00:00","end":"2017-06-14T13:00:00","title":"Senior Bingo","eventDetails":"Join us for Summer Senior Bingo at North Orchard Place!","eventUrl":null,"contactDetails":"P.O. Ramirez 312.742.5778","location":"1600 N. Orchard- North Orchard Place","modifiedDate":"2017-06-02T16:48:00"},{"calendarId":20,"start":"2017-06-14T10:00:00","end":"2017-06-14T11:00:00","title":"Seniors Meeting","eventDetails":"Seniors Meeting, a monthly meeting featuring activities and informative talks on seniors related topics. Contact CAPS for details.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District Community Room 5400 N. Lincoln ave ","modifiedDate":"2017-06-23T14:13:17"},{"calendarId":9,"start":"2017-06-14T10:00:00","end":"2017-06-14T12:00:00","title":"Flag Day Ceremony","eventDetails":"Flag burning ceremony with multiple city agencies","eventUrl":null,"contactDetails":"009th District Caps Office 312-747-8227","location":"4500 S. Halsted","modifiedDate":"2017-06-14T13:57:02"},{"calendarId":11,"start":"2017-06-14T09:30:00","end":"2017-06-14T15:00:00","title":"Ward Elementary School","eventDetails":"Block Party at Ward Elementary School","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"646 N. Lawndale","modifiedDate":"2017-06-13T16:13:00"},{"calendarId":9,"start":"2017-06-14T09:00:00","end":"2017-06-14T10:30:00","title":"Peer Jury Program","eventDetails":null,"eventUrl":null,"contactDetails":"009th District Caps Office 312-747-8227","location":"5101 S. Wentworth","modifiedDate":"2017-06-14T13:57:18"},{"calendarId":9,"start":"2017-06-14T09:00:00","end":"2017-06-14T14:00:00","title":"Peace March with Christian school","eventDetails":null,"eventUrl":null,"contactDetails":"009th District Caps Office 312-747-8227","location":"Ping Tom Park - 2301 S. Wentworth","modifiedDate":"2017-06-14T13:57:37"},{"calendarId":22,"start":"2017-06-13T19:00:00","end":null,"title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Robichaux Park\n403 W. 93rd st","modifiedDate":"2016-12-28T11:50:09"},{"calendarId":8,"start":"2017-06-13T19:00:00","end":"2017-06-13T20:00:00","title":"831/832 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Marquette Park 6734 S. Kedzie","modifiedDate":"2017-05-24T17:55:35"},{"calendarId":20,"start":"2017-06-13T19:00:00","end":"2017-06-13T20:00:00","title":"2022 Beat Meeting","eventDetails":"2022 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Broadway Armory5917 N. Broadway","modifiedDate":"2017-06-23T15:28:16"},{"calendarId":4,"start":"2017-06-13T19:00:00","end":"2017-06-13T20:00:00","title":"424 Community Beat Meeting","eventDetails":"Our Lady of Guadalupe Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"3200 E. 91st St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":24,"start":"2017-06-13T19:00:00","end":null,"title":"2411 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Bernard Horwich Center JCC 3003 W. Touhy","modifiedDate":"2016-12-07T10:17:23"},{"calendarId":5,"start":"2017-06-13T19:00:00","end":"2017-06-13T20:00:00","title":"BEAT 522 CAPS MEETING","eventDetails":"BEAT 522 CAPS MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"GREATER CANAAN MBC\n35 W 119TH STREET","modifiedDate":"2017-02-21T16:53:43"},{"calendarId":12,"start":"2017-06-13T19:00:00","end":"2017-06-13T20:00:00","title":"Beat Meeting 1222","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"Above and Beyond Family Recovery Center 2942 W. Lake St. ","modifiedDate":"2017-05-17T12:48:00"},{"calendarId":11,"start":"2017-06-13T18:30:00","end":"2017-06-13T19:30:00","title":"Beat meeting: 1124,25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841Chicago Police Station3151 W. Harrison Street","location":"2801 W. Madison Near Congressman Davis' Office","modifiedDate":"2017-06-28T23:11:24"},{"calendarId":7,"start":"2017-06-13T18:30:00","end":"2017-06-13T19:30:00","title":"Community Beat Meeting-Bt. 722/723","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt.Fraction @312-747-6722","location":"Kennedy-King College 740 w 63rd st","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":11,"start":"2017-06-13T18:30:00","end":null,"title":" Court Advocacy Presentation ","eventDetails":"Cook County State's Attorney in partnership with the 011th District invite you to attend our next Court Advocacy Presentation. Speakers A.S.A. Diana Garcia-Camilo","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"100 N. Central Park ","modifiedDate":"2017-06-13T14:23:00"},{"calendarId":9,"start":"2017-06-13T18:30:00","end":"2017-06-13T20:30:00","title":"Kids and Kops Open gym","eventDetails":null,"eventUrl":null,"contactDetails":"009th District Caps Office 312-747-8227","location":"1301 w. 52nd Street - Sherman Park","modifiedDate":"2017-06-14T13:57:54"},{"calendarId":9,"start":"2017-06-13T18:30:00","end":"2017-06-13T19:30:00","title":"Beat 913-915 Community Meeting","eventDetails":"New Location","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"St. Barbara Church, 2859 S. Throop","modifiedDate":"2017-05-18T10:33:21"},{"calendarId":2,"start":"2017-06-13T18:30:00","end":"2017-06-13T19:30:00","title":"222 BEAT MEETING","eventDetails":"CITIZENS AND POLICE DISCUSS ISSUES ON THE BEAT","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"4434 S LAKE PARK","modifiedDate":"2017-05-23T08:36:52"},{"calendarId":10,"start":"2017-06-13T18:00:00","end":"2017-06-13T19:00:00","title":"Beat Meeting 1034","eventDetails":"Beat 1034 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"YMCA- Rauner\n2700 S. Western Ave","modifiedDate":"2017-01-04T15:55:22"},{"calendarId":11,"start":"2017-06-13T18:00:00","end":"2017-06-13T19:00:00","title":"100 Block- 100 Churches ","eventDetails":"Faith & Action 100 Block- 100 Churches Pastor Miller ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"Huron/Central Park ","modifiedDate":"2017-06-13T15:33:00"},{"calendarId":18,"start":"2017-06-13T17:30:00","end":"2017-06-13T18:30:00","title":"DAC Meeting","eventDetails":"District Advisory Committee Members","eventUrl":null,"contactDetails":"018th District-DAC Members","location":" 018th District Community Room 1160 N. Larrabee","modifiedDate":"2017-05-26T16:08:02"},{"calendarId":6,"start":"2017-06-13T13:00:00","end":"2017-06-13T14:00:00","title":"Court Advocacy Meeting","eventDetails":"Track and learn about the court process, civil and criminal.","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-28T16:06:11"},{"calendarId":22,"start":"2017-06-13T10:00:00","end":null,"title":"Clergy Subcommitee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W Monterey Ave","modifiedDate":"2016-12-28T11:48:59"},{"calendarId":5,"start":"2017-06-13T10:00:00","end":"2017-06-13T11:00:00","title":"PASTOR'S SUB-COMMITTEE","eventDetails":"005TH DISTRICT CAPS PASTOR'S SUB-COMMITTEE","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"005TH DISTRICT\n727 E 111TH STREET","modifiedDate":"2017-02-21T16:56:57"},{"calendarId":19,"start":"2017-06-12T18:30:00","end":"2017-06-12T19:30:00","title":"Beat 1934 & 1935","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"2nd Unitarian Church\n656 W. Barry","modifiedDate":"2016-12-06T12:50:31"},{"calendarId":2,"start":"2017-06-12T18:30:00","end":"2017-06-12T19:30:00","title":"211 BEAT MEETING","eventDetails":"CITIZENS AND POLICE DISCUSS ISSUES ON THE BEAT","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"3240 S. INDIANA AVE","modifiedDate":"2017-05-23T08:38:19"},{"calendarId":15,"start":"2017-06-12T15:00:00","end":"2017-06-12T16:30:00","title":"Community Garden Ground Breaking Ceremony ","eventDetails":"Community Garden Ground Breaking Ceremony Partnership with Alderman Chris Taliaferro, 25th and 15th District Police Department, AAABNA and Soul Corridor.","eventUrl":"www.cookcountystatesattorney.org","contactDetails":"708-386-7301 / 312 - 743-1495","location":"5842 W. Chicago Ave","modifiedDate":"2017-05-30T11:31:35"},{"calendarId":11,"start":"2017-06-12T10:00:00","end":"2017-06-12T12:00:00","title":"Camelot School Pediatrician Van ","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"230 N. Kolmar ","modifiedDate":"2017-06-13T15:13:00"},{"calendarId":15,"start":"2017-06-10T12:00:00","end":"2017-06-10T15:00:00","title":"015th District Reptile Fest","eventDetails":"Come and get hands on learning experience and interact with various reptiles species !! ( Free to all ).","eventUrl":null,"contactDetails":"Caps Office ( 312) 743-1495","location":"5701 W. Madison","modifiedDate":"2017-05-30T13:10:57"},{"calendarId":14,"start":"2017-06-10T10:00:00","end":null,"title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:38:28"},{"calendarId":11,"start":"2017-06-10T10:00:00","end":"2017-06-10T12:00:00","title":"Peace March Marillac & East Garfield Park Youth ","eventDetails":"Peace March Marillac & East Garfield Park Youth collaborative- ending at the Garfield Park Market on Lake Street","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"212 S. Francisco ","modifiedDate":"2017-05-30T15:43:00"},{"calendarId":20,"start":"2017-06-10T10:00:00","end":"2017-06-10T13:00:00","title":"Family Safety Fair","eventDetails":"Swedish covenant hospital along with the 20th District and community partners are hosting a family safety fair. This family event is free to the public. Come and meet with safety experts and see live demonstration by the Chicago Police Canine Unit. Meet members of the Chicago Fire Department and see their equipment. There will Balloon artist, face painting and lots of fun stuff for the whole family. Join us on Saturday, June 10th, 2017 at 10am to 1pm.","eventUrl":null,"contactDetails":"CAPS Office 312-742-8770","location":"5115 N. Francisco in the Parking lot","modifiedDate":"2017-05-24T14:18:00"},{"calendarId":18,"start":"2017-06-10T09:00:00","end":"2017-06-10T12:00:00","title":"018th District Explorers Art Fair Outing","eventDetails":"The 018th District Explorers wlll meet at the 018th District with signed consent forms and walk over to the Old Town Art Fair where they will be given a tour and introduced to various styles and collections of artwork.","eventUrl":null,"contactDetails":"Community Relations P.O. Garcia 312.742.5778","location":"Explorers will meet at the 018th District-1160 N. Larrabee ","modifiedDate":"2017-05-27T15:03:02"},{"calendarId":4,"start":"2017-06-08T19:00:00","end":"2017-06-08T20:00:00","title":"421 & 422 Beat Meeting","eventDetails":"Labor of Love Apstolic Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"2800 E. 79th St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":14,"start":"2017-06-08T19:00:00","end":null,"title":"1422 Beat Meeting","eventDetails":"Please join us for an evening of crime statistics & prevention tips. Meet your neighbors & beat officers. Most importantly, voice your concerns.","eventUrl":null,"contactDetails":null,"location":"Simons Park1640 N. Drake","modifiedDate":"2017-06-12T15:07:39"},{"calendarId":3,"start":"2017-06-08T19:00:00","end":"2017-06-08T20:00:00","title":"Beat Meeting 331 & 332","eventDetails":"Beat Meeting 331 & 332","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"ABJ Community Service Center 1818 E. 71st Street Chicago, IL 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":5,"start":"2017-06-08T19:00:00","end":"2017-06-08T20:00:00","title":"BEAT 524 CAPS MEETING","eventDetails":"BEAT 524 CAPS MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"LUTHERAN CHURCH OF THE HOLY SPIRIT\n1335 W 115TH STREET","modifiedDate":"2017-02-21T16:53:26"},{"calendarId":16,"start":"2017-06-08T19:00:00","end":"2017-06-08T20:00:00","title":"1632 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps)CAPS016District@chicagopolice.org","location":"Schorsch Village Hall 6940 W. Belmont Avenue","modifiedDate":"2017-02-21T14:59:44"},{"calendarId":22,"start":"2017-06-08T18:30:00","end":null,"title":"Beat 2213 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"9625 S. Longwood\nRidge Park","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-06-08T18:30:00","end":"2017-06-08T19:30:00","title":"Community Beat Meeting-Bt. 724/725","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt.Fraction @312-747-6722","location":"Ogden Pk. 6500 s Racine","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":1,"start":"2017-06-08T18:30:00","end":"2017-06-08T19:30:00","title":"CAPS 10 Sector Residential Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"001st district community relations 312.745.4381 or CAPS.001district@chicagopolice.org","location":"Condo Building 130 N Garland Ct","modifiedDate":"2017-03-13T13:50:54"},{"calendarId":2,"start":"2017-06-08T18:30:00","end":"2017-06-08T19:30:00","title":"225/231/232 BEAT MEETING","eventDetails":"CITIZENS AND POLICE DISCUSS ISSUES ON THE BEAT","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"5627 S MICHIGAN AVE","modifiedDate":"2017-05-23T08:38:30"},{"calendarId":11,"start":"2017-06-08T18:00:00","end":"2017-06-08T19:00:00","title":"Beat Meeting: 1122,23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Legler Chicago Public Library 115 S. Pulaski ","modifiedDate":"2016-12-27T12:44:44"},{"calendarId":10,"start":"2017-06-08T18:00:00","end":"2017-06-08T19:00:00","title":"Beat Meeting 1023 & 1024","eventDetails":"Beat 1023 & 1024 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Mt. Sinai Hospital\n2730 W. 15th Place\nCourtesy Parking Given on the block","modifiedDate":"2017-01-04T15:58:14"},{"calendarId":12,"start":"2017-06-08T18:00:00","end":"2017-06-08T19:00:00","title":"Beat meeting 1214","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"Bennett Day School, 955 W. Grand, ","modifiedDate":"2017-05-17T12:48:00"},{"calendarId":9,"start":"2017-06-08T18:00:00","end":"2017-06-08T19:00:00","title":"Bt. 931-933 Community Meeting","eventDetails":"Cornell Square Park","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"1809 W. 50th Street","modifiedDate":"2017-05-18T10:33:32"},{"calendarId":1,"start":"2017-06-08T15:00:00","end":"2017-06-08T16:00:00","title":"001st District DAC Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"001st district community relations 312.745.4381 or CAPS.001district@chicagopolice.org","location":"1st District Community Room 1718 S State St","modifiedDate":"2017-03-13T13:51:09"},{"calendarId":6,"start":"2017-06-08T10:00:00","end":"2017-06-08T11:00:00","title":"Faith Based Subcommitee Meeting","eventDetails":"Join the faith based leaders as we connect with our commuity","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-28T08:51:53"},{"calendarId":20,"start":"2017-06-07T19:00:00","end":"2017-06-07T20:00:00","title":"2033 Beat Meeting","eventDetails":"2033 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Bezazian Library1226 W. Ainslie St.","modifiedDate":"2017-06-23T15:29:13"},{"calendarId":4,"start":"2017-06-07T19:00:00","end":"2017-06-07T20:00:00","title":"414 Community Beat Meeting","eventDetails":"New Orginal Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"1750 E. 78th St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":8,"start":"2017-06-07T19:00:00","end":"2017-06-07T20:00:00","title":"815/821 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Bruno's 4839 S. Harding","modifiedDate":"2017-05-24T17:55:56"},{"calendarId":19,"start":"2017-06-07T19:00:00","end":"2017-06-07T20:00:00","title":"1923, 24 & 25","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"19th District Police\n850 W. Addison","modifiedDate":"2016-12-06T12:51:06"},{"calendarId":3,"start":"2017-06-07T19:00:00","end":"2017-06-07T20:00:00","title":"Beat Meeting 311 & 312","eventDetails":"Beat Meeting 311 & 312","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Bessie Coleman Library\r\n731 E. 63rd Street\r\nChicago, IL. 60637","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":5,"start":"2017-06-07T19:00:00","end":"2017-06-07T20:00:00","title":"BEAT 512 CAPS MEETING","eventDetails":"BEAT 512 CAPS MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"CHRISTIAN MISSIONARY BAPTIST CHURCH\n132 W 104TH STREET","modifiedDate":"2017-02-21T16:55:03"},{"calendarId":9,"start":"2017-06-07T19:00:00","end":"2017-06-07T20:00:00","title":"Bt. 911-921 Community Meeting","eventDetails":"Davis School Annex Building","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"3050 W. 39th Place","modifiedDate":"2017-05-18T10:33:41"},{"calendarId":25,"start":"2017-06-07T18:30:00","end":"2017-06-07T19:30:00","title":"2512 Beat Meeting","eventDetails":"2512 Beat Meeting","eventUrl":null,"contactDetails":"P.O.Rodriguez A.\n312/746-5090","location":"Shriner's hospital\n2211 N. Oak Park","modifiedDate":"2016-12-30T13:31:44"},{"calendarId":14,"start":"2017-06-07T18:00:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:38:40"},{"calendarId":15,"start":"2017-06-07T18:00:00","end":"2017-06-07T19:00:00","title":"100 Blocks, 100 Churches Community Event","eventDetails":"Residents, stakeholders, business owners, faith based and the police gather each Wednesday Evening to hold a positive loitering and smoke event and engage the public with information and resources.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"To be determined","modifiedDate":"2017-01-03T14:20:55"},{"calendarId":12,"start":"2017-06-07T18:00:00","end":"2017-06-07T19:00:00","title":"Beat Meeting 1224","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"Chicago Police Academy 1300 W. Jackson","modifiedDate":"2017-05-17T12:53:00"},{"calendarId":25,"start":"2017-06-07T18:00:00","end":"2017-06-07T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"All Churches & Faith-Based Institutions in the 25th District are encouraged to participate in our mission to stop the violence and take-back the neighborhood by wearing red, standing outside their churches, and helping to get the word out to \"PUT THE GUNS DOWN!\"","eventUrl":null,"contactDetails":"312-746-5090","location":"Churches & Faith-Based Locations in 25th District","modifiedDate":"2017-05-30T10:18:00"},{"calendarId":11,"start":"2017-06-07T18:00:00","end":"2017-06-07T19:00:00","title":"100 Block- 100 Churches ","eventDetails":"Faith & Action 100 Block- 100 Churches Evangelist Mrs. Hughes","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"Madison/California/Fifth Ave","modifiedDate":"2017-06-13T15:13:00"},{"calendarId":11,"start":"2017-06-07T18:00:00","end":"2017-06-07T19:00:00","title":"100 Block- 100 Churches ","eventDetails":"Faith & Action 100 Block- 100 Churches People's Church Of The Harvest ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"Central Park/St.Louis","modifiedDate":"2017-06-13T15:08:02"},{"calendarId":11,"start":"2017-06-07T18:00:00","end":"2017-06-07T19:00:00","title":"100 Block- 100 Churches ","eventDetails":"Faith & Action 100 Block- 100 Churches Pastor Mc Farland United Fellowship Church","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"Kilpatrick/Maypole","modifiedDate":"2017-06-13T15:13:00"},{"calendarId":3,"start":"2017-06-07T14:00:00","end":"2017-06-07T15:00:00","title":"Court Advocate Meeting","eventDetails":"003rd District Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-06-07T10:00:00","end":"2017-06-07T11:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence","eventUrl":null,"contactDetails":"P.O. Rodriguez A. \n312/746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-30T13:48:51"},{"calendarId":18,"start":"2017-06-07T10:00:00","end":"2017-06-07T14:00:00","title":"Senior Social Security Workshop","eventDetails":"Come learn about Social Security, Medicare and Medicaid Benefits","eventUrl":null,"contactDetails":"P.O. Ramirez 312.742.5778","location":"2111 N. Halsted- Elizabeth Woods Apartments","modifiedDate":"2017-06-02T16:43:00"},{"calendarId":24,"start":"2017-06-06T19:00:00","end":null,"title":"2413 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Green Briar Park 2650 W. Peterson","modifiedDate":"2016-12-07T10:14:58"},{"calendarId":22,"start":"2017-06-06T19:00:00","end":null,"title":"Beat 2221 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Christ The King Church\n9225 S. Hamilton","modifiedDate":"2016-12-28T11:50:47"},{"calendarId":4,"start":"2017-06-06T19:00:00","end":"2017-06-06T20:00:00","title":"433 Beat Community Meeting","eventDetails":"St. Columba School","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"13323 S. Green Bay Ave.","modifiedDate":"2017-06-08T15:49:23"},{"calendarId":16,"start":"2017-06-06T19:00:00","end":"2017-06-06T20:00:00","title":"1612 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"Olympia Park 6566 N. Avondale","modifiedDate":"2017-02-21T15:15:03"},{"calendarId":5,"start":"2017-06-06T19:00:00","end":"2017-06-06T20:00:00","title":"BEAT 511 CAPS MEETING","eventDetails":"BEAT 511 CAPS MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"ROSEHAVEN MANOR\n10220 S MICHIGAN AVE","modifiedDate":"2017-02-21T16:55:18"},{"calendarId":12,"start":"2017-06-06T19:00:00","end":"2017-06-06T20:00:00","title":"Beat Meeting 1212","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"The meeting is at St. Helen's School Basement, 2345 W. Augusta on the 1st Tuesday of the even months. ","modifiedDate":"2017-05-17T12:28:00"},{"calendarId":11,"start":"2017-06-06T18:30:00","end":"2017-06-06T19:30:00","title":"Beat Meeting : 1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Brian Piccolo School 1041 N. Keeler ","modifiedDate":"2016-12-27T12:43:40"},{"calendarId":2,"start":"2017-06-06T18:30:00","end":"2017-06-06T19:30:00","title":"212/214 BEAT MEETING","eventDetails":"CITIZENS AND POLICE DISCUSS ISSUES ON THE BEAT","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"3858 S. COTTAGE GROVE","modifiedDate":"2017-05-23T08:38:52"},{"calendarId":18,"start":"2017-06-06T18:00:00","end":"2017-06-06T19:00:00","title":"Court Advocacy Meeting","eventDetails":"Court Advocacy Team Leader meets with current court advocates to discuss on going court cases and will advise of any new or old cases that have been closed. ","eventUrl":null,"contactDetails":"P.O. A. Robinson 312.742.5778","location":"018th District Community Room","modifiedDate":"2017-05-26T16:08:02"},{"calendarId":11,"start":"2017-06-06T18:00:00","end":"2017-06-06T19:00:00","title":"100 Block- 100 Churches Pastor Miller ","eventDetails":"Faith & Action 100 Block- 100 Churches Pastor Miller ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"Huron/Central Park ","modifiedDate":"2017-06-13T15:08:02"},{"calendarId":9,"start":"2017-06-06T18:00:00","end":"2017-06-06T19:00:00","title":"Bt. 924 Community Meeting","eventDetails":"Davis Square Park Fieldhouse","eventUrl":null,"contactDetails":"009th District CAPS Office 312-747-3501","location":"4430 S. Marshfield","modifiedDate":"2017-05-18T10:33:58"},{"calendarId":8,"start":"2017-06-06T17:00:00","end":"2017-06-06T18:00:00","title":"822/824 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community policing (312) 747-8724","location":"Hernandez Middle School at 3510 W. 55th St.","modifiedDate":"2017-05-24T17:56:12"},{"calendarId":17,"start":"2017-06-06T11:00:00","end":"2017-06-06T12:15:00","title":"Domestic Violence Meeting ","eventDetails":"Monthly Domestic Violence Subcommittee Meeting ","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski - 17th District Community Room","modifiedDate":"2017-04-27T12:03:52"},{"calendarId":25,"start":"2017-06-06T10:00:00","end":"2017-06-06T11:00:00","title":"Senior Advisory Meeting","eventDetails":"025th District Senior Advisory Meeting ","eventUrl":null,"contactDetails":"025th District Community Relations Office\n312-746-5090","location":"025th District, 5555 W. Grand Ave","modifiedDate":"2016-12-14T10:24:49"},{"calendarId":18,"start":"2017-06-06T10:00:00","end":"2017-06-06T14:00:00","title":"Illinois Secretary of State Mobile Unit & Senior Bingo","eventDetails":"Come join us for Bingo and Renew/Update your Illinois Drivers License, Illinois Identification Card & purchase your Illinois Plate Stickers on sight!","eventUrl":null,"contactDetails":"P.O. Ramirez 312.742.5778 ","location":"Stamps Rhine Center 1327 N. Larrabee","modifiedDate":"2017-06-02T16:52:02"},{"calendarId":11,"start":"2017-06-06T10:00:00","end":"2017-06-06T12:00:00","title":"011th District Business Forum","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"3219 W. Carroll","modifiedDate":"2017-05-30T15:43:00"},{"calendarId":20,"start":"2017-06-05T19:00:00","end":"2017-06-05T20:00:00","title":"2011 Beat Meeting","eventDetails":"2011 Beat Community Event, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District5400 N. Lincoln Ave.","modifiedDate":"2017-06-23T15:28:45"},{"calendarId":17,"start":"2017-06-05T19:00:00","end":"2017-06-05T20:00:00","title":"DAC Meeting ","eventDetails":"Bi-Monthly Meeting for Distirct Advisory Committee Members, Beat Facilitators, and Subcommittee Members","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski - 17th District Community Room","modifiedDate":"2017-04-27T12:04:02"},{"calendarId":17,"start":"2017-06-05T18:00:00","end":"2017-06-05T19:00:00","title":"Court Advocacy Meeting ","eventDetails":"Bi-Monthly Meeting. Meeting for established members only.","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski - 17th District Community Room","modifiedDate":"2017-04-27T12:04:10"},{"calendarId":3,"start":"2017-06-03T11:00:00","end":"2017-06-03T13:00:00","title":"Youth/Explorers Meeting","eventDetails":"Youth/Explorers Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"003rd District(Auditorium)\r\n7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":6,"start":"2017-06-03T11:00:00","end":"2017-06-03T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities","eventUrl":null,"contactDetails":"Contact the CAPS office at (312) -745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-28T08:52:41"},{"calendarId":18,"start":"2017-06-03T10:00:00","end":"2017-06-03T14:00:00","title":"Stuff the Squad","eventDetails":"CPD and MArianos have partnered together for the 3rd Annual \"Stuff the Squad\". This event will help support local food pantries through the sales of pre-stuffed bags at 13 Marianos locations around the city. ","eventUrl":null,"contactDetails":"018th Dist Community Relations","location":"Marianos New City 1500 N. Clybourn","modifiedDate":"2017-06-02T16:58:00"},{"calendarId":17,"start":"2017-06-03T10:00:00","end":"2017-06-03T12:00:00","title":"Self Defense and Street Safety Class ","eventDetails":"This class is open to ALL. You will learn more about staying safe in a variety of different situations and how not to become the next Victim. (Class will be in Spanish and English) ","eventUrl":null,"contactDetails":"Please RSVP by June 1st. to The 017th Diistrict CAPS office 312-742-4588 CAPS.017District@chicagopolice.org","location":"Ecuadoria Consular Office 3300 W. Lawrence Ave.","modifiedDate":"2017-05-17T20:32:45"},{"calendarId":18,"start":"2017-06-03T09:00:00","end":"2017-06-03T11:00:00","title":"Child Passenger Safety Seat Event","eventDetails":"Certified Technicians will be conducting child passenger safety seat inspections, installations and providing the community with safety tips. Please RSVP 312.742.5778","eventUrl":null,"contactDetails":"P.O. T. Baker 312.742.5778","location":"018th District Parking Lot-1160 N. Larrabee","modifiedDate":"2017-05-26T15:58:00"},{"calendarId":12,"start":"2017-06-03T09:00:00","end":"2017-06-03T12:00:00","title":"Peer Jury Meeting","eventDetails":"The Peer Jury is set up to have jurors, made up o the offenders' peers, give actual juvenile offenders a second chance to get back on the right track. This experience will allow your child a chance to help teens their age get a second chance. Anyone who is from the age of 14 to 17 will be able to join the Explorer program. All participating Peer Jurors will receive community service hours for their participation. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"1412 S. Blue Island, 12th District ","modifiedDate":"2017-05-24T17:38:00"},{"calendarId":25,"start":"2017-06-03T08:30:00","end":"2017-06-03T11:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-30T13:21:30"},{"calendarId":11,"start":"2017-06-03T08:30:00","end":"2017-06-03T14:00:00","title":"14th Annual 3/3 Basketball Tournament ","eventDetails":"Marillac Social Center 14th Annual 3/3 Basketball Tournament 1st & 8th Grade Students","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"212 S. Francisco ","modifiedDate":"2017-05-30T15:38:01"},{"calendarId":20,"start":"2017-06-02T10:00:00","end":"2017-06-03T12:00:00","title":"Child Seat Safety Inspections","eventDetails":"20th District CAPS Office will be hosting a Child Seat Safety Inspection event at the Parking Garage of the 20th District located at 5400 n. Lincoln ave. The Child car seat will be inspected on Friday, June 3rd, 2017 from 10am to 12pm.","eventUrl":null,"contactDetails":"CAPS Office 312-742-8770","location":"5400 N. Lincoln ave Parking garage 1st Floor","modifiedDate":"2017-05-24T13:53:00"},{"calendarId":18,"start":"2017-06-02T10:00:00","end":"2017-06-02T12:00:00","title":"Car Seat Safety Inspection and Installation","eventDetails":"Certified Technicians will be installing and providing safety inspections and tips for child passenger seats.","eventUrl":null,"contactDetails":"P.O. T. Baker 312.742.5778","location":"5400 N. Lincoln Avenue 020th District Station Lot","modifiedDate":"2017-05-26T15:48:00"},{"calendarId":4,"start":"2017-06-01T19:00:00","end":"2017-06-01T20:00:00","title":"434 Community Beat Meeting","eventDetails":"St. Kevin's Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"10501 S. Torrence Ave","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":24,"start":"2017-06-01T19:00:00","end":null,"title":"District Advisory Council Meeting","eventDetails":"Not open to the public","eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District","modifiedDate":"2016-12-07T10:08:31"},{"calendarId":22,"start":"2017-06-01T19:00:00","end":null,"title":"Beat 2211/2212 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2016-12-28T11:51:02"},{"calendarId":8,"start":"2017-06-01T19:00:00","end":"2017-06-01T20:00:00","title":"834 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Bogan High School 3939 W. 79th Street","modifiedDate":"2017-05-24T17:56:42"},{"calendarId":3,"start":"2017-06-01T19:00:00","end":"2017-06-01T20:00:00","title":"Beat Meeting 313 & 314","eventDetails":"Beat Meeting 313 & 314","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Harris Park Recreation Center 6200 S. Drexel\r\nChicago, IL. 60637","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":14,"start":"2017-06-01T19:00:00","end":null,"title":"1411/1412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Nicolai Church\n3000 N. Kedzie","modifiedDate":"2017-01-02T08:39:36"},{"calendarId":5,"start":"2017-06-01T19:00:00","end":"2017-06-01T20:00:00","title":"BEAT 513 CAPS MEETING","eventDetails":"BEAT 513 CAPS MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"LAVIZZO ELEMENTARY SCHOOL\n138 E 109TH STREET","modifiedDate":"2017-02-21T16:54:52"},{"calendarId":19,"start":"2017-06-01T18:30:00","end":"2017-06-01T19:30:00","title":"Beat 1915","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Uptown Buena Library\n929 W. Buena","modifiedDate":"2016-12-06T12:51:22"},{"calendarId":25,"start":"2017-06-01T18:30:00","end":"2017-06-01T19:30:00","title":"2522 Beat Meeting","eventDetails":"2522 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Hermosa Park\n2240 N. Kilbourn","modifiedDate":"2016-12-30T13:32:22"},{"calendarId":11,"start":"2017-06-01T18:00:00","end":"2017-06-01T19:00:00","title":"Beat Meeting: 1112,21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Sanctuary Place \n642 N. Kedzie","modifiedDate":"2016-12-27T12:43:57"},{"calendarId":14,"start":"2017-06-01T17:00:00","end":null,"title":"Peer Jury ","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:39:43"},{"calendarId":22,"start":"2017-06-01T14:00:00","end":null,"title":"Diversity & Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W Monterey Ave","modifiedDate":"2016-12-28T11:49:14"},{"calendarId":2,"start":"2017-06-01T13:00:00","end":"2017-06-01T15:00:00","title":"Faith Base Meeting ","eventDetails":"Chicago City Life Center Church \nPastor Charles Moodie","eventUrl":null,"contactDetails":"Officer Denise Gathings \n312-747-5109","location":"5501 S LaSalle ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":3,"start":"2017-06-01T13:00:00","end":"2017-06-01T14:00:00","title":"District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n 7040 S. Cottage Grove Chicago IL. 60637\n(312) 747-7004 ","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":5,"start":"2017-06-01T10:00:00","end":"2017-06-01T11:00:00","title":"DOMESTIC VIOLENCE SUB-COMMITTEE","eventDetails":"005TH DISTRICT CAPS DOMESTIC VIOLENCE SUB-COMMITTEE","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"005TH DISTRICT CAPS \n727 E 111TH STREET","modifiedDate":"2017-02-21T16:56:41"},{"calendarId":11,"start":"2017-06-01T10:00:00","end":"2017-06-01T12:00:00","title":"Westside Minsiter Coalition Meeting ","eventDetails":"Westside Minsiter Coalition Meeting ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"5701 W. Jackson ","modifiedDate":"2017-05-30T15:38:01"},{"calendarId":18,"start":"2017-06-01T09:30:00","end":"2017-06-01T11:00:00","title":"Officer Friendly","eventDetails":"Kindergarten Children will be given safety and anti-bullying demonstrations and information to aid them in establishing better relations with their peers and adults ","eventUrl":null,"contactDetails":"P.O. Margarita Garcia","location":"1420 N. Hudson- Manierre School","modifiedDate":"2017-05-26T15:33:00"},{"calendarId":20,"start":"2017-05-31T19:00:00","end":"2017-05-31T20:00:00","title":"2032 Beat Meeting","eventDetails":"2032 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Ravenswood Evangelical Church4900 N. Damen Ave.","modifiedDate":"2017-06-23T15:30:24"},{"calendarId":15,"start":"2017-05-31T18:30:00","end":"2017-05-31T21:00:00","title":"Justice & Community Conversation Series","eventDetails":"Panel Discussion of The Effects of Trauma on Juveniles and Emerging Adults Involved In our Justice System ","eventUrl":"www.statesattornykimfoxx.eventbrite.com","contactDetails":"( 312) 603-8710 or dante.sawyer@cookcountyil.gov","location":"Columbus Park Refectory 5701 W. Jackson Blvd","modifiedDate":"2017-05-30T11:31:57"},{"calendarId":11,"start":"2017-05-31T11:00:00","end":"2017-05-31T13:00:00","title":"Parent Breakfast & Community Resource Fair","eventDetails":"The 2nd annual Parent Breakfast & Community Resource Fair ","eventUrl":null,"contactDetails":"Camelot School 773.417.2045","location":"230 N. Kolmar ","modifiedDate":"2017-05-30T15:33:01"},{"calendarId":20,"start":"2017-05-30T19:00:00","end":"2017-05-30T20:00:00","title":"2031 Beat Meeting","eventDetails":"2031 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Swedish Covenant Hospital-Anderson Pavilion2751 W. Winona St.","modifiedDate":"2017-06-23T15:29:31"},{"calendarId":6,"start":"2017-05-29T18:00:00","end":"2017-05-29T20:00:00","title":"Beat Facilitator/DAC","eventDetails":"Meet to discuss concerns within the district and solutions to issues in the district.","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-04-19T14:46:44"},{"calendarId":11,"start":"2017-05-29T09:00:00","end":"2017-06-29T17:00:00","title":"Nia Center End of the Year Celebration","eventDetails":"Families from NIa Center are welcome to join in food and activities at any time of the day. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"744 N. Monticello ","modifiedDate":"2017-06-29T10:43:00"},{"calendarId":3,"start":"2017-05-27T09:00:00","end":"2017-05-27T11:00:00","title":"Peer Jury Meeting","eventDetails":"Peer Jury Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"002nd District\r\n51st Wentworth","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":8,"start":"2017-05-27T09:00:00","end":"2017-05-27T02:00:00","title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"155 W. 51st Street","modifiedDate":"2017-03-29T15:18:51"},{"calendarId":17,"start":"2017-05-26T20:30:00","end":"2017-05-26T21:30:00","title":"Night of Faith and Action ","eventDetails":"Outdoor Roll Call and Meet and Greet - Come out and meet your neighbors, community leaders, business owners, elected officials and the 017th District Police Officers and see how working together YOU can make a difference ","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588 CAPS.017District@chicagopolice.org","location":"Muslim Community Center 4380 N. Elston ","modifiedDate":"2017-05-17T20:31:54"},{"calendarId":15,"start":"2017-05-26T19:00:00","end":"2017-05-26T22:00:00","title":"FAITH IN ACTION","eventDetails":"Positive Loitering event with Churches, community organitions and residents.","eventUrl":null,"contactDetails":"312-743-1495","location":"118 N. Leclaire","modifiedDate":"2017-05-30T11:32:15"},{"calendarId":11,"start":"2017-05-26T18:00:00","end":"2017-05-26T20:00:00","title":"011th District Faith And Action ","eventDetails":"Join friends, neighbors, Alderman Michael Scott,Chicago Police Department for Faith And Action 2017, meet & greet and light music entertainment. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"3900 Block of West Grenshaw ","modifiedDate":"2017-05-12T13:23:01"},{"calendarId":8,"start":"2017-05-26T17:00:00","end":"2017-05-26T19:00:00","title":"Faith and Action March","eventDetails":"Please come out and show your support and partnership with Chicago Police to help prevent crime and reduce violence in our communities. This is a city wide event to kick off the summer and to show our neighborhoods that we are working together to make sure our children and families stay safe this summer.","eventUrl":null,"contactDetails":"008th District Community Policing 312-747-8724","location":"Morrill School at 6011 S. Rockwell","modifiedDate":"2017-05-24T18:03:12"},{"calendarId":25,"start":"2017-05-26T17:00:00","end":"2017-05-26T19:00:00","title":"Smoke-Out","eventDetails":"Officers from the 25th District will prepare hot dogs for the kids as part of their \"Faith In Action\" Initiative. Stop-by and meet the officers!","eventUrl":null,"contactDetails":"25th District Community Relations:","location":"1333 N. Laramie - Lafollette Park","modifiedDate":"2017-05-25T16:13:00"},{"calendarId":18,"start":"2017-05-26T17:00:00","end":"2017-05-26T19:00:00","title":"Faith and Action Community Walk","eventDetails":"Everyone is cordially invited to attend our Faith and Action Community Walk with the Streeterville Neighborhood Advocates and Crime Prevention Focus Group!","eventUrl":null,"contactDetails":"Community Relations Office 312.742.5778","location":"645 N. Fairbanks- Starting Point","modifiedDate":"2017-05-27T15:23:00"},{"calendarId":4,"start":"2017-05-26T17:00:00","end":"2017-05-26T20:00:00","title":"Faith In Action","eventDetails":"A night of fun and reflection with the community and the local faith base clergy","eventUrl":null,"contactDetails":"004th District CAPS Office 312 747-1708","location":"3325 E. 108th Street","modifiedDate":"2017-06-24T09:13:01"},{"calendarId":20,"start":"2017-05-26T15:00:00","end":"2017-05-26T16:00:00","title":"Faith and Action Peace March","eventDetails":"Join members of our Faith based community as we conduct a Peace March starting at 3pm at the corner of Foster and Wastenaw. The march will go to the 20th District and then back to the starting point","eventUrl":null,"contactDetails":"CAPS Office 312-742-8770","location":"Foster and Wastenaw","modifiedDate":"2017-05-24T13:43:00"},{"calendarId":11,"start":"2017-05-26T12:00:00","end":"2017-05-26T14:00:00","title":"DRW College Prep Peace March ","eventDetails":"DRW College Prep Peace March Starting point DRW College Prep 931 S. Homan and Finish Leo Roscoe Boler Park 3601 W. Arthington. ","eventUrl":null,"contactDetails":"011th District CAPS ","location":"DRW College Prep 931 S. Homan","modifiedDate":"2017-05-08T16:48:01"},{"calendarId":10,"start":"2017-05-26T07:30:00","end":"2017-05-26T12:00:00","title":"Faith & Action Peace March ","eventDetails":"10th District CAPS in co-union with CHICAGO CHRISTIAN ALTERNATIVE SCHOOL will have a peace march on friday 26th of May 2017 commencing at the hours of 0830 hours to 1200 hours.","eventUrl":null,"contactDetails":"10th District CAPS Office 312-747-7190","location":"1300 S. Pulaski Rd.","modifiedDate":"2017-05-25T14:46:37"},{"calendarId":8,"start":"2017-05-25T19:00:00","end":"2017-05-25T20:00:00","title":"District Advisory Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"008th District 3420 W. 63rd Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":3,"start":"2017-05-25T19:00:00","end":"2017-05-25T20:00:00","title":"Beat Meeting 321 & 324","eventDetails":"Beat Meeting 321 & 324","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District\t\r\n7040 S. Cottage Grove\t \r\nChicago, IL. 60637\r\n(312) 747-7004\r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":7,"start":"2017-05-25T18:30:00","end":"2017-05-25T19:30:00","title":"Community Beat Meeting-Bt. 712","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"Sherwood Pk. 5701 s Shields","modifiedDate":"2017-02-08T12:20:00"},{"calendarId":14,"start":"2017-05-25T18:30:00","end":null,"title":"1432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"014th District CAPS","location":"Covenant Presbyterian Church 2022 W. Dickens","modifiedDate":"2017-02-22T15:35:36"},{"calendarId":6,"start":"2017-05-25T18:30:00","end":"2017-05-25T19:30:00","title":"Beat 634 Community Meeting","eventDetails":"Lets discuss community concerns and solutions","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"St. James Church 9256 S. Lafayette","modifiedDate":"2017-04-19T14:44:34"},{"calendarId":11,"start":"2017-05-25T18:00:00","end":"2017-05-25T19:00:00","title":"Beat Meeting: 1131,32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Eloise McCoy Village Apt. 4650 W. Van Buren","modifiedDate":"2016-12-27T12:41:34"},{"calendarId":11,"start":"2017-05-25T15:00:00","end":"2017-05-25T18:30:00","title":"OUR DAY IN MAY PEACE MARCH POLARIS CHARTER ACADEMY","eventDetails":"POLARIS STUDENTS ARE HAVING A PEACE MARCH TO CHOOSE PEACE STOP VIOLENCE. FREE FOOD AND DRINKS PROVIDED, GAME, DJ","eventUrl":null,"contactDetails":"MOLLY BRADY 1.312.608.5452","location":" POLARIS 620 N. SAWYER - TO- KELLS PARK 3201 W. CHICAGO","modifiedDate":"2017-05-11T12:18:00"},{"calendarId":22,"start":"2017-05-25T10:30:00","end":"2017-05-25T11:30:00","title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T11:50:24"},{"calendarId":17,"start":"2017-05-24T19:30:00","end":"2017-05-24T20:30:00","title":"Beat Meeting for Beat 1711 & 1712","eventDetails":"Combined beat meeting for beat 1711 and beat 1712","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"Mayfair Church - 5020 N Pulaski","modifiedDate":"2017-02-15T18:25:25"},{"calendarId":8,"start":"2017-05-24T19:00:00","end":"2017-05-24T20:00:00","title":"835 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Wrightwood Library 8530 S. Kedzie","modifiedDate":"2017-05-24T17:57:21"},{"calendarId":7,"start":"2017-05-24T18:30:00","end":"2017-05-24T19:30:00","title":"Community Beat Meeting-Bt. 715","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"Lindblom Pk. 6054 s Damen","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":25,"start":"2017-05-24T18:30:00","end":"2017-05-24T19:30:00","title":"2523 Beat Meeting","eventDetails":"2523 Beat Meeting","eventUrl":null,"contactDetails":"312-746-6090","location":"St. Joseph\n4021 W. Belmont","modifiedDate":"2016-12-30T13:30:16"},{"calendarId":6,"start":"2017-05-24T18:30:00","end":"2017-05-24T19:30:00","title":"Beat 624 Community Meeting","eventDetails":"Come out to discuss community concerns and solutions","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"St. Dorothy Catholic Church 450 E. 78th Street","modifiedDate":"2017-04-19T14:28:29"},{"calendarId":17,"start":"2017-05-24T18:30:00","end":"2017-05-24T19:30:00","title":"Beat Meeting for Beat 1713","eventDetails":"Bi-monthly Beat Meeting for beat 1713","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"North Park University - 5000 N. Spaulding ","modifiedDate":"2017-04-27T12:04:20"},{"calendarId":9,"start":"2017-05-24T18:30:00","end":"2017-05-24T19:30:00","title":"Bt. 914 Community Meeting","eventDetails":"Chinatown Library","eventUrl":null,"contactDetails":"009th District CAPS, 312-747-3501","location":"2100 S. Wentworth","modifiedDate":"2017-03-22T08:32:33"},{"calendarId":3,"start":"2017-05-24T18:00:00","end":"2017-05-24T19:00:00","title":"Dac Meeting ","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. HUTCHINSON\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":12,"start":"2017-05-24T18:00:00","end":"2017-05-24T19:00:00","title":"Beat Meeting 1235","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"Las Americas 1611 S. Racine","modifiedDate":"2017-04-18T14:33:01"},{"calendarId":25,"start":"2017-05-24T13:00:00","end":"2017-05-24T14:00:00","title":"Faith-Based Subcommittee","eventDetails":"Faith Based Subcommittee meeting. 4th Wednesday Odd Months","eventUrl":null,"contactDetails":"P.O. Steven Archer\n312-746-5090","location":"5555 W Grand Ave","modifiedDate":"2016-12-14T10:37:30"},{"calendarId":15,"start":"2017-05-24T10:00:00","end":"2017-05-24T12:00:00","title":"Senior Meeting","eventDetails":"Senior Subcommittee Meeting / Senior Citizens related topics w/ Guest Speakers from various agencies and departments","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:21:02"},{"calendarId":15,"start":"2017-05-24T08:30:00","end":"2017-05-24T09:30:00","title":"Business Meeting","eventDetails":"Business owners of the 15th District meet with Community Organizer and discuss concerns of crime and ways to improve business related issues","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"MacArthur's Restaurant\n5412 W. Madison\n","modifiedDate":"2017-01-03T14:21:11"},{"calendarId":3,"start":"2017-05-23T19:00:00","end":"2017-05-23T20:00:00","title":"Beat meeting 322 & 323","eventDetails":"Beat Meeting 322 & 323","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Park Manor Church\r\n600 E. 73rd Street\r\nChicago, IL. 60619","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":24,"start":"2017-05-23T19:00:00","end":null,"title":"2422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Willye White Park 1610 W. Howard","modifiedDate":"2016-12-07T10:14:17"},{"calendarId":8,"start":"2017-05-23T19:00:00","end":"2017-05-23T20:00:00","title":"813/833 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312)747-8724","location":"West Lawn Park 4233 W. 65th Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":24,"start":"2017-05-23T19:00:00","end":null,"title":"2433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Edgewater Library 6000 N. Broadway","modifiedDate":"2016-12-07T10:09:58"},{"calendarId":9,"start":"2017-05-23T19:00:00","end":"2017-05-23T20:00:00","title":"Bt. 922, 923 Community Meeting","eventDetails":"St. Simon's Church","eventUrl":null,"contactDetails":"009th District CAPS, 312-747-3501","location":"5157 S. California","modifiedDate":"2017-03-22T08:32:57"},{"calendarId":12,"start":"2017-05-23T19:00:00","end":"2017-05-23T20:00:00","title":"Beat Meeting 1211","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"Norwegian Hospital 1044 N. Francisco ","modifiedDate":"2017-05-24T17:29:26"},{"calendarId":9,"start":"2017-05-23T19:00:00","end":"2017-05-23T20:00:00","title":"Bt. 923 Community Meeting - New Location","eventDetails":"St. Simon's Church","eventUrl":null,"contactDetails":"009th District CAPS Office, 312-747-3501","location":"5157 S. California","modifiedDate":"2017-05-18T10:34:22"},{"calendarId":3,"start":"2017-05-23T18:30:00","end":"2017-05-23T20:30:00","title":"003rd District Community Peace Circle","eventDetails":"003rd District Community Peace Circle","eventUrl":null,"contactDetails":"Sgt. Jointer\n003rd District\n7040 S. Cottage Grove\nChicago, IL 60637\n(312) 747-7004","location":"Lincoln Memorial Church\r\n6454 S. Champlain","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":25,"start":"2017-05-23T18:30:00","end":"2017-05-23T19:30:00","title":"2513 Beat Meeting","eventDetails":"2513 Beat Meeting","eventUrl":null,"contactDetails":"P.O. Rodriguez A.\n312/746-5090","location":"Amundsen Park\n312/746-5090","modifiedDate":"2016-12-30T11:42:01"},{"calendarId":7,"start":"2017-05-23T18:30:00","end":"2017-05-23T19:30:00","title":"Community Beat Meeting-Bt. 711/713/714","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"007th District Community Room 1438 w 63rd st.","modifiedDate":"2017-02-08T12:20:39"},{"calendarId":6,"start":"2017-05-23T18:30:00","end":"2017-05-23T19:30:00","title":"Beat 614 Community Meeting ","eventDetails":"Come lets discuss and resolve community concerns ","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"Foster Park 1440 West 84th Street","modifiedDate":"2017-04-19T14:29:11"},{"calendarId":17,"start":"2017-05-23T18:30:00","end":"2017-05-23T19:30:00","title":"Muslim Community Meeting","eventDetails":"Muslim Community Meeting ","eventUrl":null,"contactDetails":"017th District CAPS Office","location":"017th District Community Room 4650 N. Pulaski Rd.","modifiedDate":"2017-05-17T20:31:32"},{"calendarId":11,"start":"2017-05-23T18:00:00","end":"2017-05-23T19:00:00","title":"Beat Meeting 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2016-12-27T12:43:26"},{"calendarId":9,"start":"2017-05-23T18:00:00","end":"2017-05-23T19:00:00","title":"Bt. 922 Community Meeting - New Location","eventDetails":"Shields Middle School - New Location","eventUrl":null,"contactDetails":"009th District CAPS Office, 312-747-3501","location":"2611 W. 48th Street","modifiedDate":"2017-05-18T10:35:18"},{"calendarId":3,"start":"2017-05-23T14:00:00","end":"2017-05-23T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n(312) 747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":1,"start":"2017-05-23T14:00:00","end":"2017-05-23T15:00:00","title":"CAPS 30 Sector Business Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"001st district community relations 312.745.4381 or CAPS.001district@chicagopolice.org","location":"001st District Community Room 1718 S State St","modifiedDate":"2017-03-13T13:51:19"},{"calendarId":18,"start":"2017-05-23T12:00:00","end":"2017-05-23T14:00:00","title":"Random Act of Kindness Day","eventDetails":"018th District CommunityRelations Division","eventUrl":null,"contactDetails":"018th District","location":"Random 018th District Location ","modifiedDate":"2017-04-20T10:43:00"},{"calendarId":22,"start":"2017-05-23T10:30:00","end":"2017-05-23T11:30:00","title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T11:50:55"},{"calendarId":11,"start":"2017-05-23T08:30:00","end":"2017-05-23T10:30:00","title":"011th Dist. Faith-Based Committee Strategic Planning Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"Breakthrough 3330 W. Carroll Ave.","modifiedDate":"2017-05-08T16:53:01"},{"calendarId":6,"start":"2017-05-22T19:00:00","end":"2017-05-22T20:00:00","title":"Beat Facilitator Meeting","eventDetails":"Beat facilitators will discuss effective problem solving strategies ","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"6th District Community Room 7808 S. Halsted St","modifiedDate":"2017-04-24T10:16:05"},{"calendarId":6,"start":"2017-05-22T18:00:00","end":"2017-05-22T19:00:00","title":"DAC Meeting","eventDetails":"District advisory members will discuss and plan upcoming events for the district ","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"6th District Community Room 7808 S. Halsted St","modifiedDate":"2017-04-24T10:16:28"},{"calendarId":15,"start":"2017-05-22T15:00:00","end":"2017-05-22T16:00:00","title":"District Advisory Committee ","eventDetails":"District Advisory Committee Subcommittee/ Chairpersons of different subcommittees meet to discuss the quality of life issues within the 15th District\n\n","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:21:18"},{"calendarId":25,"start":"2017-05-20T13:00:00","end":"2017-05-20T15:00:00","title":"Youth Exploring","eventDetails":"Youth Exploring","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-15T10:20:53"},{"calendarId":6,"start":"2017-05-20T11:00:00","end":"2017-05-20T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-02-28T08:24:43"},{"calendarId":15,"start":"2017-05-20T10:00:00","end":"2017-05-20T12:00:00","title":"Block Club Training","eventDetails":"Community Organizer and residents partner on solving chronic crime and disorders and strategize together for solutions as block clubs and neighborhood watches are created.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:39:20"},{"calendarId":18,"start":"2017-05-20T10:00:00","end":"2017-05-20T13:00:00","title":"Peer Jury/ Explorer Meeting","eventDetails":"Pre-Register P.O. Garcia 312.742.5778 ","eventUrl":null,"contactDetails":"P.O. Garcia","location":"1160 N. Larrabee Community Room","modifiedDate":"2017-04-19T17:38:01"},{"calendarId":17,"start":"2017-05-20T09:00:00","end":"2017-05-20T13:00:00","title":"Peer Jury/Youth Beat Meeting ","eventDetails":"Monthly Peer Jury Meeting","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588or e mail us at CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski - 17th District Community Room","modifiedDate":"2017-02-15T18:29:08"},{"calendarId":12,"start":"2017-05-20T09:00:00","end":"2017-05-20T11:00:00","title":"Police Explorer Meeting ","eventDetails":"The Chicago Police Explorer Program was established to assist any youth who is interested in law enforcement. Anyone who is from the age of 12 to 20 will be able to join the Explorer program. The explorer will receive community service hours for their participation.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"12th District Station Community Room, 1412 S. Blue island","modifiedDate":"2017-04-19T16:18:01"},{"calendarId":11,"start":"2017-05-19T08:00:00","end":"2017-05-19T15:00:00","title":"011th DISTRICT COP ON THE ROOFTOP ","eventDetails":"Law Enforcement Torch Run For Special Olympics Illinois. Come sponsor by buying a Coffee Mugs $10.00 & T-Shirts $15.00. ","eventUrl":null,"contactDetails":"011th District CAPS ","location":"Dunkin Donuts 800 N. Kedzie ( Chicago-Kedzie)","modifiedDate":"2017-05-08T16:43:01"},{"calendarId":25,"start":"2017-05-19T06:00:00","end":"2017-05-19T14:00:00","title":"Cop On A Rooftop Fundraiser","eventDetails":null,"eventUrl":null,"contactDetails":"25th Dsitrict Community Relations: 312-746-5909","location":"4851 W. Belmont Ave.","modifiedDate":"2017-05-18T15:08:03"},{"calendarId":14,"start":"2017-05-18T19:00:00","end":null,"title":"1431 Beat Meeting","eventDetails":"14th District CAPS","eventUrl":null,"contactDetails":null,"location":"Haas Park 2402 N. Washtenaw","modifiedDate":"2017-02-22T15:10:50"},{"calendarId":16,"start":"2017-05-18T19:00:00","end":"2017-05-18T20:00:00","title":"1611 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"St. Thecla 6333 N. Newcastle","modifiedDate":"2017-02-21T15:19:19"},{"calendarId":25,"start":"2017-05-18T18:30:00","end":"2017-05-18T19:30:00","title":"2533 Beat Meeting","eventDetails":"2533 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-15T10:16:49"},{"calendarId":7,"start":"2017-05-18T18:30:00","end":"2017-05-18T19:30:00","title":"Community Beat Meeting - Bt.735","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Gifts From God Ministry Church 1818 w 74th st.","modifiedDate":"2017-02-23T09:21:18"},{"calendarId":11,"start":"2017-05-18T18:00:00","end":"2017-05-18T19:00:00","title":"Beat meeting : 1113,14,15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. \n","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"St. Michaels's MBC \n4106 W. Monroe","modifiedDate":"2016-12-27T12:41:52"},{"calendarId":5,"start":"2017-05-18T18:00:00","end":"2017-05-18T19:00:00","title":"BEAT 533 CAPS MEETING","eventDetails":"005TH DISTRICT BEAT 533 CAPS MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"ALTGELD HEALTH CENTER\n1029 E 130TH STREET","modifiedDate":"2017-02-21T16:57:13"},{"calendarId":16,"start":"2017-05-18T18:00:00","end":"2017-05-18T19:00:00","title":"DAC Meeting","eventDetails":"Meeting hosted by the District Commander for invited community stakeholders (NOT A BEAT MEETING) will be held in the Community Room","eventUrl":null,"contactDetails":"Annie Ruize-Oquendo (312)742-4521","location":"5151 N. Milwaukee","modifiedDate":"2017-05-04T17:36:16"},{"calendarId":3,"start":"2017-05-18T14:00:00","end":"2017-05-18T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 60637\n(312) 747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-05-18T13:30:00","end":"2017-05-18T14:30:00","title":"Business Subcommittee Meeting","eventDetails":"Business Subcommittee Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-15T10:17:53"},{"calendarId":6,"start":"2017-05-18T10:00:00","end":"2017-05-18T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":"Meet to discuss topics on Domestic Violence and prevention","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-02-28T08:24:54"},{"calendarId":11,"start":"2017-05-18T10:00:00","end":"2017-05-18T13:00:00","title":"Seniors Health & Resource Fair ","eventDetails":"Featuring HIV Testing, Cholesterol Health, Raffles & Complimentary Light Refreshments","eventUrl":null,"contactDetails":"011th District -CAPS 1.312.746.9841","location":"3151 W. Harrison ","modifiedDate":"2017-04-03T16:18:00"},{"calendarId":17,"start":"2017-05-17T19:30:00","end":"2017-05-17T20:30:00","title":"Beat Meeting for Beat 1722 & 1723","eventDetails":"Combined beat meeting for beat 1722 and 1723","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski - 17th District Community Room","modifiedDate":"2017-02-15T18:25:53"},{"calendarId":20,"start":"2017-05-17T19:00:00","end":"2017-05-17T20:00:00","title":"2013 Beat Meeting","eventDetails":"2013 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church5437 N. Clark St.","modifiedDate":"2017-06-23T15:29:43"},{"calendarId":14,"start":"2017-05-17T19:00:00","end":null,"title":"1423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Humboldt Park Field House\n1400 N. Sacramento","modifiedDate":"2017-01-02T08:39:55"},{"calendarId":3,"start":"2017-05-17T19:00:00","end":"2017-05-17T20:00:00","title":"Beat Meeting 333 & 334","eventDetails":"Beat Meeting 333 & 334","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"South Shore culture Center 7059 S. South Shore DR. Chicago, IL. 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":19,"start":"2017-05-17T19:00:00","end":"2017-05-17T20:00:00","title":"Beat 1921, 22 & 31","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"19th Police Auditorium\n2452 W. Belmont","modifiedDate":"2016-12-06T12:51:14"},{"calendarId":16,"start":"2017-05-17T19:00:00","end":"2017-05-17T20:00:00","title":"1623 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"16th District Station 5151 N. Milwaukee Community Room ","modifiedDate":"2017-02-21T15:27:51"},{"calendarId":12,"start":"2017-05-17T19:00:00","end":"2017-05-17T20:00:00","title":"Beat Meeting 1213 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"Northwest Settlement 1012 N. Noble","modifiedDate":"2017-04-18T14:13:00"},{"calendarId":25,"start":"2017-05-17T18:30:00","end":"2017-05-17T19:30:00","title":"2515 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2515's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"St. Stanislaus2310 N. Lorel","modifiedDate":"2017-06-26T13:45:33"},{"calendarId":7,"start":"2017-05-17T18:30:00","end":"2017-05-17T19:30:00","title":"Community Beat Meeting - Bt. 733/734","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Salvation Army 845 w. 69th st.","modifiedDate":"2017-02-23T09:21:41"},{"calendarId":6,"start":"2017-05-17T18:30:00","end":"2017-05-17T19:30:00","title":"Beat 623 Community Meeting","eventDetails":"Lets discuss and resolve community issues","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"Urban Partnership Bank 7801 S. State St","modifiedDate":"2017-04-19T14:29:26"},{"calendarId":1,"start":"2017-05-17T18:30:00","end":"2017-05-17T19:30:00","title":"Beat 133 Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"001st district community relations 312.745.4381 or CAPS.001district@chicagopolice.org","location":"Dearborn Homes 2930 S Dearborn ","modifiedDate":"2017-03-13T13:51:27"},{"calendarId":17,"start":"2017-05-17T18:15:00","end":"2017-05-17T19:15:00","title":"Beat Meeting for Beat 1724 ","eventDetails":"Bi-monthly Beat Meeting for beat 1724 ","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"Horner Park - 2741 W. Montrose ","modifiedDate":"2017-04-27T12:04:32"},{"calendarId":10,"start":"2017-05-17T18:00:00","end":"2017-05-17T19:00:00","title":"Beat Meeting 1013","eventDetails":"Beat 1013 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Epiphany Church\nRectory\n2524 S. Keeler Ave","modifiedDate":"2017-01-04T16:04:46"},{"calendarId":22,"start":"2017-05-17T18:00:00","end":"2017-05-17T19:00:00","title":"Beat 2234 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Beth Eden Church\n11121 S. Loomis","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":5,"start":"2017-05-17T18:00:00","end":"2017-05-17T19:00:00","title":"BEAT 532 CAPS MEETING","eventDetails":"005TH DISTRICT BEAT 532 CAPS MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"ST. ANTHONY CHURCH\n11533 S PRAIRIE\n","modifiedDate":"2017-02-21T16:57:26"},{"calendarId":9,"start":"2017-05-17T18:00:00","end":"2017-05-17T19:00:00","title":"Bt. 925 Community Meeting","eventDetails":"St. Gabe's Church","eventUrl":null,"contactDetails":"009th District CAPS, 312-747-3501","location":"4500 S. Wallace","modifiedDate":"2017-03-22T08:33:20"},{"calendarId":8,"start":"2017-05-17T17:00:00","end":"2017-05-17T18:00:00","title":"823/825 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Rita Church at 6243 S. Fairfield","modifiedDate":"2017-05-23T16:44:53"},{"calendarId":18,"start":"2017-05-17T15:00:00","end":"2017-05-17T16:00:00","title":"Near North Security Meeting","eventDetails":"Must Pre- Register 312.742.5778","eventUrl":null,"contactDetails":"P.O. A. Robinson","location":"018th District Community Room","modifiedDate":"2017-04-19T16:33:01"},{"calendarId":18,"start":"2017-05-17T11:00:00","end":"2017-05-17T12:00:00","title":"Senior Bingo & Cook/Shop Smart Workshop","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Ramirez","location":"1327 N. Larrabee","modifiedDate":"2017-04-19T17:28:01"},{"calendarId":18,"start":"2017-05-17T09:30:00","end":"2017-05-17T10:30:00","title":"Coffee with the Commander","eventDetails":"018th District Community Relations, Near North Unity Program","eventUrl":null,"contactDetails":"NNUP","location":"Eva's Cafe 1447 N. Sedgwick","modifiedDate":"2017-04-19T15:13:00"},{"calendarId":2,"start":"2017-05-17T06:30:00","end":"2017-05-17T07:30:00","title":"233/234/235 Beat Meeting","eventDetails":"Community and police coming together to resolve issues","eventUrl":null,"contactDetails":"Community Policing 312-747-5109","location":"1526 E. 55th Street","modifiedDate":"2017-03-22T18:18:41"},{"calendarId":24,"start":"2017-05-16T19:00:00","end":null,"title":"2424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Pottawatomie Park 7340 N. Rogers","modifiedDate":"2016-12-07T10:12:40"},{"calendarId":8,"start":"2017-05-16T19:00:00","end":"2017-05-16T20:00:00","title":"811 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Good Shepherd Church 5550 S Merrimac","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":19,"start":"2017-05-16T19:00:00","end":"2017-05-16T20:00:00","title":"Beat 1911 & 1912","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Sulzer Library\n4455 N. Lincoln","modifiedDate":"2016-12-06T12:51:49"},{"calendarId":16,"start":"2017-05-16T19:00:00","end":"2017-05-16T20:00:00","title":"1633 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"Merrimac Park 6343 W. Irving Park Rd","modifiedDate":"2017-02-21T15:29:41"},{"calendarId":12,"start":"2017-05-16T19:00:00","end":"2017-05-16T20:00:00","title":"Beat Meeting 1223","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"Westhaven Park Community Room 1939 W. Lake St. ","modifiedDate":"2017-04-18T14:18:00"},{"calendarId":25,"start":"2017-05-16T18:30:00","end":"2017-05-16T19:30:00","title":"2525 Beat Meeting","eventDetails":"2525 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Mozart Park\n2036 N. Avers","modifiedDate":"2016-12-15T10:23:44"},{"calendarId":25,"start":"2017-05-16T18:30:00","end":"2017-05-16T19:30:00","title":"2531 Beat Meeting","eventDetails":"2531 Beat Meeting. 3rd Tuesday Odd Months","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W Grand Ave","modifiedDate":"2016-12-15T10:34:04"},{"calendarId":22,"start":"2017-05-16T18:30:00","end":"2017-05-16T19:30:00","title":"Beat 2222 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Brainerd Park \n1246 W. 92nd St","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-05-16T18:30:00","end":"2017-05-16T19:30:00","title":"Community Beat Meeting - Bt. 731/732","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Hamilton Park 513 w. 72nd st.","modifiedDate":"2017-02-23T07:49:04"},{"calendarId":6,"start":"2017-05-16T18:30:00","end":"2017-05-16T19:30:00","title":"Beat 613 Community Meeting","eventDetails":"Lets discuss and resolve community concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"Gresham School 8524 S. Green St","modifiedDate":"2017-04-19T14:29:38"},{"calendarId":1,"start":"2017-05-16T18:30:00","end":"2017-05-16T19:30:00","title":"CAPS Beat 131/132 Residential Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"001st district community relations 312.745.4381 or CAPS.001district@chicagopolice.org","location":"Hilliard Apartments 30 W Cermak","modifiedDate":"2017-03-13T13:50:45"},{"calendarId":11,"start":"2017-05-16T18:00:00","end":"2017-05-16T19:00:00","title":"Beat Meeting 1133,34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Homan Square Community Center 3559 W. Arthington ","modifiedDate":"2016-12-27T12:42:29"},{"calendarId":5,"start":"2017-05-16T18:00:00","end":"2017-05-16T19:00:00","title":"BEAT 531 CAPS MEETING","eventDetails":"005TH DISTRICT BEAT 531 CAPS MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"GREEN STONE UNITED METHODIST\n11211 S ST. LAWRENCE","modifiedDate":"2017-02-21T16:57:36"},{"calendarId":9,"start":"2017-05-16T18:00:00","end":"2017-05-16T19:00:00","title":"Bt. 932,934,935 Community Meeting","eventDetails":"Westhaven Senior Homes","eventUrl":null,"contactDetails":"009th District CAPS, 312-747-3501","location":"850 W. Garfield Blvd.","modifiedDate":"2017-03-22T08:33:48"},{"calendarId":2,"start":"2017-05-16T18:00:00","end":"2017-05-16T19:30:00","title":"On The Table","eventDetails":"Open forum for citizens and police to discuss how to restore our community together.","eventUrl":null,"contactDetails":"CAPS Offfice 312 745-4119","location":"5101 S. Wentworth ","modifiedDate":"2017-06-28T23:10:58"},{"calendarId":16,"start":"2017-05-16T13:00:00","end":"2017-05-16T14:00:00","title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Jennene Whalen (312)742-4521 CAPS016District@chicagopolice.org","location":"5151 N. Milwaukee","modifiedDate":"2017-02-08T16:07:23"},{"calendarId":17,"start":"2017-05-16T11:00:00","end":"2017-05-16T13:00:00","title":"Senior Subcommittee Meeting ","eventDetails":"Monthly Senior Citizen Meeting ","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski - 17th District Community Room","modifiedDate":"2017-02-15T18:29:24"},{"calendarId":2,"start":"2017-05-16T06:30:00","end":"2017-05-16T07:30:00","title":"221/223 Beat Meeting ","eventDetails":"Community and police coming together to resolve issues","eventUrl":null,"contactDetails":"Community Policing 312-747-5109","location":"4314 S. Cottage Grove","modifiedDate":"2017-03-31T12:17:15"},{"calendarId":11,"start":"2017-05-13T14:00:00","end":"2017-05-13T18:00:00","title":"MOTHERS DAY STEPPING WITH MOM EVENT ","eventDetails":"MOTHERS DAY STEPPING WITH MOM EVENT MUSIC-PRIZES-DANCE-REFRESHMENTS-PHOTOS SPONSORED BY THE SALVATION ARMY,NHS, KELLS PARK CMTY COUNCIL. ","eventUrl":null,"contactDetails":"011TH DISTRICT CAPS 1.312.746.9841","location":"KELLS PARK 3201 W. CHICAGO","modifiedDate":"2017-05-11T12:08:02"},{"calendarId":14,"start":"2017-05-13T10:00:00","end":null,"title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:40:03"},{"calendarId":14,"start":"2017-05-13T10:00:00","end":"2017-05-13T13:00:00","title":"Bike Rally","eventDetails":null,"eventUrl":null,"contactDetails":"014 District Caps office","location":"Walsh Park 1722 N Ashland","modifiedDate":"2017-02-22T14:55:36"},{"calendarId":6,"start":"2017-05-12T18:00:00","end":"2017-05-12T20:00:00","title":"Free Line Dancing Class","eventDetails":"Free line dancing open to all ages","eventUrl":null,"contactDetails":"Contact Mrs. Leaks at 312-745-3641","location":"6th District Community Room 7808 S. Halsted St","modifiedDate":"2017-04-24T10:21:00"},{"calendarId":11,"start":"2017-05-12T09:30:00","end":"2017-05-12T12:00:00","title":"A PARADE FOR PEACE ","eventDetails":"YOU ARE CORDIALLY INVITED TO JOIN OUR COVERSATION AND PARADE AROUND THE BLOCK FOR P.E.A.C.E. IN COLLABORATION WITH SGA YOUTH & FAMILY SERVICES, DFSS DOMESTIC VIOLENCE PREVENTION,CAPS 011TH DISTRICT, YMCA, CYPP","eventUrl":null,"contactDetails":"YMCA 1.312.533.9011","location":"10 S. KEDZIE","modifiedDate":"2017-05-11T12:13:00"},{"calendarId":4,"start":"2017-05-11T19:00:00","end":"2017-05-11T20:00:00","title":"421 & 422 Beat Meeting","eventDetails":"Labor of Love Apostolic Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"2800 E. 79th St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":8,"start":"2017-05-11T19:00:00","end":"2017-05-11T20:00:00","title":"814 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Vittum Park Fieldhouse 5010 W. 50th St","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":3,"start":"2017-05-11T19:00:00","end":"2017-05-11T20:00:00","title":"Beat Meeting 331 & 332","eventDetails":"Beat Meeting 331 & 332","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"ABJ Community Service Center 1818 E, 71st Street Chicago, IL. 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":20,"start":"2017-05-11T19:00:00","end":"2017-05-11T20:00:00","title":"2023 Beat Meeting","eventDetails":"2023 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-743-8770","location":"Kenmore Plaza5225 N. Kenmore Ave.","modifiedDate":"2017-06-23T15:29:58"},{"calendarId":17,"start":"2017-05-11T19:00:00","end":"2017-05-11T20:00:00","title":"Hispanic Beat Meeting","eventDetails":"Beat Meeting for Spanish Speaking Citizens.","eventUrl":null,"contactDetails":"Please call CAPS office for further information at (312) 742-4588 or e mail Officer Veronica Meraz at veronica.meraz@chicagopolice.org","location":"4650 N. Pulaski - 17th District Community Room","modifiedDate":"2017-02-15T18:27:24"},{"calendarId":12,"start":"2017-05-11T19:00:00","end":"2017-05-11T20:00:00","title":"Beat Meeting 1215","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"Goldblatt's Building 1615 W. Chicago Ave.","modifiedDate":"2017-04-18T14:13:00"},{"calendarId":15,"start":"2017-05-11T18:30:00","end":"2017-05-11T19:30:00","title":"Beat 1513N CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:39:28"},{"calendarId":14,"start":"2017-05-11T18:30:00","end":null,"title":"1413/1414 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Logan Square Library\n3030 W. Fullerton","modifiedDate":"2017-01-02T08:40:09"},{"calendarId":22,"start":"2017-05-11T18:30:00","end":"2017-05-11T19:30:00","title":"Beat 2213 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Ridge Park\n9625 S. Longwood Dr","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-05-11T18:30:00","end":"2017-05-11T19:30:00","title":"Community Beat Meeting-Bt. 724/725","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt.Fraction @312-747-6722","location":"Ogden Pk. 6500 s Racine","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":6,"start":"2017-05-11T18:30:00","end":"2017-05-11T19:30:00","title":"Beat 633 Community Meeting","eventDetails":"Lets discuss community concerns and solutions","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"Tuley Park 501 East 90th Street","modifiedDate":"2017-04-19T14:30:01"},{"calendarId":6,"start":"2017-05-11T18:30:00","end":"2017-05-11T19:30:00","title":"Beat 632 Community Meeting","eventDetails":"Lets discuss community concerns and solutions","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"Tuley Park 501 East 90th Street","modifiedDate":"2017-04-19T14:29:50"},{"calendarId":1,"start":"2017-05-11T18:30:00","end":"2017-05-11T19:30:00","title":"CAPS 10 Sector Residential Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"001st district community relations 312.745.4381 or CAPS.001district@chicagopolice.org","location":"Condo Building 400 E Randolph St","modifiedDate":"2017-03-13T13:50:35"},{"calendarId":11,"start":"2017-05-11T18:00:00","end":"2017-05-11T19:00:00","title":"Beat meeting: 1122,23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841Chicago Police Station3151 W. Harrison Street","location":"Ike's Sims 3333 W. Maypole","modifiedDate":"2017-06-28T23:11:21"},{"calendarId":10,"start":"2017-05-11T18:00:00","end":"2017-05-11T19:00:00","title":"Beat Meeting 1033","eventDetails":"Beat 1033 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Little Village Library\n2311 S. Kedzie","modifiedDate":"2017-01-04T15:56:19"},{"calendarId":5,"start":"2017-05-11T18:00:00","end":"2017-05-11T19:00:00","title":"BEAT 524 CAPS MEETING","eventDetails":"005TH DISTRICT BEAT 524 CAPS MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"LUTHERAN CHURCH OF THE HOLY SPIRIT\n1335 W 115TH STREET","modifiedDate":"2017-02-21T16:57:45"},{"calendarId":18,"start":"2017-05-11T18:00:00","end":"2017-05-11T19:00:00","title":"1811, 1812 & 1813 Beat Meeting","eventDetails":"Meeting will be held on the 2nd floor of the school library ","eventUrl":null,"contactDetails":"018th Dist Community Relations","location":"2101 N. Freemont 2nd Floor School Library","modifiedDate":"2017-04-19T14:53:00"},{"calendarId":9,"start":"2017-05-11T18:00:00","end":"2017-05-11T19:00:00","title":"Bt. 931, 933 Community Meeting","eventDetails":"Cornell Square Park","eventUrl":null,"contactDetails":"009th District CAPS, 312-747-3501","location":"1809 W. 50th St.","modifiedDate":"2017-03-22T08:34:13"},{"calendarId":8,"start":"2017-05-11T18:00:00","end":"2017-05-11T19:00:00","title":"Faith Based Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"3420 W. 63rd Street","modifiedDate":"2017-03-29T15:19:24"},{"calendarId":12,"start":"2017-05-11T12:00:00","end":"2017-05-11T13:00:00","title":"District Advisory Committee","eventDetails":"The District Advisory Committee or (DAC) meeting is for stakeholders in the 12th District. These stakeholders are the businesses, faith and community organizations along with Beat Facilitators. The members meet on the 2nd Thursday of the month, with the District Commander, to address and come up with strategies to address issues in the community.","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306\n","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2017-02-08T16:06:10"},{"calendarId":6,"start":"2017-05-11T10:00:00","end":"2017-05-11T11:00:00","title":"Faith Based Subcommittee Meeting","eventDetails":"Join the faith based leaders as we connect with our community","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"Saint Sabina Church 1210 W. 78th PL.","modifiedDate":"2017-02-28T08:25:02"},{"calendarId":2,"start":"2017-05-11T06:30:00","end":"2017-05-11T07:30:00","title":"225/231/232 Beat Meeting","eventDetails":"Community and police coming together to resolve issues","eventUrl":null,"contactDetails":"Community Policing 312-747-5109","location":"5627 S. Michigan Ave.","modifiedDate":"2017-03-31T12:19:16"},{"calendarId":4,"start":"2017-05-10T19:00:00","end":"2017-05-10T20:00:00","title":"411 Community Beat Meeting","eventDetails":"St. Felicitas Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"1526 E. 84th St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":17,"start":"2017-05-10T19:00:00","end":"2017-05-10T20:00:00","title":"Beat Meeting for Beat 1732 & 1733","eventDetails":"Combined beat meeting for beat 1732 and 1733","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"3546 W Addison/ Athletic Field Park","modifiedDate":"2017-02-15T18:26:14"},{"calendarId":8,"start":"2017-05-10T19:00:00","end":"2017-05-10T20:00:00","title":"812 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Symphorosa 6135 S. Austin","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":9,"start":"2017-05-10T19:00:00","end":"2017-05-10T20:00:00","title":"Bt. 912 Community Meeting","eventDetails":"St. Maurice Church Hall","eventUrl":null,"contactDetails":"009th District CAPS, 312-747-3501","location":"3625 S. Hoyne","modifiedDate":"2017-03-22T08:34:36"},{"calendarId":22,"start":"2017-05-10T18:30:00","end":"2017-05-10T19:30:00","title":"Beat 2232 & 2233 Meetings","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Fernwood Park\n10438 S. Wallace","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-05-10T18:30:00","end":"2017-05-10T19:30:00","title":"Community Beat Meeting-Bt. 726","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt.Fraction @312-747-6722","location":"Lindblom Pk. 6054 s Damen","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":14,"start":"2017-05-10T18:30:00","end":null,"title":"1421 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Humboldt Park Library\n1605 N. Troy","modifiedDate":"2017-01-02T08:40:15"},{"calendarId":1,"start":"2017-05-10T18:30:00","end":"2017-05-10T19:30:00","title":"CAPS 20 Sector Residential Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"001st district community relations 312.745.4381 or CAPS.001district@chicagopolice.org","location":"University Center 525 S State St","modifiedDate":"2017-03-13T13:50:25"},{"calendarId":2,"start":"2017-05-10T18:30:00","end":"2017-05-10T19:30:00","title":"213/215/224","eventDetails":"Community and police coming together to resolve issues","eventUrl":null,"contactDetails":"Community Policing 312-747-5109","location":"4058 S. Michigan Ave.","modifiedDate":"2017-03-31T12:20:58"},{"calendarId":5,"start":"2017-05-10T18:00:00","end":"2017-05-10T19:00:00","title":"BEAT 523 CAPS MEETING","eventDetails":"005TH DISTRICT BEAT 523 BEAT MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"ST. PETER & PAUL\n12425 S HALSTED","modifiedDate":"2017-02-21T16:57:53"},{"calendarId":12,"start":"2017-05-10T18:00:00","end":"2017-05-10T19:00:00","title":"Beat Meeting 1231","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"Academy Square, 318 S. Throop","modifiedDate":"2017-04-18T14:28:00"},{"calendarId":18,"start":"2017-05-10T15:00:00","end":"2017-05-10T16:00:00","title":"30 Sector Hospitality Meeting","eventDetails":"Must Pre-Register","eventUrl":null,"contactDetails":"P.O. Guiseppe Incaprera","location":"HighLine 169 W. Kinzie","modifiedDate":"2017-04-19T15:13:00"},{"calendarId":14,"start":"2017-05-10T13:30:00","end":null,"title":"Domestic Violence Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:40:22"},{"calendarId":22,"start":"2017-05-10T13:30:00","end":"2017-05-10T14:30:00","title":"Court Advocacy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T11:51:42"},{"calendarId":6,"start":"2017-05-10T11:00:00","end":"2017-05-10T12:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Meet with seniors on crime tip prevention and plan fun filled events","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-02-28T08:25:27"},{"calendarId":20,"start":"2017-05-10T10:00:00","end":"2017-05-10T11:00:00","title":"Seniors Meeting","eventDetails":"Seniors Meeting, a monthly meeting featuring activities and informative talks on seniors related topics. Contact CAPS for details.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District Community Room 5400 N. Lincoln ave ","modifiedDate":"2017-06-23T14:13:55"},{"calendarId":7,"start":"2017-05-09T19:30:00","end":null,"title":"Community Beat Meeting-Bt. 722/723","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt.Fraction @312-747-6722","location":"Kennedy-King College 740 w 63rd st","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":4,"start":"2017-05-09T19:00:00","end":"2017-05-09T20:00:00","title":"423 Community Beat Meeting","eventDetails":"Bessemer Park Field House","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"8930 S. Muskegon Ave","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":8,"start":"2017-05-09T19:00:00","end":"2017-05-09T20:00:00","title":"831/832 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Marquette Park 6734 S. Kedzie","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":24,"start":"2017-05-09T19:00:00","end":null,"title":"2432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District 6464 N. Clark","modifiedDate":"2016-12-07T10:10:56"},{"calendarId":22,"start":"2017-05-09T19:00:00","end":"2017-05-09T20:00:00","title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Robichaux Park\n403 W. 93rd St","modifiedDate":"2016-12-28T11:52:03"},{"calendarId":17,"start":"2017-05-09T19:00:00","end":"2017-05-09T20:00:00","title":"1731's Beat Meeting ","eventDetails":"Bi-monthly beat meeting","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"Kilbourn Park - 3501 N. Kilbourn","modifiedDate":"2017-02-15T18:26:50"},{"calendarId":16,"start":"2017-05-09T19:00:00","end":"2017-05-09T20:00:00","title":"1613 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"Oriole Park 5430 N. Olcott","modifiedDate":"2017-02-22T08:54:58"},{"calendarId":11,"start":"2017-05-09T18:30:00","end":"2017-05-09T19:30:00","title":"Beat Meeting 1124-25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"JLM Abundant Life Center 2622 W. Jackson","modifiedDate":"2016-12-27T12:42:52"},{"calendarId":19,"start":"2017-05-09T18:30:00","end":"2017-05-09T19:30:00","title":"Beat 1933","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Illinois Masonic\n836 W. Wellington","modifiedDate":"2016-12-06T12:50:46"},{"calendarId":15,"start":"2017-05-09T18:30:00","end":"2017-05-09T19:30:00","title":"Beat 1511/24 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Hope Community Church\n5900 W. Iowa\n","modifiedDate":"2017-01-03T14:39:36"},{"calendarId":6,"start":"2017-05-09T18:30:00","end":"2017-05-09T19:30:00","title":"Beat 612 Community Meeting","eventDetails":"Come lets discuss and resolve community concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"Southside Tabernacle Church 7724 S. Racine ","modifiedDate":"2017-04-19T14:30:12"},{"calendarId":9,"start":"2017-05-09T18:30:00","end":"2017-05-09T19:30:00","title":"Beat 913, 915 Community Meeting","eventDetails":"009th District Community Room","eventUrl":null,"contactDetails":"009th District CAPS, 312-747-3501","location":"3120 S. Halsted","modifiedDate":"2017-03-22T08:35:00"},{"calendarId":2,"start":"2017-05-09T18:30:00","end":"2017-05-09T19:30:00","title":"222 Beat Meeting","eventDetails":"Community and police coming together to resolve issues","eventUrl":null,"contactDetails":"Community Policing 312-747-5109","location":"4434 S.Lake Park","modifiedDate":"2017-03-31T12:23:11"},{"calendarId":10,"start":"2017-05-09T18:00:00","end":"2017-05-09T19:00:00","title":"Beat Meeting 1021","eventDetails":"Beat 1021 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Carey Tercentenary\n1448 S. Homan Ave","modifiedDate":"2017-01-04T16:01:02"},{"calendarId":5,"start":"2017-05-09T18:00:00","end":"2017-05-09T19:00:00","title":"BEAT 522 CAPS MEETING","eventDetails":"005TH DISTRICT BEAT 522 CAPS MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"GREATER CANAAN MBC\n35 W 119TH STREET","modifiedDate":"2017-02-21T16:58:01"},{"calendarId":12,"start":"2017-05-09T18:00:00","end":"2017-05-09T19:00:00","title":"Beat Meeting 1233","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"12th District Station Community Room, 1412 S. Blue island ","modifiedDate":"2017-04-18T14:33:01"},{"calendarId":18,"start":"2017-05-09T18:00:00","end":"2017-05-09T19:00:00","title":"1821, 1822,& 1823 Beat Meeting","eventDetails":"018th District Community Room","eventUrl":null,"contactDetails":"018th District Community Relations","location":"018th District 1160 N. Larrabee","modifiedDate":"2017-04-19T14:48:00"},{"calendarId":22,"start":"2017-05-09T10:00:00","end":"2017-05-09T11:00:00","title":"Clergy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T11:51:14"},{"calendarId":6,"start":"2017-05-09T10:00:00","end":"2017-05-09T11:00:00","title":"Business Subcommittee Meeting","eventDetails":"Meet with local businesses as we plan future events to foster a safe community","eventUrl":null,"contactDetails":"Contact the CAPS office at (132)745-3641","location":"6th District Police Station 7808 S. Halsted T","modifiedDate":"2017-02-28T08:25:43"},{"calendarId":19,"start":"2017-05-08T19:00:00","end":"2017-05-08T20:00:00","title":"Beat 1932","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"New Life Church\n1110 W. Lill","modifiedDate":"2016-12-06T12:50:57"},{"calendarId":2,"start":"2017-05-08T18:30:00","end":"2017-05-08T19:30:00","title":"211 Beat Meeting","eventDetails":"Community and police coming together to resolve issues","eventUrl":null,"contactDetails":"Community Policing 312-747-5109","location":"3240 S. Indiana ","modifiedDate":"2017-03-31T12:25:52"},{"calendarId":15,"start":"2017-05-08T15:00:00","end":"2017-05-08T16:00:00","title":"Domestic Violence Meeting ","eventDetails":"Domestic Violence Subcommittee Meeting/ Subcommittee Members discuss and plan upcoming events for Domestic Violence Victims and Promote Awareness.\n\n","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:39:44"},{"calendarId":18,"start":"2017-05-07T07:45:00","end":"2017-05-07T09:00:00","title":"St. Jude Police Memorial March","eventDetails":null,"eventUrl":null,"contactDetails":"018th District","location":"Gold Star Family Memorial & Park","modifiedDate":"2017-04-19T17:38:01"},{"calendarId":3,"start":"2017-05-06T11:00:00","end":"2017-05-06T13:00:00","title":"Youth/Explorers Meeting","eventDetails":"Youth/Explorers Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"003rd District(Auditorium)\r\n7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":6,"start":"2017-05-06T11:00:00","end":"2017-05-06T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-02-28T08:26:20"},{"calendarId":12,"start":"2017-05-06T09:00:00","end":"2017-05-06T12:00:00","title":"Peer Jury Meeting","eventDetails":"The Peer Jury is set up to have jurors, made up o the offenders' peers, give actual juvenile offenders a second chance to get back on the right track. This experience will allow your child a chance to help teens their age get a second chance. Anyone who is from the age of 14 to 17 will be able to join the Explorer program. All participating Peer Jurors will receive community service hours for their participation.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"12th District Station Community Room, 1412 S. Blue island","modifiedDate":"2017-04-19T16:23:01"},{"calendarId":25,"start":"2017-05-06T08:30:00","end":"2017-05-06T11:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-30T11:42:16"},{"calendarId":18,"start":"2017-05-06T08:00:00","end":"2017-05-06T12:00:00","title":"Police Memorial Foundation \"Run to Remember\"","eventDetails":"East of Soldier Field","eventUrl":null,"contactDetails":"018th District Community Relations","location":"Gold Star Family Memorial & Park","modifiedDate":"2017-04-19T14:58:00"},{"calendarId":6,"start":"2017-05-05T18:00:00","end":"2017-05-05T20:00:00","title":"Line Dancing","eventDetails":"Free line dancing class open to all ages","eventUrl":null,"contactDetails":"Contact Mrs. Leaks at 312-745-3641","location":"6th District Community Room 7808 S. Halsted St","modifiedDate":"2017-04-24T10:21:35"},{"calendarId":22,"start":"2017-05-04T19:00:00","end":"2017-05-04T20:00:00","title":"Beat 2211 & 2212 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:23:44"},{"calendarId":8,"start":"2017-05-04T19:00:00","end":"2017-05-04T20:00:00","title":"834 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Bogan High School 3939 W. 79th Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":3,"start":"2017-05-04T19:00:00","end":"2017-05-04T20:00:00","title":"Beat Meeting 313 & 314","eventDetails":"Beat Meeting 313 & 314","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Harris Park Recreation Center 6200 S. Drexel\r\nChicago, IL. 60637","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":24,"start":"2017-05-04T19:00:00","end":null,"title":"District Advisory Council Meeting","eventDetails":"Not open to the public","eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District","modifiedDate":"2016-12-07T10:08:39"},{"calendarId":4,"start":"2017-05-04T19:00:00","end":"2017-05-04T20:00:00","title":"431 Community Beat Meeting","eventDetails":"004th District Station","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"2255 E. 103rd St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":16,"start":"2017-05-04T19:00:00","end":"2017-05-04T20:00:00","title":"1631 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"St. Francis Borgia Stokes Center 8025 W. Addison","modifiedDate":"2017-04-18T13:24:49"},{"calendarId":15,"start":"2017-05-04T18:30:00","end":"2017-05-04T19:30:00","title":"Beat 1512/23 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"PCC Family Health Ctr.\n5425 W. Lake St.\n","modifiedDate":"2017-01-03T14:39:52"},{"calendarId":25,"start":"2017-05-04T18:30:00","end":"2017-05-04T19:30:00","title":"2511 Beat Meeting","eventDetails":"2511 Beat Meeting","eventUrl":null,"contactDetails":"P.O. Rodriguez","location":"Bethesda Home\n2833 N. Nordica","modifiedDate":"2016-12-30T11:42:26"},{"calendarId":6,"start":"2017-05-04T18:30:00","end":"2017-05-04T19:30:00","title":"Beat 631 Community Meeting","eventDetails":"Lets discuss community concerns and solutions","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"Chatham Fields Church 8050 S. St Lawrence","modifiedDate":"2017-04-19T14:30:23"},{"calendarId":10,"start":"2017-05-04T18:00:00","end":"2017-05-04T19:00:00","title":"Beat Meeting 1011 & 1012","eventDetails":"Beat 1011 & 1012 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Clair House\n1350 S. Harding","modifiedDate":"2017-01-04T16:06:17"},{"calendarId":11,"start":"2017-05-04T18:00:00","end":"2017-05-04T19:00:00","title":"Beat Meeting : 1112,21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"1112-1121 \nSanctuary Place \n642 N. Kedzie","modifiedDate":"2016-12-27T12:41:11"},{"calendarId":5,"start":"2017-05-04T18:00:00","end":"2017-05-04T19:00:00","title":"BEAT 513 CAPS MEETING","eventDetails":"005TH DISTRICT BEAT 513 CAPS MEETING","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"005TH DISTRICT CAPS OFFICE 312-747-3100","modifiedDate":"2017-02-21T16:58:26"},{"calendarId":18,"start":"2017-05-04T18:00:00","end":"2017-05-04T19:00:00","title":"1831, 1832 & 1833 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"018th District Community Relations","location":"Access Living 115 W. Chicago ","modifiedDate":"2017-04-19T14:38:00"},{"calendarId":14,"start":"2017-05-04T17:00:00","end":null,"title":"Peer Jury Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:40:28"},{"calendarId":22,"start":"2017-05-04T14:00:00","end":"2017-05-04T15:00:00","title":"Diversity & Inclusion Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T11:51:31"},{"calendarId":1,"start":"2017-05-04T14:00:00","end":"2017-05-04T15:00:00","title":"CAPS 20 Sector Business Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"001st district community relations 312.745.4381 or CAPS.001district@chicagopolice.org","location":"Northern Trust Bank 50 S La Salle ","modifiedDate":"2017-03-13T13:46:55"},{"calendarId":2,"start":"2017-05-04T13:00:00","end":"2017-05-04T15:00:00","title":"Faith Base Meeting ","eventDetails":"Apostolic Faith Church \nBishop Horace Smith \n","eventUrl":null,"contactDetails":"Officer Denise Gathings \n312-747-5109","location":"3823 S Indiana ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":3,"start":"2017-05-04T13:00:00","end":"2017-05-04T14:00:00","title":"District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":8,"start":"2017-05-03T19:00:00","end":"2017-05-03T20:00:00","title":"815/821 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Bruno's 4839 S. Harding","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":4,"start":"2017-05-03T19:00:00","end":"2017-05-03T20:00:00","title":"412 Community Beat Meeting","eventDetails":"Zion Lutheran Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"8455 S. Stony Island Ave.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":3,"start":"2017-05-03T19:00:00","end":"2017-05-03T20:00:00","title":"Beat Meeting 311 & 312","eventDetails":"Beat Meeting 311 & 312","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Bessie Coleman Library\r\n731 E. 63rd Street\r\nChicago, IL. 60637","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":16,"start":"2017-05-03T19:00:00","end":"2017-05-03T20:00:00","title":"1621 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"First Church of Forest Glen 5400 N. Lawler","modifiedDate":"2017-02-22T08:59:42"},{"calendarId":12,"start":"2017-05-03T19:00:00","end":"2017-05-03T20:00:00","title":"Beat Meeting 1221 MEETING ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"Smith Park 2526 W. Grand Ave.","modifiedDate":"2017-04-18T14:18:00"},{"calendarId":9,"start":"2017-05-03T19:00:00","end":"2017-05-03T20:00:00","title":"Beat 911, 921 Community Meeting","eventDetails":"Davis School Annex Building","eventUrl":null,"contactDetails":"009th District CAPS, 312-747-3501","location":"3050 W. 39th Place","modifiedDate":"2017-03-22T08:35:24"},{"calendarId":14,"start":"2017-05-03T18:30:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:40:34"},{"calendarId":6,"start":"2017-05-03T18:30:00","end":"2017-05-03T19:30:00","title":"Beat 622 Community Meeting","eventDetails":"Come lets discuss and resolve community concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"6th District Community Room 7808 S. Halsted St","modifiedDate":"2017-04-19T14:30:46"},{"calendarId":6,"start":"2017-05-03T18:30:00","end":"2017-05-03T19:30:00","title":"Beat 621 Community Meeting","eventDetails":"Come lets discuss and resolve community concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"6th District Community Room 7808 S. Halsted St","modifiedDate":"2017-04-19T14:30:36"},{"calendarId":15,"start":"2017-05-03T18:00:00","end":"2017-05-03T19:00:00","title":"Beat 1522/33 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Loretto Hospital\n645 S. Central, 6th Fl.\n","modifiedDate":"2017-01-03T14:39:59"},{"calendarId":14,"start":"2017-05-03T18:00:00","end":null,"title":"Beat Facilitator Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:40:40"},{"calendarId":8,"start":"2017-05-03T16:00:00","end":"2017-05-03T17:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"3420 W. 63rd Street","modifiedDate":"2017-03-29T15:19:38"},{"calendarId":18,"start":"2017-05-03T15:00:00","end":"2017-05-03T16:00:00","title":"20 Sector Hospitality Mtg","eventDetails":"Must Pre-Register","eventUrl":null,"contactDetails":"P.O. Guiseppe Incaprera","location":"She-Nanigans 16 W. Division","modifiedDate":"2017-04-19T14:33:00"},{"calendarId":3,"start":"2017-05-03T14:00:00","end":"2017-05-03T15:00:00","title":"Court Advocate Meeting","eventDetails":"003rd District Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":2,"start":"2017-05-03T13:00:00","end":"2017-05-03T14:30:00","title":"SMOKE OUT","eventDetails":"CAPS OFFICERS SET UP A STAND ON THE CORNER GIVING AWAY HOT DOG AND SNACKS FOR THE CITIZENS. INFORMATION ON COMMUNITY EVENTS AND CRIME PREVENTION PASSED OUT.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"5100 S. INDIANA AVE","modifiedDate":"2017-05-07T07:35:17"},{"calendarId":25,"start":"2017-05-03T10:00:00","end":"2017-05-03T11:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Subcommittee","eventUrl":null,"contactDetails":"P.O. Rodriguez A. \n312/746-5090 ","location":"5555 W. Grand Ave","modifiedDate":"2016-12-30T13:49:00"},{"calendarId":4,"start":"2017-05-02T19:00:00","end":"2017-05-02T20:00:00","title":"432 Community Beat Meeting","eventDetails":"St. Francis De Sales School","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"10155 S. Ewing Ave","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":24,"start":"2017-05-02T19:00:00","end":null,"title":"2412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"TBA","modifiedDate":"2016-12-07T10:16:31"},{"calendarId":22,"start":"2017-05-02T19:00:00","end":"2017-05-02T20:00:00","title":"Beat 2221 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Christ the King Church\n9225 S. Hamilton","modifiedDate":"2016-12-28T11:52:47"},{"calendarId":12,"start":"2017-05-02T19:00:00","end":"2017-05-02T20:00:00","title":"Beat Meeting 1225","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"Chicago Hope Academy 2108 W. Ogden","modifiedDate":"2017-04-18T14:28:00"},{"calendarId":11,"start":"2017-05-02T18:30:00","end":"2017-05-02T19:30:00","title":"Beat Meeting: 1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Brian Piccolo School 1041 N. Keeler ","modifiedDate":"2016-12-27T12:40:56"},{"calendarId":19,"start":"2017-05-02T18:30:00","end":"2017-05-02T19:30:00","title":"Beat 1913","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Courtenay School\n4420 N. Beacon","modifiedDate":"2016-12-06T12:51:40"},{"calendarId":25,"start":"2017-05-02T18:30:00","end":"2017-05-02T19:30:00","title":"2521 Beat Meeting","eventDetails":"2521 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Senior Suites\n2715 N. Cicero","modifiedDate":"2016-12-30T13:28:55"},{"calendarId":15,"start":"2017-05-02T18:30:00","end":"2017-05-02T19:30:00","title":"Beat 1531/32 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"West Branch Library\n4856 W. Chicago Ave\n","modifiedDate":"2017-01-03T14:40:09"},{"calendarId":25,"start":"2017-05-02T18:30:00","end":"2017-05-02T19:30:00","title":"2535 Beat Meeting","eventDetails":"2535 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Maternity BVM Church\n3647 W. North Ave.\n","modifiedDate":"2016-12-15T10:15:46"},{"calendarId":6,"start":"2017-05-02T18:30:00","end":"2017-05-02T19:30:00","title":"Beat 611 Community Meeting","eventDetails":"Discuss community concerns and issues","eventUrl":null,"contactDetails":"Contact the CAPS Office at 312-745-3641","location":"2nd Mt. Vernon Annex Church 2101 W 79th Street","modifiedDate":"2017-04-19T14:56:12"},{"calendarId":2,"start":"2017-05-02T18:30:00","end":"2017-03-02T19:30:00","title":"212/214 Beat Meeting","eventDetails":"Community and police coming together to resolve issues","eventUrl":null,"contactDetails":"Community Policing 312-747-5109","location":"3858 S. Cottage Grove","modifiedDate":"2017-03-31T12:24:14"},{"calendarId":10,"start":"2017-05-02T18:00:00","end":"2017-05-02T19:00:00","title":"Beat Meeting 1014","eventDetails":"Beat 1014 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Lawndale Church\n3839 W. Ogden Ave","modifiedDate":"2017-01-04T16:02:15"},{"calendarId":18,"start":"2017-05-02T18:00:00","end":"2017-05-02T19:00:00","title":"1814, 1824, & 1834 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"018th District","location":"59 W. North Ave","modifiedDate":"2017-04-19T14:28:01"},{"calendarId":9,"start":"2017-05-02T18:00:00","end":"2017-05-02T19:00:00","title":"Beat 924 Community Meeting","eventDetails":"Davis Square Park","eventUrl":null,"contactDetails":"009th District CAPS, 312-747-3501","location":"4430 S. Marshfield","modifiedDate":"2017-03-22T08:31:59"},{"calendarId":8,"start":"2017-05-02T17:00:00","end":"2017-05-02T18:00:00","title":"822/824 Beat Meeting","eventDetails":"Hernandez School","eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"3510 W. 55th Street","modifiedDate":"2017-04-06T16:06:37"},{"calendarId":8,"start":"2017-05-02T17:00:00","end":"2017-05-02T18:00:00","title":"822/824 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Hernandez Middle School at 3510 W. 55th St.","modifiedDate":"2017-05-23T16:46:04"},{"calendarId":25,"start":"2017-05-02T14:00:00","end":"2017-05-02T15:00:00","title":"Court Advocacy","eventDetails":"Court Advocacy","eventUrl":null,"contactDetails":"312-746-5090","location":"25th District Station\n5555 W. Grand Ave.\n","modifiedDate":"2016-12-15T10:13:51"},{"calendarId":11,"start":"2017-04-29T10:00:00","end":"2017-04-29T14:30:00","title":"First Time Home -Buyers ( Free Seminar)","eventDetails":"First Time Home -Buyers Seminar sponsor by the Housing Subcomittee of the North Lawndale Community Coordinating Council","eventUrl":null,"contactDetails":"011th District -CAPS 1.312.746.9841","location":"UCAN 3605 W. Fillmore Street","modifiedDate":"2017-04-03T16:13:01"},{"calendarId":15,"start":"2017-04-29T10:00:00","end":"2017-04-29T13:00:00","title":"15th District 2017 Block Club & Resource Fair","eventDetails":"Learn about how you can make a difference in your community and find out what resources are available to you!!","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Michele Clark H.S. 5101 W. Harrison","modifiedDate":"2017-05-30T11:35:02"},{"calendarId":15,"start":"2017-04-29T10:00:00","end":"2017-04-29T13:00:00","title":"15th District Block Club/Community Resource Fair","eventDetails":"Community Residents and Stakeholders will receive resources and educational information from various vendors to address quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office, 312-743-1495","location":"Michele Clark Harrison, 5101 W. Harrison","modifiedDate":"2017-05-30T13:12:33"},{"calendarId":11,"start":"2017-04-29T08:00:00","end":"2017-04-29T13:00:00","title":"Garfield Park Clean-up","eventDetails":"The Chicago Park District is Partnering with Com Ed, Ward 28th, 011th District CAPS in an effort to impact the park thru cleaning. Approximately 100 volunteers are expected. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"Garfield Park ","modifiedDate":"2017-03-29T16:33:01"},{"calendarId":18,"start":"2017-04-28T11:00:00","end":"2017-04-28T14:00:00","title":"Random Acts of Kindness Day","eventDetails":null,"eventUrl":null,"contactDetails":"018th District Community Relations Office","location":"018th District","modifiedDate":"2017-03-23T16:18:00"},{"calendarId":16,"start":"2017-04-27T19:00:00","end":"2017-04-27T20:00:00","title":"1634 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"St. Bartholomew Church Kreuger Hall 4910 W. Addison","modifiedDate":"2017-02-22T09:00:47"},{"calendarId":25,"start":"2017-04-27T18:30:00","end":"2017-04-27T19:30:00","title":"2514 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2514's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"St Ferdinand's3115 N. Mason","modifiedDate":"2017-06-26T13:38:27"},{"calendarId":7,"start":"2017-04-27T18:30:00","end":"2017-04-27T18:30:00","title":"Community Beat Meeting-Bt. 712","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"Sherwood Pk. 5701 s Shields","modifiedDate":"2017-02-08T12:19:58"},{"calendarId":20,"start":"2017-04-27T18:30:00","end":"2017-04-27T19:30:00","title":"Building Safer Communities ","eventDetails":"Join us for a presentation brought to you by Kimberly M. Foxx, The Cook County States Attorney's Community Justice Center in partnership with Swedish Covenant Hospital & 19th and 20th Districts of the Chicago Police Department. Learn strategies that make you safer and learn how to take a active role in keeping your community safer. Thursday, April 27, 2017 6:30pm to 7:30pm Swedish Covenant Hospital Anderson Pavilion Auditorium 2751 W. Winona","eventUrl":"http://chicago.everyblock.com/neighbor-events/apr27-building-safer-communities-8003639/","contactDetails":"CAPS 312-742-8770","location":"2751 W. Winona","modifiedDate":"2017-04-03T09:13:02"},{"calendarId":11,"start":"2017-04-27T18:00:00","end":"2017-04-27T19:00:00","title":"Beat Meeting : 1131-1132","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Department\n3151 W. Harrison Street\n","location":"Eloise McCoy Village Apt. 4650 W. Van Buren","modifiedDate":"2016-12-27T12:39:08"},{"calendarId":22,"start":"2017-04-27T14:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:27:03"},{"calendarId":1,"start":"2017-04-27T14:00:00","end":"2017-04-27T15:00:00","title":"CAPS 10 Sector Business Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381 or caps001district@chicagopolice.org","location":"Chicago Theater 175 N. State Street ","modifiedDate":"2017-03-13T13:50:11"},{"calendarId":22,"start":"2017-04-27T13:00:00","end":null,"title":"Beat Facilitators Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:27:16"},{"calendarId":2,"start":"2017-04-27T13:00:00","end":"2017-04-27T15:00:00","title":"CAPS PARTNERSHIP DAY","eventDetails":"OFFICERS AND CITIZENS COMING TOGETHER FOR FRIENDLY CONVERSATION AND REFRESHMENTS IN HONOR OF CAPS DAY. EVENT WILL TAKE PLACE IN THE 2ND DISTRICT.","eventUrl":null,"contactDetails":"CAPS OFFICE 312-745-4119","location":"5101 s. WENTWORTH","modifiedDate":"2017-05-07T07:35:52"},{"calendarId":22,"start":"2017-04-27T10:30:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:27:51"},{"calendarId":17,"start":"2017-04-26T19:30:00","end":"2017-04-26T20:30:00","title":"Beat Meeting for Beat 1711 & 1712","eventDetails":"Combined beat meeting for beat 1711 and beat 1712","eventUrl":null,"contactDetails":"Please call CAPS office for further information at (312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"Mayfair Church - 5020 N Pulaski","modifiedDate":"2017-02-15T18:30:44"},{"calendarId":8,"start":"2017-04-26T19:00:00","end":"2017-04-26T20:00:00","title":"835 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Wrightwood Library 8530 S. Kedzie","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":16,"start":"2017-04-26T19:00:00","end":"2017-04-26T20:20:00","title":"1624 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"Portage Park Senior Center 4100 N. Long ","modifiedDate":"2017-02-22T09:02:18"},{"calendarId":7,"start":"2017-04-26T18:30:00","end":"2017-04-26T19:30:00","title":"Community Beat Meeting-Bt. 715","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"Lindblom Pk. 6054 s Damen","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":9,"start":"2017-04-26T18:30:00","end":"2017-04-25T19:30:00","title":"Beat 914 Community Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"009 CAPS - 312-747-3501","location":"Chinatown Library, 2100 S. Wentworth","modifiedDate":"2017-03-21T12:41:43"},{"calendarId":3,"start":"2017-04-26T18:00:00","end":"2017-04-26T19:00:00","title":"Dac Meeting ","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station 7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-04-26T18:00:00","end":"2017-04-26T19:00:00","title":"2534 Beat Meeting","eventDetails":"2534 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"North /Grand H.S. \n4338 W. Wabansia\n","modifiedDate":"2016-12-30T11:11:35"},{"calendarId":14,"start":"2017-04-26T13:30:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:40:46"},{"calendarId":18,"start":"2017-04-26T13:00:00","end":"2017-04-26T14:30:00","title":"Child Abuse Awareness Table","eventDetails":null,"eventUrl":null,"contactDetails":"018th District 312-742-5778","location":"Lakeshore Park District 808 N. Lakeshore Drive","modifiedDate":"2017-03-23T16:13:00"},{"calendarId":15,"start":"2017-04-26T10:00:00","end":"2017-04-26T12:00:00","title":"Senior Meeting","eventDetails":"Senior Subcommittee Meeting / Senior Citizens related topics w/ Guest Speakers from various agencies and departments","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:40:21"},{"calendarId":15,"start":"2017-04-26T08:30:00","end":"2017-04-26T09:30:00","title":"Business Meeting","eventDetails":"Business owners of the 15th District meet with Community Organizer and discuss concerns of crime and ways to improve business related issues","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"MacArthur's Restaurant\n5412 W. Madison\n","modifiedDate":"2017-01-03T14:40:28"},{"calendarId":24,"start":"2017-04-25T19:00:00","end":null,"title":"2431 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"St. Jerome's Parish Center 1709 W. Lunt","modifiedDate":"2016-12-07T10:11:45"},{"calendarId":8,"start":"2017-04-25T19:00:00","end":"2017-04-25T21:00:00","title":"813/833 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"West Lawn Park 4233 W. 65th Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":16,"start":"2017-04-25T19:00:00","end":"2017-04-25T20:00:00","title":"1614 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"Salvation Army 8354 W. Foster","modifiedDate":"2017-02-22T09:04:37"},{"calendarId":9,"start":"2017-04-25T19:00:00","end":"2017-04-24T20:00:00","title":"Beat 922 and 923 Community Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"009 CAPS - 312-747-3501","location":"St. Simon Church, 5157 S. California","modifiedDate":"2017-03-21T12:42:22"},{"calendarId":20,"start":"2017-04-25T19:00:00","end":"2017-04-25T20:00:00","title":"Keepin it Real","eventDetails":"Join the Chicago Police 20th District in partnership with The Safer Foundation as we present \"Keepin it Real\", an informative talk about keeping your property safe from burglars. Meet real burglars as they tell you their own stories Learn some tips on how to avoid being burglarized Learn how to make your home safer","eventUrl":"http://chicago.everyblock.com/neighbor-events/apr25-keepin-real-8003628/","contactDetails":"CAPS 312-742-8770","location":"5400 N. Lincoln Ave","modifiedDate":"2017-04-03T09:13:02"},{"calendarId":3,"start":"2017-04-25T18:30:00","end":"2017-04-25T20:30:00","title":"003rd District Community Peace Circle","eventDetails":"003rd District Community Peace Circle","eventUrl":null,"contactDetails":"Sgt. Jointer\n003rd District\n7040 S. Cottage Grove\nChicago, IL 60637\n(312) 747-7004","location":"Lincoln Memorial Church\r\n6454 S. Champlain","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-04-25T18:30:00","end":"2017-04-25T19:30:00","title":"Community Beat Meeting-Bt. 711/713/714","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"007th District Community Room 1438 w 63rd st.","modifiedDate":"2017-02-08T12:20:37"},{"calendarId":25,"start":"2017-04-25T18:30:00","end":"2017-04-25T19:30:00","title":"2532 Beat Meeting","eventDetails":"2532 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"1511 N Long Ave","modifiedDate":"2016-12-15T10:34:13"},{"calendarId":11,"start":"2017-04-25T18:00:00","end":"2017-04-25T19:00:00","title":"Beat Meeting : 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2016-12-27T12:40:38"},{"calendarId":12,"start":"2017-04-25T18:00:00","end":"2017-04-25T19:00:00","title":"Beat Meeting 1232","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at 12th District, 1412 S. Blue Island, on the 4th Tuesday of the even months. ","modifiedDate":"2017-04-24T14:24:21"},{"calendarId":4,"start":"2017-04-25T18:00:00","end":"2017-04-25T19:00:00","title":"DAC","eventDetails":"Monthly DAC meeting","eventUrl":null,"contactDetails":"4th District CAPS offcie 312-747-1708","location":"2255 E 103rd st","modifiedDate":"2017-03-24T15:19:39"},{"calendarId":15,"start":"2017-04-25T18:00:00","end":"2017-04-25T19:00:00","title":"15th District Child Abuse/Criminal Sexual Assault Awareness Month","eventDetails":"Workshop educating parents and daycare staff on domestic violence associated with child abuse and criminal sexual assault hosted by the Domestic Violence Subcommittee","eventUrl":null,"contactDetails":"CAPS 312-743-1495","location":"Betty's Daycare 5725 W. Chicago Ave","modifiedDate":"2017-05-30T11:35:43"},{"calendarId":3,"start":"2017-04-25T14:00:00","end":"2017-04-25T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 60637\n(312) 747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":22,"start":"2017-04-25T10:30:00","end":null,"title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:28:14"},{"calendarId":18,"start":"2017-04-25T10:00:00","end":"2017-04-25T12:00:00","title":"Hands are for Hugging Winner Presentation","eventDetails":"018th District Community Relations Office","eventUrl":null,"contactDetails":".O. Ferguson 018th District 312.742.5778 ","location":"Cornerstone PreSchool 1111 N. Wells","modifiedDate":"2017-03-23T16:13:00"},{"calendarId":8,"start":"2017-04-25T10:00:00","end":"2017-04-25T13:59:00","title":"Senior Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"3420 W. 63rd Street","modifiedDate":"2017-03-29T15:21:03"},{"calendarId":18,"start":"2017-04-24T15:00:00","end":"2017-04-24T17:00:00","title":"Senior Summit","eventDetails":"Sponsored by Near North Unity Program","eventUrl":null,"contactDetails":"Near North Unity Program","location":"1111 N. Wells","modifiedDate":"2017-03-23T16:18:00"},{"calendarId":18,"start":"2017-04-24T12:00:00","end":"2017-04-25T14:00:00","title":"Senior Bowling","eventDetails":"RSVP 312.428.1883","eventUrl":null,"contactDetails":"Stamps-Rhine Center","location":"Diversey Bowling Alley 2211 W. Diversey ","modifiedDate":"2017-03-23T16:13:00"},{"calendarId":11,"start":"2017-04-22T17:00:00","end":"2017-04-22T21:00:00","title":"011th District Cotillion/Beautillion","eventDetails":"Chicago Police Department 11th District Presents 1st Annual Scholars/Scholarship Cotillion/Beautillion \"Celebrating Today's Youth\" ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"El Parais Bu-Sche 4628 W. Washington","modifiedDate":"2017-03-27T13:49:32"},{"calendarId":2,"start":"2017-04-22T10:00:00","end":"2017-04-22T14:00:00","title":"Earth Day Clean & Green","eventDetails":"Citizens coming together to clean and beautify the neighborhood and a resource fair .","eventUrl":null,"contactDetails":"312 747-5109 Community Organizer Treadwell","location":"300-400 E. 51st st","modifiedDate":"2017-06-28T23:10:56"},{"calendarId":3,"start":"2017-04-22T09:00:00","end":"2017-04-22T23:00:00","title":"Peer Jury Meeting","eventDetails":"Peer Jury Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"002nd District\r\n51st Wentworth","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":6,"start":"2017-04-22T09:00:00","end":"2017-04-22T12:00:00","title":"006th District - Clean & Green","eventDetails":"Cleaning vacant lot","eventUrl":null,"contactDetails":"Contact 006th District CAPS 312-745-3641","location":"8121 S Emerald Ave","modifiedDate":"2017-04-20T14:03:34"},{"calendarId":8,"start":"2017-04-22T09:00:00","end":"2017-04-22T13:00:00","title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"Community policing 312-747-8724","location":"155 W. 51st Street","modifiedDate":"2017-03-29T15:21:17"},{"calendarId":20,"start":"2017-04-20T19:00:00","end":"2017-04-20T20:00:00","title":"2024 Beat Meeting","eventDetails":"2024 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Margate Field House4921 N. Marine Dr.","modifiedDate":"2017-06-23T15:31:54"},{"calendarId":3,"start":"2017-04-20T19:00:00","end":"2017-04-20T20:00:00","title":"30 Sector Beat Meeting (331, 332, 333 & 334)","eventDetails":"30 Sector Beat Meeting (331, 332, 333 & 334)","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312)747-7004\n","location":"ABJ Community Service Center\r\n1818 E.71st St.\r\nChicago, IL. 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-04-20T19:00:00","end":"2017-04-20T20:00:00","title":"2524 Beat Meeting","eventDetails":"2524 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Our Lady of Grace\n2446 N. Ridgeway","modifiedDate":"2016-12-30T11:30:15"},{"calendarId":8,"start":"2017-04-20T19:00:00","end":"2017-04-20T18:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"4233 W. 65th Street","modifiedDate":"2017-03-29T15:21:35"},{"calendarId":14,"start":"2017-04-20T18:30:00","end":null,"title":"1433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Pulaski Park\n1419 W. Blackhawk","modifiedDate":"2017-01-02T08:40:52"},{"calendarId":7,"start":"2017-04-20T18:30:00","end":"2017-04-20T19:30:00","title":"Community Beat Meeting - Bt.735","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Gifts From God Ministry Church 1818 w 74th st.","modifiedDate":"2017-02-22T15:16:56"},{"calendarId":11,"start":"2017-04-20T18:00:00","end":"2017-04-20T19:00:00","title":"Beat Meeting: 1113,14,15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Department\n3151 W. Harrison Street\n","location":"St. Michaels's MBC 4106 W. Monroe","modifiedDate":"2016-12-27T12:39:30"},{"calendarId":8,"start":"2017-04-20T18:00:00","end":"2017-04-20T19:00:00","title":"Faith Based Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing","location":"3420 W. 63rd Street","modifiedDate":"2017-03-30T14:15:31"},{"calendarId":3,"start":"2017-04-20T14:00:00","end":"2017-04-20T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 60637\n(312)747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":17,"start":"2017-04-20T12:00:00","end":"2017-04-20T18:00:00","title":"Domestic Violence Resource Table ","eventDetails":"The 017th District Domestic Violence Sub-Committee will have a Information table at the report card pick-up at Schurz H.S.. There will be various resources available ","eventUrl":null,"contactDetails":"017th District CAPS office 312-742-4588","location":"Schurz HS 3601 N. Milwaukee","modifiedDate":"2017-03-12T14:16:20"},{"calendarId":17,"start":"2017-04-20T12:00:00","end":"2017-04-20T18:00:00","title":"Domestic Violence Resource Table","eventDetails":"The 017th District Domestic Violence Sub-Committee will have a Information table at the report card pick-up at Roosevelt H.S.. There will be various resources available.","eventUrl":null,"contactDetails":"017th District CAPS Office 312-742-4588","location":"Roosevelt H.S. 3436 W. Wilson ","modifiedDate":"2017-03-12T14:16:41"},{"calendarId":6,"start":"2017-04-20T10:00:00","end":"2017-04-20T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":"Meet to discuss topics on Domestic Violence and prevention","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-02-28T08:26:29"},{"calendarId":18,"start":"2017-04-20T08:00:00","end":"2017-04-20T10:00:00","title":"Career Day ","eventDetails":"Career Day at LaSalle Academy","eventUrl":null,"contactDetails":"LaSalle Language Academy","location":"LaSalle Academy 1734 N. Orleans","modifiedDate":"2017-03-23T15:58:01"},{"calendarId":17,"start":"2017-04-19T19:30:00","end":"2017-04-19T20:30:00","title":"Beat Meeting for Beat 1722 & 1723","eventDetails":"Combined beat meeting for beat 1722 and 1723","eventUrl":null,"contactDetails":"Please call CAPS office for further information at (312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski - 17th District Community Room","modifiedDate":"2017-02-15T18:31:22"},{"calendarId":3,"start":"2017-04-19T19:00:00","end":"2017-04-19T20:00:00","title":"20 Sector Beat Meeting (321, 322, 323 & 324)","eventDetails":"20 Sector Beat Meeting (321, 322, 323 & 324)","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District \n7040 S. Cottage Grove\nChicago, IL. 60637","location":"Manor Church 600 E. 73rd St. Chicago, IL. 60619","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":20,"start":"2017-04-19T19:00:00","end":"2017-04-19T20:00:00","title":"2013 Beat Meeting","eventDetails":"2013 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church5437 N. Clark St.","modifiedDate":"2017-06-23T15:32:07"},{"calendarId":8,"start":"2017-04-19T19:00:00","end":"2017-04-19T20:00:00","title":"823/825 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"008th District 3420 W. 63rd Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":14,"start":"2017-04-19T18:30:00","end":null,"title":"1434 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Bucktown Library\n1701 N. Milwaukee","modifiedDate":"2017-01-02T08:40:58"},{"calendarId":7,"start":"2017-04-19T18:30:00","end":"2017-04-19T19:30:00","title":"Community Beat Meeting - Bt. 733/734","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Salvation Army 845 w. 69th st.","modifiedDate":"2017-02-22T15:17:43"},{"calendarId":1,"start":"2017-04-19T18:30:00","end":"2017-04-19T19:30:00","title":"CAPS Beat 133 Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381 or caps001district@chicagopolice.org ","location":"Church 125 E. 26th Street ","modifiedDate":"2017-03-13T13:50:01"},{"calendarId":2,"start":"2017-04-19T18:30:00","end":"2017-04-19T19:30:00","title":"233/234/235 Beat Meeting","eventDetails":"Community and Police coming together to resolve community issues.","eventUrl":null,"contactDetails":"Community Policing 312-747-5109","location":"1526 E. 55TH STREET","modifiedDate":"2017-03-31T12:27:56"},{"calendarId":10,"start":"2017-04-19T18:00:00","end":"2017-04-19T19:00:00","title":"30 Sector Meeting","eventDetails":"30 Sector Meeting\n1031, 1032, 1033, 1034","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"10th District \nCommunity Room \n3315 W. Ogden Ave","modifiedDate":"2017-01-04T15:57:28"},{"calendarId":12,"start":"2017-04-19T18:00:00","end":"2017-04-19T18:00:00","title":"Beat Meeting 1234","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Harrison Park, 1824 S. Wood Street on the 3rd Wednesday of the even months. ","modifiedDate":"2016-10-20T14:16:07"},{"calendarId":9,"start":"2017-04-19T18:00:00","end":"2017-04-18T19:00:00","title":"Beat 925 Community Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"009 CAPS - 312-747-3501","location":"St. Gabe's Church, 4500 S. Wallace","modifiedDate":"2017-03-21T12:42:59"},{"calendarId":2,"start":"2017-04-19T15:00:00","end":"2017-04-19T17:00:00","title":"CHILD ABUSE AWARENESS EVENT","eventDetails":"INFORMATION ON CHILD ABUSE WILL BE GIVEN AT THE BRITE NEW MINDS DAYCARE.","eventUrl":null,"contactDetails":"002 CAPS OFFICE 312-747-4119","location":"112 E. 51ST ST","modifiedDate":"2017-04-24T09:13:01"},{"calendarId":18,"start":"2017-04-19T15:00:00","end":"2017-04-19T16:00:00","title":"10 Sector Hospitality Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Business Liaision Office P.O. G. Incaprera","location":"TBA","modifiedDate":"2017-03-23T15:53:01"},{"calendarId":17,"start":"2017-04-19T12:00:00","end":"2017-04-19T18:00:00","title":"Domestic Violence Resource Table","eventDetails":"The 017th District Domestic Violence Sub-Committee will have a Information table at the report card pick-up at Volta Elementary. There will be various resources available ","eventUrl":null,"contactDetails":"017th District CAPS office 312-742-4588","location":"Volta Elementary 4950 N. Avers","modifiedDate":"2017-03-12T14:17:14"},{"calendarId":17,"start":"2017-04-19T12:00:00","end":"2017-04-19T18:00:00","title":"Domestic Violence Resource Table ","eventDetails":"The 017th District Domestic Violence Sub-Committee with have an Information Table for Report Card pick-up at Haugan Elementary. There will be various resources avaliable ","eventUrl":null,"contactDetails":"017th District CAPS office 312-742-4500","location":"Haugan Magent 4540 N. Hamlin Ave","modifiedDate":"2017-03-12T14:17:02"},{"calendarId":6,"start":"2017-04-19T10:00:00","end":"2017-04-19T14:00:00","title":"006th District - Job Fair","eventDetails":"The Chicago Police Department 006th District Employment & Resource Fair","eventUrl":null,"contactDetails":"Contact the CAPS Office 312-745-3614","location":"006th District 7808 S Halsted Street","modifiedDate":"2017-04-19T14:48:00"},{"calendarId":18,"start":"2017-04-19T09:30:00","end":"2017-04-19T10:30:00","title":"Coffee with the Commander","eventDetails":"Eva's Cafe","eventUrl":null,"contactDetails":"018th District Community Relations Office","location":"Eva's Cafe 1447 N. Sedgwick","modifiedDate":"2017-06-28T23:08:03"},{"calendarId":8,"start":"2017-04-18T19:00:00","end":"2017-04-18T21:00:00","title":"811 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Good Shepherd Church 5550 S. Merrimac","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":3,"start":"2017-04-18T19:00:00","end":"2017-04-18T19:00:00","title":"10 Sector Beat Meeting (311, 312, 313 & 314)","eventDetails":"10 Sector Beat meeting (311, 312, 313 & 314)","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312)747-7004\n","location":"003rd District\r\n7040 S. Cottage Grove\r\nChicago, IL. 60637","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":24,"start":"2017-04-18T19:00:00","end":null,"title":"2423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Touhy Park 7348 N. Paulina","modifiedDate":"2016-12-07T10:13:36"},{"calendarId":5,"start":"2017-04-18T19:00:00","end":"2017-04-18T20:00:00","title":"Commander Douglas Open Dialogue","eventDetails":"Altgeld Gardens CYC Building","eventUrl":null,"contactDetails":"Margie Reid CAPS 312 747 3100","location":"951 E 132nd Pl","modifiedDate":"2017-03-21T11:28:00"},{"calendarId":22,"start":"2017-04-18T18:30:00","end":null,"title":"Beat 2222 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Brainerd Park\n1246 W. 92nd St","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-04-18T18:30:00","end":"2017-04-18T19:30:00","title":"Community Beat Meeting - Bt. 731/732","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Hamilton Park 513 w. 72nd st.","modifiedDate":"2017-02-22T15:17:19"},{"calendarId":1,"start":"2017-04-18T18:30:00","end":"2017-04-18T19:30:00","title":"CAPS Beat 131/132 Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381 or caps001district@chicagopolice.org","location":"1st District Community Room 1718 S. State Street","modifiedDate":"2017-03-13T13:49:52"},{"calendarId":2,"start":"2017-04-18T18:30:00","end":"2017-04-18T19:30:00","title":"221/223 Beat Meeting","eventDetails":"Community and Police coming together to resolve community issues.","eventUrl":null,"contactDetails":"Community Policing 312-747-5109","location":"4314 S. Cottage Grove","modifiedDate":"2017-03-31T12:29:06"},{"calendarId":11,"start":"2017-04-18T18:00:00","end":"2017-04-18T19:00:00","title":"Beat Meeting: 1133,34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"Homan Square Community Center 3559 W. Arthington ","modifiedDate":"2016-12-27T12:40:04"},{"calendarId":9,"start":"2017-04-18T18:00:00","end":"2017-04-18T19:00:00","title":"Beat 932, 934 and 935 Community Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"009 CAPS - 312-747-3501","location":"Westhaven Senior Homes, 850 W. Garfield","modifiedDate":"2017-03-21T12:43:34"},{"calendarId":11,"start":"2017-04-18T17:00:00","end":"2017-04-18T19:30:00","title":"Bringing Back Community ","eventDetails":"Join a casual discussion around food to share your thoughts on the violence plaguing the West Humboldt Park Community. Join our Youth and adult panels in asking questions and become part of the solution that can help our community save the lives of young people. ","eventUrl":null,"contactDetails":"Mrs. Williams 1.773.517.5108","location":"Kelly Hall YMCA 824 N. Hamlin Ave.","modifiedDate":"2017-03-27T14:33:00"},{"calendarId":18,"start":"2017-04-18T14:00:00","end":"2017-04-18T15:00:00","title":"Child Abuse Awareness Table","eventDetails":"018th District Community Relations Office ","eventUrl":null,"contactDetails":"018th District Community Relations Office 312.742.5778","location":"Seward Park District 375 W. Elm","modifiedDate":"2017-03-23T15:43:01"},{"calendarId":16,"start":"2017-04-18T13:00:00","end":"2017-04-18T15:00:00","title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Jennene Whalen (312)742-4521 CAPS016District@chicagopolice.org","location":"5151 N. Milwaukee","modifiedDate":"2017-02-22T09:05:53"},{"calendarId":9,"start":"2017-04-18T13:00:00","end":"2017-03-18T15:00:00","title":"seniors meeting","eventDetails":"senior meeting community room","eventUrl":null,"contactDetails":"contact 9th district caps for more info. 312 747-3501","location":"9th district station 3120 S. Halsted","modifiedDate":"2017-03-21T12:43:56"},{"calendarId":17,"start":"2017-04-18T11:00:00","end":"2017-04-18T13:00:00","title":"Senior Subcommittee Meeting ","eventDetails":"Monthly Senior Citizen Meeting ","eventUrl":null,"contactDetails":"Please call CAPS office for further information at (312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski - 17th District Community Room","modifiedDate":"2017-03-01T14:13:35"},{"calendarId":18,"start":"2017-04-18T10:00:00","end":"2017-04-18T12:00:00","title":"Hands are for Hugging Part II","eventDetails":"018th District Community Relations Office","eventUrl":null,"contactDetails":"018th District 312.742.5778","location":"Cornerstone Pre-School 1111 N. Wells","modifiedDate":"2017-03-23T15:48:00"},{"calendarId":11,"start":"2017-04-18T10:00:00","end":"2017-04-18T12:30:00","title":"Melody's 2nd Annual Spring Clean Up Day ","eventDetails":"Melody's 2nd Annual Spring Clean Up Day ","eventUrl":null,"contactDetails":"011th District -CAPS 1.312.746.9841","location":"3937 W. Wilcox","modifiedDate":"2017-04-03T16:13:00"},{"calendarId":4,"start":"2017-04-17T18:00:00","end":"2017-04-17T19:00:00","title":"Clergy Meeting","eventDetails":"Monthly Clergy Meeting","eventUrl":null,"contactDetails":"4th District CAPS offcie 312-747-1708","location":"2255 E 103rd st","modifiedDate":"2017-03-24T15:21:44"},{"calendarId":25,"start":"2017-04-15T13:00:00","end":"2017-04-15T15:00:00","title":"Youth Exploring","eventDetails":"Youth Exploring","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-15T10:21:01"},{"calendarId":7,"start":"2017-04-15T13:00:00","end":"2017-04-15T14:00:00","title":"007 District Community Feeding","eventDetails":"In collaboration with Love Unlimited Ministries, Pastor Hayden and community stakeholder.","eventUrl":null,"contactDetails":"P.O. J. Wilson 312-747-8223","location":"1844 W 63rd Street","modifiedDate":"2017-04-07T08:11:34"},{"calendarId":6,"start":"2017-04-15T11:00:00","end":"2017-04-15T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-02-28T08:26:40"},{"calendarId":15,"start":"2017-04-15T11:00:00","end":"2017-04-15T12:30:00","title":"15th District Law Enforcement Explorers Wanted!","eventDetails":"15th District Explorers Wanted (ages 11-20) - Mark your calendars and please join us!","eventUrl":null,"contactDetails":"CAPS 312-743-1495","location":"15th District Community Room","modifiedDate":"2017-05-30T11:35:55"},{"calendarId":15,"start":"2017-04-15T10:00:00","end":"2017-04-15T12:00:00","title":"Block Club Training","eventDetails":"Community Organizer and residents partner on solving chronic crime and disorders and strategize together for solutions as block clubs and neighborhood watches are created.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:40:35"},{"calendarId":18,"start":"2017-04-15T10:00:00","end":"2017-03-15T13:00:00","title":"Peer Jury & Explorers Scouts","eventDetails":"018th District Community Room- Please register with P.O. Ferguson 312.742.5778","eventUrl":null,"contactDetails":"Community Relations Office","location":"018th District 1160 N. Larrabee","modifiedDate":"2017-03-23T16:19:33"},{"calendarId":20,"start":"2017-04-15T10:00:00","end":"2017-04-15T12:00:00","title":"20th District Easter Egg Hunt and Bake Sale","eventDetails":"Join us at the Chicago Police 20th District Easter Egg Hunt and Bake Sale Kids under 12 years old, arts and crafts, games, egg hunt, and bake sale. Bags will be provided for collecting egg, no outside bags please. 10 am to noon.","eventUrl":"http://chicago.everyblock.com/neighbor-events/apr15-20th-district-easter-egg-hunt-and-bake-sale-8003611/","contactDetails":"CAPS 312-742-8770","location":"5400 N. Lincoln Ave","modifiedDate":"2017-04-03T09:13:02"},{"calendarId":7,"start":"2017-04-15T10:00:00","end":"2017-04-15T12:00:00","title":"Englewood Pastors Food Pantry","eventDetails":"Weekly Community Food Pantry","eventUrl":null,"contactDetails":"Pastor EK Brown 773-737-1009","location":"6000 S Ashland, Believe in Thine Heart Ministries","modifiedDate":"2017-04-07T08:11:53"},{"calendarId":17,"start":"2017-04-15T09:00:00","end":"2017-04-15T13:00:00","title":"Peer Jury/Youth Beat Meeting ","eventDetails":"Monthly Peer Jury Meeting","eventUrl":null,"contactDetails":"Please call CAPS office for further information at (312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski - 17th District Community Room","modifiedDate":"2017-03-01T14:14:16"},{"calendarId":7,"start":"2017-04-15T09:00:00","end":"2017-04-15T11:00:00","title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. J. Shelton 312-747-6722","location":"5101 S Wentworth, 002nd District","modifiedDate":"2017-04-07T08:12:09"},{"calendarId":11,"start":"2017-04-14T19:00:00","end":"2017-04-14T20:00:00","title":"Light The Night ","eventDetails":"Community Easter EGG Hunt (Candy.Prizes.Food.Fun, plus Pictures With Easter Bunny!)","eventUrl":null,"contactDetails":"011th District -CAPS 1.312.746.9841","location":"Praise Chapel Chicago 3517 W. Grand Ave.","modifiedDate":"2017-04-03T16:13:00"},{"calendarId":11,"start":"2017-04-14T16:00:00","end":"2017-04-14T18:00:00","title":"Easter Egg Hunt Kells Park ","eventDetails":"Kells Park Community Council is sponsoring a Easter Egg Hunt","eventUrl":null,"contactDetails":"Nita 1.773.533.5570 Ext. 4803","location":"Kells Park 3201 W. Chicago Ave.","modifiedDate":"2017-03-17T13:00:40"},{"calendarId":11,"start":"2017-04-14T16:00:00","end":"2017-04-14T18:00:00","title":"Kells Park Easter Party ","eventDetails":"Free Food And Free Easter Baskets- Loads of Games, Easter Egg Hunt, Bunny Photos & More ","eventUrl":null,"contactDetails":"Nita 773.533.5570","location":"3201 W. Chicago ","modifiedDate":"2017-03-29T11:38:01"},{"calendarId":7,"start":"2017-04-14T14:00:00","end":"2017-04-14T18:00:00","title":"Youth Explorers Chicago Fire Soccer","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Michelle Millison 312-747-6722","location":"7005 S Harlem, Bridgeview, IL","modifiedDate":"2017-04-07T08:12:19"},{"calendarId":15,"start":"2017-04-14T11:00:00","end":"2017-04-14T16:00:00","title":"15th District Westside Young Adult Career Exploration Fair","eventDetails":"One day event to provide resources and net-working opportunities for young adults (ages 16-24) who want to learn about various career opportunities, employment and financial guidance.","eventUrl":null,"contactDetails":"Info/Register 773-413-3370","location":"415 N Laramie Ave. Chicago","modifiedDate":"2017-05-30T13:12:49"},{"calendarId":7,"start":"2017-04-14T10:00:00","end":"2017-04-15T12:30:00","title":"Stations of the Cross Walk","eventDetails":"A 14-step Catholic devotion. The walk begins at St. Benedict the African","eventUrl":null,"contactDetails":"Father Jones 773-844-1450","location":"340 W 66th Street","modifiedDate":"2017-04-07T08:12:30"},{"calendarId":14,"start":"2017-04-13T19:00:00","end":null,"title":"1422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Habitat Company\n1402 N. Kedzie","modifiedDate":"2017-01-02T08:41:04"},{"calendarId":4,"start":"2017-04-13T19:00:00","end":"2017-04-13T20:00:00","title":"421 & 422 Beat Meeting","eventDetails":"Labor of Love Apostolic Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"2800 E. 79th st. ","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":8,"start":"2017-04-13T19:00:00","end":"2017-04-13T21:00:00","title":"814 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Vittum Park Fieldhouse 5010 W. 50th St","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":16,"start":"2017-04-13T19:00:00","end":"2017-04-13T20:20:00","title":"1632 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"Schorsch Village Hall 6940 W. Belmont","modifiedDate":"2017-02-22T09:14:33"},{"calendarId":15,"start":"2017-04-13T18:30:00","end":"2017-04-13T19:30:00","title":"Beat 1513S CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"George R. Clarke School\n1045 S. Monitor\n","modifiedDate":"2017-01-03T14:40:42"},{"calendarId":7,"start":"2017-04-13T18:30:00","end":"2017-04-13T19:30:00","title":"Community Beat Meeting-Bt. 724/725","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt.Fraction @312-747-6722","location":"Ogden Pk. 6500 s Racine","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":22,"start":"2017-04-13T18:30:00","end":null,"title":"2213 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Ridge Park \n9625 S. Longwood Dr","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":1,"start":"2017-04-13T18:30:00","end":"2017-04-13T19:30:00","title":"CAPS 10 Sector Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381 or caps001district@chicagopolice.org","location":"Condo Building 130 N. Garland Court ","modifiedDate":"2017-03-13T13:49:41"},{"calendarId":2,"start":"2017-04-13T18:30:00","end":"2017-04-13T19:30:00","title":"225/231/232 Beat Meeting","eventDetails":"Community and Police coming together to resolve community issues.","eventUrl":null,"contactDetails":"Community Policing 312-747-5109","location":"119 E. 55th St. (Garfield)","modifiedDate":"2017-04-12T14:49:52"},{"calendarId":10,"start":"2017-04-13T18:00:00","end":"2017-04-13T19:00:00","title":"20 Sector Meeting","eventDetails":"20 Sector Meeting\n1021, 1022, 1023, 1024","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"10th District\nCommunity Room\n3315 W. Ogden Ave","modifiedDate":"2017-01-04T16:01:11"},{"calendarId":11,"start":"2017-04-13T18:00:00","end":"2017-04-13T19:00:00","title":"Beat Meeting: 1122,23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841Chicago Police Station3151 W. Harrison Street","location":"3333 W. Maypole","modifiedDate":"2017-06-28T23:11:19"},{"calendarId":12,"start":"2017-04-13T18:00:00","end":"2017-04-13T19:00:00","title":"Beat Meeting 1214","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. The meeting on the 2nd Thursday of the even months.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"Bennett Day School 955 W. Grand","modifiedDate":"2017-02-08T16:06:09"},{"calendarId":9,"start":"2017-04-13T18:00:00","end":"2017-04-13T19:00:00","title":"Beat 931 and 933 Community Meeting","eventDetails":"NEW LOCATION","eventUrl":null,"contactDetails":"009 CAPS - 312-747-3501","location":"Cornell Square Park, 1809 W. 50th St.","modifiedDate":"2017-03-21T12:44:21"},{"calendarId":1,"start":"2017-04-13T15:00:00","end":"2017-04-13T16:00:00","title":"1st District DAC Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381 or caps001district@chicagopolice.org","location":"1st District Community Room 1718 S. State Street ","modifiedDate":"2017-03-14T14:37:13"},{"calendarId":18,"start":"2017-04-13T15:00:00","end":"2017-04-13T16:00:00","title":"Curfew Information Session","eventDetails":"018th District Community Relations Office","eventUrl":null,"contactDetails":"018th District 312.742.5778","location":"412 W. Chicago- Jessie White Center","modifiedDate":"2017-03-23T15:38:00"},{"calendarId":7,"start":"2017-04-13T15:00:00","end":"2017-04-13T16:00:00","title":"Clean & Green Meeting","eventDetails":"Updates on Citywide Clean & Green scheduled for Saturday, 22 April 2017.","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"730 W 69th Street","modifiedDate":"2017-04-07T08:12:50"},{"calendarId":6,"start":"2017-04-13T10:00:00","end":"2017-04-13T11:00:00","title":"Faith Based Subcommittee Meeting","eventDetails":"Join the faith based leaders as we connect with our community","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"6th Police Station 7808 S. Halsted St.","modifiedDate":"2017-02-28T08:27:30"},{"calendarId":4,"start":"2017-04-13T09:00:00","end":"2017-04-13T16:00:00","title":"3 on 3 Cops and Kids Basketball Tournament","eventDetails":"3 on 3 Basketball Tournament ","eventUrl":null,"contactDetails":"004th District CAPS office 312-747-1708","location":"Bessemer Park 8930 S Muskegon","modifiedDate":"2017-03-24T15:20:14"},{"calendarId":8,"start":"2017-04-12T19:00:00","end":"2017-04-12T21:00:00","title":"812 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Clearing Library 6423 W. 63rd Place","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":19,"start":"2017-04-12T19:00:00","end":"2017-04-12T20:00:00","title":"Beat 1914","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Clarendon Park\n4501 N. Clarendon","modifiedDate":"2016-12-06T12:52:52"},{"calendarId":14,"start":"2017-04-12T19:00:00","end":null,"title":"1424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Wicker Park\n1425 N. Damen","modifiedDate":"2017-01-02T08:41:10"},{"calendarId":25,"start":"2017-04-12T19:00:00","end":"2017-04-12T20:00:00","title":"DAC Meeting","eventDetails":"DAC Meeting and Officer of the Month Awards.","eventUrl":null,"contactDetails":"312-746-5090","location":"25th District - 5555 W. Grand Ave.","modifiedDate":"2017-04-10T13:58:35"},{"calendarId":4,"start":"2017-04-12T19:00:00","end":"2017-04-12T20:00:00","title":"413 Beat Community Meeting","eventDetails":"St. Ailbe Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"9037 S. Harper Ave.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":20,"start":"2017-04-12T19:00:00","end":"2017-04-12T20:00:00","title":"2012 Beat Meeting","eventDetails":"2012 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"St. Gregory Church1609 W. Gregory Street","modifiedDate":"2017-06-23T15:32:19"},{"calendarId":17,"start":"2017-04-12T19:00:00","end":"2017-04-12T20:00:00","title":"Beat Meeting for Beat 1732 & 1733","eventDetails":"Combined beat meeting for beat 1732 and 1733","eventUrl":null,"contactDetails":"(312) 742-4588 or CAPS.017district@chicagopolice.org","location":"3546 W Addison/ Athletic Field Park","modifiedDate":"2017-03-01T14:20:21"},{"calendarId":16,"start":"2017-04-12T19:00:00","end":"2017-04-12T20:00:00","title":"1622 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"Dunham Park 4638 N. Melvina","modifiedDate":"2017-02-22T09:17:41"},{"calendarId":9,"start":"2017-04-12T19:00:00","end":"2017-04-12T20:00:00","title":"Beat 912 Community Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"009 CAPS - 312-747-3501","location":"St. Maurice Church, 3625 S. Hoyne","modifiedDate":"2017-03-21T12:44:45"},{"calendarId":7,"start":"2017-04-12T18:30:00","end":"2017-04-12T19:30:00","title":"Community Beat Meeting-Bt. 726","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt.Fraction @312-747-6722","location":"Lindblom Pk. 6054 s Damen","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":1,"start":"2017-04-12T18:30:00","end":"2017-04-12T19:30:00","title":"CAPS 20 Sector Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381 or caps001district@chicagopolice.org ","location":" University Center 525 S. State Street ","modifiedDate":"2017-03-13T13:47:39"},{"calendarId":2,"start":"2017-04-12T18:30:00","end":"2017-04-12T19:30:00","title":"213/215/224 Beat Meeting","eventDetails":"Community and Police coming together to resolve community issues.","eventUrl":null,"contactDetails":"Community Policing 312-747-5109","location":"4058 S. Michigan Ave","modifiedDate":"2017-03-31T12:30:48"},{"calendarId":18,"start":"2017-04-12T15:00:00","end":"2017-04-12T16:00:00","title":"Near North Security Meeting","eventDetails":"Must register 312.742.5778 Community Relations Office","eventUrl":null,"contactDetails":"Must register P.O. Robinson ","location":"1160 N. Larrabee","modifiedDate":"2017-03-15T13:13:00"},{"calendarId":18,"start":"2017-04-12T15:00:00","end":"2017-04-12T16:00:00","title":"30 Sector Hospitality Meeting","eventDetails":"Highline","eventUrl":null,"contactDetails":"P.O. G. Incaprera ","location":"169 W. Kinzie","modifiedDate":"2017-03-15T13:13:00"},{"calendarId":22,"start":"2017-04-12T13:30:00","end":null,"title":"Court Advocacy","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:30:12"},{"calendarId":14,"start":"2017-04-12T13:30:00","end":null,"title":"Domestic Violence Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:44:22"},{"calendarId":7,"start":"2017-04-12T13:00:00","end":"2017-04-12T14:00:00","title":"Randolph Elementary School Reading","eventDetails":"007th District Police reading with the youth of Randolph Elementary School","eventUrl":null,"contactDetails":"P.O. J. Shelton","location":"7316 S Hoyne","modifiedDate":"2017-04-07T08:13:06"},{"calendarId":18,"start":"2017-04-12T11:30:00","end":"2017-04-12T13:30:00","title":"Senior & Explorer Scouts Red Cross CPR & Emergency Preparedness Workshop","eventDetails":"018th District Community Relations Office","eventUrl":null,"contactDetails":"018th District 312.742.5778","location":"Flannery Apts. 1507 N. Clybourn","modifiedDate":"2017-03-23T15:33:00"},{"calendarId":6,"start":"2017-04-12T11:00:00","end":"2017-04-12T12:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Meet with seniors on crime tip prevention and plan fun fillled events","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-02-28T08:27:37"},{"calendarId":20,"start":"2017-04-12T10:00:00","end":"2017-04-12T11:00:00","title":"Seniors Meeting","eventDetails":"Seniors Meeting, a monthly meeting featuring activities and informative talks on seniors related topics. Contact CAPS for details.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District Community Room 5400 N. Lincoln Ave ","modifiedDate":"2017-06-23T14:14:03"},{"calendarId":11,"start":"2017-04-12T10:00:00","end":"2017-04-12T16:59:00","title":"Health & Safety Resource Fair ","eventDetails":"Health & Safety Resource Fair Family Focus","eventUrl":null,"contactDetails":"011th District -CAPS","location":"3559 W. Arthington ","modifiedDate":"2017-04-03T16:13:00"},{"calendarId":15,"start":"2017-04-12T10:00:00","end":"2017-04-12T13:00:00","title":"15th District Shredding Event","eventDetails":"Bring all unwanted papers, documents and other related items that you would like to be shredded. Free of charge.","eventUrl":null,"contactDetails":"CAPS 312-743-1495","location":"5701 W. Madison (East Parking Lot)","modifiedDate":"2017-05-30T11:36:12"},{"calendarId":7,"start":"2017-04-12T00:00:00","end":"2017-04-12T23:59:00","title":"Youth Explorers Camp Boys/Girls Union League","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Michelle Millison 312-747-6722","location":"Wisconsin","modifiedDate":"2017-04-07T08:13:45"},{"calendarId":22,"start":"2017-04-11T19:00:00","end":null,"title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Robichaux Park\n403 W. 93rd St","modifiedDate":"2016-12-28T10:31:01"},{"calendarId":12,"start":"2017-04-11T19:00:00","end":"2017-04-11T20:00:00","title":"Beat Meeting 1222","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Above and Beyond Family Recovery Center, 2942 W. Lake St., on the 2nd Tuesday of the even months.","modifiedDate":"2016-10-20T14:16:34"},{"calendarId":8,"start":"2017-04-11T19:00:00","end":"2017-04-11T20:00:00","title":"831/832 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Marquette Park 6734 S. Kedzie","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":4,"start":"2017-04-11T19:00:00","end":"2017-04-11T20:00:00","title":"424 Community Beat Meeting","eventDetails":"Our Lady of Guadalupe","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"3200 E. 91st St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":24,"start":"2017-04-11T19:00:00","end":null,"title":"2411 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Indian Boundary Park 2500 W. Lunt","modifiedDate":"2016-12-07T10:17:30"},{"calendarId":20,"start":"2017-04-11T19:00:00","end":"2017-04-11T20:00:00","title":"2022 Beat Meeting","eventDetails":"2022 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Broadway Armory5917 N. Broadway","modifiedDate":"2017-06-23T15:32:33"},{"calendarId":5,"start":"2017-04-11T19:00:00","end":"2017-04-11T20:00:00","title":"Commander Douglas Open Dialogue","eventDetails":"New Deliverance Church","eventUrl":null,"contactDetails":"Margie Reid-CAPS 312 747 3100","location":"11200 S State St","modifiedDate":"2017-03-21T11:28:00"},{"calendarId":11,"start":"2017-04-11T18:30:00","end":"2017-04-11T19:30:00","title":"Beat Meeting: 1124-25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Station\n3151 W. Harrison Street\n","location":"JLM Abundant Life Center 2622 W. Jackson","modifiedDate":"2016-12-27T12:40:20"},{"calendarId":7,"start":"2017-04-11T18:30:00","end":"2017-04-11T19:30:00","title":"Community Beat Meeting-Bt. 722/723","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt.Fraction @312-747-6722","location":"Kennedy-King College 740 w 63rd st","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":15,"start":"2017-04-11T18:30:00","end":"2017-04-11T19:30:00","title":"Beat 1511/24 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Hope Community Church\n5900 W. Iowa\n","modifiedDate":"2017-01-03T14:40:49"},{"calendarId":9,"start":"2017-04-11T18:30:00","end":"2017-04-11T18:30:00","title":"Beat 913 and 915 Community Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"009 CAPS - 312-747-3501","location":"009th District Community Room, 3120 S. Halsted","modifiedDate":"2017-03-21T12:45:16"},{"calendarId":2,"start":"2017-04-11T18:30:00","end":"2017-04-11T19:30:00","title":"222 Beat Meeting","eventDetails":"Community and Police coming together to resolve community issues.","eventUrl":null,"contactDetails":"Community Policing 312-747-5109","location":"4434 S. lake Park","modifiedDate":"2017-03-31T12:31:39"},{"calendarId":15,"start":"2017-04-11T12:00:00","end":"2017-04-11T14:00:00","title":"15th District Austin Mobilization Team","eventDetails":"BLOCK CANVASS - Foster partnerships and opportunities which serve the community, promote learning, encourage wellness, and inspire conversations about the quality of life issues in the Austin Community.","eventUrl":null,"contactDetails":"CAPS 312-743-1495","location":"Helping Hand Church 538 N. Lavergne Ave","modifiedDate":"2017-05-30T11:36:22"},{"calendarId":18,"start":"2017-04-11T11:30:00","end":"2017-04-11T12:30:00","title":"Senior & Explorer Scouts Fraud/Identity Theft Workshop ","eventDetails":"018th District Community Relations Office 312.742.5778","eventUrl":null,"contactDetails":"Senior SubCommittee","location":"Zelda Ormes 116 W. Elm","modifiedDate":"2017-03-23T15:38:00"},{"calendarId":22,"start":"2017-04-11T10:00:00","end":null,"title":"Clergy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:28:24"},{"calendarId":6,"start":"2017-04-11T10:00:00","end":"2017-04-11T11:00:00","title":"Business Subcommittee meeting","eventDetails":"Meet with local businesses as we plan future events to foster a safe community","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-02-28T08:27:20"},{"calendarId":11,"start":"2017-04-11T10:00:00","end":"2017-04-15T12:00:00","title":"Spring Break Flag Football Skills Week ","eventDetails":"Chicago Park District & 11th District CAPS Office in partnership presents Spring Break Flag Football Skills Week April 11-15 10AM-NOON For Ages 8-13","eventUrl":null,"contactDetails":"Caps 011th District 1.312.746.9841","location":"Altgeld Park 515 S. Washtenaw Ave. 1.312.746.5001","modifiedDate":"2017-03-17T13:01:10"},{"calendarId":18,"start":"2017-04-11T10:00:00","end":"2017-04-11T12:00:00","title":"Curfew Information Session","eventDetails":"018th District Community Relations Office 312.742.5778","eventUrl":null,"contactDetails":"018th District Community Relations Office","location":"310 W. Division Near North Library","modifiedDate":"2017-03-23T15:28:00"},{"calendarId":7,"start":"2017-04-11T09:00:00","end":"2017-04-13T14:00:00","title":"Spring Break Hair Braiding Workshop","eventDetails":"2 Day Beginners Braiding Workshop for Ages 13 - 18 at Altogether Lovely Salon, 773-776-7494.","eventUrl":null,"contactDetails":"P.O. J. Wilson 312-747-8223","location":"1841 W 63rd Street","modifiedDate":"2017-04-07T08:13:57"},{"calendarId":6,"start":"2017-04-11T06:00:00","end":"2017-02-11T07:00:00","title":"Court Advocacy Meeting","eventDetails":"Track and learn about the court process, civil and criminal","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-02-28T08:27:47"},{"calendarId":19,"start":"2017-04-10T18:30:00","end":"2017-04-10T19:30:00","title":"Beat 1934 & 1935","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"2nd Unitarian Church\n656 W. Barry","modifiedDate":"2016-12-06T12:51:58"},{"calendarId":2,"start":"2017-04-10T18:30:00","end":"2017-04-10T19:30:00","title":"211 Beat Meeting","eventDetails":"Community and Police coming together to resolve community issues.","eventUrl":null,"contactDetails":"Community Policing/ 312-747-5109","location":"3240 S. Indiana","modifiedDate":"2017-03-31T12:32:24"},{"calendarId":15,"start":"2017-04-10T15:00:00","end":"2017-04-10T16:00:00","title":"Domestic Violence Meeting ","eventDetails":"Domestic Violence Subcommittee Meeting/ Subcommittee Members discuss and plan upcoming events for Domestic Violence Victims and Promote Awareness.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:40:56"},{"calendarId":18,"start":"2017-04-10T11:00:00","end":"2017-04-10T13:00:00","title":"Senior & Explorer Scouts Bingo/ CFD Fire Safety Workshop","eventDetails":"Child Abuse Awareness Table","eventUrl":null,"contactDetails":"Stamps -Rhine Center","location":"Stamps Rhine Center 1327 N. Larrabee","modifiedDate":"2017-03-23T15:23:00"},{"calendarId":7,"start":"2017-04-10T11:00:00","end":"2017-04-13T16:00:00","title":"Good Hope Spring Break","eventDetails":"Food, refreshments, games and spirit theme days for Ages 10 - 17. ","eventUrl":null,"contactDetails":"P.O. J. Wilson & J. Shelton","location":"7101 S. Uninon ","modifiedDate":"2017-04-07T08:14:09"},{"calendarId":7,"start":"2017-04-09T17:00:00","end":"2017-04-09T19:30:00","title":"God's Gift Ministry Anniversary Celebration","eventDetails":"God's Gift Ministry Anniversary Celebration, Pastor Gwen Appleberry","eventUrl":null,"contactDetails":"P.O. J. Shelton 312-747-6722","location":"6549 S Halsted","modifiedDate":"2017-04-07T08:14:18"},{"calendarId":11,"start":"2017-04-08T18:00:00","end":"2017-04-08T20:00:00","title":"The Promise Birth To Glory Stage Play","eventDetails":"The Promise Birth To Glory Stage Play Tickets: $10.00 per person and $8.00 Children 11 & under. More Info. Victoria Allen 1.773.719.0542","eventUrl":null,"contactDetails":"Victoria Allen 1.773.719.0542","location":"825 N. Christiana Ave. ","modifiedDate":"2017-04-03T16:33:00"},{"calendarId":11,"start":"2017-04-08T16:00:00","end":null,"title":"Preservation Of Life Campaign- Time For A Change","eventDetails":"Lets Join As One & Organize For A Safe & Drug Free Neighborhood. ","eventUrl":null,"contactDetails":"Rev. Michael Eaddy 1.773.533.6877","location":"Harvest Of Church 3570 W. Fifth Avenue","modifiedDate":"2017-04-03T16:33:00"},{"calendarId":8,"start":"2017-04-08T12:00:00","end":"2017-04-08T14:00:00","title":"18th Ward Egg Hunt","eventDetails":null,"eventUrl":null,"contactDetails":"18th Ward Alderman's Office","location":"4350 W. 79th Street","modifiedDate":"2017-03-29T15:23:02"},{"calendarId":14,"start":"2017-04-08T10:00:00","end":null,"title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:44:28"},{"calendarId":2,"start":"2017-04-08T10:00:00","end":"2017-04-08T14:00:00","title":"child abuse awareness resource fair","eventDetails":"Speakers and Information tables on child abuse awareness.","eventUrl":null,"contactDetails":"002 caps office","location":"4501 S. State St","modifiedDate":"2017-05-07T07:36:24"},{"calendarId":16,"start":"2017-04-08T09:00:00","end":"2017-04-08T12:00:00","title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"Caps Office (312) 742-4521","location":"5151 N. Milwaukee","modifiedDate":"2017-02-22T13:22:03"},{"calendarId":18,"start":"2017-04-07T12:00:00","end":"2017-04-07T13:00:00","title":"Curfew Information Session","eventDetails":"Staton Park District","eventUrl":null,"contactDetails":"018th District Community Relations Office","location":"618 W. Scott- Staton Park District","modifiedDate":"2017-03-23T14:38:00"},{"calendarId":18,"start":"2017-04-07T10:00:00","end":"2017-04-07T12:00:00","title":"Curfew Information Session","eventDetails":null,"eventUrl":null,"contactDetails":"018th District Community Relations Office","location":"375 W. Elm Seward Park District","modifiedDate":"2017-03-23T14:38:00"},{"calendarId":11,"start":"2017-04-07T10:00:00","end":"2017-04-07T12:00:00","title":"In Her Shoes ","eventDetails":"011th District Domestic Violence Committe in cooperation with YMCA Parents will be sponsoring \"In Her Shoes\". Event capacity meet. ","eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"10 S. Kedzie","modifiedDate":"2017-03-27T14:13:00"},{"calendarId":24,"start":"2017-04-06T19:00:00","end":null,"title":"District Advisory Council Meeting","eventDetails":"Not open to the public","eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District","modifiedDate":"2016-12-07T10:08:47"},{"calendarId":8,"start":"2017-04-06T19:00:00","end":"2017-04-06T20:00:00","title":"834 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Bogan High School 3939 W. 79th St","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":4,"start":"2017-04-06T19:00:00","end":"2017-04-06T20:00:00","title":"434 Community Beat Meeting","eventDetails":"St. Kevin's Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"10501 S. Torrence Ave.","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":14,"start":"2017-04-06T19:00:00","end":null,"title":"1411/1412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Nicolai Church\n3000 N. Kedzie","modifiedDate":"2017-01-02T08:44:35"},{"calendarId":19,"start":"2017-04-06T18:30:00","end":"2017-04-06T19:30:00","title":"Beat 1915","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Uptown Buena Library\n929 W. Buena","modifiedDate":"2016-12-06T12:52:42"},{"calendarId":25,"start":"2017-04-06T18:30:00","end":"2017-04-06T19:30:00","title":"2522 Beat Meeting","eventDetails":"2522 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Hermosa Park\n2240 N. Kilbourn","modifiedDate":"2016-12-30T11:08:15"},{"calendarId":15,"start":"2017-04-06T18:30:00","end":"2017-04-06T19:30:00","title":"Beat 1512/23 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"PCC Family Health Ctr.\n5425 W. Lake St.\n","modifiedDate":"2017-01-03T14:41:06"},{"calendarId":11,"start":"2017-04-06T18:00:00","end":"2017-04-06T19:00:00","title":"Beat Meeting : 1112-1121","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Department\n3151 W. Harrison Street\n","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2016-12-27T12:38:30"},{"calendarId":14,"start":"2017-04-06T17:00:00","end":null,"title":"Peer Jury Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:44:41"},{"calendarId":22,"start":"2017-04-06T14:00:00","end":null,"title":"Diversity & Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:29:48"},{"calendarId":2,"start":"2017-04-06T13:00:00","end":"2017-04-06T15:00:00","title":"Faith Base Meeting ","eventDetails":"Providence Hospital \nDee Clayton","eventUrl":null,"contactDetails":"Officer Denise Gathings 312-747-5109","location":"500 E 51st ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":3,"start":"2017-04-06T13:00:00","end":"2017-04-06T14:00:00","title":"District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":8,"start":"2017-04-06T11:00:00","end":"2017-04-06T12:00:00","title":"College Week Morrill Parade","eventDetails":null,"eventUrl":null,"contactDetails":"Morrill School","location":"6011 S. Rockwell","modifiedDate":"2017-03-29T15:23:32"},{"calendarId":8,"start":"2017-04-05T19:00:00","end":"2017-04-05T21:00:00","title":"815/821 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"St. Bruno's 4839 S. Harding","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":4,"start":"2017-04-05T19:00:00","end":"2017-04-05T19:00:00","title":"414 Community Beat Meeting","eventDetails":"New Original Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"1750 E. 78th St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":19,"start":"2017-04-05T19:00:00","end":"2017-04-05T20:00:00","title":"Beat 1923, 24 & 25","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"19th District Police\n850 W. Addison","modifiedDate":"2016-12-06T12:52:24"},{"calendarId":20,"start":"2017-04-05T19:00:00","end":"2017-04-05T20:00:00","title":"2033 Beat Meeting","eventDetails":"2033 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":null,"location":"Bezazian Library1226 W. Ainslie St.","modifiedDate":"2017-06-23T15:33:00"},{"calendarId":9,"start":"2017-04-05T19:00:00","end":"2017-04-05T20:00:00","title":"Beat 911 and 921 Community Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"009 CAPS - 312-747-3501","location":"Davis School Annex, 3050 W. 39th Place","modifiedDate":"2017-03-21T12:45:39"},{"calendarId":25,"start":"2017-04-05T18:30:00","end":"2017-04-05T19:30:00","title":"2512 Beat Meeting","eventDetails":"2512 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Shriner's Hospital\n2211 N. Oak Park","modifiedDate":"2016-12-30T11:30:23"},{"calendarId":12,"start":"2017-04-05T18:00:00","end":"2017-04-05T19:00:00","title":"Beat Meeting 1224","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Chicago Police Academy 1300 W. Jackson, on the 1st Wednesday of the even months. ","modifiedDate":"2016-10-20T14:16:25"},{"calendarId":14,"start":"2017-04-05T18:00:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:44:46"},{"calendarId":15,"start":"2017-04-05T18:00:00","end":"2017-04-05T19:00:00","title":"Beat 1522/33 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Loretto Hospital\n645 S. Central, 6th Fl.\n","modifiedDate":"2017-01-03T14:41:15"},{"calendarId":10,"start":"2017-04-05T18:00:00","end":"2017-04-05T19:00:00","title":"10 Sector Meeting","eventDetails":"10 Sector Meeting\n1011, 1012, 1013, 1014","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"10th District\n3315 W. Ogden Ave","modifiedDate":"2017-01-04T16:06:26"},{"calendarId":18,"start":"2017-04-05T18:00:00","end":"2017-04-05T19:00:00","title":"Court Advocacy Training","eventDetails":"Please register with P.O. Robinson","eventUrl":null,"contactDetails":"P.O. Robinson 312.742.5778","location":"018th District 1160 N. Larrabee","modifiedDate":"2017-03-23T16:20:51"},{"calendarId":8,"start":"2017-04-05T16:30:00","end":"2017-04-05T18:00:00","title":"Cooking with Cops","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"7740 S Western","modifiedDate":"2017-03-29T15:23:55"},{"calendarId":15,"start":"2017-04-05T16:00:00","end":"2017-04-05T17:00:00","title":"15th District Child Abuse/Criminal Sexual Assault Awareness Month","eventDetails":"Workshop educating parents and daycare staff on domestic violence associated with child abuse and criminal sexual assault hosted by Domestic Violence Subcommittee.","eventUrl":null,"contactDetails":"CAPS 312-743-1495","location":"Channing's Childcare Academy 5701 W. Division St","modifiedDate":"2017-05-30T11:32:57"},{"calendarId":18,"start":"2017-04-05T15:00:00","end":"2017-04-05T16:00:00","title":"20 Sector Hospitality Meeting","eventDetails":"018th District Business Liaision Officer G. Incaprera","eventUrl":null,"contactDetails":"P.O. G. Incaprera","location":"SHen-Nanigans 16 W. Division","modifiedDate":"2017-03-15T12:58:00"},{"calendarId":11,"start":"2017-04-05T15:00:00","end":"2017-04-05T17:00:00","title":"In Her Shoes ","eventDetails":"011th District Domestic Violence Committe in cooperation with YMCA Parents will be sponsoring \"In Her Shoes\". Event capacity meet. ","eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"10 S. Kedzie","modifiedDate":"2017-03-27T13:58:00"},{"calendarId":11,"start":"2017-04-05T12:00:00","end":null,"title":"West Garfield Park Stakeholder Meeting ","eventDetails":"Monthly West Garfield Park Stakeholder Meeting ","eventUrl":null,"contactDetails":"Reverend Jones 1.773.287.5821","location":"4540 W. Washington ","modifiedDate":"2017-04-03T16:48:00"},{"calendarId":25,"start":"2017-04-05T10:00:00","end":"2017-04-05T11:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence","eventUrl":null,"contactDetails":"P.O. Rodriguez A.\n312/746-5090","location":"5555 W.Grand Ave","modifiedDate":"2016-12-30T13:49:12"},{"calendarId":24,"start":"2017-04-04T19:00:00","end":null,"title":"2413 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Green Briar Park 2650 W. Peterson","modifiedDate":"2016-12-07T10:15:06"},{"calendarId":8,"start":"2017-04-04T19:00:00","end":"2017-04-04T21:00:00","title":"822/824 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing (312) 747-8724","location":"Solorio High School 5400 S. St. Louis","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":4,"start":"2017-04-04T19:00:00","end":"2017-04-04T20:00:00","title":"433 Beat Community Meeting","eventDetails":"St. Columba","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"13323 S. Green Bay Ave.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":12,"start":"2017-04-04T19:00:00","end":"2017-04-04T20:00:00","title":"Beat Meeting 1212","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at St. Helen's School Basement, 2345 W. Augusta on the 1st Tuesday of the even months. ","modifiedDate":"2016-10-20T14:16:52"},{"calendarId":22,"start":"2017-04-04T19:00:00","end":null,"title":"Beat 2221 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Christ the King Church\n9225 S. Hamilton","modifiedDate":"2016-12-28T10:31:31"},{"calendarId":16,"start":"2017-04-04T19:00:00","end":"2017-04-04T20:00:00","title":"1612 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"Olympia Park 6566 N. Avondale","modifiedDate":"2017-02-22T09:24:54"},{"calendarId":5,"start":"2017-04-04T19:00:00","end":"2017-04-04T20:00:00","title":"Commander Douglas Open Dialogue","eventDetails":"Agape Community Center","eventUrl":null,"contactDetails":"Margie Reid CAPS 312 747 3100","location":"342 W 111th St","modifiedDate":"2017-03-21T11:23:00"},{"calendarId":11,"start":"2017-04-04T18:30:00","end":"2017-04-04T19:30:00","title":"Beat Meeting: 1111","eventDetails":"\nCommunity engagements generating strategies to making neighborhoods safe. \n","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Department\n3151 W. Harrison Street\n","location":"Brian Piccolo School 1041 N. Keeler ","modifiedDate":"2016-12-27T12:37:47"},{"calendarId":15,"start":"2017-04-04T18:30:00","end":"2017-04-04T19:30:00","title":"Beat 1531/32 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"West Branch Library\n4856 W. Chicago Ave\n","modifiedDate":"2017-01-03T14:41:36"},{"calendarId":2,"start":"2017-04-04T18:30:00","end":"2017-04-04T19:30:00","title":"212/214 Beat Meeting","eventDetails":"Community and Police coming together to resolve community issues.","eventUrl":null,"contactDetails":"Communiting Policing Office/312-747-5109","location":"3858 S. Cottage","modifiedDate":"2017-03-31T12:33:39"},{"calendarId":9,"start":"2017-04-04T18:00:00","end":"2017-04-04T19:00:00","title":"Beat 924 Community Meeting","eventDetails":"NEW LOCATION","eventUrl":null,"contactDetails":"009 CAPS - 312-747-3501","location":"Davis Square Park - 4430 S. Marshfield","modifiedDate":"2017-03-21T12:46:03"},{"calendarId":17,"start":"2017-04-04T11:00:00","end":"2017-04-04T12:00:00","title":"Domestic Violence Sub-Committee","eventDetails":null,"eventUrl":null,"contactDetails":"For more information call or email CAPS Office at 312-742-4588 or CAPS.017District@chicagopolice.org","location":"017th District Community Room 4650 N. Pulaski Rd.","modifiedDate":"2017-03-12T14:17:43"},{"calendarId":15,"start":"2017-04-04T10:00:00","end":"2017-04-04T12:00:00","title":"Faith-Based Meeting","eventDetails":"Faith-Based Subcommittee Meeting/ Clergy from various denominations come together and discuss chronic crime issues that affect the community. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:41:44"},{"calendarId":25,"start":"2017-04-04T10:00:00","end":"2017-04-04T11:00:00","title":"Senior Advisory Meeting","eventDetails":"025th District Senior Advisory Meeting","eventUrl":null,"contactDetails":"025th District Community Relations Office \n312-7465090","location":"025th District, 5555 W. Grand Ave","modifiedDate":"2016-12-14T10:24:58"},{"calendarId":18,"start":"2017-04-04T10:00:00","end":"2017-04-04T12:00:00","title":"Hands are for Hugging Part 1","eventDetails":"CornerStone Pre-School","eventUrl":null,"contactDetails":"018th District Community Relations ","location":"1111 N. Wells","modifiedDate":"2017-03-23T14:18:00"},{"calendarId":18,"start":"2017-04-04T10:00:00","end":"2017-04-04T12:00:00","title":"Child Abuse Awareness","eventDetails":"Skinner North Elementary School 640 W. Scott","eventUrl":null,"contactDetails":"018th District Community Relations Office","location":"Skinner North Elementary School","modifiedDate":"2017-03-23T15:18:00"},{"calendarId":20,"start":"2017-04-03T19:00:00","end":"2017-04-03T20:00:00","title":"2011 Beat Meeting","eventDetails":"2011 Beat Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"5400 N. Lincoln Ave","modifiedDate":"2017-06-23T15:33:29"},{"calendarId":17,"start":"2017-04-03T19:00:00","end":"2017-04-03T20:00:00","title":"DAC Meeting ","eventDetails":"District Advisory Committee Meeting. This meeting is established members only ( beat facilitators and subcommittee members). ","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski - 17th District Community Room","modifiedDate":"2017-02-15T18:25:03"},{"calendarId":17,"start":"2017-04-03T18:00:00","end":"2017-04-03T19:00:00","title":"Court Advocacy/Troubled Building Meeting","eventDetails":"Bi monthly court advocacy/Troubled Building Meeting","eventUrl":null,"contactDetails":"Please call CAPS office for further information at (312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski - 17th District Community Room","modifiedDate":"2017-02-15T18:31:01"},{"calendarId":11,"start":"2017-04-01T12:00:00","end":"2017-04-01T17:00:00","title":"Jesus of Nazareth The Passion Play","eventDetails":"11th District Police Station (Bus Departing & Drop-off Location) Tickets SOLD OUT","eventUrl":null,"contactDetails":"Tickets Sold Out ","location":"340 W. 45th Street Munster, Indiana 46321","modifiedDate":"2017-03-17T13:01:34"},{"calendarId":6,"start":"2017-04-01T11:00:00","end":"2017-04-01T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"6th District Police Station 7808 S. Halsted St.","modifiedDate":"2017-02-28T08:28:01"},{"calendarId":11,"start":"2017-04-01T10:00:00","end":"2017-04-01T13:00:00","title":"Block Club Organizing Training","eventDetails":"Block Club Organizing Training","eventUrl":null,"contactDetails":"11th District CAPS 1.312.746.9841","location":"3219 W. Carroll Breakthrough Urban Ministries","modifiedDate":"2017-03-17T13:02:44"},{"calendarId":12,"start":"2017-04-01T09:00:00","end":"2017-04-01T11:00:00","title":"Peer Jury ","eventDetails":"First Saturday of the month at 9:00 AM. Cases are referred to the 12th District Peer Jury by the Area Central Detective Division. The offenders have already admitted their guilt before they are referred to Peer Jury. Teen?s, ages 13-17, hear the reason for the criminal act and issue sanctions. The Peer Juror will receive Community Service Hours by the Community Policing Office. ","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-10-20T14:15:45"},{"calendarId":25,"start":"2017-04-01T08:30:00","end":"2017-04-01T11:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-30T11:06:39"},{"calendarId":6,"start":"2017-03-31T18:00:00","end":"2017-03-31T20:00:00","title":"Dancing in the District","eventDetails":"Free line dancing class","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"006th District 7808 S. Halsted St","modifiedDate":"2017-03-02T10:46:08"},{"calendarId":11,"start":"2017-03-31T17:30:00","end":"2017-03-31T18:30:00","title":"Meet & Greet ","eventDetails":"011th District Police in cooperation with Stop The Violence #1STV organization invite you to improve the quality of Life. ","eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"Kedzie/Maypole ","modifiedDate":"2017-03-27T14:23:00"},{"calendarId":11,"start":"2017-03-30T18:00:00","end":"2017-03-30T19:00:00","title":"Community Engagement ","eventDetails":"Please join neighborhood residents, community stakeholders, and 11th District police as WE WORK TOGETHER FOR SAFER COMMUNITIES.","eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"Homan Square Cmty Center 3559 W. Arthington","modifiedDate":"2017-03-27T14:18:00"},{"calendarId":20,"start":"2017-03-29T19:00:00","end":"2017-03-29T20:00:00","title":"2032 Beat Meeting","eventDetails":"Beat Meeting for Beat 2032, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Ravenswood Evangelical Church 4900 N. Damen","modifiedDate":"2017-06-23T15:33:46"},{"calendarId":25,"start":"2017-03-29T13:00:00","end":"2017-03-29T14:00:00","title":"Faith-Based Subcommittee","eventDetails":"Faith Based Subcommittee meeting. 4th Wednesday Odd Months","eventUrl":null,"contactDetails":"P.O. Steven Archer\n312-746-5090","location":"5555 W Grand Ave","modifiedDate":"2016-12-14T10:37:10"},{"calendarId":11,"start":"2017-03-29T12:00:00","end":"2017-03-29T14:00:00","title":"Sweep N' Greet ","eventDetails":"Community Residents & Stake Holders Invite You To Beautify Our Community ","eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"Madison/Homan ","modifiedDate":"2017-03-27T14:13:00"},{"calendarId":11,"start":"2017-03-29T04:00:00","end":"2017-03-29T07:00:00","title":"Youth Job Fair ","eventDetails":"Registration & Paid Training Jump Start your career. Open to 16-24 yrs old in Cook County. Under 18 must be accompanied by parent/guardian. ","eventUrl":null,"contactDetails":"011th District CAPS","location":"3151 W. Harrison ","modifiedDate":"2017-03-21T12:41:57"},{"calendarId":24,"start":"2017-03-28T19:00:00","end":null,"title":"2422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Willye White Park 1610 W. Howard","modifiedDate":"2016-12-07T10:14:24"},{"calendarId":8,"start":"2017-03-28T19:00:00","end":"2017-03-28T20:00:00","title":"Beat Meeting 813/833","eventDetails":"West Lawn Park 312-747-8724","eventUrl":null,"contactDetails":"Community Policing","location":"4233 W 65th Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":9,"start":"2017-03-28T19:00:00","end":"2017-03-28T20:00:00","title":"Beat 922, 923 Community Meeting","eventDetails":"St. Simon's Church","eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"5157 S. California","modifiedDate":"2017-02-25T07:17:30"},{"calendarId":20,"start":"2017-03-28T19:00:00","end":"2017-03-28T20:00:00","title":"2031 Beat Meeting","eventDetails":"Beat Meeting for Beat 2031, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Swedish Covenant Hospital Anderson Pavilion 3751 W. Winona St.","modifiedDate":"2017-06-23T15:33:59"},{"calendarId":3,"start":"2017-03-28T19:00:00","end":"2017-03-28T20:00:00","title":"Beat meeting 322 & 323","eventDetails":"Beat Meeting 322 & 323","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Park Manor Church\r\n600 E. 73rd Street\r\nChicago, IL. 60619","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":24,"start":"2017-03-28T19:00:00","end":null,"title":"2433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Edgewater Library 6000 N. Broadway","modifiedDate":"2016-12-07T10:10:07"},{"calendarId":12,"start":"2017-03-28T19:00:00","end":"2017-03-28T20:00:00","title":"Beat Meeting 1211","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is a Norwegian Hospital 1044 N. Francisco on the 4th Tuesday of the odd months. ","modifiedDate":"2016-10-15T10:45:33"},{"calendarId":24,"start":"2017-03-28T19:00:00","end":"2017-03-28T20:00:00","title":"2431 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Pollicing Office (312) 744-6321","location":"St. Jerome's Parish Center 1709 W. Lunt","modifiedDate":"2017-07-11T08:50:03"},{"calendarId":6,"start":"2017-03-28T18:30:00","end":"2017-03-28T19:30:00","title":"614 BEAT MEETING","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"(312)745-3641","location":"1440 W.84TH ST\r\nFOSTER PARK FIELD HOUSE","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-03-28T18:30:00","end":"2017-03-28T19:30:00","title":"Community Beat Meeting-Bt. 711/713/714","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"007th District Community Room 1438 w 63rd st.","modifiedDate":"2017-02-08T12:20:36"},{"calendarId":25,"start":"2017-03-28T18:30:00","end":"2017-03-28T19:30:00","title":"2513 Beat Meeting","eventDetails":"2513 Beat Meeting","eventUrl":null,"contactDetails":"P.O. Rodriguez A. \n312/746-5090","location":"Amundsen Park\n6200 W. Bloomingdale","modifiedDate":"2016-12-30T10:59:09"},{"calendarId":3,"start":"2017-03-28T18:30:00","end":"2017-03-28T20:30:00","title":"003rd District Community Peace Circle","eventDetails":"003rd District Community Peace Circle","eventUrl":null,"contactDetails":"Sgt. Jointer\n003rd District\n7040 S. Cottage Grove\nChicago, IL 60637\n(312) 747-7004","location":"Lincoln Memorial Church\r\n6454 S. Champlain","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":11,"start":"2017-03-28T18:00:00","end":"2017-03-28T19:00:00","title":"Beat Meeting : 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. \n","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Department\n3151 W. Harrison Street\n","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2016-12-27T12:36:48"},{"calendarId":3,"start":"2017-03-28T14:00:00","end":"2017-03-28T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 6063(312) 747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":1,"start":"2017-03-28T14:00:00","end":"2017-03-28T15:00:00","title":"CAPS 30 Sector Business Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381 or caps001district@chicagopolice.org ","location":"1st District Community Room 1718 S. State St","modifiedDate":"2017-02-22T14:29:33"},{"calendarId":22,"start":"2017-03-28T10:30:00","end":"2017-03-28T11:30:00","title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:34:14"},{"calendarId":8,"start":"2017-03-28T10:00:00","end":"2017-03-28T13:00:00","title":"Senior Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community policing 312-747-8724","location":"Community Room 3420 W 63rd Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":6,"start":"2017-03-27T18:00:00","end":null,"title":"DAC & Facilitators Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)745-3641","location":"7808 S. HALSTED\r\n6TH DISTRICT COMMUNITY ROOM","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":15,"start":"2017-03-27T15:00:00","end":"2017-03-27T16:00:00","title":"District Advisory Committee ","eventDetails":"District Advisory Committee Subcommittee/ Chairpersons of different subcommittees meet to discuss the quality of life issues within the 15th District\n\n","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495\t","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:41:51"},{"calendarId":11,"start":"2017-03-25T11:00:00","end":"2017-03-25T13:00:00","title":"#RISEABOVE SPRING CHICAGOLAND YOUTH CONFERENCE","eventDetails":"Christian Fellowship League Youth Conference","eventUrl":null,"contactDetails":"Mr. Sicard 1.847.505.2046","location":"3808 W. Polk","modifiedDate":"2017-03-17T13:03:01"},{"calendarId":8,"start":"2017-03-25T09:00:00","end":"2017-03-25T12:00:00","title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"155 W 51st Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":3,"start":"2017-03-25T09:00:00","end":"2017-03-25T11:00:00","title":"Peer Jury Meeting","eventDetails":"Peer Jury Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"002nd District\r\n51st Wentworth","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":6,"start":"2017-03-24T18:00:00","end":"2017-03-24T20:00:00","title":"Dancing in the District","eventDetails":"Free llne dancing class","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"006th District 7808 S. Halsted St","modifiedDate":"2017-03-02T10:46:17"},{"calendarId":3,"start":"2017-03-23T19:00:00","end":"2017-03-23T20:00:00","title":"Beat Meeting 321 & 324","eventDetails":"Beat Meeting 321 & 324","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District\t\r\n7040 S. Cottage Grove\t \r\nChicago, IL. 60637\r\n(312) 747-7004\r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":8,"start":"2017-03-23T19:00:00","end":"2017-03-23T20:00:00","title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"3420 W 63rd Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":24,"start":"2017-03-23T19:00:00","end":"2017-03-23T20:00:00","title":"2431 Beat Meeting","eventDetails":"Replacement Beat Meeting from February 28, 2017 which was canceled due to inclement weather.","eventUrl":null,"contactDetails":"24th District Communit Policing Office (312) 744-6321","location":"St. Jerome's Parish Center 1709 W. Lunt","modifiedDate":"2017-07-11T08:50:15"},{"calendarId":7,"start":"2017-03-23T18:30:00","end":"2017-03-23T19:30:00","title":"Community Beat Meeting-Bt. 712","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"Sherwood Pk. 5701 s Shields","modifiedDate":"2017-02-08T12:19:56"},{"calendarId":6,"start":"2017-03-23T18:30:00","end":"2017-03-23T18:30:00","title":"634 BEAT MEETING","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"(312)745-3641","location":"9256 S.LAFAYETTE\r\nST.JAMES A.M.E.CHURCH","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":14,"start":"2017-03-23T18:30:00","end":"2017-03-23T19:30:00","title":"1432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"014th District CAPS","location":"Covenant Presbyterian Church 2022 W. Dickens","modifiedDate":"2017-02-22T15:35:35"},{"calendarId":11,"start":"2017-03-23T18:00:00","end":"2017-03-23T19:00:00","title":"Beat Meeting : 1131-1132","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Department\n3151 W. Harrison Street\n","location":"Eloise McCoy Village Apt. 4650 W. Van Buren ","modifiedDate":"2016-12-27T12:34:12"},{"calendarId":15,"start":"2017-03-23T16:30:00","end":"2017-03-23T18:00:00","title":"Black History Awards Ceremony","eventDetails":"Presentation of awards to elementary level students for essay competition.","eventUrl":null,"contactDetails":"15th District CAPS Office 312-743-1495","location":"5701 W Madison ","modifiedDate":"2017-03-21T12:13:00"},{"calendarId":18,"start":"2017-03-23T11:00:00","end":"2017-03-22T13:00:00","title":"Cook & Shop Smart Senior Health Workshop","eventDetails":null,"eventUrl":null,"contactDetails":"018th District Community Relations Office","location":"1845 N. Larrabee","modifiedDate":"2017-02-22T12:07:54"},{"calendarId":22,"start":"2017-03-23T10:30:00","end":"2017-03-23T11:30:00","title":"Domestic Violence","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:33:53"},{"calendarId":17,"start":"2017-03-22T19:30:00","end":"2017-03-22T20:30:00","title":"1711-1712 Beat Meeting","eventDetails":"1711-1712 Combined Beat Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Mayfair Church - 5020 N. Pulaski","modifiedDate":"2017-02-08T16:06:38"},{"calendarId":8,"start":"2017-03-22T19:00:00","end":"2017-03-22T20:00:00","title":"Beat Meeting 835","eventDetails":null,"eventUrl":null,"contactDetails":"Community policing","location":"Wrightwood Library 8530 S Kedzie","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":7,"start":"2017-03-22T18:30:00","end":"2017-03-22T19:30:00","title":"Community Beat Meeting-Bt. 715","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction @312-747-6722","location":"Lindblom Pk. 6054 s Damen","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":9,"start":"2017-03-22T18:30:00","end":"2017-03-22T19:30:00","title":"Beat 914 Community Meeting","eventDetails":"Chinatown Chicago Public Library","eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"2100 S. Wentworth","modifiedDate":"2017-02-25T07:18:41"},{"calendarId":6,"start":"2017-03-22T18:30:00","end":"2017-03-22T19:30:00","title":"624 BEAT MEETING","eventDetails":"COMMUNITY ROOM","eventUrl":null,"contactDetails":"(312)645-3641","location":"450 E.78TH ST\r\nST.DOROTHY CATHOLIC CHURCH","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":17,"start":"2017-03-22T18:30:00","end":"2017-03-22T19:30:00","title":"1713 Beat Meeting","eventDetails":"1713 Beat Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"North Park University - 5000 N. Spaulding","modifiedDate":"2017-02-08T16:06:37"},{"calendarId":25,"start":"2017-03-22T18:30:00","end":"2017-03-22T19:30:00","title":"2523 Beat Meeting","eventDetails":"2523 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"St. Joseph\n4021 W. Belmont","modifiedDate":"2016-12-30T11:37:23"},{"calendarId":12,"start":"2017-03-22T18:00:00","end":"2017-03-22T19:00:00","title":"Beat Meeting 1235","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Las Americas on the 4th Wednesday of the odd months. ","modifiedDate":"2016-10-15T12:12:58"},{"calendarId":3,"start":"2017-03-22T18:00:00","end":"2017-03-22T19:00:00","title":"Dac Meeting ","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station 7040 S. Cottage Grove Chicago IL. 60637\n(312) 747-7004 ","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":24,"start":"2017-03-22T18:00:00","end":"2017-03-22T19:00:00","title":"Safety Seminar","eventDetails":null,"eventUrl":null,"contactDetails":"24th Distric Community Policing Office (312)744-6321","location":"6833 N. Kedzie","modifiedDate":"2017-07-11T08:50:25"},{"calendarId":15,"start":"2017-03-22T10:00:00","end":"2017-03-22T12:00:00","title":"Senior Meeting","eventDetails":"Senior Subcommittee Meeting / Senior Citizens related topics w/ Guest Speakers from various agencies and departments","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:41:58"},{"calendarId":15,"start":"2017-03-22T08:30:00","end":"2017-03-22T09:30:00","title":"Business Meeting","eventDetails":"Business owners of the 15th District meet with Community Organizer and discuss concerns of crime and ways to improve business related issues","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"MacArthur's Restaurant\n5412 W. Madison\n","modifiedDate":"2017-01-03T14:42:05"},{"calendarId":8,"start":"2017-03-21T19:00:00","end":"2017-03-21T20:00:00","title":"Beat Meeting 811","eventDetails":"312-747-8724","eventUrl":null,"contactDetails":"Community policing","location":"5550 S Merrimac","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":24,"start":"2017-03-21T19:00:00","end":null,"title":"2424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Pottawatomie Park 7340 N. Rogers","modifiedDate":"2016-12-07T10:12:48"},{"calendarId":19,"start":"2017-03-21T19:00:00","end":"2017-03-21T20:00:00","title":"Beat 1911 & 1912","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Sulzer Library\n4455 N. Lincoln","modifiedDate":"2016-12-06T12:53:11"},{"calendarId":16,"start":"2017-03-21T19:00:00","end":"2017-03-21T20:00:00","title":"1633 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"Merrimac Park\n6343 W. Irving Park Rd.\n","modifiedDate":"2017-01-03T18:55:34"},{"calendarId":12,"start":"2017-03-21T19:00:00","end":"2017-03-21T20:00:00","title":"Beat Meeting 1223","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Westhaven Park Community Room 1939 W. Lake St. on the 3rd Tuesday of the odd months","modifiedDate":"2016-10-15T12:13:40"},{"calendarId":5,"start":"2017-03-21T19:00:00","end":"2017-03-21T20:00:00","title":"30 SECTOR MEETING","eventDetails":"COMMANDER VARRICK DOUGLAS SR. \"30 SECTOR DIALOGUE MEETING\"","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"HISTORIC PULLMAN CENTER\n314 E 113TH STREET","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":22,"start":"2017-03-21T18:30:00","end":"2017-03-21T19:30:00","title":"Beat 2222 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Brainerd Park\n1246 W. 92nd St","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":25,"start":"2017-03-21T18:30:00","end":"2017-03-21T19:30:00","title":"2531 Beat Meeting","eventDetails":"2531 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"1511 N Long Ave","modifiedDate":"2016-12-15T10:34:24"},{"calendarId":2,"start":"2017-03-21T18:30:00","end":"2017-03-21T19:30:00","title":"221-223 CAPS Meeting ","eventDetails":"Beat Meeting ","eventUrl":null,"contactDetails":"CAPS Office 312-747-5109","location":"4314 S Cottage\nKing Center ","modifiedDate":"2017-01-10T11:27:10"},{"calendarId":6,"start":"2017-03-21T18:30:00","end":"2017-03-21T19:30:00","title":"613 BEAT MEETING ","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"(312)745-3641","location":"8524 S.GREEN\r\nWALTER GRESHAM SCHOOL","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":25,"start":"2017-03-21T18:30:00","end":"2017-03-21T19:30:00","title":"2525 Beat Meeting","eventDetails":"2525 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Mozart Park\n2036 N. Avers","modifiedDate":"2016-12-15T10:23:57"},{"calendarId":1,"start":"2017-03-21T18:30:00","end":"2017-03-21T19:30:00","title":"CAPS Beat 131/132 Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381 or caps001district@chicagopolice.org ","location":"Hilliard Apartments \r\n30 West Cermak Rd ","modifiedDate":"2017-02-22T14:29:20"},{"calendarId":7,"start":"2017-03-21T18:30:00","end":"2017-03-21T19:30:00","title":"Community Beat Meeting - Bt. 731/732","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Hamilton Park 513 w. 72nd st.","modifiedDate":"2017-02-22T15:10:22"},{"calendarId":9,"start":"2017-03-21T18:00:00","end":"2017-03-21T19:00:00","title":"Beat 932, 934, 935 Community Meeting","eventDetails":"Westhaven Retirement Homes","eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"850 W. Garfield Blvd.","modifiedDate":"2017-02-21T08:10:37"},{"calendarId":11,"start":"2017-03-21T18:00:00","end":"2017-03-21T19:00:00","title":"Beat Meeting : 1133-34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. \n","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Department\n3151 W. Harrison Street\n","location":"Homan Square Community Center \n3559 W. Arthington ","modifiedDate":"2016-12-27T12:35:13"},{"calendarId":18,"start":"2017-03-21T18:00:00","end":"2017-03-21T21:00:00","title":"Public Safety Forum","eventDetails":"6pm-9pm Guest Speakers","eventUrl":null,"contactDetails":"Alderman Smith- Ward 43","location":"St. James Lutheran Church 2101 N. Fremont ","modifiedDate":"2017-02-25T09:36:01"},{"calendarId":16,"start":"2017-03-21T13:00:00","end":"2017-03-21T14:00:00","title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Jennene Whalen (312)742-4521 CAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.\n","modifiedDate":"2017-01-03T18:56:25"},{"calendarId":25,"start":"2017-03-21T12:00:00","end":"2017-03-22T15:00:00","title":"Job Fair","eventDetails":null,"eventUrl":null,"contactDetails":"Area North CART & 025 CRO","location":"5555 W. Grand Ave.","modifiedDate":"2017-03-21T11:18:00"},{"calendarId":17,"start":"2017-03-21T11:00:00","end":"2017-03-21T12:00:00","title":"Senior Citizen Sub-Committee Meeting","eventDetails":"Senior Citizen Sub-Committee Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"017th District 4650 N. Pulaski","modifiedDate":"2017-02-08T16:06:40"},{"calendarId":25,"start":"2017-03-18T13:00:00","end":"2017-03-18T15:00:00","title":"Yotuh Exploring","eventDetails":"Youth Exploring","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-15T10:21:12"},{"calendarId":15,"start":"2017-03-18T10:00:00","end":"2017-03-18T12:00:00","title":"Block Club Training","eventDetails":"Community Organizer and residents partner on solving chronic crime and disorders and strategize together for solutions as block clubs and neighborhood watches are created.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:42:12"},{"calendarId":18,"start":"2017-03-18T10:00:00","end":"2017-03-17T13:00:00","title":"Peer Jury & Explorer Scouts","eventDetails":"Pre-Registration Required 312.742.5778","eventUrl":null,"contactDetails":"018th Dist. Community Relations- P.O. M.Garcia","location":"1160 N. Larrabee","modifiedDate":"2017-02-22T12:09:03"},{"calendarId":11,"start":"2017-03-18T10:00:00","end":"2017-03-18T13:00:00","title":"Human Trafficking","eventDetails":"The Dreamcatchers Foundation And Compassion Mercy 7 Justice Ministry against Human Trafficking and Sexual Exploitation Cordially invites the residents of Jackson Square, West End, City Gardens, Oakley Square and the community to a dynamic discussion regarding Human Trafficking. ","eventUrl":null,"contactDetails":"Ms. Gloria Williams 1.312.492.6645","location":"Salvation Army 20 S. Campbell","modifiedDate":"2017-03-17T13:03:19"},{"calendarId":17,"start":"2017-03-18T09:00:00","end":"2017-03-18T13:00:00","title":"Peer Jury-Youth Beat Meeting","eventDetails":"Peer Jury-Youth Beat Meeting","eventUrl":null,"contactDetails":"Please call CAPS office for further information at(312) 742-4588 CAPS.017district@chicagopolice.org","location":"017th District 4650 N. Pulaski","modifiedDate":"2017-02-08T16:06:39"},{"calendarId":11,"start":"2017-03-18T09:00:00","end":"2017-03-18T13:00:00","title":"Emma Mitts 37th Ward Job & Service Fair ","eventDetails":"Meet Recruiters from Various Industries. Professional Attire is strongly encouraged. Bring Your Resumes. Be prepared to be Interviewed On The Spot !","eventUrl":null,"contactDetails":"37th Ward Office 1.773.379.0960","location":"Amberg Hall 1140 N. Lamon ","modifiedDate":"2017-03-17T13:03:44"},{"calendarId":9,"start":"2017-03-18T00:00:00","end":"2017-03-18T09:00:00","title":"peer jury","eventDetails":"youth hear juvenile court cases.","eventUrl":null,"contactDetails":"for more information call 9th district caps","location":"5101 s wentworth","modifiedDate":"2017-03-21T12:46:23"},{"calendarId":7,"start":"2017-03-17T18:30:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Sgt. Nichelle Fraction","location":"007th District Community room","modifiedDate":"2017-02-22T15:35:36"},{"calendarId":16,"start":"2017-03-16T19:00:00","end":"2017-03-16T20:00:00","title":"Beat Meeting for 1611","eventDetails":null,"eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"St. Thecla at 6333 N. Newcastle","modifiedDate":"2017-02-08T16:06:14"},{"calendarId":16,"start":"2017-03-16T19:00:00","end":"2017-03-16T20:00:00","title":"1611 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521CAPS016District@chicagopolice.org","location":"St. Thelca 6333 N. Newcastle","modifiedDate":"2017-06-28T23:11:29"},{"calendarId":14,"start":"2017-03-16T19:00:00","end":null,"title":"1431 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Haas Park 2402 N. Washtenaw","modifiedDate":"2017-02-22T15:09:51"},{"calendarId":25,"start":"2017-03-16T18:30:00","end":"2017-03-16T19:30:00","title":"2533 Beat Meeting","eventDetails":"2533 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-15T10:16:59"},{"calendarId":7,"start":"2017-03-16T18:30:00","end":"2017-03-16T19:30:00","title":"Community Beat Meeting - Bt.735","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Gifts From God Ministry Church 1818 w 74th st.","modifiedDate":"2017-02-22T15:12:36"},{"calendarId":16,"start":"2017-03-16T18:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.\n016th District Police Station","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":11,"start":"2017-03-16T18:00:00","end":"2017-03-16T19:00:00","title":"Beat Meeting 1113,14,15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Department\n3151 W. Harrison Street\n","location":"St. Michaels's MBC \n4106 W. Monroe","modifiedDate":"2016-12-27T12:34:32"},{"calendarId":3,"start":"2017-03-16T14:00:00","end":"2017-03-16T15:00:00","title":"Senior Citizens Meeting","eventDetails":"Senior Citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove \nChicago IL. 60637\n(312) 747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-03-16T13:30:00","end":"2017-03-16T14:30:00","title":"Business Subcommittee Meeting","eventDetails":"Business Subcommittee Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-15T10:18:04"},{"calendarId":6,"start":"2017-03-16T10:00:00","end":"2017-03-16T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"DFSS 1140 West 79th Street ","modifiedDate":"2017-03-02T10:46:37"},{"calendarId":17,"start":"2017-03-15T19:30:00","end":"2017-03-15T20:30:00","title":"1722-1723 Beat Meeting","eventDetails":"1722-1723 Combined Beat Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"017th District 4650 N. Pulaski","modifiedDate":"2017-02-08T16:06:36"},{"calendarId":19,"start":"2017-03-15T19:00:00","end":"2017-03-15T20:00:00","title":"Beat 1921, 22 & 31","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"19th Police Auditorium\n2452 W. Belmont","modifiedDate":"2016-12-06T12:52:33"},{"calendarId":3,"start":"2017-03-15T19:00:00","end":"2017-03-15T20:00:00","title":"Beat Meeting 333 & 334","eventDetails":"Beat Meeting 333 & 334","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"South Shore Culture Center 7059 S. South Shore Dr. Chicago, IL. 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":20,"start":"2017-03-15T19:00:00","end":"2017-03-15T20:00:00","title":"2013 Beat Meeting","eventDetails":"Beat Meeting for Beat 2013, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church 1609 W. Gregory St.","modifiedDate":"2017-06-23T15:34:11"},{"calendarId":14,"start":"2017-03-15T19:00:00","end":null,"title":"1423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Humboldt Park Field House\n1400 N. Sacramento","modifiedDate":"2017-01-02T08:44:58"},{"calendarId":8,"start":"2017-03-15T19:00:00","end":"2017-03-15T20:00:00","title":"Beat Meeting 823/825","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"008th District 3420 W 63rd Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":12,"start":"2017-03-15T19:00:00","end":"2017-03-15T20:00:00","title":"Beat Meeting 1213 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is a Northwest Settlement 1012 N. Noble on the 3rd Wednesday of the odd months. ","modifiedDate":"2016-10-15T10:45:13"},{"calendarId":16,"start":"2017-03-15T19:00:00","end":"2017-03-15T20:00:00","title":"1623 Beat Meeting ","eventDetails":"Come develop strategies to address crime and quality of life issues. ","eventUrl":null,"contactDetails":"CAPS Office\n(312)742-4521","location":"16th District \nCommunity Room\n5151 N. Milwaukee Ave.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":25,"start":"2017-03-15T18:30:00","end":"2017-03-15T19:30:00","title":"2515 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2515's Beat.","eventUrl":null,"contactDetails":"312-746-5090","location":"2310 N. Lorel","modifiedDate":"2017-06-26T13:46:28"},{"calendarId":2,"start":"2017-03-15T18:30:00","end":"2017-03-15T19:30:00","title":"233-234-235 CAPS Meeting ","eventDetails":"Beat Meeting","eventUrl":null,"contactDetails":"CAPS Office 312-747-5109","location":"1526 E 55th Street \nTreasure Island ","modifiedDate":"2017-01-10T11:16:25"},{"calendarId":6,"start":"2017-03-15T18:30:00","end":"2017-03-15T19:30:00","title":"623 BEAT MEETING","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"(312)745-3641","location":"7801 S.HALSTED\r\nURBAN PARTNERSHIP BANK","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-03-15T18:30:00","end":"2017-03-15T19:30:00","title":"Community Beat Meeting - Bt. 733/734","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"Salvation Army 845 w. 69th st.","modifiedDate":"2017-02-22T15:13:00"},{"calendarId":17,"start":"2017-03-15T18:15:00","end":"2017-03-15T19:15:00","title":"1724 Beat Meeting","eventDetails":"1724 Beat Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Horner Park - 2741 W. Montrose","modifiedDate":"2017-02-08T16:06:34"},{"calendarId":10,"start":"2017-03-15T18:00:00","end":"2017-03-15T19:00:00","title":"Beat Meeting 1013","eventDetails":"Beat 1013 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Epiphany Church\nRectory\n2524 S. Keeler Ave","modifiedDate":"2017-01-04T16:04:58"},{"calendarId":9,"start":"2017-03-15T18:00:00","end":"2017-03-15T19:00:00","title":"Beat 925 Community Meeting","eventDetails":"St. Gabe's Church","eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"4500 S. Wallace","modifiedDate":"2017-02-25T07:18:51"},{"calendarId":22,"start":"2017-03-15T18:00:00","end":"2017-03-15T19:00:00","title":"Beat 2234 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Beth Eden Church\n11121 S. Loomis","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":18,"start":"2017-03-15T18:00:00","end":"2017-03-15T21:00:00","title":"Public Safety Forum","eventDetails":"Gold Coast","eventUrl":null,"contactDetails":"Alderman Smith & Alderman Hopkins","location":"Latin Upper School- 59 W. North Avenue","modifiedDate":"2017-02-25T09:47:06"},{"calendarId":18,"start":"2017-03-15T15:00:00","end":"2017-03-16T16:00:00","title":"Near North Security Meeting","eventDetails":"Pre-Registration Required 312.742.5778 P.O. Robinson ","eventUrl":null,"contactDetails":"018th District Community Relations ","location":"018th District Community Room","modifiedDate":"2017-03-01T12:10:26"},{"calendarId":18,"start":"2017-03-15T11:00:00","end":"2017-03-15T13:00:00","title":"Senior Bingo/Fraud & Identity","eventDetails":"RSVP 312.428.1883","eventUrl":null,"contactDetails":"Stamps- Rhine Center 312.428.1883","location":"1327 N. Larrabee","modifiedDate":"2017-02-22T12:21:49"},{"calendarId":18,"start":"2017-03-15T09:30:00","end":"2017-03-15T10:30:00","title":"Coffee with the Commander","eventDetails":"Meet and Greet with the 018th DIstrict Commander","eventUrl":null,"contactDetails":"018th District Community Relations","location":"Eva's Cafe 1447 N. Sedgwick","modifiedDate":"2017-02-21T16:35:36"},{"calendarId":1,"start":"2017-03-15T06:30:00","end":"2017-03-15T19:30:00","title":"CAPS Beat 133 Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381 or caps001district@chicagopolice.org ","location":"Dearborn Homes \r\n2930 S. Dearborn ","modifiedDate":"2017-02-22T14:29:06"},{"calendarId":5,"start":"2017-03-14T19:00:00","end":"2017-03-14T20:00:00","title":"20 SECTOR MEETING","eventDetails":"COMMANDER VARRICK DOUGLAS SR. \"20 SECTOR DIALOGUE MEETING\"","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE 312-747-3100","location":"METCALFE ELEMENTRY SCHOOL\n12339 S NORMAL","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":16,"start":"2017-03-14T19:00:00","end":"2017-03-14T20:00:00","title":"1613 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"Oriole Park\n5430 N. Olcott","modifiedDate":"2017-01-03T18:57:08"},{"calendarId":8,"start":"2017-03-14T19:00:00","end":"2017-03-14T20:00:00","title":"Beat Meeting 831/832","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"Marquette Park 6734 S Kedzie","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":24,"start":"2017-03-14T19:00:00","end":null,"title":"2432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District 6464 N. Clark","modifiedDate":"2016-12-07T10:11:04"},{"calendarId":17,"start":"2017-03-14T19:00:00","end":"2017-03-14T20:00:00","title":"1731 Beat Meeting","eventDetails":"1731 Beat Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Kilbourn Park - 3501 N. Kilbourn","modifiedDate":"2017-02-08T16:06:33"},{"calendarId":22,"start":"2017-03-14T19:00:00","end":"2017-03-14T20:00:00","title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Robichaux Park\n403 W. 93rd St","modifiedDate":"2016-12-28T10:38:23"},{"calendarId":4,"start":"2017-03-14T19:00:00","end":"2017-03-14T20:00:00","title":"423 Community Beat Meeting","eventDetails":"Bessemer Park Field House","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"8930 S. Muskegon Ave.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":15,"start":"2017-03-14T18:30:00","end":"2017-03-14T19:30:00","title":"Beat 1511/24 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Hope Community Church\n5900 W. Iowa\n","modifiedDate":"2017-01-03T14:42:17"},{"calendarId":6,"start":"2017-03-14T18:30:00","end":"2017-03-14T19:30:00","title":"BEAT MEETING 612","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"(312)745-3641","location":"7724 S. RACINE SOUTHSIDE TABERNACLE CHURCH","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-03-14T18:30:00","end":"2017-03-14T19:30:00","title":"Community Beat Meeting-Bt. 722/723","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Blair or Sgt.Fraction @312-747-6722","location":"Kennedy-King College 740 w 63rd st","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":11,"start":"2017-03-14T18:30:00","end":"2017-03-14T19:30:00","title":"Beat Meeting 1124-25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Department\n3151 W. Harrison Street\n","location":"JLM Abundant Life Center 2622 W. Jackson","modifiedDate":"2016-12-27T12:35:36"},{"calendarId":9,"start":"2017-03-14T18:30:00","end":"2017-03-14T19:30:00","title":"Beat 913, 915 Community Meeting","eventDetails":"009th District Community Room","eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"3120 S. Halsted - 009th District Station","modifiedDate":"2017-02-25T07:18:13"},{"calendarId":2,"start":"2017-03-14T18:30:00","end":"2017-03-14T19:30:00","title":"222 CAPS Meeting ","eventDetails":"Beat Meeting","eventUrl":null,"contactDetails":"CAPS Office 312-747-5109","location":"4434 S Lake Park\nKennicott Park ","modifiedDate":"2017-01-10T11:26:37"},{"calendarId":19,"start":"2017-03-14T18:30:00","end":"2017-03-14T19:30:00","title":"Beat 1933","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Illinois Masonic\n836 W. Wellington\n","modifiedDate":"2016-12-06T12:52:07"},{"calendarId":12,"start":"2017-03-14T18:00:00","end":"2017-03-14T19:00:00","title":"Beat Meeting 1233","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the 12th District Station Community Room, 1412 S. Blue island on the 2nd Tuesday of the odd months","modifiedDate":"2016-10-15T12:13:09"},{"calendarId":10,"start":"2017-03-14T18:00:00","end":"2017-03-14T19:00:00","title":"Beat Meeting 1021","eventDetails":"Beat 1021 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Carey Tercentenary\n1448 S. Homan","modifiedDate":"2017-01-04T16:01:27"},{"calendarId":18,"start":"2017-03-14T18:00:00","end":"2017-03-14T19:00:00","title":"Beat Meeting 1821, 1822, 1823","eventDetails":"Beats 1821, 1822, 1823","eventUrl":null,"contactDetails":"018th District Community Relations ","location":"018th District Community Room","modifiedDate":"2017-02-25T09:30:30"},{"calendarId":22,"start":"2017-03-14T10:00:00","end":"2017-03-14T11:00:00","title":"Clergy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:34:25"},{"calendarId":6,"start":"2017-03-14T10:00:00","end":"2017-03-14T11:00:00","title":"Business Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the CAPS Office at 312-745-3641","location":"006th District 7808 S. Halsted Community Room","modifiedDate":"2017-02-28T08:20:59"},{"calendarId":19,"start":"2017-03-13T19:00:00","end":"2017-03-13T20:00:00","title":"Beat 1932","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"New Life Church\n1110 W. Lill","modifiedDate":"2016-12-06T12:52:15"},{"calendarId":2,"start":"2017-03-13T18:30:00","end":"2017-03-13T19:30:00","title":"211 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-747-5109","location":"3240 S Indiana\nCollege Of Optometry","modifiedDate":"2017-01-10T11:31:31"},{"calendarId":18,"start":"2017-03-13T17:30:00","end":"2017-03-13T18:30:00","title":"D.A.C. Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"DAC Members Only","location":"018th District1160 N. Larrabee","modifiedDate":"2017-02-24T13:50:42"},{"calendarId":15,"start":"2017-03-13T15:00:00","end":"2017-03-13T16:00:00","title":"Domestic Violence Meeting ","eventDetails":"Domestic Violence Subcommittee Meeting/ Subcommittee Members discuss and plan upcoming events for Domestic Violence Victims and Promote Awareness.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:42:24"},{"calendarId":14,"start":"2017-03-11T10:00:00","end":null,"title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:45:04"},{"calendarId":18,"start":"2017-03-11T10:00:00","end":"2017-03-11T13:00:00","title":"Chicago Resident Service Fairs","eventDetails":"Income Tax and Financial Assistance. Essential Neighborhood Resources/Services Home Buyer Assistance Programs. Youth Programs and More!","eventUrl":"www.cityofchicago.org/servicefairs","contactDetails":"311","location":"Olive Harvey College-10001 S. Woodlawn Ave ","modifiedDate":"2017-02-22T12:29:36"},{"calendarId":18,"start":"2017-03-11T10:00:00","end":"2017-03-11T11:00:00","title":"Peer Jury Training","eventDetails":"Pre-Registration","eventUrl":null,"contactDetails":"P.O. Margarita Garcia\n312.742.5778","location":"018th District\n1160 N. Larrabee","modifiedDate":"2017-02-22T20:04:07"},{"calendarId":12,"start":"2017-03-11T10:00:00","end":"2017-03-12T11:00:00","title":"Block Club Training","eventDetails":"For those of you interested in a there will be one on Saturday, March 11, 2017 at 10:00 ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-9306","location":" Eckhart Park, 1330 W. Chicago Ave","modifiedDate":"2017-03-08T17:35:35"},{"calendarId":11,"start":"2017-03-11T10:00:00","end":"2017-03-11T12:00:00","title":"Sweep N' Greet","eventDetails":"Community Residents & Stake Holders Invite You along with the 011th District Community Policing Office to Beautify Our Community","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841 ","location":"UCAN 3605 W. fillmore","modifiedDate":"2017-03-17T13:04:21"},{"calendarId":16,"start":"2017-03-11T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-03T19:00:38"},{"calendarId":6,"start":"2017-03-10T18:00:00","end":"2017-03-10T20:00:00","title":"Dancing in the District","eventDetails":"Free line dancing class","eventUrl":null,"contactDetails":"Contact the CAPS Office at 312-745-3641","location":"006th District 7808 S. Halsted St","modifiedDate":"2017-03-02T10:45:57"},{"calendarId":6,"start":"2017-03-10T10:00:00","end":"2017-03-10T10:00:00","title":"FAITH BASED MEETING","eventDetails":null,"eventUrl":null,"contactDetails":"(312)745-3641","location":"9256 S.LAFAYETTE\r\nST.JAMES A.M.E.CHURCH","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":11,"start":"2017-03-10T08:00:00","end":"2017-03-10T12:00:00","title":"The Academy of Scholastic Achievement Provider Day ","eventDetails":"Please join ASA in welcoming presenters who will discuss the organizations providing to the community. ","eventUrl":null,"contactDetails":"Mrs. Gladys Simpson 1.773.921.1315","location":"4651 W. Madison","modifiedDate":"2017-03-17T12:58:46"},{"calendarId":20,"start":"2017-03-09T19:00:00","end":"2017-03-09T20:00:00","title":"2023 Beat Meeting","eventDetails":"Beat Meeting for Beat 2023, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Kenmore Plaza 5225 N. Kenmore","modifiedDate":"2017-06-28T23:11:06"},{"calendarId":12,"start":"2017-03-09T19:00:00","end":"2017-03-09T20:00:00","title":"Beat Meeting 1215","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the Goldblatt's Building 1615 W. Chicago Ave. on the 2nd Thursday of the odd months. ","modifiedDate":"2016-10-15T10:45:03"},{"calendarId":8,"start":"2017-03-09T19:00:00","end":"2017-03-09T20:00:00","title":"Beat Meeting 814","eventDetails":"312-747-8724","eventUrl":null,"contactDetails":"Community policing","location":"Vittum Park 5010 W 50th Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":3,"start":"2017-03-09T19:00:00","end":"2017-03-09T20:00:00","title":"Beat Meeting 331 & 332","eventDetails":"Beat Meeting 331 & 332","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"ABJ Community Service Center 1818 E. 71st Street Chicago, IL. 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":4,"start":"2017-03-09T19:00:00","end":"2017-03-09T20:00:00","title":"421 & 422 Beat Meeting","eventDetails":"Labor Of Love Apostolic Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"2800 E. 79th St.","modifiedDate":"2017-06-29T15:29:51"},{"calendarId":22,"start":"2017-03-09T18:30:00","end":"2017-03-09T19:30:00","title":"2213 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Ridge Park - 9625 S. Longwood Dr","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":2,"start":"2017-03-09T18:30:00","end":"2017-03-09T19:30:00","title":"225-231-232 CAPS Meeting","eventDetails":"Beat Meeting","eventUrl":null,"contactDetails":"CAPS Office 312-747-5109","location":"5627 S Michigan\nCopping A.M.E Church ","modifiedDate":"2017-01-10T11:17:48"},{"calendarId":6,"start":"2017-03-09T18:30:00","end":"2017-03-09T19:30:00","title":"BEAT MEETING 632 & 633","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"(312)745-3641","location":"501 E.90TH PL\r\nTULEY PARK FIELD HOUSE","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":14,"start":"2017-03-09T18:30:00","end":null,"title":"1413/1414 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Logan Square Library\n3030 W. Fullerton","modifiedDate":"2017-01-02T08:45:10"},{"calendarId":15,"start":"2017-03-09T18:30:00","end":"2017-03-09T19:30:00","title":"Beat 1513N CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:42:32"},{"calendarId":1,"start":"2017-03-09T18:30:00","end":"2017-03-09T19:30:00","title":"CAPS 10 Sector Residential Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381 or caps001district@chicagopolice.org ","location":"Condo Building \r\n400 E. Randolph Street ","modifiedDate":"2017-02-22T14:28:52"},{"calendarId":11,"start":"2017-03-09T18:00:00","end":"2017-03-09T19:00:00","title":"Beat Meeting : 1122-23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. \n\n","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Department\n3151 W. Harrison Street\n","location":"Legler Chicago Public Library 115 S. Pulaski ","modifiedDate":"2016-12-27T12:34:52"},{"calendarId":10,"start":"2017-03-09T18:00:00","end":"2017-03-09T19:00:00","title":"Beat Meeting 1033","eventDetails":"Beat 1033 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Little Village Library\n2311 S. Kedzie","modifiedDate":"2017-01-04T15:56:27"},{"calendarId":18,"start":"2017-03-09T18:00:00","end":"2017-03-09T19:00:00","title":"Beat Meeting 1811, 1812, 1813","eventDetails":"Beats 1811,1812,1813- 018th District Community Relations Office","eventUrl":null,"contactDetails":null,"location":"St. James Lutheran Church 2101 N. Fremont","modifiedDate":"2017-02-25T09:51:49"},{"calendarId":8,"start":"2017-03-09T18:00:00","end":"2017-03-09T19:00:00","title":"Faith Based Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"3420 W. 63rd Street","modifiedDate":"2017-03-29T15:24:08"},{"calendarId":6,"start":"2017-03-09T10:00:00","end":"2017-03-09T11:00:00","title":"Faith Based Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the CAPS Office at 312-745-3641","location":"ST.JAMES A.M.E.CHURCH 9256 S.LAFAYETTE","modifiedDate":"2017-02-28T08:21:11"},{"calendarId":17,"start":"2017-03-08T19:00:00","end":"2017-03-08T20:00:00","title":"1732-1733","eventDetails":"1732-1733 Combined Beat Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Athletic Park 3546 W. Addison","modifiedDate":"2017-02-08T16:06:32"},{"calendarId":9,"start":"2017-03-08T19:00:00","end":"2017-03-08T20:00:00","title":"Beat 912 Community Meeting","eventDetails":"St. Maurice Church Hall","eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"3625 S. Hoyne","modifiedDate":"2017-02-25T07:18:05"},{"calendarId":4,"start":"2017-03-08T19:00:00","end":"2017-03-08T20:00:00","title":"411 Community Beat Meeting","eventDetails":"St. Felicitas Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"1526 E. 84th St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":8,"start":"2017-03-08T19:00:00","end":"2017-03-08T20:00:00","title":"Beat Meeting 812","eventDetails":"St. Symphorosa 312-747-8724","eventUrl":null,"contactDetails":"Community Policing","location":"6135 S Austin","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":2,"start":"2017-03-08T18:30:00","end":"2017-03-08T19:30:00","title":"213-215-224 CAPS Meeting","eventDetails":"Beat Meeting ","eventUrl":null,"contactDetails":"CAPS Office 312-747-5109","location":"4058 S. Michigan \nSt. Elizabeth Church ","modifiedDate":"2017-01-10T11:28:27"},{"calendarId":22,"start":"2017-03-08T18:30:00","end":"2017-03-08T19:00:00","title":"Beat 2232 & 2233 Meetings","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Fernwood Park\n10438 S. Wallace","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-03-08T18:30:00","end":"2017-03-08T19:30:00","title":"Beat Meeting 726","eventDetails":"Bt. 726 beat meeting","eventUrl":null,"contactDetails":"P.O. Blair or Sgt. Fraction 312-747-6722","location":"6054 S. Damen","modifiedDate":"2017-02-08T16:06:44"},{"calendarId":14,"start":"2017-03-08T18:30:00","end":null,"title":"1421 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Humboldt Park Library\n1605 N. Troy","modifiedDate":"2017-01-02T08:45:16"},{"calendarId":1,"start":"2017-03-08T18:30:00","end":"2017-03-08T19:30:00","title":"CAPS 20 Sector Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381 or caps001district@chicagopolice.org ","location":"University Center \r\n525 S. State Street ","modifiedDate":"2017-02-22T14:28:39"},{"calendarId":12,"start":"2017-03-08T18:00:00","end":"2017-03-08T19:00:00","title":"Beat Meeting 1231","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Academy Square, 318 S. Throop on the 2nd Wednesday of the odd months. ","modifiedDate":"2016-10-15T12:13:20"},{"calendarId":18,"start":"2017-03-08T18:00:00","end":"2017-03-08T19:00:00","title":"Court Advocacy Training","eventDetails":null,"eventUrl":null,"contactDetails":"Pre-Registration\nP.O. Robinson\n312.742.5778","location":"018th District\n1160 N. Larrabee \nCommunity Room","modifiedDate":"2017-02-22T20:04:22"},{"calendarId":14,"start":"2017-03-08T13:30:00","end":null,"title":"Domestic Violence Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:45:23"},{"calendarId":22,"start":"2017-03-08T13:30:00","end":"2017-03-08T14:30:00","title":"Court Advocacy","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:35:13"},{"calendarId":6,"start":"2017-03-08T11:00:00","end":"2017-03-08T12:30:00","title":"Senior Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the CAPS Office at 312-745-3641","location":"7808 S. Halsted St - Community Room","modifiedDate":"2017-02-28T08:24:23"},{"calendarId":20,"start":"2017-03-08T10:00:00","end":"2017-03-08T11:00:00","title":"Seniors Meeting","eventDetails":"Seniors Meeting, a monthly meeting featuring activities and informative talks on seniors related topics. Contact CAPS for details.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District Community Room 5400 N. Lincoln ave ","modifiedDate":"2017-06-23T14:14:13"},{"calendarId":6,"start":"2017-03-08T10:00:00","end":"2017-03-08T11:00:00","title":"Business Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)745-3641","location":"7808 S.HALSTED\r\n6TH DISTRICT COMMUNITY ROOM","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":12,"start":"2017-03-07T19:00:00","end":"2017-03-07T20:00:00","title":"Beat Meeting 1225","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Chicago Hope Academy 2108 W. Ogden. on the 1st Tuesday of the odd months. ","modifiedDate":"2016-10-15T12:13:29"},{"calendarId":22,"start":"2017-03-07T19:00:00","end":"2017-03-07T20:00:00","title":"Beat 2221 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"Christ the King Church\n9225 S. Hamilton","modifiedDate":"2016-12-28T10:39:13"},{"calendarId":8,"start":"2017-03-07T19:00:00","end":"2017-03-07T20:00:00","title":"Beat Meeting 822/824","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"Solorio High School 5400 S St. Louis","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":4,"start":"2017-03-07T19:00:00","end":"2017-03-07T20:00:00","title":"432 Community Beat Meeting","eventDetails":"St. Francis De Sales School","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"10155 S. Ewing Ave","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":24,"start":"2017-03-07T19:00:00","end":null,"title":"2412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"TBA","modifiedDate":"2016-12-07T10:16:42"},{"calendarId":11,"start":"2017-03-07T18:30:00","end":"2017-03-07T19:30:00","title":"Beat Meeting1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe.","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841.","location":"Brian Piccolo School 1040 N. Keeler","modifiedDate":"2016-12-27T12:33:06"},{"calendarId":25,"start":"2017-03-07T18:30:00","end":"2017-03-07T19:30:00","title":"2521 Beat Meeting","eventDetails":"2521 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Senior Suites\n2715 N. Cicero","modifiedDate":"2016-12-30T11:30:35"},{"calendarId":15,"start":"2017-03-07T18:30:00","end":"2017-03-07T19:30:00","title":"Beat 1531/32 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"West Branch Library\n4856 W. Chicago Ave\n","modifiedDate":"2017-01-03T14:42:40"},{"calendarId":19,"start":"2017-03-07T18:30:00","end":"2017-03-07T19:30:00","title":"Beat 1913","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Courtenay School\n4420 N. Beacon","modifiedDate":"2016-12-06T12:53:03"},{"calendarId":2,"start":"2017-03-07T18:30:00","end":"2017-03-07T19:30:00","title":"212-214 CAPS Meeting","eventDetails":"Beat Meeting ","eventUrl":null,"contactDetails":"CAPS Office 312-747-5109","location":"3858 S Cottage Grove\nMandrake Park Field House","modifiedDate":"2017-01-10T11:30:58"},{"calendarId":25,"start":"2017-03-07T18:30:00","end":"2017-03-07T19:30:00","title":"2535 Beat Meeting","eventDetails":"2535 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Maternity BVM Church\n3647 W. North Ave.\n","modifiedDate":"2016-12-15T10:15:57"},{"calendarId":6,"start":"2017-03-07T18:30:00","end":"2017-03-07T19:30:00","title":"Beat Meeting 611","eventDetails":null,"eventUrl":null,"contactDetails":"(312)745-3641","location":"2101 W.79TH\r\nMT.VERNON ANNEX CHURCH","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":9,"start":"2017-03-07T18:00:00","end":"2017-03-07T19:00:00","title":"Beat 924, 931, 933","eventDetails":"New City Supportive Living","eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"4707 S. Marshfield","modifiedDate":"2017-02-25T07:17:54"},{"calendarId":10,"start":"2017-03-07T18:00:00","end":"2017-03-07T19:00:00","title":"Beat Meeting 1014","eventDetails":"Beat 1014 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Lawndale Church\n3839 W. Ogden Ave","modifiedDate":"2017-01-04T16:03:13"},{"calendarId":18,"start":"2017-03-07T18:00:00","end":"2017-03-07T19:00:00","title":"Beat Meeting 1814, 1824, 1834","eventDetails":"Beats 1814, 1824, 1834","eventUrl":null,"contactDetails":"018th District Community Relations Office","location":"59 W. North Ave.Latin Upper School ","modifiedDate":"2017-06-28T23:11:31"},{"calendarId":17,"start":"2017-03-07T14:00:00","end":"2017-03-07T15:00:00","title":"Faith Leaders Meeting","eventDetails":"Meeting with various religious leaders by invitation only.","eventUrl":null,"contactDetails":"Please call CAPS office for further information at (312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski - 17th District Community Room","modifiedDate":"2017-02-15T18:29:45"},{"calendarId":17,"start":"2017-03-07T14:00:00","end":"2017-03-07T15:00:00","title":"Faith Leaders Meeting (By invite only)","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS.017District@chicagopolice.org or Call the CAPS office at 312-742-4588","location":"017th District Community Room 4650 N. Pulaski Rd.","modifiedDate":"2017-02-15T18:24:32"},{"calendarId":25,"start":"2017-03-07T14:00:00","end":"2017-03-07T14:00:00","title":"Court Advocacy","eventDetails":"Court Advocacy","eventUrl":null,"contactDetails":"312-746-5090","location":"25th District Station\n5555 W. Grand Ave.\n","modifiedDate":"2016-12-15T10:14:03"},{"calendarId":17,"start":"2017-03-07T11:00:00","end":"2017-03-07T12:00:00","title":"Domestic Violence Sub-Committee Meeting","eventDetails":"Domestic Violence Sub-Committee Meeting ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"017th District 4650 N. Pulaski","modifiedDate":"2017-02-08T16:06:41"},{"calendarId":15,"start":"2017-03-07T10:00:00","end":"2017-03-07T12:00:00","title":"Faith-Based Meeting","eventDetails":"Faith-Based Subcommittee Meeting/ Clergy from various denominations come together and discuss chronic crime issues that affect the community. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:42:49"},{"calendarId":3,"start":"2017-03-04T11:00:00","end":"2017-03-04T13:00:00","title":"Youth/Explorers Meeting","eventDetails":"Youth/Explorers Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"003rd District(Auditorium)\r\n7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-03-04T08:30:00","end":"2017-03-04T11:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-30T10:59:24"},{"calendarId":6,"start":"2017-03-03T18:00:00","end":"2017-03-03T20:00:00","title":"Dancing in the District","eventDetails":"Free line dancing class","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641 ","location":"006th District - 7808 S. Halsted Street","modifiedDate":"2017-03-02T10:46:28"},{"calendarId":3,"start":"2017-03-02T19:00:00","end":"2017-03-02T20:00:00","title":"Beat Meeting 313 & 314","eventDetails":"Beat Meeting 313 & 314","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Harris Park Recreation Center 6200 S. Drexel\r\nChicago, IL. 60637","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":16,"start":"2017-03-02T19:00:00","end":"2017-03-02T20:00:00","title":"1631 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"Hiawatha Park\n8029 W. Forest Preserve Drive ","modifiedDate":"2017-01-03T19:01:13"},{"calendarId":24,"start":"2017-03-02T19:00:00","end":null,"title":"District Advisory Council Meeting","eventDetails":"Not open to the public","eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District","modifiedDate":"2016-12-07T10:08:55"},{"calendarId":22,"start":"2017-03-02T19:00:00","end":"2017-03-02T20:00:00","title":"2211 & 2212 Beat Meetings","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:40:43"},{"calendarId":4,"start":"2017-03-02T19:00:00","end":"2017-03-02T20:00:00","title":"431 Community Beat Meeting","eventDetails":"4th District Station","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"2255 E. 103rd St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":8,"start":"2017-03-02T19:00:00","end":"2017-03-02T20:00:00","title":"Beat Meeting 834","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"Bogan High School 3939 W 79th Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":15,"start":"2017-03-02T18:30:00","end":"2017-03-02T19:30:00","title":"Beat 1512/23 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"PCC Family Health Ctr.\n5425 W. Lake St.\n","modifiedDate":"2017-01-03T14:42:55"},{"calendarId":6,"start":"2017-03-02T18:30:00","end":"2017-03-02T18:30:00","title":"BEAT 631","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"(312)745-3641","location":"8050 S.ST.LAWRENCE\r\nCHATHAM FIELDS CHURCH","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":25,"start":"2017-03-02T18:30:00","end":"2017-03-02T19:30:00","title":"2511 Beat Meeting","eventDetails":"2511 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"2833 N Nordica","modifiedDate":"2016-12-30T11:00:38"},{"calendarId":11,"start":"2017-03-02T18:00:00","end":"2017-03-02T19:00:00","title":"Beat Meeting : 1112-1121","eventDetails":"Community engagements generating strategies to making neighborhoods safe. \n","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841\nChicago Police Department\n3151 W. Harrison Street\n","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2016-12-27T12:33:26"},{"calendarId":10,"start":"2017-03-02T18:00:00","end":"2017-03-02T19:00:00","title":"Beat Meeting 1011 & 1012","eventDetails":"Beat 1011 & 1012 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Clair House\n1350 S. Harding","modifiedDate":"2017-01-04T16:06:38"},{"calendarId":18,"start":"2017-03-02T18:00:00","end":"2017-03-02T19:00:00","title":"Beat Meeting 1831,1832,1833","eventDetails":"Beats 1831, 1832 and 1833","eventUrl":null,"contactDetails":"018th District Community Relations Office 312-742-5778","location":"Access Living 115 W. Chicago","modifiedDate":"2017-06-28T23:08:01"},{"calendarId":14,"start":"2017-03-02T17:00:00","end":null,"title":"Peer Jury Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:45:29"},{"calendarId":22,"start":"2017-03-02T14:00:00","end":"2017-03-02T15:00:00","title":"Diversity & Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:34:53"},{"calendarId":1,"start":"2017-03-02T14:00:00","end":"2017-03-02T15:00:00","title":"CAPS 20 Sector Business Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-745-4381 or caps001district@chicagopolice.org ","location":"Northern Trust Bank 50 S. LaSalle St.","modifiedDate":"2017-02-22T14:28:12"},{"calendarId":2,"start":"2017-03-02T13:00:00","end":"2017-03-02T15:00:00","title":"Faith Base Meeting ","eventDetails":"Copping AME Church \nRev. Dr. Leoma Leigh-Williams","eventUrl":null,"contactDetails":"Officer Denise Gathings 312-747-5109","location":"5633 S Michigan ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":3,"start":"2017-03-02T13:00:00","end":"2017-03-02T14:00:00","title":"District Clergy Meeting","eventDetails":"003rd District Clergy Meeting\n","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":12,"start":"2017-03-02T10:30:00","end":"2017-03-03T12:30:00","title":"The Law and The community ","eventDetails":null,"eventUrl":"Connecting with the youth by teaching the law.","contactDetails":"12th District C APS 312-746-8306","location":"Jenner Elementary Academy of the Arts- 1119 N Cleveland Ave. ","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":4,"start":"2017-03-01T19:00:00","end":"2017-03-01T20:00:00","title":"412 Community Beat Meeting","eventDetails":"Zion Lutheran Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"8455 S. Stony Island Ave","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":16,"start":"2017-03-01T19:00:00","end":"2017-03-01T20:00:00","title":"1621 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"First Church of Forest Glen\n5400 N. Lawler","modifiedDate":"2017-01-03T19:01:39"},{"calendarId":12,"start":"2017-03-01T19:00:00","end":"2017-03-01T20:00:00","title":"Beat Meeting 1221 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the Smith Park 2526 W. Grand Ave. on the1st Wednesday of the odd months. ","modifiedDate":"2016-10-15T10:44:54"},{"calendarId":9,"start":"2017-03-01T19:00:00","end":"2017-03-01T20:00:00","title":"Beat 911, 921 Community Meeting","eventDetails":"Davis School Annex Building","eventUrl":null,"contactDetails":"009th District CAPS (312) 747-3501","location":"3050 W. 39th Place","modifiedDate":"2017-02-25T07:17:41"},{"calendarId":8,"start":"2017-03-01T19:00:00","end":"2017-03-01T20:00:00","title":"Beat Meeting 815/821","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing 312-747-8724","location":"St Bruno's 4839 S Harding","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":3,"start":"2017-03-01T19:00:00","end":"2017-03-01T20:00:00","title":"Beat Meeting 311 & 312","eventDetails":"Beat Meeting 311 & 312","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Bessie Coleman Library\r\n731 E. 63rd Street\r\nChicago, IL.60637","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":14,"start":"2017-03-01T18:30:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:45:35"},{"calendarId":6,"start":"2017-03-01T18:30:00","end":"2017-03-01T19:30:00","title":"621 BEAT MEATING","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"(312)745-3641","location":"7808 S.HALSTED\r\n6TH DISTRICT COMMUNITY ROOM","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":6,"start":"2017-03-01T18:30:00","end":"2017-03-01T19:30:00","title":"622 BEAT MEETING","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"(312)745-3641","location":"7808 S.HALSTED\r\n6TH DISTRICT COMMUNITY ROOM","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":15,"start":"2017-03-01T18:00:00","end":"2017-03-01T19:00:00","title":"Beat 1522/33 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Loretto Hospital\n645 S. Central, 6th Fl.\n","modifiedDate":"2017-01-03T14:43:03"},{"calendarId":14,"start":"2017-03-01T18:00:00","end":null,"title":"Beat Facilitator Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:45:41"},{"calendarId":20,"start":"2017-03-01T18:00:00","end":"2017-03-01T19:00:00","title":"Landlord Safety Training","eventDetails":"OVERVIEW: The Chicago Police Department, in partnership with the Departments of Buildings and Law, along with Community Investment Corporation (CIC) will be hosting a series resource of workshops for the owners and managers of residential properties of varying sizes.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"5400 N. Lincoln Ave","modifiedDate":"2017-02-08T16:07:12"},{"calendarId":18,"start":"2017-03-01T17:30:00","end":"2017-03-01T20:30:00","title":"Breaking Bread","eventDetails":"Feeding the Homeless 5:30-8:30pm","eventUrl":"www.lasallestreetchurch.org","contactDetails":"LaSalle Street Church","location":"1111 N. Wells Street Ste 500","modifiedDate":"2017-03-01T11:12:23"},{"calendarId":8,"start":"2017-03-01T16:00:00","end":"2017-03-01T17:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Community policing 312-747-8724","location":"Community Room 3420 W 63rd Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":3,"start":"2017-03-01T14:00:00","end":"2017-03-01T15:00:00","title":"Court Advocate Meeting","eventDetails":"003rd District Court Advocate Meeting\n","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":18,"start":"2017-03-01T13:00:00","end":"2017-03-02T14:30:00","title":"Officer Friendly Program","eventDetails":null,"eventUrl":null,"contactDetails":"018th District Community Relations Office","location":"Lincoln Park Pre-School 1753 N. Fern Court","modifiedDate":"2017-03-01T11:12:23"},{"calendarId":25,"start":"2017-03-01T10:00:00","end":"2017-03-01T11:00:00","title":"Domestic Violence meeting","eventDetails":"Domestic Violence ","eventUrl":null,"contactDetails":"P.O. Rodriguez A.\n312/ 746-5090","location":"5555 W Grand Ave","modifiedDate":"2016-12-30T10:59:41"},{"calendarId":17,"start":"2017-03-01T10:00:00","end":"2017-03-01T11:00:00","title":"017th District Principals Meeting (By invite only)","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS.017District@chicagopolice.org or call the CAPS office at 312-742-4588","location":"017th District Community Room 4650 N. Pulaski Rd.","modifiedDate":"2017-02-15T18:24:04"},{"calendarId":17,"start":"2017-03-01T10:00:00","end":"2017-03-01T11:00:00","title":"Principals Meeting","eventDetails":"Quarterly Meeting with School Principals located in the 17th District.","eventUrl":null,"contactDetails":"Please call CAPS office for further information at (312) 742-4588 or e mail us at CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski - 17th District Community Room","modifiedDate":"2017-02-15T18:30:00"},{"calendarId":8,"start":"2017-02-28T19:00:00","end":"2017-02-28T20:00:00","title":"Beat Meeting 813/833","eventDetails":"312-747-8724","eventUrl":null,"contactDetails":"Community policing","location":"4233 W 65th Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":16,"start":"2017-02-28T19:00:00","end":"2017-02-28T20:00:00","title":"1614 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"Salvation Army\n8354 W. Foster","modifiedDate":"2017-01-03T19:02:37"},{"calendarId":3,"start":"2017-02-28T19:00:00","end":"2017-02-28T20:00:00","title":"Beat meeting 322 & 323","eventDetails":"Beat Meeting 322 & 323","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Park Manor Church\r\n600 E. 73rd Street\r\nChicago, IL. 60619","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":9,"start":"2017-02-28T19:00:00","end":"2017-02-28T20:00:00","title":"Beat 922,923","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Simon Church Hall\n5157 S. California Ave.","modifiedDate":"2017-01-04T14:17:34"},{"calendarId":24,"start":"2017-02-28T19:00:00","end":null,"title":"2431 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"St. Jerome's Parish Center 1709 W. Lunt","modifiedDate":"2016-12-07T10:12:02"},{"calendarId":3,"start":"2017-02-28T18:30:25","end":"2017-02-28T20:30:25","title":"003rd District Community Peace Circle","eventDetails":"003rd District Community Peace Circle","eventUrl":null,"contactDetails":"Sgt. Jointer\n003rd District\n7040 S. Cottage Grove\nChicago, IL. 60637\n","location":"Lincoln Memorial Church","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":7,"start":"2017-02-28T18:30:00","end":"2017-02-28T19:30:00","title":"Beat Meeting Bt. 711, 713, 714","eventDetails":"Beat Meeting Bt. 711, 713, 714","eventUrl":null,"contactDetails":"PO Blair or Sgt. Fraction 31-2647-6722 ","location":"007th District Community Room 1438 W. 63rd","modifiedDate":"2017-02-08T16:06:21"},{"calendarId":25,"start":"2017-02-28T18:30:00","end":"2017-02-28T19:30:00","title":"2532 Beat Meeting","eventDetails":"2532 Beat Meeting. 4th Tuesday even months","eventUrl":null,"contactDetails":"P.O. Steven Archer\n312-746-5090","location":"1511 N Long Ave","modifiedDate":"2016-12-30T10:47:54"},{"calendarId":11,"start":"2017-02-28T18:00:24","end":"2017-02-28T19:00:24","title":"Beat meeting 1135","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"515 S. Washtenaw","modifiedDate":"2017-03-08T15:21:35"},{"calendarId":12,"start":"2017-02-28T18:00:00","end":"2017-02-28T19:00:00","title":"Beat Meeting 1232","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at 12th District, 1412 S. Blue Island, on the 4th Tuesday of the even months. ","modifiedDate":"2016-10-13T17:07:58"},{"calendarId":11,"start":"2017-02-28T18:00:00","end":"2017-02-28T19:00:00","title":"Beat Meeting 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2016-12-14T14:04:40"},{"calendarId":3,"start":"2017-02-28T14:00:00","end":"2017-02-28T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 6063(312) 747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":8,"start":"2017-02-28T10:00:00","end":"2017-02-28T13:00:00","title":"Senior Subcommittee Meeting","eventDetails":"312-747-8724","eventUrl":null,"contactDetails":"Community policing","location":"3420 W 63rd Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":11,"start":"2017-02-27T18:00:28","end":"2017-02-27T20:00:28","title":"DAC Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"011 District CAPS' Office 1.312.746.9841","location":"011 District Auditorium","modifiedDate":"2017-03-08T15:20:37"},{"calendarId":11,"start":"2017-02-27T13:00:00","end":"2017-02-27T14:30:00","title":"Domestic Violence event","eventDetails":null,"eventUrl":null,"contactDetails":"PO Robins","location":"Melody School 3937 Wilcox","modifiedDate":"2017-03-08T15:19:26"},{"calendarId":18,"start":"2017-02-27T11:30:00","end":"2017-02-27T13:30:00","title":"Senior Bowling","eventDetails":"Pre-Registration Required","eventUrl":null,"contactDetails":"RSVP (312) 428-1883","location":"Diversey Bowl2211 W. Diversey","modifiedDate":"2017-02-24T13:52:34"},{"calendarId":11,"start":"2017-02-25T11:00:56","end":"2017-02-25T14:00:56","title":"Youth DAC Movie night","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 011th District CAPS' Office for Information 1.312.746.7073","location":"011 District- 3151 W. Harrison ","modifiedDate":"2017-03-08T14:49:05"},{"calendarId":18,"start":"2017-02-25T10:00:00","end":"2017-02-25T13:00:00","title":"Chicago Resident Service Fairs","eventDetails":"Home Buyer Assistance Programs. Youth Programs. Mentoring and More. Job Search, Employment and Skills Training. Flu Vaccines and More!","eventUrl":null,"contactDetails":"www.cityofchicago.org/servicefairs","location":"4136 S. California- Kelly High School","modifiedDate":"2017-02-24T13:44:21"},{"calendarId":3,"start":"2017-02-25T09:00:00","end":"2017-02-25T11:00:00","title":"Peer Jury Meeting","eventDetails":"Peer Jury Meeting ","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"002nd District\r\n51st Wentworth","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":11,"start":"2017-02-24T12:35:26","end":"2017-02-24T13:55:26","title":"The Law and Your Community","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"ORR HS","modifiedDate":"2017-03-08T15:24:30"},{"calendarId":1,"start":"2017-02-24T12:00:00","end":"2017-02-24T14:00:00","title":"Teen Domestic Violence Awareness","eventDetails":"Domestic Violence Awareness by 001 CAPS at the University Center","eventUrl":null,"contactDetails":"001 District Community Relations","location":"525 S. State St","modifiedDate":"2017-02-22T14:50:35"},{"calendarId":18,"start":"2017-02-24T10:00:00","end":"2017-02-24T12:00:00","title":"Officer Friendly Program","eventDetails":"PreSchool","eventUrl":null,"contactDetails":null,"location":"1111 N. Wells","modifiedDate":"2017-02-08T16:07:05"},{"calendarId":3,"start":"2017-02-23T19:00:00","end":"2017-02-23T20:00:00","title":"Beat Meeting 321 & 324","eventDetails":"Beat Meeting 321 & 324","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District\t\r\n7040 S. Cottage Grove\t \r\nChicago, IL. 60637\r\n(312) 747-7004\r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":16,"start":"2017-02-23T19:00:00","end":"2017-02-23T20:00:00","title":"1634 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521 (Caps) CAPS016District@chicagopolice.org","location":"St. Bartholomew\n4910 W. Addison\nChurch Krueger Hall","modifiedDate":"2017-01-03T19:03:30"},{"calendarId":7,"start":"2017-02-23T18:30:00","end":"2017-02-23T19:30:00","title":"BEAT MEETING: 712","eventDetails":"Beat 712: Every 4th Thursday","eventUrl":null,"contactDetails":"Sgt.Fraction or P.O. Blair","location":"Sherwood Park 5701 S. Shields","modifiedDate":"2017-02-08T16:06:17"},{"calendarId":25,"start":"2017-02-23T18:30:00","end":"2017-02-23T19:30:00","title":"2514 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2514's Beat.","eventUrl":null,"contactDetails":"3121-746-5090","location":"3115 N. Mason","modifiedDate":"2017-06-26T13:39:15"},{"calendarId":11,"start":"2017-02-23T18:00:24","end":"2017-02-23T19:00:24","title":"Beat Meeting 1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":" Eloise Mc Coy\n4650 W. Van Buren","modifiedDate":"2016-12-27T12:20:28"},{"calendarId":11,"start":"2017-02-23T18:00:23","end":"2017-02-23T19:00:23","title":" 1131/1132 Beat Meating","eventDetails":"011th District CAPS' Office 1.312.746.9841","eventUrl":null,"contactDetails":"PO McKinney","location":"4650 W. Van Buren","modifiedDate":"2017-03-08T15:25:30"},{"calendarId":11,"start":"2017-02-23T16:30:11","end":"2017-02-23T17:30:11","title":"Youth EAVI","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"011 District Auditorium","modifiedDate":"2017-03-08T15:22:15"},{"calendarId":11,"start":"2017-02-23T14:15:55","end":"2017-02-23T15:45:55","title":"The Law and Your Community","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"Al Raby HS","modifiedDate":"2017-03-08T15:25:01"},{"calendarId":1,"start":"2017-02-23T14:00:00","end":"2017-02-23T15:00:00","title":"CAPS 10 Sector Business Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381 caps001district@chicagopolice.org ","location":"175 N. State Street \nChicago Theater\n\n","modifiedDate":"2017-01-09T12:16:10"},{"calendarId":22,"start":"2017-02-23T14:00:00","end":"2017-02-23T15:00:00","title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:41:08"},{"calendarId":11,"start":"2017-02-23T13:00:41","end":"2017-02-23T14:00:41","title":"Peace Circle","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"Jensen Elementary","modifiedDate":"2017-03-08T15:22:45"},{"calendarId":22,"start":"2017-02-23T13:00:00","end":"2017-02-23T14:00:00","title":"Beat Facilitators Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:41:15"},{"calendarId":22,"start":"2017-02-23T10:30:00","end":"2017-02-23T11:30:00","title":"Domestic Violence Subcommitee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:41:33"},{"calendarId":11,"start":"2017-02-23T10:15:00","end":"2017-02-23T11:45:00","title":"The Law and Your Community","eventDetails":"(It is located in 015 district)","eventUrl":null,"contactDetails":"PO Martin","location":"Austin Multi-Plex HS","modifiedDate":"2017-03-08T15:23:08"},{"calendarId":18,"start":"2017-02-23T10:00:00","end":"2017-02-23T12:00:00","title":"Officer Friendly Program","eventDetails":"Pre K","eventUrl":null,"contactDetails":null,"location":"108 W. Germania","modifiedDate":"2017-02-08T16:07:07"},{"calendarId":11,"start":"2017-02-23T09:15:01","end":"2017-02-23T12:50:01","title":"Court Advocacy Case","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"26/California Courthouse","modifiedDate":"2017-03-08T15:24:06"},{"calendarId":17,"start":"2017-02-22T19:30:00","end":"2017-02-22T20:30:00","title":"Beat Meeting 1711-1712","eventDetails":"Beat 1711-1712 Combined Beat Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Mayfair Church - 5020 N. Pulaski","modifiedDate":"2017-02-08T16:06:27"},{"calendarId":8,"start":"2017-02-22T19:00:00","end":"2017-02-22T20:00:00","title":"Beat Meeting 835","eventDetails":"312-747-8724","eventUrl":null,"contactDetails":"Community Policing","location":"8530 S Kedzie","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":16,"start":"2017-02-22T19:00:00","end":"2017-02-22T20:00:00","title":"1624 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"Portage Park\nSenior Center\n4100 N. Long","modifiedDate":"2017-01-03T19:04:07"},{"calendarId":7,"start":"2017-02-22T18:30:00","end":"2017-02-22T19:30:00","title":"Beat Meeting Bt. 715","eventDetails":null,"eventUrl":null,"contactDetails":"PO Blair or Sgt. Fraction\n312-747-6722","location":"Lindbloom Park 6054 S. Damen","modifiedDate":"2017-02-08T16:06:23"},{"calendarId":25,"start":"2017-02-22T18:00:00","end":"2017-02-22T19:00:00","title":"2534 Beat Meeting","eventDetails":"2534 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"North /Grand H.S. \n4338 W. Wabansia\n","modifiedDate":"2016-12-15T10:15:18"},{"calendarId":3,"start":"2017-02-22T18:00:00","end":"2017-02-22T19:00:00","title":"Dac Meeting ","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n93120 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":11,"start":"2017-02-22T17:00:00","end":"2017-02-22T19:00:00","title":"Explorers","eventDetails":null,"eventUrl":null,"contactDetails":"PO Martin/PO Henry","location":"011 District","modifiedDate":"2017-03-08T15:23:20"},{"calendarId":18,"start":"2017-02-22T11:00:00","end":"2017-02-22T13:00:00","title":"Officer Friendly Program","eventDetails":"Pre-K","eventUrl":null,"contactDetails":null,"location":"350 W. Ontario","modifiedDate":"2017-02-08T16:07:00"},{"calendarId":15,"start":"2017-02-22T10:00:00","end":"2017-02-22T12:00:00","title":"Senior Meeting","eventDetails":"Senior Subcommittee Meeting / Senior Citizens related topics w/ Guest Speakers from various agencies and departments","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:43:13"},{"calendarId":18,"start":"2017-02-22T10:00:00","end":"2017-02-22T11:00:00","title":"HEAT Meeting","eventDetails":"Pre-Registration Required","eventUrl":null,"contactDetails":null,"location":"TBD","modifiedDate":"2017-02-08T16:07:03"},{"calendarId":15,"start":"2017-02-22T08:30:00","end":"2017-02-22T09:30:00","title":"Business Meeting","eventDetails":"Business owners of the 15th District meet with Community Organizer and discuss concerns of crime and ways to improve business related issues","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"MacArthur's Restaurant\n5412 W. Madison\n","modifiedDate":"2017-01-03T14:43:24"},{"calendarId":18,"start":"2017-02-22T08:00:00","end":"2017-02-22T09:30:00","title":"MagMile Association Meeting","eventDetails":"Pre-registration required","eventUrl":null,"contactDetails":null,"location":"600 N. Michigan","modifiedDate":"2017-02-08T16:07:02"},{"calendarId":9,"start":"2017-02-22T06:30:00","end":"2017-02-22T19:30:00","title":"Beat 914","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chinatown Library\n2100 S. Wentworth Ave.","modifiedDate":"2017-01-04T14:18:45"},{"calendarId":24,"start":"2017-02-21T19:00:00","end":null,"title":"2423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Touhy Park 7348 N. Paulina","modifiedDate":"2016-12-07T10:13:44"},{"calendarId":8,"start":"2017-02-21T19:00:00","end":"2017-02-21T20:00:00","title":"Beat Meeting 811","eventDetails":"312-747-8724","eventUrl":null,"contactDetails":"Community Policing","location":"5550 S Merrimac","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":1,"start":"2017-02-21T18:30:00","end":"2017-02-21T19:30:00","title":"CAPS Beat 131/132 Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Room 312-745-4381 caps001district@chicagopolice.org ","location":"1718 S. State Street \n1st District Community Room ","modifiedDate":"2017-01-09T12:16:44"},{"calendarId":25,"start":"2017-02-21T18:30:00","end":"2017-02-21T19:00:00","title":"Crime Prevention Seminar","eventDetails":"Free crime prevention tips for residents of the 25th District","eventUrl":null,"contactDetails":"312-746-5090","location":"Kelvyn Park Field House - 4438 W. Wrightwood","modifiedDate":"2017-02-21T17:30:01"},{"calendarId":11,"start":"2017-02-21T18:00:07","end":"2017-02-21T19:00:07","title":" 1133/1134 beat meeting","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"3559 W. Arthington","modifiedDate":"2017-03-08T15:27:11"},{"calendarId":11,"start":"2017-02-21T18:00:00","end":"2017-02-21T19:00:00","title":"Beat Meeting 1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Homan Square Community Center 3559 W. Arthington","modifiedDate":"2016-12-27T12:27:12"},{"calendarId":9,"start":"2017-02-21T18:00:00","end":"2017-02-21T19:00:00","title":"Beat 932,934,935","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Westhaven Senior Home\n850 W. Garfield Ave.","modifiedDate":"2017-01-04T14:19:25"},{"calendarId":9,"start":"2017-02-21T13:00:00","end":"2017-02-21T15:00:00","title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"009th District Station\n3120 S. Halsted","modifiedDate":"2017-01-04T14:19:07"},{"calendarId":16,"start":"2017-02-21T13:00:00","end":"2017-02-21T14:00:00","title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Jennene Whalen\n(312)742-4521 CAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave","modifiedDate":"2017-01-03T19:04:38"},{"calendarId":16,"start":"2017-02-21T13:00:00","end":null,"title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Jennene Whalen (312)742-4521 CAPS016District@chicagopolice.org","location":"5151 N. Milwaukee","modifiedDate":"2017-02-21T13:31:24"},{"calendarId":14,"start":"2017-02-21T12:00:00","end":"2017-02-21T13:30:00","title":"Faith based meeting","eventDetails":null,"eventUrl":null,"contactDetails":"14th District caps office","location":"14th district auditorium","modifiedDate":"2017-02-22T14:55:13"},{"calendarId":17,"start":"2017-02-21T11:00:00","end":"2017-02-21T12:00:00","title":"Senior Sub-Comittee Meeting","eventDetails":"Monthly Senior Sub-Committee Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"017th District 4650 N. Pulaski","modifiedDate":"2017-02-08T16:06:29"},{"calendarId":11,"start":"2017-02-21T11:00:00","end":"2017-02-21T13:30:00","title":"Faith base event","eventDetails":" Prayer Brunch","eventUrl":null,"contactDetails":"PO Robins","location":"011th District Auditorium","modifiedDate":"2017-03-08T15:23:30"},{"calendarId":18,"start":"2017-02-21T10:30:00","end":"2017-02-21T11:30:00","title":"Near North Unity Security Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"1100 N. Wells","modifiedDate":"2017-02-08T16:06:59"},{"calendarId":18,"start":"2017-02-21T09:00:00","end":"2017-02-21T10:00:00","title":"BOMA Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"TBD","modifiedDate":"2017-02-08T16:06:58"},{"calendarId":4,"start":"2017-02-20T09:00:00","end":"2017-02-20T15:00:00","title":"Cops in the Community Volleyball Tournament","eventDetails":"Volleyball Tournament for Local 4th district Youth","eventUrl":null,"contactDetails":"4th District CAPS Office 312 747 1708","location":"3035 E 130th St","modifiedDate":"2017-02-22T13:46:37"},{"calendarId":25,"start":"2017-02-18T13:00:00","end":"2017-02-18T15:00:00","title":"Youth Exploring","eventDetails":"Youth Exploring","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-15T10:21:23"},{"calendarId":18,"start":"2017-02-18T10:00:22","end":"2017-02-18T12:00:22","title":"Peer Jury","eventDetails":"Preregistration \n12-18 years of age\n","eventUrl":null,"contactDetails":"312.742.5778","location":"018th District \nCommunity Room\n1160 N. Division","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":15,"start":"2017-02-18T10:00:00","end":"2017-02-18T12:00:00","title":"Block Club Training","eventDetails":"Community Organizer and residents partner on solving chronic crime and disorders and strategize together for solutions as block clubs and neighborhood watches are created.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:43:30"},{"calendarId":10,"start":"2017-02-18T10:00:00","end":"2017-02-18T12:00:00","title":"10th District Explorer Program- United Center visit","eventDetails":"The 10th District Explorers are going to tour the United Center and see what it takes to put a concert, basketball or hockey game together. From the set-up to the lighting.","eventUrl":null,"contactDetails":"CAPs- Officer Alvarez","location":"3315 W. Ogden Ave","modifiedDate":"2017-05-25T14:50:04"},{"calendarId":25,"start":"2017-02-18T09:30:00","end":"2017-02-18T10:30:00","title":"Computer Training","eventDetails":"Free computer training taught by CPD personnel on how to report online 311 City Service Requests, CLEARMap, and CLEARPath applications.","eventUrl":null,"contactDetails":"312-746-5090","location":"3030 N. Mobile - Room 132","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":25,"start":"2017-02-18T09:30:00","end":"2017-02-18T10:30:00","title":"Computer Training","eventDetails":"Free computer training in English & Spanish for online 311 requests and CPD CLEARMap and CLEARPath","eventUrl":null,"contactDetails":"312-746-5090","location":"Steinmetz H.S. Room 132","modifiedDate":"2017-02-21T16:43:35"},{"calendarId":11,"start":"2017-02-18T09:00:24","end":"2017-02-18T10:30:24","title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"555 w. Harrison","modifiedDate":"2017-03-08T15:28:29"},{"calendarId":17,"start":"2017-02-18T09:00:00","end":"2017-02-18T13:00:00","title":"Peer Jury-Youth Beat Meeting","eventDetails":"Peer Jury-Youth Beat Meeting ","eventUrl":null,"contactDetails":"(312) 742-4588 Please call for more details. CAPS.017district@chicagopolice.org","location":"017th District 4650 N. Pulaski","modifiedDate":"2017-02-08T16:06:28"},{"calendarId":9,"start":"2017-02-18T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Area Central\n5101 S.Wentworth Ave.","modifiedDate":"2017-01-04T14:19:43"},{"calendarId":7,"start":"2017-02-17T18:30:00","end":"2017-02-17T19:30:00","title":"DAC Meeting","eventDetails":"DAC subcommitee meeting","eventUrl":null,"contactDetails":"Sgt. Fraction 312-747-6722","location":"007th District Community Room 1438 W. 63rd","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":11,"start":"2017-02-17T12:35:27","end":"2017-02-17T13:55:27","title":"The Law and Your Community","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"ORR HIgh School","modifiedDate":"2017-03-08T15:27:33"},{"calendarId":18,"start":"2017-02-17T10:00:22","end":"2017-02-17T12:00:22","title":"Officer Friendly Program","eventDetails":"Pre K","eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-02-08T16:07:08"},{"calendarId":8,"start":"2017-02-17T09:30:00","end":"2017-02-17T11:00:00","title":"Peace March","eventDetails":"312-747-8724","eventUrl":null,"contactDetails":"Community Policing","location":"3302 W 63rd Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":25,"start":"2017-02-16T19:00:00","end":"2017-02-16T20:00:00","title":"2524 Beat Meeting","eventDetails":"2524 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Our Lady of Grace\n2446 N. Ridgeway","modifiedDate":"2016-12-30T10:52:22"},{"calendarId":8,"start":"2017-02-16T19:00:00","end":"2017-02-16T20:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":"312-747-8724","eventUrl":null,"contactDetails":"Community Policing","location":"4233 W 65th Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":20,"start":"2017-02-16T19:00:00","end":"2017-02-16T20:00:00","title":"2024 Beat Meeting","eventDetails":"2024 Beat Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Margate Field House 4921 N. Marine Drive","modifiedDate":"2017-06-23T15:35:00"},{"calendarId":7,"start":"2017-02-16T18:30:00","end":"2017-02-16T19:30:00","title":"Beat Meeting Bt. 735","eventDetails":"Beat Meeting Bt. 735 ","eventUrl":null,"contactDetails":"PO Blair or Sgt. Fraction\n312-747-6722","location":"Gifts From God Ministry 1818 W. 74th","modifiedDate":"2017-02-08T16:06:20"},{"calendarId":2,"start":"2017-02-16T18:30:00","end":"2017-02-16T19:30:00","title":"Beat Meeting","eventDetails":"221-223 Beat Meeting","eventUrl":null,"contactDetails":"2nd District Caps Office \n312-747-5109","location":"King Center\n4314 S Cottage Grove","modifiedDate":"2017-01-10T11:36:23"},{"calendarId":14,"start":"2017-02-16T18:30:00","end":null,"title":"1433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Pulaski Park\n1419 W. Blackhawk","modifiedDate":"2017-01-02T08:45:48"},{"calendarId":11,"start":"2017-02-16T18:00:00","end":"2017-02-16T19:00:00","title":"Beat Meeting 1113/14/15","eventDetails":"Community engagements generating strategies to making neighborhoods safe","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"St. Michael's MBC 4106 W. Monroe","modifiedDate":"2016-12-27T12:25:51"},{"calendarId":16,"start":"2017-02-16T18:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.\n016th District Police Station","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":9,"start":"2017-02-16T18:00:00","end":"2017-02-16T19:00:00","title":"Fuller Park Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Minnie Riperton Apts.\n4250 S. Princeton Ave.","modifiedDate":"2017-01-04T14:20:04"},{"calendarId":11,"start":"2017-02-16T18:00:00","end":"2017-02-16T19:00:00","title":"Beat Meeting 1113/1114/1115","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"4106 w. monroe","modifiedDate":"2017-03-08T15:30:04"},{"calendarId":11,"start":"2017-02-16T17:00:43","end":"2017-02-16T18:00:43","title":"Peace circle","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"Pichard M.Daley Library","modifiedDate":"2017-03-08T15:28:48"},{"calendarId":19,"start":"2017-02-16T16:30:00","end":"2017-02-16T18:30:00","title":"Youth Council Sporting Event","eventDetails":"Basketball competition and pizza.","eventUrl":null,"contactDetails":"Community Policing 312-744-0064","location":"825 W. Sheridan","modifiedDate":"2017-02-08T16:07:15"},{"calendarId":11,"start":"2017-02-16T14:15:19","end":"2017-02-16T15:55:19","title":"Law and Your Community","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"AL Raby HS 3545 W. Fulton","modifiedDate":"2017-03-08T15:30:23"},{"calendarId":11,"start":"2017-02-16T10:30:08","end":"2017-02-16T11:30:08","title":"Peace Circle","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"Jensen Elementary School","modifiedDate":"2017-03-08T15:29:12"},{"calendarId":11,"start":"2017-02-16T10:30:00","end":"2017-02-16T11:30:00","title":"The Law and Your Community","eventDetails":null,"eventUrl":null,"contactDetails":"PO Martin","location":"Austin Multi Plex HS","modifiedDate":"2017-03-08T15:29:46"},{"calendarId":11,"start":"2017-02-16T10:00:38","end":"2017-02-16T12:00:38","title":"Senior Sub Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"011 District Auditorium","modifiedDate":"2017-03-08T15:30:42"},{"calendarId":7,"start":"2017-02-16T10:00:00","end":"2017-02-16T13:00:00","title":"Food Pantry","eventDetails":null,"eventUrl":null,"contactDetails":"PO Shelton 312-747-6722","location":"7058 S. Peoria","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":6,"start":"2017-02-16T10:00:00","end":"2017-02-16T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":"Meet to discuss topics on Domestic Violence and prevention","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"6Th District \r\nPolice Station\r\n7808 S. Halsted St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":17,"start":"2017-02-15T19:30:00","end":"2017-02-15T20:30:00","title":"Beat Meeting 1722-1723","eventDetails":"Beat 1722-1723 Combined Beat Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"017th District 4650 N. Pulaski","modifiedDate":"2017-02-08T16:06:26"},{"calendarId":8,"start":"2017-02-15T19:00:00","end":"2017-02-15T20:00:00","title":"Beat Meeting 823/825","eventDetails":"312-747-8724","eventUrl":null,"contactDetails":"Community Policing","location":"3420 W, 63rd Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":3,"start":"2017-02-15T19:00:00","end":"2017-02-15T20:00:00","title":"Beat Meeting 333 & 334","eventDetails":"Beat Meeting 333 & 334","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"South Shore Culture Center 7059 S. South Shore Dr. Chicago, IL. 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":20,"start":"2017-02-15T19:00:00","end":"2017-02-15T20:00:00","title":"2013 Beat Meeting","eventDetails":"Beat Meeting for Beat 2013, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church 1609 W. Gregory St.","modifiedDate":"2017-06-23T15:35:18"},{"calendarId":2,"start":"2017-02-15T18:30:00","end":"2017-02-15T19:30:00","title":"Beat Meeting","eventDetails":"233-234-235 Beat Meeting","eventUrl":null,"contactDetails":"2nd District Caps Office","location":"Treasure Island\n1526 E 55th\nLower Level","modifiedDate":"2017-01-10T11:34:14"},{"calendarId":1,"start":"2017-02-15T18:30:00","end":"2017-02-15T19:30:00","title":"CAPS Beat 133 Residential Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381\ncaps001district@chicagopolice.org ","location":"125 E. 26th Street Trinity Episcopal Church\n","modifiedDate":"2017-01-09T12:17:01"},{"calendarId":14,"start":"2017-02-15T18:30:00","end":null,"title":"1434 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Bucktown Library\n1701 N. Milwaukee","modifiedDate":"2017-01-02T08:45:54"},{"calendarId":7,"start":"2017-02-15T18:30:00","end":"2017-02-15T19:30:00","title":"Beat Meeting Bt. 733 & 734","eventDetails":null,"eventUrl":null,"contactDetails":"PO Blair or Sgt. Fraction\n312-747-6722","location":"Salvation Army 845 W. 69th Street","modifiedDate":"2017-02-08T16:06:22"},{"calendarId":12,"start":"2017-02-15T18:00:00","end":"2017-02-15T19:00:00","title":"Beat Meeting 1234","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Harrison Park, 1824 S. Wood Street on the 3rd Wednesday of the even months. ","modifiedDate":"2016-10-13T17:07:30"},{"calendarId":9,"start":"2017-02-15T18:00:00","end":"2017-02-15T19:00:00","title":"Beat 925","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Gabriel's Church\n4500 S. Wallace","modifiedDate":"2017-01-04T14:20:22"},{"calendarId":10,"start":"2017-02-15T18:00:00","end":"2017-02-15T18:00:00","title":"Beat Meeting 1031 & 1032","eventDetails":"Beat 1031 & 1032 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Toman Library\n2708 S. Pulaski","modifiedDate":"2017-01-04T15:57:37"},{"calendarId":14,"start":"2017-02-15T17:15:00","end":"2017-02-15T19:15:00","title":"Walk the Beat","eventDetails":"walked the beat milwaukee and Damen to Evergreen and Damen","eventUrl":"10862","contactDetails":"014 district caps","location":"1600 N Milwaukee","modifiedDate":"2017-02-22T14:56:02"},{"calendarId":18,"start":"2017-02-15T15:00:00","end":"2017-02-15T16:00:00","title":"10 Sector Hospitality Meeting","eventDetails":"Lincoln Park Chamber of Commerce","eventUrl":null,"contactDetails":"robin@lincolnparkchamber.com","location":"TBD","modifiedDate":"2017-03-01T12:10:26"},{"calendarId":18,"start":"2017-02-15T15:00:00","end":"2017-02-15T16:00:00","title":"Near North Security Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"018th District 1160 N. Larrabee","modifiedDate":"2017-02-08T16:06:54"},{"calendarId":11,"start":"2017-02-15T13:00:03","end":"2017-02-15T14:30:03","title":"EAVI Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"011th District Auditorium","modifiedDate":"2017-03-08T15:31:08"},{"calendarId":19,"start":"2017-02-15T11:00:00","end":"2017-02-11T12:59:00","title":"Seniors Bingo","eventDetails":"Seniors Bingo and discuss next month's guest speaker.","eventUrl":null,"contactDetails":"19th District","location":"19th District","modifiedDate":"2017-03-01T11:49:57"},{"calendarId":18,"start":"2017-02-15T09:30:00","end":"2017-02-15T10:30:00","title":"Coffee with the Commander","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Eva's Cafe 1447 N. Sedgwick","modifiedDate":"2017-02-08T16:06:55"},{"calendarId":4,"start":"2017-02-14T19:00:00","end":"2017-02-14T20:00:00","title":"424 Community Beat Meeting","eventDetails":"Our Lady of Guadalupe Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"3200 E. 91st St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":8,"start":"2017-02-14T19:00:00","end":"2017-02-14T20:00:00","title":"Beat Meeting 831/832","eventDetails":"312-747-8724","eventUrl":null,"contactDetails":"Community Policing","location":"6734 S. Kedzie","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":24,"start":"2017-02-14T19:00:00","end":"2017-02-14T20:00:00","title":"2411 Beat Meating","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Bernard Horwich Center JCC 3003 W. Touhy","modifiedDate":"2016-12-07T10:18:12"},{"calendarId":20,"start":"2017-02-14T19:00:00","end":"2017-02-14T20:00:00","title":"2022 Beat Meeting","eventDetails":"2022 Beat Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS - 312-742-8770","location":"Broadway Armory 5917 N. Broadway","modifiedDate":"2017-06-23T15:35:40"},{"calendarId":12,"start":"2017-02-14T19:00:00","end":"2017-02-14T20:00:00","title":"Beat Meeting 1222","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Above and Beyond Family Recovery Center, 2942 W. Lake St., on the 2nd Tuesday of the even months.","modifiedDate":"2017-02-08T16:06:03"},{"calendarId":11,"start":"2017-02-14T18:30:24","end":"2017-02-14T19:30:24","title":"Beat meeting 1124/1125","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"2622 w. jackson","modifiedDate":"2017-03-08T15:31:34"},{"calendarId":7,"start":"2017-02-14T18:30:00","end":"2017-02-14T19:30:00","title":"BEAT MEETING: 722 & 723","eventDetails":"Beat 722 & 723; Every 2nd Tuesday","eventUrl":null,"contactDetails":"Sgt. Fraction or P.O. Blair","location":"KKC U-building 740 W. 63rd Street","modifiedDate":"2017-02-08T16:06:18"},{"calendarId":11,"start":"2017-02-14T18:30:00","end":"2017-02-14T19:30:00","title":"Beat Meeting 1124/25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"JLM Abundant Life Center 2622 W. Jackson","modifiedDate":"2016-12-27T12:28:41"},{"calendarId":2,"start":"2017-02-14T18:30:00","end":"2017-02-14T18:30:00","title":"Beat Meeting","eventDetails":"222 Beat Meeting","eventUrl":null,"contactDetails":"2nd District Caps Office","location":"Kennicott Park\n4434 S Lake Park ","modifiedDate":"2017-01-10T11:35:56"},{"calendarId":15,"start":"2017-02-14T18:30:00","end":"2017-02-14T19:30:00","title":"Beat 1511/24 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495\t","location":"Hope Community Church\n5900 W. Iowa\n","modifiedDate":"2017-01-03T14:43:37"},{"calendarId":9,"start":"2017-02-14T18:30:00","end":"2017-02-14T19:30:00","title":"Beat 913,915","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"009th District Station\n3120 S. Halsted","modifiedDate":"2017-01-04T14:20:36"},{"calendarId":6,"start":"2017-02-14T18:00:00","end":"2017-02-14T19:00:00","title":"Court Advocacy Meeting","eventDetails":"Track and learn about the court process civil and criminal","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"6Th District \r\nPolice Station\r\n7808 S. Halsted St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":11,"start":"2017-02-14T14:15:17","end":"2017-02-14T15:45:17","title":"The Law and Your Community","eventDetails":"The Law and Your Community","eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"Al Raby HS 3545 W. Fulton","modifiedDate":"2017-03-08T15:34:23"},{"calendarId":18,"start":"2017-02-14T14:00:00","end":"2017-02-14T16:00:00","title":"Randon Acts of Kindness Day","eventDetails":null,"eventUrl":null,"contactDetails":"018th District Community Relations Office","location":"018th District","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":18,"start":"2017-02-14T11:30:00","end":"2017-02-14T13:00:00","title":"Valentine Day Senior Bingo ","eventDetails":null,"eventUrl":null,"contactDetails":"RSVP (312) 428-1883","location":"Stamps Rhine Center 1327 N. Larrabee","modifiedDate":"2017-02-08T16:06:52"},{"calendarId":7,"start":"2017-02-14T11:00:00","end":"2017-02-14T14:00:00","title":"Senior Sweetheart Luncheon","eventDetails":"Celebrating Love and Life of Senior Community","eventUrl":null,"contactDetails":"PO Millison or PO Green\n312-747-6722","location":"007th District Community Room. 1438 W. 63rd","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":6,"start":"2017-02-14T10:00:00","end":"2017-02-14T11:00:00","title":"Business Subcommittee Meeting","eventDetails":"Meet with local businesses as we plan future events to foster a safe community","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"6Th District\r\nPolice Station\r\n7808 S. Halsted St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":19,"start":"2017-02-13T18:30:00","end":"2017-02-13T19:30:00","title":"Beat 1934 & 1935","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"2nd Unitarian Church\n656 W. Barry","modifiedDate":"2016-12-06T12:53:20"},{"calendarId":2,"start":"2017-02-13T18:30:00","end":"2017-02-13T19:30:00","title":"Beat Meeting","eventDetails":"Beat 211 \n( Meeting ) ( Holiday )","eventUrl":null,"contactDetails":"CAPS Office 312-747-5109","location":"3240 S Indiana","modifiedDate":"2017-01-10T11:33:33"},{"calendarId":15,"start":"2017-02-13T15:00:00","end":"2017-02-13T16:00:00","title":"Domestic Violence Meeting ","eventDetails":"Domestic Violence Subcommittee Meeting/ Subcommittee Members discuss and plan upcoming events for Domestic Violence Victims and Promote Awareness.\n\n","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:43:44"},{"calendarId":7,"start":"2017-02-12T10:00:00","end":"2017-02-12T12:00:00","title":"Jr.NBA","eventDetails":"Ogden Park 6500 S. Racine","eventUrl":null,"contactDetails":"PO Millison or Sgt. Fraction 312-7476722","location":"6500 S. Racine","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":11,"start":"2017-02-11T11:00:04","end":"2017-02-11T14:00:04","title":"DAC Youth Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"011th District","modifiedDate":"2017-03-08T15:32:09"},{"calendarId":14,"start":"2017-02-11T10:00:00","end":null,"title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:45:59"},{"calendarId":16,"start":"2017-02-11T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-03T19:10:14"},{"calendarId":11,"start":"2017-02-10T16:30:00","end":"2017-02-10T20:00:00","title":"Daddy/Daughter dance","eventDetails":"Father/Daughter dance","eventUrl":null,"contactDetails":"Beat facilitator Sandra Brown","location":"Altgeld Park","modifiedDate":"2017-03-08T15:32:45"},{"calendarId":11,"start":"2017-02-10T12:40:59","end":"2017-02-10T13:55:59","title":"The Law and Your Community","eventDetails":"The Law and Your community","eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"ORR HS 730 N. Pulaski","modifiedDate":"2017-03-08T15:33:06"},{"calendarId":4,"start":"2017-02-10T12:00:00","end":"2017-02-10T14:00:00","title":"CAPACITY BUILDING WORKSHOP","eventDetails":"WORKSHOP FOR BUILDING OWNERS","eventUrl":null,"contactDetails":"4TH DISTRICT CAPS OFFICE","location":"9801 S. AVENUE G","modifiedDate":"2017-02-15T11:08:37"},{"calendarId":14,"start":"2017-02-09T19:00:00","end":null,"title":"1422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Simon's Park\n1640 N. Drake","modifiedDate":"2017-01-02T08:46:06"},{"calendarId":4,"start":"2017-02-09T19:00:00","end":"2017-02-09T20:00:00","title":"421 & 422 Beat Meeting","eventDetails":"Labor Of Love Apostolic Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"2800 E. 79th St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":16,"start":"2017-02-09T19:00:00","end":"2017-02-09T20:00:00","title":"1632 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521(Caps) CAPS016District@chicagopolice.org","location":"Schorsch Village Hall\n6940 W. Belmont","modifiedDate":"2017-01-03T19:10:37"},{"calendarId":3,"start":"2017-02-09T19:00:00","end":"2017-02-09T20:00:00","title":"Beat Meeting 331 & 332","eventDetails":"Beat Meeting 331 & 332","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"ABJ Community Service Center 1818 E. 71st Street Chicago, IL. 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":2,"start":"2017-02-09T18:30:00","end":"2017-02-09T19:30:00","title":"Beat Meeting","eventDetails":"225-231-232 Beat Meeting","eventUrl":null,"contactDetails":"2nd District Caps Office\n312-747-5109","location":"Coppin A.M.E Church\n5627 S Michigan","modifiedDate":"2017-01-10T11:34:59"},{"calendarId":15,"start":"2017-02-09T18:30:00","end":"2017-02-09T19:30:00","title":"Beat 1513S CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"George R. Clarke School\n1045 S. Monitor\n","modifiedDate":"2017-01-03T14:43:52"},{"calendarId":7,"start":"2017-02-09T18:30:00","end":"2017-02-09T19:30:00","title":"Beat Meeting Bt. 724 & Bt.725","eventDetails":null,"eventUrl":null,"contactDetails":"PO Blair or Sgt. Fraction\n312-747-6722","location":"Ogden Park\r\n6500 S. Racine","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":1,"start":"2017-02-09T18:30:00","end":"2017-02-09T18:30:00","title":"CAPS 10 Sector Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381 caps001district@chicagopolice.org ","location":"130 N. Garland Ct\nCondo Building ","modifiedDate":"2017-01-09T12:17:14"},{"calendarId":11,"start":"2017-02-09T18:00:47","end":"2017-02-09T19:00:47","title":"1122/1123 beat meeting","eventDetails":null,"eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"115 s. Pulaski","modifiedDate":"2017-03-08T15:31:51"},{"calendarId":10,"start":"2017-02-09T18:00:00","end":"2017-02-09T19:00:00","title":"Beat Meeting 1023 & 1024","eventDetails":"Beat 1023 & 1024 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Mt. Sinai Hospital\n2730 W. 15th Place\nCourtesy Parking on that block","modifiedDate":"2017-01-04T15:58:23"},{"calendarId":12,"start":"2017-02-09T18:00:00","end":"2017-02-09T19:00:00","title":"Beat Meeting 1214","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"Bennett Day School 955 W. Grand ","modifiedDate":"2017-02-08T16:06:05"},{"calendarId":11,"start":"2017-02-09T18:00:00","end":"2017-02-09T19:00:00","title":"Beat Meeting 1122/1123","eventDetails":"Community engagements generating strategies to making neighborhoods safe.\n\n","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Legler Chicago Public Library 115 S. Pulaski","modifiedDate":"2016-12-27T12:26:49"},{"calendarId":4,"start":"2017-02-09T11:00:00","end":"2017-02-09T15:00:00","title":"Heart2Heart","eventDetails":"DV SURVIVOR CELEBRATION LUNCHEON","eventUrl":null,"contactDetails":"4th District Caps Office","location":"235 E. 103RD ST","modifiedDate":"2017-02-15T11:09:01"},{"calendarId":18,"start":"2017-02-09T10:00:00","end":"2017-02-09T12:00:00","title":"Officer Friendly Program","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Lincoln Park Preschool 108 W. Germania","modifiedDate":"2017-02-08T16:06:51"},{"calendarId":6,"start":"2017-02-09T10:00:00","end":"2017-02-09T11:00:00","title":"Faith Based Subcommittee Meeting","eventDetails":"Join the faith based leaders as we connect with our community","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"6Th District \r\nPolice Station\r\n7808 S. Halsted","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":12,"start":"2017-02-09T09:00:00","end":"2017-02-09T09:30:00","title":"Senior Enrichment Seminar","eventDetails":"A Seminar on Reverse Mortgage and preditory leanding for seniors ","eventUrl":null,"contactDetails":"12th District C APS 312-746-8306","location":"50 W Washington St, Chicago, IL 60602","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":8,"start":"2017-02-09T07:00:00","end":"2017-02-09T19:00:00","title":"Beat Meeting 814","eventDetails":"312-747-8724","eventUrl":null,"contactDetails":"Community Policing","location":"5010 W. 50th Street","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":4,"start":"2017-02-08T19:00:02","end":"2017-02-08T20:00:02","title":"413 Beat Community Meeting","eventDetails":"St. Ailbe Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"9037 S. Harper Ave.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":20,"start":"2017-02-08T19:00:00","end":"2017-02-08T20:00:00","title":"2012 Beat Meeting","eventDetails":"Beat Meeting for Beat 2012, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"St. Gregory Gym 1609 W. Gregory","modifiedDate":"2017-06-23T15:36:00"},{"calendarId":9,"start":"2017-02-08T19:00:00","end":"2017-02-08T20:00:00","title":"Beat 912","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Maurice Church Hall\n3625 S. Hoyne","modifiedDate":"2017-01-04T14:20:57"},{"calendarId":19,"start":"2017-02-08T19:00:00","end":"2017-02-08T20:00:00","title":"Beat 1914","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Clarendon Park\n4501 N. Clarendon","modifiedDate":"2016-12-06T12:53:55"},{"calendarId":16,"start":"2017-02-08T19:00:00","end":"2017-02-08T20:00:00","title":"1622 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521( Caps) CAPS016District@chicagopolice.org","location":"Dunham Park\n4638 N. Melvina","modifiedDate":"2017-01-03T19:13:14"},{"calendarId":14,"start":"2017-02-08T19:00:00","end":null,"title":"1424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Wicker Park\n1425 N. Damen","modifiedDate":"2017-01-02T08:46:13"},{"calendarId":17,"start":"2017-02-08T19:00:00","end":"2017-02-08T20:00:00","title":"Beat Meeting 1732-1733","eventDetails":"Beat 1732-1733 Combined Beat Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Athletic Park 3546 W. Addison","modifiedDate":"2017-02-08T16:06:24"},{"calendarId":1,"start":"2017-02-08T18:30:00","end":"2017-02-08T19:30:00","title":"CAPS 20 Sector Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381 caps001district@chicagopilice.org ","location":"525 S. State Street \nUniversity Center ","modifiedDate":"2017-01-09T12:17:33"},{"calendarId":2,"start":"2017-02-08T18:30:00","end":"2017-02-08T18:30:00","title":"Beat Meeting","eventDetails":"213-215-224 Beat Meeting","eventUrl":null,"contactDetails":"2nd District Caps Office\n312-747-5109","location":"St Elizabeth Church\n4058 S Michigan","modifiedDate":"2017-01-10T11:37:12"},{"calendarId":25,"start":"2017-02-08T18:00:00","end":"2017-02-08T19:00:00","title":"DAC Meeting","eventDetails":"Monthly DAC Meeting and Officer of the Month Awards.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"25th District - 5555 W. Grand Ave.","modifiedDate":"2016-12-14T10:26:13"},{"calendarId":10,"start":"2017-02-08T18:00:00","end":"2017-02-08T19:00:00","title":"District Advisory Committee Meeting","eventDetails":"District Advisory meeting ","eventUrl":null,"contactDetails":"CAPs ","location":"3315 w. Ogden Ave","modifiedDate":"2017-05-25T14:52:34"},{"calendarId":11,"start":"2017-02-08T17:45:42","end":"2017-02-08T18:45:42","title":"RMD Library circle","eventDetails":"Peace circle","eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"Richard M Daley Library","modifiedDate":"2017-03-08T15:34:46"},{"calendarId":18,"start":"2017-02-08T15:30:00","end":"2017-02-08T16:30:00","title":"30 Sector Hospitality Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Highline-169 W. Kinzie","modifiedDate":"2017-02-08T16:06:50"},{"calendarId":14,"start":"2017-02-08T13:30:00","end":null,"title":"Domestic Violence Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-02T08:46:19"},{"calendarId":22,"start":"2017-02-08T13:30:00","end":"2017-02-08T14:30:00","title":"Court Advocacy","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:41:55"},{"calendarId":11,"start":"2017-02-08T13:00:19","end":"2017-02-09T14:00:19","title":"Peace Circle","eventDetails":"Peace Circles","eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":"Jensen Elementary","modifiedDate":"2017-03-08T15:33:23"},{"calendarId":6,"start":"2017-02-08T11:00:00","end":"2017-02-08T12:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Meet with Seniors on crime tip prevention and plan fun filled events","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"6TH District\r\nPolice Station\r\n7808 S. Halsted","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":11,"start":"2017-02-08T10:30:02","end":"2017-02-08T11:30:02","title":"The Law and Your Community","eventDetails":"The Law and Your Community","eventUrl":null,"contactDetails":"011th District CAPS' Office 1.312.746.9841","location":" Austin Multi Plex H.S. 231 N Pine","modifiedDate":"2017-03-08T15:35:06"},{"calendarId":20,"start":"2017-02-08T10:00:00","end":"2017-02-08T11:00:00","title":"Seniors Meeting","eventDetails":"Seniors Meeting, a monthly meeting featuring activities and informative talks on seniors related topics. Contact CAPS for details.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District Community Room5400 N. Lincoln ave","modifiedDate":"2017-06-23T14:14:26"},{"calendarId":11,"start":"2017-02-08T06:00:00","end":"2017-02-08T07:30:00","title":"Meeting: Human/Sex Trafficking","eventDetails":"Sex trafficking drop center","eventUrl":null,"contactDetails":"P.O McKinney","location":"3410 W. Roosevelt","modifiedDate":"2017-03-08T15:33:50"},{"calendarId":4,"start":"2017-02-07T19:00:29","end":"2017-02-07T20:00:29","title":"433 Beat Community Meeting","eventDetails":"St. Columba","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"13323 S. Green Bay Ave.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":24,"start":"2017-02-07T19:00:00","end":null,"title":"2413 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Green Briar Park 2650 W. Peterson","modifiedDate":"2016-12-07T10:15:15"},{"calendarId":12,"start":"2017-02-07T19:00:00","end":"2017-02-07T20:00:00","title":"Beat Meeting 1212","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at St. Helen's School Basement, 2345 W. Augusta on the 1st Tuesday of the even months. ","modifiedDate":"2016-10-13T17:08:16"},{"calendarId":16,"start":"2017-02-07T19:00:00","end":"2017-02-07T20:00:00","title":"1612 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521 CAPS016District@chicagopolice.org","location":"Olympia Park \n6566 N. Avondale","modifiedDate":"2017-01-03T19:14:38"},{"calendarId":12,"start":"2017-02-07T18:30:19","end":"2017-02-07T19:30:19","title":"Boy Scouts safety presentation ","eventDetails":null,"eventUrl":null,"contactDetails":"Community Policing Office Officer Barraco 312-746-8306 ","location":"1412 S. Blue Island","modifiedDate":"2017-02-17T09:01:25"},{"calendarId":15,"start":"2017-02-07T18:30:00","end":"2017-02-07T19:30:00","title":"Beat 1531/32 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"West Branch Library\n4856 W. Chicago Ave\n","modifiedDate":"2017-01-03T14:44:00"},{"calendarId":2,"start":"2017-02-07T18:30:00","end":"2017-02-07T18:30:00","title":"Beat Meeting","eventDetails":"212-214 Beat Meeting","eventUrl":null,"contactDetails":"2nd District Caps Office","location":"Mandrake Park Field House\n3858 S Cottage Gr\n","modifiedDate":"2017-01-10T11:37:37"},{"calendarId":11,"start":"2017-02-07T18:30:00","end":"2017-02-07T19:30:00","title":"Beat Meeting 1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Brian Piccolo School 1040 N. Keeler","modifiedDate":"2016-12-27T12:17:24"},{"calendarId":10,"start":"2017-02-07T18:00:00","end":"2017-02-07T19:00:00","title":"Beat Meeting 1034","eventDetails":"Beat 1034 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"YMCA- Rauner\n2700 S. Western Ave","modifiedDate":"2017-01-04T15:55:38"},{"calendarId":9,"start":"2017-02-07T18:00:00","end":"2017-02-07T19:00:00","title":"Beat 924,931,933","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"New City Supportive Living\n4707 S. Marshfield","modifiedDate":"2017-01-04T14:21:13"},{"calendarId":18,"start":"2017-02-07T18:00:00","end":"2017-02-07T19:00:00","title":"Court Advocacy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"018th District- 1160 N. Larrabee","modifiedDate":"2017-02-08T16:06:49"},{"calendarId":9,"start":"2017-02-07T17:00:00","end":"2017-02-07T18:00:00","title":"Wentworth Garden Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Wentworth Gardens\n3770 S. Wentworth Ave.","modifiedDate":"2017-01-04T14:21:29"},{"calendarId":4,"start":"2017-02-07T12:00:00","end":"2017-02-07T14:00:00","title":"SENIOR ADVISORY MEETING","eventDetails":"SENIOR MONTHLY MEETING","eventUrl":null,"contactDetails":"4TH DISTRICT CAPS OFFICE ","location":"2255 E 103RD ST","modifiedDate":"2017-02-15T11:08:49"},{"calendarId":17,"start":"2017-02-07T11:00:00","end":"2017-02-07T12:00:00","title":"Domestic Violence Sub-Committee","eventDetails":"Domestic Violence Sub-Committee","eventUrl":null,"contactDetails":"(312)742-4588 CAPS.017District@chicagopolice.org","location":"017th District 4650 N. Pulaski","modifiedDate":"2017-02-08T16:06:46"},{"calendarId":15,"start":"2017-02-07T10:00:00","end":"2017-02-07T12:00:00","title":"Faith-Based Meeting","eventDetails":"Faith-Based Subcommittee Meeting/ Clergy from various denominations come together and discuss chronic crime issues that affect the community. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:44:08"},{"calendarId":25,"start":"2017-02-07T10:00:00","end":"2017-02-07T11:00:00","title":"Senior Advisory Meeting","eventDetails":"025th District Senior Advisory Meeting","eventUrl":null,"contactDetails":"Community Relations Office 312-746-5090","location":"025th district, 5555 W. Grand Ave","modifiedDate":"2016-12-14T10:25:07"},{"calendarId":20,"start":"2017-02-06T19:00:00","end":"2017-02-06T20:00:00","title":"2011 Beat Meeting","eventDetails":"Beat Meeting for Beat 2011, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"5400 N. Lincoln AveCommunity Room","modifiedDate":"2017-06-23T15:36:29"},{"calendarId":4,"start":"2017-02-06T11:00:00","end":"2017-02-06T17:00:00","title":"BLOOD DRIVE","eventDetails":"BLOOD DRIVE ","eventUrl":null,"contactDetails":"4TH DISTRICT C.A.P.S. OFFICE","location":"2255 E 103RD ST.","modifiedDate":"2017-02-15T11:09:12"},{"calendarId":3,"start":"2017-02-04T11:00:00","end":"2017-02-04T13:00:00","title":"Youth/Explorers Meeting","eventDetails":"Youth/Explorers Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"003rd District(Auditorium) 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":10,"start":"2017-02-04T11:00:00","end":"2017-02-04T12:30:00","title":"Senior Fraud/ Scam Workshop","eventDetails":"Learn to identify financial scams aimed at seniors. Learn how to avoid being a victim of fraud in your community.","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"10th District\r\n3315 W. Ogden Ave\r\nCommunity Room","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":6,"start":"2017-02-04T11:00:00","end":"2017-02-04T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities","eventUrl":null,"contactDetails":"Contact CAPS Office at (312)745-3641","location":"6th District \r\nPolice station\r\n7808 S. Halsted St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":25,"start":"2017-02-04T08:30:00","end":"2017-02-04T11:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-30T10:38:27"},{"calendarId":12,"start":"2017-02-03T11:00:44","end":"2017-02-03T13:00:44","title":"Brooklyn Boulders","eventDetails":"Discuss potential Explorer/Youth opportunities ","eventUrl":null,"contactDetails":"Community Policing Office Officer Barraco 312-746-8306 ","location":"Raquel@brooklynboulders.com","modifiedDate":"2017-02-17T09:48:51"},{"calendarId":4,"start":"2017-02-02T19:00:16","end":"2017-02-02T20:00:16","title":"434 Community Beat Meeting","eventDetails":"St. Kevin's Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"10501 S. Torrence Ave","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":24,"start":"2017-02-02T19:00:00","end":null,"title":"District Advisory Council Meeting","eventDetails":"Not open to the public","eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District","modifiedDate":"2016-12-07T10:09:05"},{"calendarId":14,"start":"2017-02-02T19:00:00","end":null,"title":"1411/1412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Nicolai Church\n3000 N. Kedzie","modifiedDate":"2017-01-02T08:46:25"},{"calendarId":3,"start":"2017-02-02T19:00:00","end":"2017-02-02T20:00:00","title":"Beat Meeting 313 & 314","eventDetails":"Beat Meeting 313 & 314","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Harris Park Recreation Center 6200 S. Drexel\r\nChicago, IL. 60637","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":19,"start":"2017-02-02T18:30:00","end":"2017-02-02T19:30:00","title":"Beat 1915","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Uptown Buena Library\n929 W. Buena","modifiedDate":"2016-12-06T12:53:47"},{"calendarId":15,"start":"2017-02-02T18:30:00","end":"2017-02-02T19:30:00","title":"Beat 1512/23 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"PCC Family Health Ctr.\n5425 W. Lake St.\n","modifiedDate":"2017-01-03T14:44:15"},{"calendarId":25,"start":"2017-02-02T18:30:00","end":"2017-02-02T19:30:00","title":"2522 Beat Meeting","eventDetails":"2522 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Hermosa Park\n2240 N. Kilbourn","modifiedDate":"2016-12-30T10:38:53"},{"calendarId":11,"start":"2017-02-02T18:00:00","end":"2017-02-02T19:00:00","title":"Beat Meeting 1112/1121","eventDetails":"Community engagements generating strategies to making neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St. 312-746-9841","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2016-12-27T12:18:12"},{"calendarId":10,"start":"2017-02-02T18:00:00","end":"2017-02-02T19:00:00","title":"Beat Meeting 1022 ","eventDetails":"Beat 1022 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Albany Terrace\n3030 W. 21st Place","modifiedDate":"2017-01-04T15:59:10"},{"calendarId":18,"start":"2017-02-02T18:00:00","end":"2017-02-02T19:00:00","title":"Beat Meeting","eventDetails":"Beats 1831, 1832, 1833","eventUrl":null,"contactDetails":null,"location":"Access Living \n115 W. Chicago Avenue.","modifiedDate":"2017-02-22T20:04:37"},{"calendarId":14,"start":"2017-02-02T17:00:00","end":null,"title":"Peer Jury Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2017-01-02T08:46:34"},{"calendarId":22,"start":"2017-02-02T14:00:00","end":"2017-02-02T15:00:00","title":"Diversity & Inclusion","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022 District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:41:48"},{"calendarId":3,"start":"2017-02-02T13:00:00","end":"2017-02-02T14:00:00","title":"District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 \n(312)747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":2,"start":"2017-02-02T13:00:00","end":"2017-02-02T15:00:00","title":"Faith Base Meeting ","eventDetails":"Greater Metropolitan Church \nRev. Runnels ","eventUrl":null,"contactDetails":"Officer Denise Gathings 312-747-5109","location":"5826 S. Wabash\r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":4,"start":"2017-02-01T19:00:42","end":"2017-02-01T20:00:42","title":"414 Community Beat Meeting","eventDetails":"New Original Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office 312-747-1708.","location":"1750 E.78th St.","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":3,"start":"2017-02-01T19:00:00","end":"2017-02-01T20:00:00","title":"Beat Meeting 311 & 312","eventDetails":"Beat Meeting 311 & 312","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Bessie Coleman Library\r\n731 e. 63rd Street\r\nChicago, IL. 60637 \r\n\r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":20,"start":"2017-02-01T19:00:00","end":"2017-02-01T20:00:00","title":"2033 Beat Meeting","eventDetails":"2033 Beat Community Meeting, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Bezazian Library 1226 W. Aislie","modifiedDate":"2017-06-23T15:36:46"},{"calendarId":19,"start":"2017-02-01T19:00:00","end":"2017-02-01T20:00:00","title":"Beat 1923, 24 & 25","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"19th District Police\n850 W. Addison","modifiedDate":"2016-12-06T12:54:05"},{"calendarId":25,"start":"2017-02-01T18:30:00","end":"2017-02-01T18:30:00","title":"2512 Beat Meeting","eventDetails":"Beat Meeting","eventUrl":null,"contactDetails":"P.O.Rodriguez A.\n312/746-5090","location":"Shriner's Hospital \n2211 N. Oak Park","modifiedDate":"2016-12-30T10:35:48"},{"calendarId":15,"start":"2017-02-01T18:00:00","end":"2017-02-01T19:00:00","title":"Beat 1522/33 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Loretto Hospital\n645 S. Central, 6th Fl.\n","modifiedDate":"2017-01-03T14:44:22"},{"calendarId":9,"start":"2017-02-01T18:00:00","end":"2017-02-01T19:00:00","title":"Beat 911, 921","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Davis School Annex\n3030 W. 39th Place","modifiedDate":"2017-01-04T14:21:45"},{"calendarId":12,"start":"2017-02-01T18:00:00","end":"2017-02-01T19:00:00","title":"Beat Meeting 1224","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Chicago Police Academy 1300 W. Jackson, on the 1st Wednesday of the even months. ","modifiedDate":"2016-10-13T17:08:07"},{"calendarId":14,"start":"2017-02-01T18:00:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2016-12-28T20:17:04"},{"calendarId":18,"start":"2017-02-01T15:00:00","end":"2017-02-01T16:00:00","title":"20 Sector Hospitality Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"She-Nannigans 16 W. Division","modifiedDate":"2017-02-08T16:06:48"},{"calendarId":3,"start":"2017-02-01T14:00:00","end":"2017-02-01T15:00:00","title":"Court Advocate meeting","eventDetails":"003rd District Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":18,"start":"2017-02-01T13:00:00","end":"2017-02-01T14:00:00","title":"Officer Friendly Program","eventDetails":"Lincoln Park Pre-School","eventUrl":null,"contactDetails":null,"location":"1753 N. Fern Court","modifiedDate":"2017-02-22T20:04:45"},{"calendarId":25,"start":"2017-02-01T10:00:00","end":"2017-02-01T11:00:00","title":"Domestic Violence Subcommittee","eventDetails":"Domestic Violence Subcommittee","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-30T10:55:45"},{"calendarId":20,"start":"2017-01-31T19:00:00","end":"2017-01-31T20:00:00","title":"2031 Beat Meeting","eventDetails":"Beat Meeting for Beat 2031, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Swedish Covenant HospitalAnderson Pavilion3751 W. Winona St.","modifiedDate":"2017-06-23T15:36:59"},{"calendarId":17,"start":"2017-01-31T13:00:00","end":"2017-01-31T17:00:00","title":"Chicago Police Recruitment Event","eventDetails":"Chicago Police Recruitment Event","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Albany Park Library","modifiedDate":"2017-02-08T16:06:31"},{"calendarId":6,"start":"2017-01-30T18:00:00","end":"2017-01-30T20:00:00","title":"Beat Facilitator/DAC Meeting","eventDetails":"Beat facilitators and DAC members meet to discuss problems that affect the 6th District community","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"6th District\r\nCommunity Room\r\n7808 S. Halsted Street","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":17,"start":"2017-01-30T14:00:00","end":"2017-01-30T18:00:00","title":"Police Recruitment Event","eventDetails":"Chicago Police Recruitment Event ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Jewel - Osco at Foster and Pulaski","modifiedDate":"2017-02-08T16:06:30"},{"calendarId":18,"start":"2017-01-28T10:00:45","end":"2017-01-28T14:00:45","title":"CPD Recruitment ","eventDetails":"CPD Open House","eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-23T11:11:48"},{"calendarId":3,"start":"2017-01-28T09:00:00","end":"2017-01-28T11:00:00","title":"Peer Jury Meeting","eventDetails":"Peer Jury Meeting","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"002nd District\r\n51st Wentworth","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":10,"start":"2017-01-26T19:00:00","end":"2017-01-26T22:00:00","title":"CPD 10th District Recruitment","eventDetails":"Be the Change! Come out and apply to take the test to become a Chicago Police Officer","eventUrl":null,"contactDetails":"CAPS 312-747-7511","location":"Piotrowski Park\r\n4247 W. 31st Street","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":3,"start":"2017-01-26T19:00:00","end":"2017-01-26T20:00:00","title":"Beat Meeting 321 & 324","eventDetails":"Beat Meeting 321& 324","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District (Auditorium)\t\r\n7040 S. Cottage Grove\t \r\nChicago, IL. 60637\r\n(312) 747-7004\r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":6,"start":"2017-01-26T18:30:00","end":"2017-01-26T19:30:00","title":"Beat 634 Meeting","eventDetails":"Discuss community concerns and problems","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"New Progressive Church\n9400 S. Perry ","modifiedDate":"2016-12-28T15:49:28"},{"calendarId":11,"start":"2017-01-26T18:00:00","end":"2017-01-26T19:00:00","title":"Beat Meeting:1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Eloise Mc Coy Village Apartments 4650 W. Van Buren ","modifiedDate":"2016-11-30T16:52:37"},{"calendarId":11,"start":"2017-01-26T16:30:00","end":"2017-01-26T17:30:00","title":"Youth EAVI Meeting ","eventDetails":"Y-EAVI is looking for youth between the 6th and 12th grades who are interested in opportunities to engage in academic enrichment, personal development and community service outside of school. ","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841.","location":"Marillac House \n212 S. Francisco Ave.","modifiedDate":"2016-12-27T12:32:06"},{"calendarId":22,"start":"2017-01-26T10:30:00","end":"2017-01-26T11:30:00","title":"Domestic Violence","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022nd District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:43:15"},{"calendarId":17,"start":"2017-01-25T19:30:00","end":"2017-01-25T20:30:00","title":"1711-1712 Combined Beat Meeting","eventDetails":"1711-1712 Combined Community Beat Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Mayfair Church\n5020 N. Pulaski Rd.","modifiedDate":"2016-12-27T10:36:32"},{"calendarId":20,"start":"2017-01-25T19:00:00","end":"2017-01-25T20:00:00","title":"2032 Beat Meeting","eventDetails":"Beat Meeting for Beat 2032, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Ravenswood Evangelical Church4900 N. Damen","modifiedDate":"2017-06-23T15:37:11"},{"calendarId":25,"start":"2017-01-25T18:30:50","end":"2017-01-25T19:30:50","title":"2523 Beat Meeting","eventDetails":"2523 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"St. Joseph\n4021 W. Belmont","modifiedDate":"2016-12-30T09:57:59"},{"calendarId":9,"start":"2017-01-25T18:30:00","end":"2017-01-25T19:30:00","title":"Beat 914 Meeting","eventDetails":"Community Beat Meeting","eventUrl":null,"contactDetails":"009th District CAPS office\n747-3501","location":"China Town Public Library\n2100 S. Wentworth","modifiedDate":"2017-01-04T13:53:14"},{"calendarId":17,"start":"2017-01-25T18:30:00","end":"2017-01-25T19:15:00","title":"1713 Beat Meeting","eventDetails":"1713 Community Beat Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"North Park University Magnesium Building\n5000 N. Spaulding","modifiedDate":"2016-12-27T10:36:05"},{"calendarId":6,"start":"2017-01-25T18:30:00","end":"2017-01-25T19:30:00","title":"Beat 624 Meeting","eventDetails":"Discuss community problems and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"St. Dorothy's School\n450 E. 78th Street","modifiedDate":"2016-12-28T15:40:55"},{"calendarId":12,"start":"2017-01-25T18:00:00","end":"2017-01-25T19:00:00","title":"Beat Meeting 1235","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Las Americas on the 4th Wednesday of the odd months. ","modifiedDate":"2016-10-15T10:44:08"},{"calendarId":3,"start":"2017-01-25T18:00:00","end":"2017-01-25T19:00:00","title":"Dac Meeting ","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. HUTCHINSON\n003rd District Police Station 7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":14,"start":"2017-01-25T13:30:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2016-12-28T20:16:27"},{"calendarId":25,"start":"2017-01-25T13:00:00","end":"2017-01-25T14:00:00","title":"Faith-Based Subcommittee","eventDetails":"25th District Faith-Based Subcommittee Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-14T10:23:59"},{"calendarId":15,"start":"2017-01-25T10:00:00","end":"2017-01-25T12:00:00","title":"Senior Meeting","eventDetails":"Senior Subcommittee Meeting / Senior Citizens related topics w/ Guest Speakers from various agencies and departments","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:44:31"},{"calendarId":15,"start":"2017-01-25T08:30:00","end":"2017-01-25T09:30:00","title":"Business Meeting","eventDetails":"Business owners of the 15th District meet with Community Organizer and discuss concerns of crime and ways to improve business related issues\n\n","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"MacArthur's Restaurant\n5412 W. Madison\n","modifiedDate":"2017-01-03T14:44:40"},{"calendarId":18,"start":"2017-01-25T08:00:00","end":"2017-01-25T09:00:00","title":"Mag Mile Association","eventDetails":"Members Only","eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-23T11:11:48"},{"calendarId":12,"start":"2017-01-24T19:00:00","end":"2017-01-24T20:00:00","title":"Beat Meeting 1211","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is a Norwegian Hospital 1044 N. Francisco on the 4th Tuesday of the odd months. ","modifiedDate":"2016-10-12T14:04:21"},{"calendarId":3,"start":"2017-01-24T19:00:00","end":"2017-01-24T20:00:00","title":"Beat meeting 322 & 323","eventDetails":"Beat Meeting 322 & 323","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Park Manor Church\r\n600 E. 73rd Street\r\nChicago, IL. 60619","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":24,"start":"2017-01-24T19:00:00","end":null,"title":"2433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Edgewater Library 6000 N. Broadway","modifiedDate":"2016-12-07T10:10:18"},{"calendarId":10,"start":"2017-01-24T19:00:00","end":"2017-01-24T22:00:00","title":"CPD 10th District Recruitment","eventDetails":"Be the Change! Come out and apply to take the test to become a Chicago Police Officer","eventUrl":null,"contactDetails":"CAPS 312-747-7511","location":"Piotrowski Park\r\n4247 W. 31st Street","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":9,"start":"2017-01-24T19:00:00","end":"2017-01-24T20:00:00","title":"Beat 922, 923","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Simon Church Hall\n5157 S. California","modifiedDate":"2017-01-04T13:55:38"},{"calendarId":24,"start":"2017-01-24T19:00:00","end":null,"title":"2422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Willye White Park 1610 W. Howard","modifiedDate":"2016-12-07T10:14:32"},{"calendarId":25,"start":"2017-01-24T18:30:40","end":"2017-01-24T19:30:40","title":"2513 Beat Meeting","eventDetails":"2513 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Amundsen Park\n6200 W. Bloomingdale","modifiedDate":"2016-12-30T09:58:53"},{"calendarId":3,"start":"2017-01-24T18:30:00","end":"2017-01-24T20:30:00","title":"District Community Peace Circle","eventDetails":"District Community Peace Circle","eventUrl":null,"contactDetails":"Sgt. Jointer\n7040 S. Cottage Grove\nChicago, IL. 60637","location":"Lincoln Memorial Church\r\n6454 S. Champlain","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":6,"start":"2017-01-24T18:30:00","end":"2017-01-24T18:30:00","title":"Beat 614 Meeting","eventDetails":"Discuss community issues and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"Foster Park Fieldhouse\n1440 W. 84th Street","modifiedDate":"2016-12-28T15:33:39"},{"calendarId":11,"start":"2017-01-24T18:00:00","end":"2017-01-24T19:00:00","title":"Beat Meeting:1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2016-11-30T16:55:37"},{"calendarId":1,"start":"2017-01-24T14:00:00","end":"2017-01-24T15:00:00","title":"CAPS 30 Sector Business Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381\ncaps001district@chicagopolice.org ","location":"1718 S. State Street\n1st District Community Room ","modifiedDate":"2016-12-22T15:37:26"},{"calendarId":18,"start":"2017-01-24T13:00:36","end":"2017-01-24T14:00:36","title":"CPD Recruitment Table","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-23T11:11:48"},{"calendarId":16,"start":"2017-01-24T12:00:00","end":"2017-01-24T16:00:00","title":"Chicago Police Ambassador Program","eventDetails":"Loyola University Non-Profit Opportunities Fair and Workshops","eventUrl":null,"contactDetails":"Officer Robin Ratledge\n016th District Caps\nAndrew Miller Community Partnerships Coordinator","location":"Damen Student Center 6511 N. Winthrop\r\nChicago, Il 60626","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":17,"start":"2017-01-24T11:00:00","end":"2017-01-24T12:00:00","title":"Domestic Violence Sub-Committee Meeting","eventDetails":"Domestic Violence Sub-Committee Meeting ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"017th District 4650 N. Pulaski","modifiedDate":"2017-02-08T16:06:42"},{"calendarId":18,"start":"2017-01-24T11:00:00","end":"2017-01-24T13:00:00","title":"Senior Bingo","eventDetails":"Stamps Rhine Center","eventUrl":null,"contactDetails":"RSVP (312)428-1883\nHenry Stephens\nSenior Coordinator","location":"1327 N. Larrabee\r\nChicago, Illinois","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":3,"start":"2017-01-24T02:00:00","end":"2017-01-24T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n003rd District Police Station \n7040 S. Cottage Grove \nChicago IL. 60637\n(312) 747-7004\t","location":"003rd District Police Station (Auditorium)\r\n7040 S. Cottage Grove \r\nChicago IL. 60637\t","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":10,"start":"2017-01-23T19:00:00","end":"2017-01-23T22:00:00","title":"CPD 10th District Recruitment","eventDetails":"Be the Change! Come out and apply to take the test to become a Chicago Police Officer","eventUrl":null,"contactDetails":"CAPS 312-747-7511","location":"Piotrowski Park\r\n4247 W. 31st Street","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":11,"start":"2017-01-23T18:00:00","end":"2017-01-23T19:00:00","title":"District Advisory Committee","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 11th District.","eventUrl":null,"contactDetails":"011th District Auditorium ","location":"CAPS 11th District 3151 West Harrison St 312-746-9841","modifiedDate":"2016-12-27T12:31:14"},{"calendarId":15,"start":"2017-01-23T15:00:00","end":"2017-01-23T16:00:00","title":"District Advisory Committee ","eventDetails":"District Advisory Committee Subcommittee/ Chairpersons of different subcommittees meet to discuss the quality of life issues within the 15th District","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District Station\t\n5701 W. Madison\n","modifiedDate":"2017-01-03T14:44:54"},{"calendarId":10,"start":"2017-01-22T10:00:00","end":"2017-01-22T12:00:00","title":"CPD 10th District Recruitment","eventDetails":"Be the Change! Come out and apply to take the test to become a Chicago Police Officer","eventUrl":null,"contactDetails":"CAPS 312-747-7511","location":"Harmony Community Church\n1908 S. Millard","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":25,"start":"2017-01-21T13:00:00","end":"2017-01-21T15:00:00","title":"Youth Exploring","eventDetails":"Youth Exploring","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave","modifiedDate":"2016-12-15T10:22:13"},{"calendarId":10,"start":"2017-01-21T12:00:00","end":"2017-01-21T16:00:00","title":"10th District Police Recruitment","eventDetails":"Be Part of the Change!\nCome out and have coffee with the police and hear about a job opportunity with in the Chicago Police Department","eventUrl":null,"contactDetails":"CAPS 312-747-7511","location":"Hope Cafe\r\n2431 W. Roosevelt Rd","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":6,"start":"2017-01-21T11:00:00","end":"2017-01-21T12:00:00","title":"Law Explorers Meeting","eventDetails":"Opportunities to gain leadership and community service ","eventUrl":null,"contactDetails":"Contact the CAPS office at (312) 745-3641","location":"6th District\nCommunity Room\n7808 South Halsted Street","modifiedDate":"2017-01-06T12:21:35"},{"calendarId":18,"start":"2017-01-21T10:00:42","end":"2017-01-21T13:00:42","title":"Peer Jury & Explorer Scouts","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2017-01-23T11:11:48"},{"calendarId":9,"start":"2017-01-21T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Area Central\n5101 S. Wentworth Ave.","modifiedDate":"2017-01-04T13:52:17"},{"calendarId":17,"start":"2017-01-21T09:00:00","end":"2017-01-21T13:00:00","title":"Peer Jury-Youth Beat Meeting","eventDetails":"Monthly Peer Jury/Youth Beat Meeting ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org (Please call for further information)","location":"017th District Community Room 4650 N. Pulaski Rd.","modifiedDate":"2016-12-27T10:37:05"},{"calendarId":14,"start":"2017-01-19T19:00:00","end":null,"title":"1431/1432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Haas Park\n2402 N. Washtenaw","modifiedDate":"2016-12-28T20:16:11"},{"calendarId":16,"start":"2017-01-19T19:00:00","end":"2017-01-19T20:00:00","title":"Beat 1611","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"(312)742-4521 (CAPS)\nCAPS016District@\nchicagopolice.org","location":"St. Thecla\n6333 N. Newcastle","modifiedDate":"2016-12-29T21:14:38"},{"calendarId":25,"start":"2017-01-19T18:30:00","end":"2017-01-19T19:30:00","title":"2533 Beat Meeting","eventDetails":"2533 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-15T10:17:08"},{"calendarId":9,"start":"2017-01-19T18:00:00","end":"2017-01-19T19:00:00","title":"Fuller Park Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Minnie Riperton Apts\n4250 S. Princeton Ave.","modifiedDate":"2017-01-04T13:51:56"},{"calendarId":11,"start":"2017-01-19T18:00:00","end":"2017-01-19T19:00:00","title":"Beat Meeting:1113/14/15","eventDetails":"Community engagements generating strategies to making neighborhoods safe","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"St. Michael's MBC 4106 W. Monroe","modifiedDate":"2016-11-30T16:53:06"},{"calendarId":16,"start":"2017-01-19T18:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N Milwaukee Ave.","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":25,"start":"2017-01-19T13:30:00","end":"2017-01-19T14:30:00","title":"Business Subcommittee","eventDetails":"025th District Business Subcommittee Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.\nChicago,IL ","modifiedDate":"2016-12-30T10:11:40"},{"calendarId":6,"start":"2017-01-19T10:00:00","end":"2017-01-19T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":"Meeting to discuss domestic violence issues and prevention ","eventUrl":null,"contactDetails":"Contact the Officer Bailey at (312)745-3641","location":"Family Rescue\nEnglewood Office\n1140 West 79th Street","modifiedDate":"2016-12-28T16:11:47"},{"calendarId":17,"start":"2017-01-18T19:30:00","end":"2017-01-18T20:30:00","title":"1722-1723 Combined Beat Meeting","eventDetails":"1722-1723 Combined Community Beat Meeting ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"017th District Community Room 4650 N. Pulaski Rd.","modifiedDate":"2016-12-27T10:35:20"},{"calendarId":3,"start":"2017-01-18T19:00:00","end":"2017-01-18T20:00:00","title":"Beat Meeting 333 & 334","eventDetails":"Beat Meeting 333 & 334","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"South Shore Cultural Center 7059 S. South Shore Dr. Chicago, IL 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":12,"start":"2017-01-18T19:00:00","end":"2017-01-18T20:00:00","title":"Beat Meeting 1213 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is a Northwest Settlement 1012 N. Noble on the 3rd Wednesday of the odd months. ","modifiedDate":"2016-10-12T14:04:12"},{"calendarId":16,"start":"2017-01-18T19:00:00","end":"2017-01-18T20:00:00","title":"1623 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"(312)742-4521 (CAPS)\nCAPS016District@\nchicagopolice.org","location":"016th District\n5151 N. Milwaukee\nCommunity Room","modifiedDate":"2016-12-29T21:14:53"},{"calendarId":20,"start":"2017-01-18T19:00:00","end":"2017-01-18T20:00:00","title":"2013 Beat Meeting","eventDetails":"Beat Meeting for Beat 2013, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church1609 W. Gregory St.","modifiedDate":"2017-06-23T15:37:27"},{"calendarId":14,"start":"2017-01-18T19:00:00","end":null,"title":"1423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Humboldt Park Field House\n1400 N. Sacramento","modifiedDate":"2016-12-28T20:15:53"},{"calendarId":19,"start":"2017-01-18T19:00:00","end":"2017-01-18T20:00:00","title":"Beat 1921, 22 & 31","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"19th Police Auditorium\n2452 W. Belmont","modifiedDate":"2016-12-06T12:54:13"},{"calendarId":25,"start":"2017-01-18T18:30:00","end":"2017-01-18T19:30:00","title":"2515 Beat Meeting","eventDetails":"Bi-monthly information sharing meeting between 25th District Police Officers and residents from 2515's Beat.","eventUrl":null,"contactDetails":"312-745-5090","location":"2310 N. Lorel","modifiedDate":"2017-06-26T13:47:32"},{"calendarId":1,"start":"2017-01-18T18:30:00","end":"2017-01-18T19:30:00","title":"CAPS Beat 133 Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381\ncaps001district@chicagopolice.org","location":"2930 S. Dearborn \nDearborn Homes ","modifiedDate":"2016-12-22T15:39:31"},{"calendarId":6,"start":"2017-01-18T18:30:00","end":"2017-01-18T18:30:00","title":"Beat 623 Meeting","eventDetails":"Discuss community concerns and problems","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"Urban Partnership Bank\n7801 S. State St","modifiedDate":"2016-12-28T15:34:17"},{"calendarId":17,"start":"2017-01-18T18:15:00","end":"2017-01-18T19:15:00","title":"1724 Beat Meeting","eventDetails":"1724 Community Beat Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Horner Park Field House\n2741 W. Montrose","modifiedDate":"2016-12-27T10:35:05"},{"calendarId":10,"start":"2017-01-18T18:00:00","end":"2017-01-18T19:00:00","title":"Beat Meeting 1013","eventDetails":"Beat 1013 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Epiphany Church\nRectory\n2524 S. Keeler Ave","modifiedDate":"2017-01-04T16:05:14"},{"calendarId":9,"start":"2017-01-18T18:00:00","end":"2017-01-18T19:00:00","title":"Beat 925","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Gabriel's Church\n4500 S. Wallace","modifiedDate":"2017-01-04T13:51:31"},{"calendarId":11,"start":"2017-01-18T13:00:00","end":"2017-01-18T14:00:00","title":"Eavi Meeting ","eventDetails":"The Expanded Anti-Violence Initiative is a community policing strategy designed specifically to prevent and reduce the violence associated with gang activity and narcotics sales.","eventUrl":null,"contactDetails":"11th District Auditorium","location":"CAPS 011th District 3151 West Harrison St 312-746-9841\n","modifiedDate":"2016-12-27T12:30:36"},{"calendarId":16,"start":"2017-01-18T09:00:00","end":"2017-01-18T15:00:00","title":"Officer Friendly Program","eventDetails":"Chicago Police 16th District Officer Friendly Program","eventUrl":null,"contactDetails":"Officer Robin Ratledge\n16th District Caps Office","location":"Ebinger School\r\n7350 W. Pratt\r\nChicago, Il\r\n60631","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":24,"start":"2017-01-17T19:00:00","end":null,"title":"2424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Pottawatomie Park 7340 N. Rogers","modifiedDate":"2016-12-07T10:12:58"},{"calendarId":19,"start":"2017-01-17T19:00:00","end":"2017-01-17T20:00:00","title":"Beat 1911 & 1912","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Sulzer Library\n4455 N. Lincoln","modifiedDate":"2016-12-06T12:54:29"},{"calendarId":12,"start":"2017-01-17T19:00:00","end":"2017-01-17T20:00:00","title":"Beat Meeting 1223","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Westhaven Park Community Room 1939 W. Lake St. on the 3rd Tuesday of the odd months","modifiedDate":"2016-10-12T14:03:34"},{"calendarId":16,"start":"2017-01-17T19:00:00","end":"2017-01-17T20:00:00","title":"1633 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues. ","eventUrl":null,"contactDetails":"CAPS(312)742-4521 \nCAPS016district@\nchicagopolice.org","location":"Merrimac Park\n6343 W. Irving Park Road","modifiedDate":"2016-12-29T21:16:39"},{"calendarId":3,"start":"2017-01-17T18:30:00","end":"2017-01-17T20:00:00","title":"Community Peace Circle","eventDetails":"Community Peace Circle","eventUrl":null,"contactDetails":"Sgt. Jointer\n003rd District\n7040 S. Cottage Grove\nChicago. Il. 60637\n(312) 747-7004","location":"Lincoln Memorial Church\n6454 S. Champlain\n","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":25,"start":"2017-01-17T18:30:00","end":"2017-01-17T19:30:00","title":"2531 Beat Meeting","eventDetails":"2531 Beat Meeting. 3rd Tuesday Odd Months","eventUrl":null,"contactDetails":"P.O. Steven Archer \n312-746-5090","location":"5555 W Grand Ave","modifiedDate":"2016-12-15T10:23:04"},{"calendarId":25,"start":"2017-01-17T18:30:00","end":"2017-01-17T19:30:00","title":"2525 Beat Meeting","eventDetails":"2525 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Mozart Park\n2036 N. Avers","modifiedDate":"2016-12-15T10:24:31"},{"calendarId":1,"start":"2017-01-17T18:30:00","end":"2017-01-17T19:30:00","title":"CAPS Beat 131/132 Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381\ncaps001district@chicagopolice.org ","location":"30 W. Cermak Rd \nHilliard Apartments ","modifiedDate":"2016-12-22T15:39:10"},{"calendarId":6,"start":"2017-01-17T18:30:00","end":"2017-01-17T19:30:00","title":"Beat 613 Meeting","eventDetails":"Discuss community concerns and problems","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"Gresham School\n8524 S. Green ","modifiedDate":"2016-12-28T15:33:21"},{"calendarId":9,"start":"2017-01-17T18:00:00","end":"2017-01-17T19:00:00","title":"Beat 932,934,935","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Westhaven Senior Home\n850 W. Garfield","modifiedDate":"2017-01-04T13:50:54"},{"calendarId":11,"start":"2017-01-17T18:00:00","end":"2017-01-17T19:00:00","title":"Beat Meeting:1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Homan Square Community Center 3559 W. Arthington","modifiedDate":"2016-11-30T16:54:31"},{"calendarId":9,"start":"2017-01-17T13:00:00","end":"2017-01-17T15:00:00","title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"009th District Station \n3120 S. Halsted","modifiedDate":"2017-01-04T13:52:56"},{"calendarId":16,"start":"2017-01-17T13:00:00","end":"2017-01-17T14:00:00","title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways. ","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016district@\nchicagopolice.org","location":"16th District\n5151 N. Milwaukee Ave.\nCommunity Room","modifiedDate":"2016-12-29T21:14:06"},{"calendarId":11,"start":"2017-01-17T11:00:00","end":"2017-01-17T12:00:00","title":"Faith-Based Meeting","eventDetails":"Faith-Based Committee.","eventUrl":null,"contactDetails":"011th District CAPS Office 1.312.746.9841. ","location":"011th District Police Station 3151 W. Harrison","modifiedDate":"2016-12-27T12:29:19"},{"calendarId":17,"start":"2017-01-17T11:00:00","end":"2017-01-17T12:00:00","title":"Senior Citizen Sub-Committee Meeting","eventDetails":"Senior Citizen Monthly Sub-Committee Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"017th District Community Room 4650 N. Pulaski Rd.","modifiedDate":"2016-12-27T10:36:50"},{"calendarId":16,"start":"2017-01-17T09:00:00","end":"2017-01-17T15:00:00","title":"Officer Friendly Program","eventDetails":"Chicago Police 16th District Officer Friendly Program","eventUrl":null,"contactDetails":"Officer Robin Ratledge\n16th District Caps Offfice","location":"Ebinger School\r\n7350 W. Pratt\r\nChicago, Il\r\n60631","modifiedDate":"2017-02-14T21:25:27"},{"calendarId":14,"start":"2017-01-14T10:00:00","end":null,"title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2016-12-28T20:15:32"},{"calendarId":16,"start":"2017-01-14T09:00:00","end":"2017-01-17T12:00:00","title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Greg Dial(312)742-4521CAPS016District@chicagopolice.org","location":"16th District Station5151 N. Milwaukee AvenueCommunity Room","modifiedDate":"2017-06-28T23:11:28"},{"calendarId":6,"start":"2017-01-13T18:00:12","end":"2017-01-13T20:00:12","title":"Line Dancing","eventDetails":"Free line dancing classes","eventUrl":null,"contactDetails":"Contact the CAPS office at(312)745-3641.","location":"6th District\nCommunity Room\n7808 S. Halsted Street","modifiedDate":"2017-01-06T12:21:26"},{"calendarId":12,"start":"2017-01-12T19:00:00","end":"2017-01-12T20:00:00","title":"Beat Meeting 1215","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the Goldblatt's Building 1615 W. Chicago Ave. on the 2nd Thursday of the odd months. ","modifiedDate":"2016-10-12T14:03:54"},{"calendarId":20,"start":"2017-01-12T19:00:00","end":"2017-01-12T20:00:00","title":"2023 Beat Meeting","eventDetails":"Beat Meeting for Beat 2023, Community meeting where residents meet with Police Officers to discuss concerns and how to make their neighborhoods safe.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Kenmore Plaza5225 N. Kenmore","modifiedDate":"2017-06-23T15:37:43"},{"calendarId":3,"start":"2017-01-12T19:00:00","end":"2017-01-12T20:00:00","title":"Beat Meeting 331 & 332","eventDetails":"Beat Meeting 331 & 332","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"ABJ Community Service Center 1818 E. 71st Street Chicago, IL. 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":15,"start":"2017-01-12T18:30:00","end":"2017-01-12T19:30:00","title":"Beat 1513N Caps Meeting","eventDetails":"Community Meeting where stakeholders discuss concerns and quality of life issues. ","eventUrl":null,"contactDetails":"CAPS Office\n312-743-1495","location":"15th District Station\n5701 W. Madison","modifiedDate":"2017-01-02T14:56:13"},{"calendarId":1,"start":"2017-01-12T18:30:00","end":"2017-01-12T19:30:00","title":"CAPS 10 Sector Residental Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381\ncaps001district@chicagopolice.org ","location":"400 E. Randolph Street\nCondo Building ","modifiedDate":"2016-12-22T15:38:45"},{"calendarId":6,"start":"2017-01-12T18:30:00","end":"2017-01-12T19:30:00","title":"Beat 633 Meeting","eventDetails":"Discuss community concerns and problems","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"Tuley Park Fieldhouse\n501 East 90th Place","modifiedDate":"2016-12-28T15:48:06"},{"calendarId":6,"start":"2017-01-12T18:30:00","end":"2017-01-12T19:30:00","title":"Beat 632 Meeting","eventDetails":"Discuss community concerns and problems","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"Tuley Park Fieldhouse\n501 East 90th Place","modifiedDate":"2016-12-28T15:44:21"},{"calendarId":19,"start":"2017-01-12T18:30:00","end":"2017-01-12T19:30:00","title":"Beat 1913","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Courtenay School\n4420 N. Beacon","modifiedDate":"2016-12-06T12:54:21"},{"calendarId":14,"start":"2017-01-12T18:30:00","end":null,"title":"1413/1414 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Logan Square Library\n3030 W. Fullerton","modifiedDate":"2016-12-28T20:15:12"},{"calendarId":10,"start":"2017-01-12T18:00:00","end":"2017-01-12T19:00:00","title":"Beat Meeting 1033","eventDetails":"Beat 1033 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Little Village Library\n2311 S. Kedzie","modifiedDate":"2017-01-04T15:56:35"},{"calendarId":11,"start":"2017-01-12T18:00:00","end":"2017-01-12T19:00:00","title":"Beat Meeting:1122/23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Legler Chicago Public Library 115 S. Pulaski","modifiedDate":"2016-11-30T16:53:44"},{"calendarId":12,"start":"2017-01-12T12:00:00","end":"2017-01-12T13:00:00","title":"District Advisory Committee Meeting","eventDetails":"The District Advisory Committee or (DAC) meeting is for stakeholders in the 12th District. These stakeholders are the businesses, faith and community organizations along with Beat Facilitators. The members meet on the 2nd Thursday of the month, with the District Commander, to address and come up with strategies to address issues in the community.","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306\n","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-10-13T17:07:21"},{"calendarId":6,"start":"2017-01-12T10:00:00","end":"2017-01-12T11:30:00","title":"Faith Based Subcommittee Meeting ","eventDetails":"Meeting to discuss and plan upcoming events in our Faith community","eventUrl":null,"contactDetails":"Contact the CAPS office at (312) 745-3641","location":"6th District\nCommunity Room\n7808 South Halsted St","modifiedDate":"2017-01-06T12:22:39"},{"calendarId":17,"start":"2017-01-11T19:00:00","end":"2017-01-11T20:00:00","title":"1732-1733 Combined beat Meeting","eventDetails":"1732-1733 Combined Community Beat Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Athletic Park 3546 W. Addison","modifiedDate":"2017-02-08T16:06:13"},{"calendarId":9,"start":"2017-01-11T19:00:00","end":"2017-01-11T20:00:00","title":"Beat 912","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Maurice Church Hall\n3625 S. Hoyne\n","modifiedDate":"2017-01-04T13:50:22"},{"calendarId":14,"start":"2017-01-11T18:30:00","end":null,"title":"1421 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Humboldt Park Library\n1605 N. Troy","modifiedDate":"2016-12-28T20:14:53"},{"calendarId":1,"start":"2017-01-11T18:30:00","end":"2017-01-11T19:30:00","title":"CAPS 20 Sector Residential Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381\ncaps001district@chicagopolice.org ","location":"525 S. State Street \nUniversity Center ","modifiedDate":"2016-12-22T15:38:09"},{"calendarId":12,"start":"2017-01-11T18:00:00","end":"2017-01-11T19:00:00","title":"Beat Meeting 1231","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Academy Square, 318 S. Throop on the 2nd Wednesday of the odd months. ","modifiedDate":"2016-10-12T14:03:17"},{"calendarId":22,"start":"2017-01-11T13:30:00","end":"2017-01-11T14:30:00","title":"Court Advocacy","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0920","location":"022nd District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:43:30"},{"calendarId":14,"start":"2017-01-11T13:30:00","end":null,"title":"Domestic Violence Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2016-12-28T20:14:37"},{"calendarId":25,"start":"2017-01-11T11:00:00","end":"2017-01-11T12:00:00","title":"Summit Meeting on the Homeless","eventDetails":"Join us as we work together to address the issue of homeless Chicagoans within the 25th District.","eventUrl":null,"contactDetails":"Sgt. T. Cotter\n312-746-5090","location":"25th District - 5555 W. Grand Ave.","modifiedDate":"2016-12-30T10:05:53"},{"calendarId":6,"start":"2017-01-11T11:00:00","end":"2017-01-11T12:30:00","title":"Senior Citizen Subcommitte Meeting","eventDetails":"Discuss upcoming events for 2017","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"6th District Station\nCommunity Room\n7808 South Halsted St","modifiedDate":"2016-12-28T16:25:46"},{"calendarId":20,"start":"2017-01-11T10:00:00","end":"2017-01-11T11:00:00","title":"Seniors Meeting","eventDetails":"Seniors Meeting, a monthly meeting featuring activities and informative talks on seniors related topics. Contact CAPS for details.","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District Community Room5400 N. Lincoln ave","modifiedDate":"2017-06-23T14:14:36"},{"calendarId":17,"start":"2017-01-10T19:00:00","end":"2017-01-10T20:00:00","title":"1731 Beat Meeting","eventDetails":"1731 Community Beat Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Kilbourn Park Field House\n3501 N. Kilbourn ","modifiedDate":"2016-12-27T10:34:30"},{"calendarId":16,"start":"2017-01-10T19:00:00","end":"2017-01-10T20:00:00","title":"1613 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related issues.","eventUrl":null,"contactDetails":"(312)742-4521 (Office)\nCAPS016District@\nchicagopolice.org","location":"Oriole Park\n5430N.Olcott","modifiedDate":"2016-12-29T21:17:22"},{"calendarId":24,"start":"2017-01-10T19:00:00","end":null,"title":"2432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District 6464 N. Clark","modifiedDate":"2016-12-07T10:11:12"},{"calendarId":19,"start":"2017-01-10T18:30:00","end":"2017-01-10T19:30:00","title":"Beat 1933","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Illinois Masonic\n836 W. Wellington","modifiedDate":"2016-12-06T12:53:29"},{"calendarId":6,"start":"2017-01-10T18:30:00","end":"2017-01-10T19:30:00","title":"Beat 612 Meeting","eventDetails":"Discuss community problems and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"Southside Tabernacle Church\n7724 S. Racine ","modifiedDate":"2016-12-28T15:33:01"},{"calendarId":11,"start":"2017-01-10T18:30:00","end":"2017-01-10T19:30:00","title":"Beat Meeting:1124/25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"JLM Abundant Life Center\n2622 W. Jackson","modifiedDate":"2016-11-30T16:55:16"},{"calendarId":15,"start":"2017-01-10T18:30:00","end":"2017-01-10T19:30:00","title":"Beat 1511/24 Caps Meeting","eventDetails":"Community Meeting where stakeholders discuss concerns and quality of life issues. ","eventUrl":null,"contactDetails":"CAPS Office\n312-743-1495","location":"Hope Church\n5900 W. Iowa","modifiedDate":"2017-01-02T14:56:20"},{"calendarId":9,"start":"2017-01-10T18:30:00","end":"2017-01-10T19:30:00","title":"Beat 913,915","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"009th District Station\n3120 S. Halsted","modifiedDate":"2017-01-04T13:48:31"},{"calendarId":12,"start":"2017-01-10T18:00:00","end":"2017-01-10T19:00:00","title":"Beat Meeting 1233","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the 12th District Station Community Room, 1412 S. Blue island on the 2nd Tuesday of the odd months","modifiedDate":"2016-10-15T10:44:18"},{"calendarId":10,"start":"2017-01-10T18:00:00","end":"2017-01-10T19:00:00","title":"Beat Meeting 1021","eventDetails":"Beat 1021 Meeting\n","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Carey Tercentenary\n1448 S. Homan Ave","modifiedDate":"2017-01-04T16:01:50"},{"calendarId":15,"start":"2017-01-10T17:00:00","end":"2017-01-10T18:00:00","title":"Recruiting CPD Event","eventDetails":"Chicago Police Department recruiting event, Application/Exams.","eventUrl":null,"contactDetails":"CAPS\n312-743-1495","location":"Hope Community Church\n5900 W. Iowa","modifiedDate":"2017-01-02T14:55:54"},{"calendarId":6,"start":"2017-01-10T10:00:00","end":"2017-01-10T11:00:00","title":"Business Subcommitte Meeting","eventDetails":"Discuss issues concerning community businesses","eventUrl":null,"contactDetails":"Contact the CAPS office at (312) 745-3641","location":"6th District\nCommunity Room\n7808 South Halsted Street","modifiedDate":"2017-01-06T12:22:31"},{"calendarId":19,"start":"2017-01-09T19:00:00","end":"2017-01-09T20:00:00","title":"Beat 1932","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"New Life Church\n1110 W. Lill","modifiedDate":"2016-12-06T12:53:38"},{"calendarId":6,"start":"2017-01-09T11:00:00","end":"2017-01-09T12:00:00","title":"Seniors Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)745-3641","location":"7808 S.HALSTED\r\n6TH DISTRICT COMMUNITY ROOM","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":3,"start":"2017-01-07T11:00:00","end":"2017-01-07T13:00:00","title":"Youth/Explorers","eventDetails":"Youth/Explorers","eventUrl":null,"contactDetails":"P.O. Howell 7040 S. Cottage Grove Chicago, IL. 60637 (312) 747-7004 \n","location":"003rd District(Auditorium) 7040 S. Cottage Grove. Chicago, IL. 60637 (312) 747-7004 \r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":6,"start":"2017-01-07T11:00:00","end":"2017-01-07T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"6th District \nCommunity Room\n7808 South Halsted Street","modifiedDate":"2017-01-06T12:21:44"},{"calendarId":11,"start":"2017-01-07T09:00:00","end":"2017-01-07T10:00:00","title":"Peer Jury","eventDetails":"Peer Jury Meeting","eventUrl":null,"contactDetails":"011th District CAPS 1.312.746.9841","location":"011th District Auditorium \n3151 W. Harrison\n","modifiedDate":"2016-12-27T12:28:56"},{"calendarId":25,"start":"2017-01-07T08:30:00","end":"2017-01-07T11:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-30T10:08:47"},{"calendarId":16,"start":"2017-01-05T19:00:00","end":"2017-01-05T20:00:00","title":"1631 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related issues.","eventUrl":null,"contactDetails":"CAPS OFFICE (312)742-4521\nCAPS016district@\nchicagopolice.org","location":"8029 W. Forest Preserve Drive","modifiedDate":"2016-12-29T21:18:23"},{"calendarId":24,"start":"2017-01-05T19:00:00","end":null,"title":"District Advisory Council Meeting","eventDetails":"Not open to the public","eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District","modifiedDate":"2016-12-07T10:09:22"},{"calendarId":3,"start":"2017-01-05T19:00:00","end":"2017-01-05T20:00:00","title":"Beat meeting (313, 314)","eventDetails":"Beat Meeting (313, 314)","eventUrl":null,"contactDetails":"P. O. Hutchinson\n003rd District\n7040 S. Cottage Grove.\nChicago, Il. 60637","location":"Harris Park Recreation Center\r\n6200 S. Drexel\r\nChicago, IL. 60637","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":15,"start":"2017-01-05T18:30:00","end":"2017-01-05T19:30:00","title":"Beat 1512/23 Caps Meeting","eventDetails":"Community Meeting where stakeholders discuss concerns and quality of life issues. ","eventUrl":null,"contactDetails":"CAPS Office\n312-743-1495","location":"PCC Wellness Center\n5425 W. Lake St.","modifiedDate":"2017-01-02T14:56:48"},{"calendarId":6,"start":"2017-01-05T18:30:00","end":"2017-01-05T19:30:00","title":"Beat 631 Meeting","eventDetails":"Discuss community problems and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"Chatham Fields Church\n8050 S. Saint Lawrence","modifiedDate":"2016-12-28T15:44:07"},{"calendarId":25,"start":"2017-01-05T18:30:00","end":"2017-01-05T19:30:00","title":"2511 Beat Meeting","eventDetails":"2511 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Bethesda Home\n2833 N. Nordica","modifiedDate":"2016-12-30T09:59:03"},{"calendarId":10,"start":"2017-01-05T18:00:00","end":"2017-01-05T19:00:00","title":"Beat Meeting 1011 & 1012","eventDetails":"Beat 1011 & 1012 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Clair House\n1350 S. Harding","modifiedDate":"2017-01-04T16:00:24"},{"calendarId":11,"start":"2017-01-05T18:00:00","end":"2017-01-05T19:00:00","title":"Beat Meeting:1112/21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Sanctuary Place\n642 N. Kedzie","modifiedDate":"2016-11-30T16:52:15"},{"calendarId":14,"start":"2017-01-05T17:00:00","end":null,"title":"Peer Jury Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2016-12-28T20:14:17"},{"calendarId":1,"start":"2017-01-05T14:00:44","end":"2017-01-05T15:00:44","title":"CAPS 20 Sector Business Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"1st District Community Relations 312-745-4381\ncaps001district@chicagopolice.org ","location":"50 S. LaSalle \nNorthern Trust Bank Building ","modifiedDate":"2016-12-22T15:40:54"},{"calendarId":22,"start":"2017-01-05T14:00:00","end":"2017-01-05T15:00:00","title":"Diversity & Inclusion","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"022nd District Community Room - 1900 W. Monterey","modifiedDate":"2016-12-28T10:43:23"},{"calendarId":3,"start":"2017-01-05T13:00:00","end":"2017-01-05T14:00:00","title":"District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\n003rd District Police Station \n7040 S. Cottage Grove Chicago IL. 60637 \n(312) 747-7004","location":"003rd District Police Station (Auditorium) 7040 S. Cottage Grove Chicago IL. 60637 ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":3,"start":"2017-01-04T19:00:00","end":"2017-01-04T20:00:00","title":"Beat Meeting (311, 312)","eventDetails":"Beat Meeting (311, 312)","eventUrl":null,"contactDetails":"P.o. Hutchinson\n003rd District\n7040 S. Cottage Grove.\nChicago, Il. 60637","location":"Bessie Coleman Library\r\n731 E. 63rd St.\r\nChicago, IL. 60637\r\n","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":12,"start":"2017-01-04T19:00:00","end":"2017-01-04T20:00:00","title":"Beat Meeting 1221 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the Smith Park 2526 W. Grand Ave. on the1st Wednesday of the odd months","modifiedDate":"2016-10-15T10:44:44"},{"calendarId":16,"start":"2017-01-04T19:00:00","end":"2017-01-04T20:00:00","title":"1621 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related issues. ","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@\nchicagopolice.org","location":"First Church of Forest Glen 5400 N. Lawler","modifiedDate":"2016-12-29T21:18:47"},{"calendarId":6,"start":"2017-01-04T18:30:00","end":"2017-01-04T19:30:00","title":"Beat 621 Meeting","eventDetails":"Discuss community concerns and problems","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"6th District \nCommunity Room\n7808 S. Halsted St","modifiedDate":"2016-12-28T15:33:50"},{"calendarId":6,"start":"2017-01-04T18:30:00","end":"2017-01-04T19:30:00","title":"Beat 622 Meeting","eventDetails":"Discuss community problems and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"6th District Station\nCommunity Room\n7808 S. Halsted St","modifiedDate":"2016-12-28T15:34:01"},{"calendarId":14,"start":"2017-01-04T18:30:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2016-12-28T20:13:22"},{"calendarId":15,"start":"2017-01-04T18:00:00","end":"2017-01-04T19:00:00","title":"Beat 1522/33 Caps Meeting","eventDetails":"Community Meeting where stakeholders discuss concerns and quality of life issues. ","eventUrl":null,"contactDetails":"CAPS Office\n312-743-1495","location":"Loretto Hospital\n645 S. Central","modifiedDate":"2017-01-02T14:56:56"},{"calendarId":9,"start":"2017-01-04T18:00:00","end":"2017-01-04T19:00:00","title":"Beat 911,921","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Davis School Annex\n3050 W. 39th Place","modifiedDate":"2017-01-04T13:52:38"},{"calendarId":14,"start":"2017-01-04T18:00:00","end":null,"title":"Beat Facilitator Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2016-12-28T20:12:56"},{"calendarId":25,"start":"2017-01-04T10:00:00","end":"2017-01-04T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":"25th District DV Committee ","eventUrl":null,"contactDetails":"P.O. RODRIGUEZ at 312-746-5090","location":"5555 W. Grand Ave.","modifiedDate":"2016-12-30T10:07:44"},{"calendarId":12,"start":"2017-01-03T19:00:00","end":"2017-01-03T20:00:00","title":"Beat Meeting 1225","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Chicago Hope Academy 2108 W. Ogden. on the 1st Tuesday of the odd months. ","modifiedDate":"2016-10-15T10:44:31"},{"calendarId":24,"start":"2017-01-03T19:00:00","end":null,"title":"2412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"TBA","modifiedDate":"2016-12-07T10:16:58"},{"calendarId":25,"start":"2017-01-03T18:30:10","end":"2017-01-03T19:30:10","title":"2521 Beat Meeting","eventDetails":"2521 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Senior Suites\n2715 N. Cicero","modifiedDate":"2016-12-30T09:58:18"},{"calendarId":15,"start":"2017-01-03T18:30:00","end":"2017-01-03T19:30:00","title":"Beat 1531/32 Meetng","eventDetails":"Community Meeting where stakeholders discuss concerns and quality of life issues.","eventUrl":null,"contactDetails":"Caps Office\n312-743-1495","location":"Westbranch Library\n4856 W. Chicago Ave.","modifiedDate":"2017-01-02T14:57:05"},{"calendarId":11,"start":"2017-01-03T18:30:00","end":"2017-01-03T19:30:00","title":"Beat Meeting:1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"CANCELLED MEETING ","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":25,"start":"2017-01-03T18:30:00","end":"2017-01-03T19:30:00","title":"2535 Beat Meeting","eventDetails":"2535 Beat Meeting","eventUrl":null,"contactDetails":"312-746-5090","location":"Maternity BVM Church\n3647 W. North Ave.\n","modifiedDate":"2016-12-15T10:16:07"},{"calendarId":6,"start":"2017-01-03T18:30:00","end":"2017-01-03T19:30:00","title":"Beat 611 Meeting","eventDetails":"Discuss community problems and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)745-3641","location":"2nd Mt. Vernon Church - Annex\n2101 W. 79th Street","modifiedDate":"2016-12-28T15:32:49"},{"calendarId":10,"start":"2017-01-03T18:00:00","end":"2017-01-03T19:00:00","title":"Beat Meeting 1014","eventDetails":"Beat 1014 Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Lawndale Church\n3839 W. Ogden Ave","modifiedDate":"2017-01-04T16:03:55"},{"calendarId":15,"start":"2017-01-03T17:00:00","end":"2017-01-03T18:00:00","title":"CPD Recruitment Event","eventDetails":"Recruitment event for Chicago Police Department Application/Exam","eventUrl":null,"contactDetails":"Caps Office\n312-743-1495","location":"West Branch Library\n4856 W. Chicago Ave\n","modifiedDate":"2017-01-02T14:56:33"},{"calendarId":25,"start":"2017-01-02T14:00:00","end":"2017-01-02T15:00:00","title":"Court Advocacy","eventDetails":"Court Advocacy","eventUrl":null,"contactDetails":"312-746-5090","location":"25th District Station\n5555 W. Grand Ave.\n","modifiedDate":"2016-12-15T10:14:13"},{"calendarId":8,"start":"2016-12-28T19:00:00","end":"2016-12-28T20:00:00","title":"835 Beat Meeting","eventDetails":"Wrightwood Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"8530 S. Kedzie","modifiedDate":"2015-12-28T11:24:38"},{"calendarId":3,"start":"2016-12-28T18:00:00","end":"2016-12-28T19:00:00","title":"DAC Meeting","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T11:31:04"},{"calendarId":18,"start":"2016-12-28T09:00:00","end":"2016-12-28T14:00:00","title":"Explorer Scouts Winter Wonderland","eventDetails":"Explorer Scouts Winter Wonderland","eventUrl":null,"contactDetails":"P.O Ferguson","location":"Navy Pier\n600 E. Grand\nChicago, Il 60611","modifiedDate":"2016-11-22T15:53:21"},{"calendarId":24,"start":"2016-12-27T19:00:00","end":"2016-12-27T20:00:00","title":"2431 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"St. Jerome Parish Center 1709 W. Lunt","modifiedDate":"2016-01-08T11:25:37"},{"calendarId":8,"start":"2016-12-27T19:00:00","end":"2016-12-27T20:00:00","title":"813/833 Beat Meeting","eventDetails":"West Lawn Park","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W. 65th St","modifiedDate":"2015-12-28T11:26:00"},{"calendarId":3,"start":"2016-12-27T14:00:00","end":"2016-12-27T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:50:19"},{"calendarId":25,"start":"2016-12-22T18:30:00","end":"2016-12-22T19:30:00","title":"Beat Meeting 2514","eventDetails":"Beat Meeting 2514","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"3115 N. Mason","modifiedDate":"2015-12-10T11:23:11"},{"calendarId":17,"start":"2016-12-21T19:30:00","end":"2016-12-21T20:30:00","title":"1722's and 1723's Beat Meeting","eventDetails":"Combined Beat Meeting for Beat 1722 and Beat 1723","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room","modifiedDate":"2016-11-10T11:19:08"},{"calendarId":8,"start":"2016-12-21T19:00:00","end":"2016-12-21T20:00:00","title":"823/825 Beat Meeting","eventDetails":"008th District Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W. 63rd Street","modifiedDate":"2015-12-28T11:25:07"},{"calendarId":20,"start":"2016-12-21T19:00:00","end":null,"title":"2013 Beat Meeting","eventDetails":"2013 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church\n5437 N. Clark ","modifiedDate":"2016-02-01T11:35:00"},{"calendarId":14,"start":"2016-12-21T18:30:00","end":null,"title":"1434 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Public Library-Bucktown\n1701 N. Milwaukee","modifiedDate":"2016-01-06T09:48:50"},{"calendarId":25,"start":"2016-12-21T18:30:00","end":"2016-12-21T19:30:00","title":"Beat Meeting 2524","eventDetails":"Beat Meeting 2524","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2446 N. Ridgeway","modifiedDate":"2016-12-30T13:38:23"},{"calendarId":11,"start":"2016-12-21T10:00:42","end":"2016-12-21T12:00:42","title":"Feeding the Community","eventDetails":"Food Giveaway every 1st & 3rd Wednesday of the Month. ","eventUrl":null,"contactDetails":"011th District CAPS Office (312)746-9841","location":"011th District Lobby 3151 W. Harrison","modifiedDate":"2016-11-29T13:48:52"},{"calendarId":8,"start":"2016-12-20T19:00:00","end":"2016-12-20T20:00:00","title":"811 Beat Meeting","eventDetails":"Good Shepherd Church","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5550 S. Merrimac","modifiedDate":"2015-12-28T11:26:38"},{"calendarId":24,"start":"2016-12-20T19:00:00","end":"2016-12-20T20:00:00","title":"2424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Pottawatomie Park 7340 N. Rogers","modifiedDate":"2016-01-08T11:26:20"},{"calendarId":24,"start":"2016-12-20T19:00:00","end":"2016-12-20T20:00:00","title":"2423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Touhy Park 7348 N. Paulina","modifiedDate":"2016-01-08T11:26:58"},{"calendarId":16,"start":"2016-12-20T13:00:00","end":null,"title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Jennene Whalen\n(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-03-01T12:41:16"},{"calendarId":17,"start":"2016-12-20T11:00:00","end":"2016-12-20T14:00:00","title":"Senior Citizen Meeting ","eventDetails":"Annual Senior Holiday Luncheon. Event is for established 17th District seniors who attended at least 3 meetings in 2016.","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"LaVilla Restaurant","modifiedDate":"2017-02-08T16:06:11"},{"calendarId":7,"start":"2016-12-19T13:00:00","end":"2016-12-19T15:00:00","title":"Senior Advisory Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"Tolton Manor\n6345 S. Stewart","modifiedDate":"2016-01-20T16:16:02"},{"calendarId":18,"start":"2016-12-17T10:00:00","end":"2016-12-17T12:00:00","title":"Peer Jury & Explorer Scouts","eventDetails":"Peer Jury & Explorer Scouts","eventUrl":null,"contactDetails":"P.O Ferguson","location":"018 District \n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-11-22T15:53:47"},{"calendarId":3,"start":"2016-12-17T09:00:00","end":"2016-12-17T10:00:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"51st Wentworth","modifiedDate":"2016-01-19T18:56:35"},{"calendarId":12,"start":"2016-12-17T09:00:00","end":"2016-12-17T11:00:00","title":"Police Explorer Meeting ","eventDetails":"The program targets youths 12 to 20 years of age. The uniform, (shirt, patch and pants) will be provided by the 12th District Community Policing Office. The Explorer will receive a uniform after the Explorer attends 6 meetings and signs a letter of commitment. Anyone who wants to sign up is welcome. Please contact the Community Policing Office for further information.","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-05-26T13:39:13"},{"calendarId":11,"start":"2016-12-16T13:00:00","end":"2016-12-16T14:00:00","title":"Annual Fathers & Families Christmas Event ","eventDetails":"Fathers Who Care and the West-Side Community stakeholders Proudly Presents: Annual Fathers & Families Christmas Event ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 and Fathers Who Care @ 773-287-5821","location":"George Leland S.T.E.M. School 512 S. Lavergne","modifiedDate":"2016-11-30T16:57:14"},{"calendarId":20,"start":"2016-12-15T19:00:00","end":null,"title":"2024 Beat Meeting","eventDetails":"2024 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Margate Field House\n4921 N. Marine Drive","modifiedDate":"2016-02-01T11:34:50"},{"calendarId":14,"start":"2016-12-15T18:30:00","end":null,"title":"1433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Pulaski Park\n1419 W. Blackhawk","modifiedDate":"2016-01-06T09:49:41"},{"calendarId":16,"start":"2016-12-15T18:00:00","end":"2016-12-15T20:00:00","title":"DAC Christmas Party","eventDetails":null,"eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":null,"modifiedDate":"2016-03-01T13:32:38"},{"calendarId":3,"start":"2016-12-15T14:00:00","end":"2016-12-15T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:53:01"},{"calendarId":6,"start":"2016-12-15T10:00:00","end":"2016-12-15T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":"Meet to discuss topics on Domestic Violence and prevention","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"6th District\n7808 S. Halsted St","modifiedDate":"2016-10-20T08:07:55"},{"calendarId":16,"start":"2016-12-14T19:00:30","end":null,"title":"1622 Beat Meeting Cancelled","eventDetails":"1622's beat meeting is canceled due to holiday district party.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":null,"modifiedDate":"2016-09-28T10:07:35"},{"calendarId":20,"start":"2016-12-14T19:00:00","end":null,"title":"2012 Beat Meeting","eventDetails":"2012 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"St. Gregory Gym\n1609 W. Gregory","modifiedDate":"2016-02-01T11:35:22"},{"calendarId":14,"start":"2016-12-14T19:00:00","end":null,"title":"1424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Wicker Park\n1425 N. Damen","modifiedDate":"2016-01-06T09:52:07"},{"calendarId":8,"start":"2016-12-14T19:00:00","end":"2016-12-14T20:00:00","title":"812 Beat Meeting","eventDetails":"Clearing Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6423 W. 63rd Place","modifiedDate":"2015-12-28T11:26:17"},{"calendarId":19,"start":"2016-12-14T19:00:00","end":"2016-12-14T20:00:00","title":"Beat 1914","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Clarendon Park\n4501 N. Clarendon","modifiedDate":"2016-05-25T15:35:34"},{"calendarId":9,"start":"2016-12-14T19:00:00","end":"2016-12-14T20:00:00","title":"912 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Maurice Church Hall\n3625 S. Hoyne Ave.","modifiedDate":"2016-04-14T18:04:52"},{"calendarId":4,"start":"2016-12-14T19:00:00","end":"2016-12-14T20:00:00","title":"Beat 413 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708.","location":"9037 S. Harper","modifiedDate":"2016-03-29T17:50:46"},{"calendarId":17,"start":"2016-12-14T19:00:00","end":"2016-12-14T20:00:00","title":"1732 & 1733's Beat Meeting","eventDetails":"Combined beat Meeting for Beat 1732 and Beat 1733","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Athletic Field Park House\n3546 W. Addison","modifiedDate":"2016-11-10T11:18:01"},{"calendarId":25,"start":"2016-12-14T18:00:00","end":"2016-12-14T19:00:00","title":"DAC Meeting","eventDetails":"District Advisory Committee Meeting and Officer of the Month Awards.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"25th District Community Room","modifiedDate":"2016-06-02T09:19:32"},{"calendarId":22,"start":"2016-12-14T13:30:00","end":null,"title":"Court Advocacy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:57:21"},{"calendarId":6,"start":"2016-12-14T11:00:00","end":"2016-12-14T12:30:00","title":"Senior Subcommittee Meeting","eventDetails":"Meet with Seniors on crime tip prevention and plan fun filled events","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"6th District\n7808 S. Halsted St.","modifiedDate":"2016-10-20T08:09:30"},{"calendarId":18,"start":"2016-12-14T10:00:00","end":"2016-12-14T12:00:00","title":"Senior Emergency Bracelet Drive","eventDetails":"Senior Emergency Bracelet Drive","eventUrl":null,"contactDetails":"P.O Ramirez","location":"Maria Diaz Apartments\n2111 N. Halsted\nChicago, Il 60614","modifiedDate":"2016-11-22T15:53:56"},{"calendarId":12,"start":"2016-12-13T19:00:00","end":"2016-12-13T20:00:00","title":"Beat Meeting 1222","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Above and Beyond Family Recovery Center, 2942 W. Lake St., on the 2nd Tuesday of the even months.","modifiedDate":"2016-10-14T10:16:45"},{"calendarId":8,"start":"2016-12-13T19:00:00","end":"2016-12-13T20:00:00","title":"831/832 Beat Meeting","eventDetails":"Marquette Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6734 S. Kedzie","modifiedDate":"2015-12-28T11:24:51"},{"calendarId":20,"start":"2016-12-13T19:00:00","end":null,"title":"2022 Beat Meeting","eventDetails":"2022 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Broadway Armory\n5917 N. Broadway","modifiedDate":"2016-02-01T11:35:29"},{"calendarId":4,"start":"2016-12-13T19:00:00","end":"2016-12-13T20:00:00","title":"Beat 424 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708.","location":"3200 E. 91st Street","modifiedDate":"2016-03-29T17:51:00"},{"calendarId":24,"start":"2016-12-13T19:00:00","end":"2016-12-13T20:00:00","title":"2411 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":null,"modifiedDate":"2015-12-07T14:54:59"},{"calendarId":9,"start":"2016-12-13T18:30:00","end":"2016-12-13T19:30:00","title":"913, 915 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"9th District Station\n3120 S. Halsted St.","modifiedDate":"2016-04-14T18:09:53"},{"calendarId":6,"start":"2016-12-13T18:00:00","end":"2016-12-13T19:00:00","title":"Court Advocacy Meeting","eventDetails":"Discuss pending court cases","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"006th District\n7808 S. Halsted","modifiedDate":"2016-10-11T15:39:22"},{"calendarId":22,"start":"2016-12-13T10:00:00","end":"2016-12-13T11:00:00","title":"Clergy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-22T08:30:42"},{"calendarId":6,"start":"2016-12-13T10:00:00","end":"2016-12-13T11:00:00","title":"Business Subcommittee Meeting","eventDetails":"Meet with local businesses as we plan future events to foster a safe community","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"6th District\n7808 S. Halsted St.","modifiedDate":"2016-10-20T08:10:12"},{"calendarId":6,"start":"2016-12-13T10:00:00","end":"2016-12-13T11:00:00","title":"Faith Based Subcommittee Meeting","eventDetails":"Join the faith based leaders as we connect with the community.","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"6th District\n7808 S. Halsted St.","modifiedDate":"2016-10-20T08:08:47"},{"calendarId":19,"start":"2016-12-12T18:30:00","end":"2016-12-12T19:30:00","title":"Beat 1934 & 1935","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"2nd Unitarian Church\n656 W. Barry","modifiedDate":"2016-05-25T15:33:23"},{"calendarId":11,"start":"2016-12-10T12:00:49","end":"2016-12-10T15:00:49","title":"Altgeld Park Advisory 1st Annual Christmas Party","eventDetails":"Altgeld Park Advisory Council 1st Annual Christmas Party.\nWe're asking the Community to donate a toy to be given out to the children ages Newborn to 13 years. There will be a donation box located at Altgeld Park. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 or Sandra Brown 773-909-0820","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2016-11-30T16:56:55"},{"calendarId":11,"start":"2016-12-10T12:00:00","end":"2016-12-10T17:00:00","title":"Music Concert & Basketball Game","eventDetails":"Music Concert & Basketball Game hosted by Camelot Academy & 11th Dist. CAPS Faithbased Committee","eventUrl":null,"contactDetails":"11th District CAPS Office 1.312.746.9841","location":"Camelot Academy West Garfield Park 230 N. Kolmar Avenue. ","modifiedDate":"2016-10-20T13:20:12"},{"calendarId":16,"start":"2016-12-10T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Greg Dial\n(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-03-01T12:52:39"},{"calendarId":8,"start":"2016-12-08T19:00:00","end":"2016-12-08T20:00:00","title":"814 Beat Meeting","eventDetails":"Vittum Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5010 W. 50th Street","modifiedDate":"2015-12-28T11:25:47"},{"calendarId":16,"start":"2016-12-08T19:00:00","end":null,"title":"1632 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Schorsch Village Hall\n6940 W. Belmont","modifiedDate":"2016-03-01T12:53:14"},{"calendarId":4,"start":"2016-12-08T19:00:00","end":"2016-12-08T20:00:00","title":"Beat 422 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708.","location":"2800 E.79th St.","modifiedDate":"2016-03-29T17:52:45"},{"calendarId":14,"start":"2016-12-08T19:00:00","end":null,"title":"1422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Hispanic Housing\n1402 N. Kedzie","modifiedDate":"2016-01-06T09:54:07"},{"calendarId":3,"start":"2016-12-08T19:00:00","end":"2016-12-08T20:00:00","title":"ALL BEATS MEETING","eventDetails":"ALL BEATS MEETING","eventUrl":null,"contactDetails":"P.O. Hutchinson\n(312) 747-7004\n7040 S. Cottage Grove\nChicago, IL. 60637\n","location":"SOUTH SHORE CULTURAL CENTER\r\n7059 S. SOUTH SHORE DR.\r\nCHICAGO, ILL. 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":8,"start":"2016-12-08T19:00:00","end":"2016-12-08T20:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":"West Lawn Park","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W. 65th Street","modifiedDate":"2015-12-28T11:22:11"},{"calendarId":19,"start":"2016-12-08T18:30:00","end":"2016-12-08T19:30:00","title":"Beat 1915","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"The Shift\n4101 N. Broadway","modifiedDate":"2016-05-25T15:35:07"},{"calendarId":12,"start":"2016-12-08T18:00:00","end":"2016-12-08T19:00:00","title":"Beat Meeting 1214","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is on the 2nd Thursday of every even month. The meeting will be held in the 12th District Community Room, 1412 S. Blue Island.","modifiedDate":"2016-10-14T10:17:04"},{"calendarId":12,"start":"2016-12-08T12:00:00","end":"2016-12-08T13:00:00","title":"District Advisory Committee Meeting","eventDetails":"The District Advisory Committee or (DAC) meeting is for stakeholders in the 12th District. These stakeholders are the businesses, faith and community organizations along with Beat Facilitators. The members meet on the 2nd Thursday of the month, with the District Commander, to address and come up with strategies to address issues in the community.","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-10-14T10:14:53"},{"calendarId":5,"start":"2016-12-08T11:00:00","end":"2016-12-08T12:00:00","title":"PASTORAL COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:10:37"},{"calendarId":4,"start":"2016-12-07T19:00:00","end":"2016-12-07T20:00:00","title":"Beat 414 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708.","location":"1750 E. 78th St.","modifiedDate":"2016-03-29T17:53:03"},{"calendarId":19,"start":"2016-12-07T19:00:00","end":"2016-12-07T20:00:00","title":"Beat 1923, 1924 & 1925","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"019 District\n850 W. Addison\n","modifiedDate":"2016-05-25T15:34:23"},{"calendarId":8,"start":"2016-12-07T19:00:00","end":"2016-12-07T20:00:00","title":"815/821 Beat Meeting","eventDetails":"St. Bruno's Hall","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4839 S. Harding","modifiedDate":"2015-12-28T11:25:33"},{"calendarId":20,"start":"2016-12-07T19:00:00","end":null,"title":"2033 Beat Meeting ","eventDetails":"2033 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Bezazian Library \n1226 W. Aislie","modifiedDate":"2016-12-13T11:56:57"},{"calendarId":25,"start":"2016-12-07T18:30:00","end":"2016-12-07T19:30:00","title":"Beat Meeting 2512","eventDetails":"Beat Meeting 2512","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"2211 N. Oak Park ","modifiedDate":"2015-12-10T11:24:43"},{"calendarId":14,"start":"2016-12-07T18:30:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T09:45:39"},{"calendarId":12,"start":"2016-12-07T18:00:00","end":"2016-12-07T19:00:00","title":"Beat Meeting 1224","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Chicago Police Academy 1300 W. Jackson, on the 1st Wednesday of the even months. ","modifiedDate":"2016-10-14T10:16:06"},{"calendarId":9,"start":"2016-12-07T18:00:00","end":"2016-12-07T19:00:00","title":"911, 921 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Davis School Annex\n3050 W. 39th St.","modifiedDate":"2016-04-14T18:10:04"},{"calendarId":3,"start":"2016-12-07T14:00:00","end":"2016-12-07T15:00:00","title":"Court Advocate Meeting","eventDetails":"Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:08:42"},{"calendarId":25,"start":"2016-12-07T10:00:00","end":"2016-12-07T11:00:00","title":"Domestic Violence","eventDetails":"Domestic Violence\nSub-committee meeting \n","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:40:35"},{"calendarId":11,"start":"2016-12-07T10:00:00","end":"2016-12-07T12:00:00","title":"Feeding the Community","eventDetails":"Food Giveaway every 1st & 3rd Wednesday of the Month. ","eventUrl":null,"contactDetails":"011th District CAPS Office (312) 746-9841","location":"011th District Lobby\n3151 W. Harrison","modifiedDate":"2016-11-29T13:49:34"},{"calendarId":4,"start":"2016-12-06T19:00:24","end":"2016-12-06T20:00:24","title":"Beat 433 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708.","location":"13323 S. Green Bay Ave","modifiedDate":"2016-03-29T17:53:31"},{"calendarId":12,"start":"2016-12-06T19:00:00","end":"2016-12-06T19:15:00","title":"NO Beat Meeting 1212","eventDetails":"The meeting is at St. Helen's School Basement, 2345 W. Augusta on the 1st Tuesday of the even months. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"NO MEETING ","modifiedDate":"2016-10-14T10:17:20"},{"calendarId":24,"start":"2016-12-06T19:00:00","end":"2016-12-06T20:00:00","title":"2413 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office. (312) 744-6321","location":"Green Briar Park 2650 W. Peterson","modifiedDate":"2015-12-07T14:53:26"},{"calendarId":16,"start":"2016-12-06T19:00:00","end":null,"title":"1612 Beat Meeting","eventDetails":"Beat meeting canceled due to holiday event.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Olympia Park\n6566 N. Avondale\n","modifiedDate":"2016-10-04T13:31:56"},{"calendarId":8,"start":"2016-12-06T19:00:00","end":"2016-12-06T20:00:00","title":"822/824 Beat Meeting","eventDetails":"Solorio High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5400 S. St. Louis","modifiedDate":"2015-12-28T11:25:20"},{"calendarId":18,"start":"2016-12-06T18:00:00","end":"2016-12-06T19:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":"Court Advocacy Subcommittee Meeting","eventUrl":null,"contactDetails":"P.O Incaprera","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-11-22T15:53:40"},{"calendarId":9,"start":"2016-12-06T18:00:00","end":"2016-12-06T19:00:00","title":"924, 931, 933 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"New City Supportive Living\n4707 S. Marshfield Ave.","modifiedDate":"2016-04-14T18:10:15"},{"calendarId":25,"start":"2016-12-06T10:00:00","end":"2016-12-06T11:00:00","title":"Senior Advisory","eventDetails":"Senior Advisory","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:47:07"},{"calendarId":20,"start":"2016-12-05T19:00:00","end":null,"title":"2011 Beat Meeting","eventDetails":"2011 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District \n5400 N. Lincoln","modifiedDate":"2016-02-01T11:35:37"},{"calendarId":3,"start":"2016-12-03T11:00:00","end":"2016-12-03T12:00:00","title":"Youth/Explorers","eventDetails":"Youth/Explorers","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n\n","modifiedDate":"2016-01-19T18:58:52"},{"calendarId":6,"start":"2016-12-03T11:00:00","end":"2016-12-03T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"6th District\n7808 S. Halsted St.","modifiedDate":"2016-10-20T08:11:51"},{"calendarId":11,"start":"2016-12-03T10:00:00","end":"2016-12-03T13:00:00","title":"Chicago Resident Service Fair","eventDetails":"Talk With Experts And Access Essential Services In Your Community. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Orr High School 730 N. Pulaski Rd.","modifiedDate":"2016-11-30T16:55:57"},{"calendarId":18,"start":"2016-12-03T10:00:00","end":"2016-12-03T12:00:00","title":"018 District Decorate the Station","eventDetails":"Explorer scouts decorate the 018 District Police Station for the holidays.","eventUrl":null,"contactDetails":"P.O. Ferguson","location":"018 District \n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-11-22T15:54:03"},{"calendarId":12,"start":"2016-12-03T09:00:00","end":"2016-12-03T11:00:00","title":"Peer Jury ","eventDetails":"First Saturday of the month at 9:00 AM. Cases are referred to the 12th District Peer Jury by the Area Central Detective Division. The offenders have already admitted their guilt before they are referred to Peer Jury. Teen?s, ages 13-17, hear the reason for the criminal act and issue sanctions. The Peer Juror will receive Community Service Hours by the Community Policing Office. ","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-05-26T13:41:33"},{"calendarId":25,"start":"2016-12-03T08:30:00","end":"2016-12-03T10:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:43:15"},{"calendarId":14,"start":"2016-12-01T19:00:00","end":null,"title":"1411 & 1412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Nicolai Church\n3000 N. Kedzie","modifiedDate":"2016-01-06T09:57:45"},{"calendarId":4,"start":"2016-12-01T19:00:00","end":"2016-12-01T20:00:00","title":"Beat 434 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708.","location":"10501 S. Torrence Ave","modifiedDate":"2016-03-29T17:53:54"},{"calendarId":22,"start":"2016-12-01T19:00:00","end":null,"title":"Beat 2211 and 2212 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-02T10:58:54"},{"calendarId":25,"start":"2016-12-01T18:30:00","end":"2016-12-01T19:30:00","title":"Beat Meeting 2522","eventDetails":"Beat Meeting 2522","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2240 N. Kilbourn","modifiedDate":"2015-12-10T11:12:50"},{"calendarId":14,"start":"2016-12-01T18:00:00","end":null,"title":"Domestic Violence Event","eventDetails":"Tree of Hope\nLighting Ceremony & Prayer Vigil","eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2015-12-09T13:08:29"},{"calendarId":22,"start":"2016-12-01T14:00:00","end":null,"title":"Diversity and Inclusion Subcommitte","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:55:55"},{"calendarId":3,"start":"2016-12-01T13:00:00","end":"2016-12-01T14:00:00","title":"003rd District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t\t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:04:27"},{"calendarId":20,"start":"2016-11-30T19:00:00","end":null,"title":"2032 Beat Meeting","eventDetails":"2032 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Ravenswood Evangelical Church\n4900 N. Damen","modifiedDate":"2016-02-01T11:34:14"},{"calendarId":17,"start":"2016-11-29T19:00:00","end":"2016-11-29T20:00:00","title":"Beat Meeting 1731","eventDetails":"1731 Beat Meeting","eventUrl":null,"contactDetails":"017th CAPS office 312-742-4588 or email CAPS.017district@chicagoplice.org","location":"Kilbourn Park\n3501 N. Kilbourn ","modifiedDate":"2016-10-07T15:01:38"},{"calendarId":20,"start":"2016-11-29T19:00:00","end":null,"title":"2031 Beat Meeting","eventDetails":"2031 Beat Community Meeting ","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Swedish Covenant \n2751 W. Winona","modifiedDate":"2016-02-01T11:34:31"},{"calendarId":1,"start":"2016-11-29T12:00:00","end":"2016-11-29T14:00:00","title":"Be A Better State Clean Up","eventDetails":"Cleaning up the neighborhood. Picking up trash.","eventUrl":null,"contactDetails":null,"location":"Meeting at 1st District 1718 S. State St.","modifiedDate":"2016-10-26T11:30:51"},{"calendarId":6,"start":"2016-11-28T18:00:00","end":"2016-11-28T20:00:00","title":"Beat Facilitator/DAC Meeting","eventDetails":"Discuss problems and concerns that affects the 006th District","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"6th District\n7808 S. Halsted","modifiedDate":"2016-10-11T15:40:20"},{"calendarId":11,"start":"2016-11-28T18:00:00","end":"2016-11-28T19:00:00","title":"District Advisory Committee ","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 11th District.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium ","modifiedDate":"2015-12-28T09:31:06"},{"calendarId":15,"start":"2016-11-28T15:00:00","end":"2016-11-28T16:00:00","title":"District Advisory Committee","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 15th district.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n312-743-1495","location":"15th District\nCommunity Room\n5701 W Madison Ave","modifiedDate":"2016-03-24T12:35:36"},{"calendarId":5,"start":"2016-11-26T10:00:00","end":"2016-11-26T12:00:00","title":"YOUTH LAW EXPLORERS","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:07:34"},{"calendarId":2,"start":"2016-11-26T08:00:00","end":"2016-11-26T11:00:00","title":"Peer Jury","eventDetails":"Monthly Peer Jury","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S Wentworth","modifiedDate":"2016-01-04T15:22:08"},{"calendarId":8,"start":"2016-11-23T19:00:00","end":"2016-11-23T20:00:00","title":"835 Beat Meeting","eventDetails":"Wrightwood Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"8530 S. Kedzie","modifiedDate":"2015-12-28T11:27:08"},{"calendarId":25,"start":"2016-11-23T18:30:00","end":"2016-11-23T19:30:00","title":"Beat Meeting 2523","eventDetails":"Beat Meeting 2523","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"4021 W. Belmont","modifiedDate":"2015-12-10T10:53:50"},{"calendarId":12,"start":"2016-11-23T18:00:00","end":"2016-11-23T18:15:00","title":"NO Beat Meeting 1235","eventDetails":"No Beat Meeting due to Thanksgiving.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Las Americas on the 4th Wednesday of the odd months. ","modifiedDate":"2016-10-12T14:02:59"},{"calendarId":3,"start":"2016-11-23T18:00:00","end":"2016-11-23T19:00:00","title":"DAC Meeting","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T11:31:18"},{"calendarId":25,"start":"2016-11-23T13:00:00","end":"2016-11-23T14:00:00","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:46:10"},{"calendarId":24,"start":"2016-11-22T19:00:00","end":"2016-11-22T20:00:00","title":"2433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"6000 N. Broadway","modifiedDate":"2016-01-08T14:07:48"},{"calendarId":24,"start":"2016-11-22T19:00:00","end":"2016-11-22T20:00:00","title":"2422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Willye White Park 1610 W. Howard","modifiedDate":"2015-12-07T14:52:34"},{"calendarId":8,"start":"2016-11-22T19:00:00","end":"2016-11-22T20:00:00","title":"813/833 Beat Meeting","eventDetails":"West Lawn Park","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W. 65th Street","modifiedDate":"2015-12-28T11:28:28"},{"calendarId":12,"start":"2016-11-22T19:00:00","end":"2016-11-22T20:00:00","title":"Beat Meeting 1211","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is a Norwegian Hospital 1044 N. Francisco on the 4th Tuesday of the odd months. ","modifiedDate":"2016-06-02T13:05:37"},{"calendarId":9,"start":"2016-11-22T19:00:00","end":"2016-11-22T20:00:00","title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"3120 S. Halsted St.","modifiedDate":"2016-05-02T19:43:33"},{"calendarId":9,"start":"2016-11-22T19:00:00","end":"2016-11-22T20:00:00","title":"922, 923 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Simon Church Hall\n5157 S. California Ave.","modifiedDate":"2016-04-14T18:10:25"},{"calendarId":25,"start":"2016-11-22T18:30:00","end":"2016-11-22T19:30:00","title":"Beat Meeting 2513","eventDetails":"Beat Meeting 2513","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"6200 W. Bloomingdale","modifiedDate":"2015-12-10T11:23:57"},{"calendarId":6,"start":"2016-11-22T18:30:00","end":"2016-11-22T19:30:00","title":"Beat 614 Meeting","eventDetails":"Discuss community problems and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"Foster Park Field House \n1440 W. 84TH St.","modifiedDate":"2016-10-11T15:48:16"},{"calendarId":11,"start":"2016-11-22T18:00:00","end":"2016-11-22T19:00:00","title":"Beat Meeting: 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Altgeld Park 515 S. Washtenaw\n\n","modifiedDate":"2015-12-22T13:59:48"},{"calendarId":1,"start":"2016-11-22T14:00:00","end":"2016-11-22T15:00:00","title":"30 Sector Business Mtg","eventDetails":"Beat meeting with business partners from 30 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"1718 S State\n001 Community Room","modifiedDate":"2015-12-15T16:54:26"},{"calendarId":3,"start":"2016-11-22T14:00:00","end":"2016-11-22T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:50:31"},{"calendarId":22,"start":"2016-11-22T10:30:00","end":"2016-11-22T11:30:00","title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:42:30"},{"calendarId":5,"start":"2016-11-22T10:00:00","end":"2016-11-22T11:00:00","title":"COURT ADVOCACY","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:14:36"},{"calendarId":15,"start":"2016-11-21T15:00:00","end":"2016-11-21T16:00:00","title":"District Advisory Committee ","eventDetails":"District Advisory Committee Subcommittee/ Chairpersons of different subcommittees meet to discuss the quality of life issues within the 15th District","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District\n5701 W. Madison\n","modifiedDate":"2016-07-08T07:26:12"},{"calendarId":7,"start":"2016-11-21T13:00:00","end":"2016-11-21T15:00:00","title":"Senior Advisory Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"Tolton Manor\n6345 S. Stewart","modifiedDate":"2016-01-20T16:16:11"},{"calendarId":15,"start":"2016-11-19T10:00:11","end":"2016-11-19T12:00:11","title":"Block Club Training ","eventDetails":"Block Club Training is provided to residents who are concerned and care about their communities and share information, identify concerns and act collectively to address these concerns","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave","modifiedDate":"2016-01-13T10:35:24"},{"calendarId":18,"start":"2016-11-19T10:00:00","end":"2016-11-19T12:00:00","title":"Peer Jury & Explorer Scouts","eventDetails":"Peer Jury & Explorer Scouts","eventUrl":null,"contactDetails":"P.O Ferguson","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-10-17T17:18:25"},{"calendarId":15,"start":"2016-11-19T10:00:00","end":"2016-11-19T12:00:00","title":"Block Club Training","eventDetails":"Community Organizer and residents partner on solving chronic crime and disorders and strategize together for solutions as block clubs and neighborhood watches are created.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District\n5701 W. Madison\n","modifiedDate":"2016-07-08T07:26:23"},{"calendarId":9,"start":"2016-11-19T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Area Central \n5101 S. Wentworth Ave.","modifiedDate":"2016-09-14T12:21:18"},{"calendarId":17,"start":"2016-11-19T09:00:00","end":"2016-11-19T12:00:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"017th CAPS office 312-742-4588 or email CAPS.017district@chicagoplice.org","location":"017th District Community Room","modifiedDate":"2016-10-07T15:05:46"},{"calendarId":12,"start":"2016-11-19T09:00:00","end":"2016-11-19T11:00:00","title":"Police Explorer Meeting ","eventDetails":"The program targets youths 12 to 20 years of age. The uniform, (shirt, patch and pants) will be provided by the 12th District Community Policing Office. The Explorer will receive a uniform after the Explorer attends 6 meetings and signs a letter of commitment. Anyone who wants to sign up is welcome. Please contact the Community Policing Office for further information.","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-05-26T13:39:44"},{"calendarId":3,"start":"2016-11-19T09:00:00","end":"2016-11-19T10:00:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"51st Wentworth","modifiedDate":"2016-01-19T18:56:45"},{"calendarId":16,"start":"2016-11-17T19:00:00","end":null,"title":"1611 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"St. Thecla\n6333 N. Newcastle","modifiedDate":"2016-03-01T12:56:07"},{"calendarId":8,"start":"2016-11-17T19:00:00","end":"2016-11-17T20:00:00","title":"DAC Meeting","eventDetails":"008th District Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W. 63rd Street","modifiedDate":"2015-12-28T11:26:52"},{"calendarId":14,"start":"2016-11-17T19:00:00","end":null,"title":"1431 & 1432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Haas Park\n2402 N. Washtenaw","modifiedDate":"2016-01-06T09:51:10"},{"calendarId":11,"start":"2016-11-17T18:30:00","end":"2016-11-17T19:30:00","title":"Beat Meeting:1113/14/15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"St. Michael MBC 4106 W. Monroe ","modifiedDate":"2015-12-21T14:11:45"},{"calendarId":25,"start":"2016-11-17T18:30:00","end":"2016-11-17T19:30:00","title":"Beat Meeting 2533","eventDetails":"Beat Meeting 2533","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:49:36"},{"calendarId":16,"start":"2016-11-17T18:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-03-01T13:00:51"},{"calendarId":3,"start":"2016-11-17T14:00:00","end":"2016-11-17T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:53:11"},{"calendarId":25,"start":"2016-11-17T13:30:00","end":"2016-11-17T14:30:00","title":"Business Meeting","eventDetails":"Business Meeting","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2016-02-01T15:27:13"},{"calendarId":11,"start":"2016-11-17T10:00:00","end":"2016-11-17T11:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Senior Subcommittee monthly meeting. ","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312-746-9841\n","location":"Meeting 011th District Auditorium \n3151 W. Harrison \n","modifiedDate":"2015-12-28T08:49:57"},{"calendarId":6,"start":"2016-11-17T10:00:00","end":"2016-11-17T11:00:00","title":"Domestic Violence Subcommitte Meeting","eventDetails":"Meet to discuss topics on Domestic Violence and prevention","eventUrl":null,"contactDetails":"Contact the CAPS office at (312)-745-3641","location":"6th District\n7808 S. Halsted St.","modifiedDate":"2016-10-21T10:20:10"},{"calendarId":17,"start":"2016-11-16T19:30:00","end":"2016-11-16T20:30:00","title":"1722/1723 Beat Meeting","eventDetails":"1722 1723 Combined Beat Meeting","eventUrl":null,"contactDetails":"017th CAPS office 312-742-4588 or email CAPS.017district@chicagoplice.org","location":"017th District Community 4650 N. Pulaski Rd. ","modifiedDate":"2016-10-07T14:59:13"},{"calendarId":20,"start":"2016-11-16T19:00:00","end":null,"title":"2013 Beat Meeting","eventDetails":"Beat Meeting for Beat 2013","eventUrl":null,"contactDetails":null,"location":"Philadelphia Church\n5437 N. Clark St\n","modifiedDate":"2016-11-23T16:21:08"},{"calendarId":16,"start":"2016-11-16T19:00:00","end":null,"title":"1623 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"16th District Station\n5151 N. Milwaukee Ave.\nCommunity Room","modifiedDate":"2016-03-01T13:01:21"},{"calendarId":14,"start":"2016-11-16T19:00:00","end":null,"title":"1423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Humboldt Park Fieldhouse\n1400 N. Sacramento","modifiedDate":"2016-08-17T14:46:06"},{"calendarId":8,"start":"2016-11-16T19:00:00","end":"2016-11-16T20:00:00","title":"823/825 Beat Meeting","eventDetails":"008th District Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W. 63rd Street","modifiedDate":"2015-12-28T11:27:36"},{"calendarId":1,"start":"2016-11-16T19:00:00","end":"2016-11-16T20:00:00","title":"BT 133 Residential Mtg","eventDetails":"Beat meeting with residents from BT 133","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"125 E 26th St\nTrinity Episcopal Church","modifiedDate":"2015-12-15T16:55:03"},{"calendarId":19,"start":"2016-11-16T19:00:00","end":"2016-11-16T20:00:00","title":"Beat 1921, 1922 & 1931","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"19th Police Auditorium\n2452 W. Belmont","modifiedDate":"2016-05-25T15:34:51"},{"calendarId":22,"start":"2016-11-16T19:00:00","end":"2016-11-16T20:00:00","title":"Beat 2234 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Station\n1900 W Monterey","modifiedDate":"2015-12-03T11:15:17"},{"calendarId":12,"start":"2016-11-16T19:00:00","end":"2016-11-16T20:00:00","title":"Beat Meeting 1213 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is a Northwest Settlement 1012 N. Noble on the 3rd Wednesday of the odd months","modifiedDate":"2016-06-03T13:27:16"},{"calendarId":3,"start":"2016-11-16T19:00:00","end":"2016-11-16T20:00:00","title":"30 Sector Beat Meeting (331, 332, 333 & 334)","eventDetails":"30 Sector Beat Meeting (331, 332, 333 & 334)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t\t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"ABJ Community Center\n1818 E. 71st St.\nChicago, IL. 60649\n\t\n","modifiedDate":"2015-12-29T11:43:45"},{"calendarId":17,"start":"2016-11-16T18:30:00","end":"2016-11-16T19:30:00","title":"Beat Meeting 1724","eventDetails":"1724 Community Beat Meeting","eventUrl":null,"contactDetails":"017th CAPS office 312-742-4588 or email CAPS.017district@chicagoplice.org","location":"Horner Park\n2741 W. Montrose ","modifiedDate":"2016-10-07T14:57:12"},{"calendarId":2,"start":"2016-11-16T18:30:00","end":null,"title":"Beat Meeting 233/234/235","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"Treasure Island\n1526 E. 55th Street","modifiedDate":"2016-06-24T11:33:30"},{"calendarId":6,"start":"2016-11-16T18:30:00","end":"2016-11-16T19:30:00","title":"Beat 623 Meeting","eventDetails":"Discuss community concerns and problems","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"Urban Partnership Bank\n7801 S. State","modifiedDate":"2016-10-11T15:47:17"},{"calendarId":6,"start":"2016-11-16T18:30:00","end":"2016-11-16T19:30:00","title":"Beat 624 Meeting","eventDetails":"Discuss community related problems and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"ST. Dorothy Catholic School\n450 E. 78TH St.","modifiedDate":"2016-10-11T15:46:57"},{"calendarId":25,"start":"2016-11-16T18:30:00","end":"2016-11-16T19:30:00","title":"Beat Meeting 2515","eventDetails":"Beat Meeting 2515","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2310 N. Lorel","modifiedDate":"2015-12-10T11:20:17"},{"calendarId":9,"start":"2016-11-16T18:00:00","end":"2016-11-16T19:00:00","title":"925 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Gabriel Church Hall\n4500 S. Wallace Ave.","modifiedDate":"2016-04-14T18:10:34"},{"calendarId":10,"start":"2016-11-16T18:00:00","end":"2016-11-16T19:00:00","title":"Beat 1013 Community CAPs Meeting","eventDetails":"Beat 1013 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs- 312-747-7190","location":"Epiphany Church\n2524 S. Keeler\nRectory","modifiedDate":"2016-06-03T10:15:05"},{"calendarId":18,"start":"2016-11-16T15:00:00","end":"2016-11-16T16:00:00","title":"10 Sector Hospitality Meeting","eventDetails":"10 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"Goose Island BrewPub\n1800 N. Clybourn\nChicago, Il 60642","modifiedDate":"2016-10-17T17:16:41"},{"calendarId":18,"start":"2016-11-16T15:00:00","end":"2016-11-16T16:00:00","title":"Near North Security Meeting","eventDetails":"Must register at 312-742-5778 to participate.","eventUrl":null,"contactDetails":"P.O Incaprera","location":"018 District \n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-10-17T17:19:11"},{"calendarId":11,"start":"2016-11-16T13:00:00","end":"2016-11-16T14:00:00","title":"E.A.V.I.","eventDetails":"The Expanded Anti-Violence Initiative is a community policing strategy designed specifically to prevent and reduce the violence associated with gang activity and narcotics sales.","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T10:09:42"},{"calendarId":5,"start":"2016-11-16T13:00:00","end":"2016-11-16T14:00:00","title":"SENIOR ADVISORY COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:09:31"},{"calendarId":19,"start":"2016-11-15T19:00:00","end":"2016-11-15T20:00:00","title":"Beat 1911 & 1912","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Sulzer Library\n4455 N. Lincoln","modifiedDate":"2016-05-25T15:36:20"},{"calendarId":8,"start":"2016-11-15T19:00:00","end":"2016-11-15T20:00:00","title":"811 Beat Meeting","eventDetails":"Good Shepherd Church","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5550 S. Merrimac","modifiedDate":"2015-12-28T11:28:55"},{"calendarId":12,"start":"2016-11-15T19:00:00","end":"2016-11-15T20:00:00","title":"Beat Meeting 1223","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Westhaven Park Community Room 1939 W. Lake St. on the 3rd Tuesday of the odd months","modifiedDate":"2016-06-03T13:30:32"},{"calendarId":24,"start":"2016-11-15T19:00:00","end":"2016-11-15T20:00:00","title":"2424 Beat meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Pottawatomie Park 7340 N. Rogers","modifiedDate":"2016-01-12T16:14:59"},{"calendarId":16,"start":"2016-11-15T19:00:00","end":null,"title":"1633 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Merrimac Park\n6343 W. Irving Park Rd.","modifiedDate":"2016-03-01T13:01:39"},{"calendarId":1,"start":"2016-11-15T19:00:00","end":"2016-11-15T20:00:00","title":"BT 131/132 Residential Mtg","eventDetails":"Beat meeting with residents from Bt 131/132","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"1718 S State\n001 Community Room","modifiedDate":"2015-12-22T12:24:15"},{"calendarId":3,"start":"2016-11-15T19:00:00","end":"2016-11-15T20:00:00","title":"10 Sector Beat Meeting (311,312,313 & 314)","eventDetails":"10 Sector Beat Meeting (311, 312, 313 & 314)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-02-05T11:40:15"},{"calendarId":25,"start":"2016-11-15T18:30:00","end":"2016-11-15T19:30:00","title":"Beat Meeting 2525","eventDetails":"Beat Meeting 2525","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2036 N. Avers","modifiedDate":"2015-12-10T10:52:05"},{"calendarId":25,"start":"2016-11-15T18:30:00","end":"2016-11-15T19:30:00","title":"Beat Meeting 2531","eventDetails":"Beat Meeting 2531","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave. \nCommunity Room","modifiedDate":"2015-12-10T10:51:14"},{"calendarId":7,"start":"2016-11-15T18:30:00","end":"2016-11-15T19:30:00","title":"END OF YEAR BEAT MEETING","eventDetails":"ALL ARE WELCOME TO ATTEND THE END OF 2016 COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS OFFICE\n312-747-6722","location":"007TH DISTRICT POLICE STATION\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:19:04"},{"calendarId":6,"start":"2016-11-15T18:30:00","end":"2016-11-15T19:30:00","title":"Beat 613 Meeting","eventDetails":"Discuss community problems and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"Walter Q. Gresham School \n8524 S. Green","modifiedDate":"2016-10-11T15:48:33"},{"calendarId":15,"start":"2016-11-15T18:30:00","end":"2016-11-15T19:30:00","title":"Beat 1511/24 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Hope Community Church\n5900 W. Iowa\n","modifiedDate":"2016-07-08T07:26:42"},{"calendarId":2,"start":"2016-11-15T18:30:00","end":null,"title":"Beat Meeting 221/223","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"King Center\n4314 S. Cottage Grove","modifiedDate":"2016-06-24T11:33:57"},{"calendarId":11,"start":"2016-11-15T18:00:00","end":"2016-11-15T19:00:00","title":"Beat Meeting:1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Homan Square Community Center 3559 W. Arthington","modifiedDate":"2015-12-21T15:06:52"},{"calendarId":9,"start":"2016-11-15T18:00:00","end":"2016-11-15T19:00:00","title":"932, 934, 935 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Westhaven Senior Homes\n850 W. Garfield Blvd.","modifiedDate":"2016-04-14T18:11:41"},{"calendarId":16,"start":"2016-11-15T13:00:00","end":null,"title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Jennene Whalen\n(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-03-01T13:02:34"},{"calendarId":11,"start":"2016-11-15T11:00:51","end":"2016-11-15T12:00:51","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"TBA","modifiedDate":"2016-01-26T14:05:55"},{"calendarId":17,"start":"2016-11-15T11:00:00","end":"2016-11-15T12:00:00","title":"Senior Citizen Sub-Committee Meeting","eventDetails":"Senior Citizen Sub-Committee Meeting","eventUrl":null,"contactDetails":"017th CAPS office 312-742-4588 or email CAPS.017district@chicagoplice.org","location":"017th District Community Room 4650 N. Pulaski Rd. ","modifiedDate":"2016-10-07T15:02:40"},{"calendarId":2,"start":"2016-11-15T10:30:00","end":null,"title":"Senior Meeting","eventDetails":"Senior Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"5101 S. Wentworth","modifiedDate":"2016-01-04T15:38:12"},{"calendarId":19,"start":"2016-11-14T19:00:00","end":"2016-11-14T20:00:00","title":"Beat 1932","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"New Life Church\n1110 W. Lill","modifiedDate":"2016-05-25T15:34:07"},{"calendarId":2,"start":"2016-11-14T18:30:00","end":null,"title":"Beat Meeting 211","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"College of Optometry\n3240 S. Indiana ","modifiedDate":"2016-06-24T11:39:44"},{"calendarId":15,"start":"2016-11-14T15:00:31","end":"2016-11-14T16:00:31","title":"Domestic Violence Meeting","eventDetails":"Domestic violence members discuss and plan upcoming events for domestic violence / survivors.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-12T16:13:44"},{"calendarId":14,"start":"2016-11-12T10:00:00","end":null,"title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T09:46:13"},{"calendarId":5,"start":"2016-11-12T10:00:00","end":"2016-11-12T12:00:00","title":"YOUTH LAW EXPLORERS","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:07:45"},{"calendarId":16,"start":"2016-11-12T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Greg Dial\n(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-03-01T13:18:11"},{"calendarId":8,"start":"2016-11-10T19:00:00","end":"2016-11-10T20:00:00","title":"814 Beat Meeting","eventDetails":"Vittum Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5010 W. 50th St","modifiedDate":"2015-12-28T11:28:15"},{"calendarId":1,"start":"2016-11-10T19:00:00","end":"2016-11-10T20:00:00","title":"10 Sector Residential Mtg","eventDetails":"Beat meeting with residents from the 10 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"400 E Randolph\nCondo Bldg","modifiedDate":"2015-12-15T16:55:47"},{"calendarId":20,"start":"2016-11-10T19:00:00","end":null,"title":"2023 Beat Meeting","eventDetails":"2023 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-8770","location":"Kenmore Plaza\n5225 N. Kenmore","modifiedDate":"2016-02-01T11:34:23"},{"calendarId":22,"start":"2016-11-10T19:00:00","end":"2016-11-10T20:00:00","title":"Beat 2213 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Ridge Park\n9625 S Longwood Dr","modifiedDate":"2015-12-02T10:57:15"},{"calendarId":4,"start":"2016-11-10T19:00:00","end":"2016-11-10T20:00:00","title":"Beat 421 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708.","location":"2800 E. 79th St.","modifiedDate":"2016-03-29T17:56:07"},{"calendarId":12,"start":"2016-11-10T19:00:00","end":"2016-11-10T20:00:00","title":"Beat Meeting 1215","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the Goldblatt's Building 1615 W. Chicago Ave. on the 2nd Thursday of the odd months. ","modifiedDate":"2016-06-03T13:31:34"},{"calendarId":14,"start":"2016-11-10T18:30:00","end":null,"title":"1413 & 1414 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Public Library-Logan Square\n3030 W. Fullerton","modifiedDate":"2016-01-06T09:56:43"},{"calendarId":2,"start":"2016-11-10T18:30:00","end":null,"title":"Beat Meeting 225/231/232","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"Coppin AME Church\n5627 S. Michigan ","modifiedDate":"2016-06-24T11:33:42"},{"calendarId":18,"start":"2016-11-10T18:30:00","end":"2016-11-10T19:30:00","title":"10 Sector Beat Meeting","eventDetails":"10 Sector Beat Community Meeting","eventUrl":null,"contactDetails":"P.O Schenk","location":"St. James Lutheran Church & School\n2101 N. Fremont\nChicago, Il 60614","modifiedDate":"2016-10-17T17:15:51"},{"calendarId":6,"start":"2016-11-10T18:30:00","end":"2016-11-10T19:30:00","title":"Beat 633 Meeting","eventDetails":"Discuss community related problems and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"Tuley Park Field House\n501 E. 90th Place","modifiedDate":"2016-10-11T15:45:53"},{"calendarId":6,"start":"2016-11-10T18:30:00","end":"2016-11-10T19:30:00","title":"Beat 632 Meeting","eventDetails":"Discuss community related problems and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"Tuley Park Field House\n501 E. 90th Place","modifiedDate":"2016-10-11T15:46:12"},{"calendarId":15,"start":"2016-11-10T18:30:00","end":"2016-11-10T19:30:00","title":"Beat 1513N CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District\t\n5701 W. Madison\n","modifiedDate":"2016-07-08T07:26:32"},{"calendarId":19,"start":"2016-11-10T18:30:00","end":"2016-11-10T19:30:00","title":"Beat 1933","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Illinois Masonic\n836 W. Wellington","modifiedDate":"2016-09-29T13:56:14"},{"calendarId":11,"start":"2016-11-10T18:00:00","end":"2016-11-10T19:00:00","title":"Beat Meeting:1122/23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Legler Chicago Public Library 115 S. Pulaski","modifiedDate":"2015-12-21T14:37:44"},{"calendarId":10,"start":"2016-11-10T18:00:00","end":"2016-11-10T19:00:00","title":"Beat 1033 Community CAPs Meeting","eventDetails":"Beat 1033 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Little Village Library\n2311 S. Kedzie","modifiedDate":"2016-06-03T10:25:27"},{"calendarId":1,"start":"2016-11-10T15:00:00","end":"2016-11-10T16:00:00","title":"District Advisory Committee Meeting ","eventDetails":null,"eventUrl":null,"contactDetails":"001st District CAPS office 312-745-4381. ","location":"1718 S. State Street\nCommunity Room ","modifiedDate":"2016-05-09T15:40:45"},{"calendarId":12,"start":"2016-11-10T12:00:00","end":"2016-11-10T13:00:00","title":"District Advisory Committee Meeting","eventDetails":"The District Advisory Committee or (DAC) meeting is for stakeholders in the 12th District. These stakeholders are the businesses, faith and community organizations along with Beat Facilitators. The members meet on the 2nd Thursday of the month, with the District Commander, to address and come up with strategies to address issues in the community.","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-04-27T12:17:07"},{"calendarId":5,"start":"2016-11-10T11:00:00","end":"2016-11-10T12:00:00","title":"PASTORAL COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:10:49"},{"calendarId":1,"start":"2016-11-09T19:00:00","end":"2016-11-09T20:00:00","title":"20 Sector Residential Mtg","eventDetails":"Beat meeting with residents from the 20 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS\n1718 S State\n312-745-4381","location":"525 S State\nUniversity Center","modifiedDate":"2015-12-15T16:56:53"},{"calendarId":3,"start":"2016-11-09T19:00:00","end":"2016-11-09T20:00:00","title":"20 Sector Beat Meeting (321, 322, 323 & 324)","eventDetails":"20 Sector Beat Meeting (321, 322, 323 & 324)","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Park Manor Church\n600 E. 73rd St.\nChicago, IL. 60619\n","modifiedDate":"2015-12-29T11:52:47"},{"calendarId":4,"start":"2016-11-09T19:00:00","end":"2016-11-09T20:00:00","title":"Beat 411 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708.","location":"1526 E. 84th St.","modifiedDate":"2016-03-29T17:58:17"},{"calendarId":8,"start":"2016-11-09T19:00:00","end":"2016-11-09T20:00:00","title":"812 Beat Meeting","eventDetails":"St. Symphorosa","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6135 S. Austin","modifiedDate":"2015-12-28T11:28:42"},{"calendarId":9,"start":"2016-11-09T19:00:00","end":"2016-11-09T20:00:00","title":"912 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Maurice Church Hall\n3625 S. Hoyne Ave.","modifiedDate":"2016-04-14T18:11:57"},{"calendarId":17,"start":"2016-11-09T19:00:00","end":"2016-11-09T20:00:00","title":"Combined Beat Meeting 1732/1733","eventDetails":"1732/1733 Combined Beat Meeting","eventUrl":null,"contactDetails":"017th CAPS office 312-742-4588 or email CAPS.017district@chicagoplice.org","location":"Athletic Park Field House\n3546 W. Addison","modifiedDate":"2016-10-07T14:55:57"},{"calendarId":22,"start":"2016-11-09T18:45:00","end":"2016-11-09T19:45:00","title":"Beat 2232/2233 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Fernwood Park\n10438 S Wallace","modifiedDate":"2015-12-03T11:16:48"},{"calendarId":14,"start":"2016-11-09T18:30:00","end":null,"title":"1421 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Public Library-Humboldt Park\n1605 N. Troy","modifiedDate":"2016-01-06T09:55:30"},{"calendarId":2,"start":"2016-11-09T18:30:00","end":null,"title":"Beat Meeting 213/215/224","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"St. Elizabeth Church\n4058 S. Michigan ","modifiedDate":"2016-06-24T11:34:06"},{"calendarId":12,"start":"2016-11-09T18:00:00","end":"2016-11-09T19:00:00","title":"Beat Meeting 1231","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Academy Square, 318 S. Throop on the 2nd Wednesday of the odd months. ","modifiedDate":"2016-06-03T13:28:02"},{"calendarId":11,"start":"2016-11-09T18:00:00","end":"2016-11-09T19:00:00","title":"Court Advocacy ","eventDetails":"Court Advocacy Meeting","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:25:54"},{"calendarId":18,"start":"2016-11-09T15:30:00","end":"2016-11-09T16:30:00","title":"30 Sector Hospitality Meeting","eventDetails":"30 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"Highline\n169 W. Kinzie\nChicago, Il 60654","modifiedDate":"2016-10-17T17:20:36"},{"calendarId":14,"start":"2016-11-09T13:30:00","end":null,"title":"Domestic Violence Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2015-12-09T13:08:45"},{"calendarId":22,"start":"2016-11-09T13:30:00","end":null,"title":"Court Advocacy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:57:28"},{"calendarId":6,"start":"2016-11-09T11:00:00","end":"2016-11-09T12:30:00","title":"Senior Citizen Subcommittee Meeting","eventDetails":"Discuss safety tips","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"6 District\n7808 S. Halsted","modifiedDate":"2016-10-11T15:44:38"},{"calendarId":7,"start":"2016-11-09T09:30:00","end":"2016-11-09T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Police Station\n1438 W. 63RD Street","modifiedDate":"2016-01-20T16:13:13"},{"calendarId":16,"start":"2016-11-08T19:00:00","end":null,"title":"1613 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Oriole Park\n5430 N. Olcott","modifiedDate":"2016-03-01T13:19:39"},{"calendarId":24,"start":"2016-11-08T19:00:00","end":"2016-11-08T20:00:00","title":"2432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Sullivan High School 6631 N. Bosworth (Social Room)","modifiedDate":"2016-10-19T14:09:23"},{"calendarId":22,"start":"2016-11-08T19:00:00","end":"2016-11-08T20:00:00","title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Woodson Library\n9525 S Halsted","modifiedDate":"2015-12-03T11:18:21"},{"calendarId":4,"start":"2016-11-08T19:00:00","end":"2016-11-08T20:00:00","title":"Beat 423 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708.","location":"8930 S. Muskegon Ave.","modifiedDate":"2016-03-29T17:58:51"},{"calendarId":18,"start":"2016-11-08T18:30:00","end":"2016-11-08T19:30:00","title":"1821,22,23 Beat Meeting","eventDetails":"1821,22,23 Beat Community Meeting","eventUrl":null,"contactDetails":"P.O Schenk","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-10-17T17:22:19"},{"calendarId":9,"start":"2016-11-08T18:30:00","end":"2016-11-08T19:30:00","title":"913, 915 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"9th District Station\n3120 S. Halsted St.","modifiedDate":"2016-04-14T18:12:07"},{"calendarId":6,"start":"2016-11-08T18:30:00","end":"2016-11-08T19:30:00","title":"Beat 612 Meeting","eventDetails":"Discuss community problems and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"Southside Tabernacle \n7724 S. Racine\n","modifiedDate":"2016-10-11T15:48:48"},{"calendarId":2,"start":"2016-11-08T18:15:00","end":null,"title":"Beat Meeting 222","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth\n312-747-5109","location":"Kennicott Park\n4434 S. Lake Park","modifiedDate":"2016-06-24T11:33:49"},{"calendarId":12,"start":"2016-11-08T18:00:00","end":"2016-11-08T19:00:00","title":"Beat Meeting 1233","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the 12th District Station Community Room, 1412 S. Blue island on the 2nd Tuesday of the odd months","modifiedDate":"2016-06-03T13:28:26"},{"calendarId":10,"start":"2016-11-08T18:00:00","end":"2016-11-08T19:00:00","title":"Beat 1021 Community CAPs Meeting","eventDetails":"Beat 1021 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Carey Tercentenary\n1448 S. Homan Ave","modifiedDate":"2016-06-03T10:12:31"},{"calendarId":2,"start":"2016-11-08T15:00:00","end":"2016-11-08T16:00:00","title":"Domestic Violence Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:14:24"},{"calendarId":7,"start":"2016-11-08T12:00:00","end":"2016-11-08T13:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Police Station \n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:14:52"},{"calendarId":6,"start":"2016-11-08T10:00:00","end":"2016-11-08T11:00:00","title":"Business Subcommittee Meetin","eventDetails":"Discuss issues, and problems concerning community business","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"6th District\n7808 S. Halsted","modifiedDate":"2016-10-11T15:42:41"},{"calendarId":6,"start":"2016-11-07T18:30:26","end":"2016-11-07T20:00:26","title":"Keeping It Real Presentation","eventDetails":"A presentation giving \"real\" insight on robberies and burglaries.","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"6th District \nCommunity Room\n7808 S. Halsted St","modifiedDate":"2016-11-02T15:52:28"},{"calendarId":6,"start":"2016-11-05T11:00:00","end":"2016-11-05T12:00:00","title":"Law Explorers Meeting ","eventDetails":"Gain leadership experience and community service opportunities \n","eventUrl":null,"contactDetails":"Contact P.O. Mathews at 312-745-3641","location":"6th District\n7808 S. Halsted Street","modifiedDate":"2016-10-13T14:46:56"},{"calendarId":3,"start":"2016-11-05T11:00:00","end":"2016-11-05T12:00:00","title":"Youth/Explorers","eventDetails":"Youth/Explorers","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n\n","modifiedDate":"2016-01-19T18:59:05"},{"calendarId":11,"start":"2016-11-05T09:00:00","end":"2016-11-05T10:00:00","title":"Peer Jury","eventDetails":"Misdemeanor court cases are presented and sanctioned by their peers.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:05:31"},{"calendarId":12,"start":"2016-11-05T09:00:00","end":"2016-11-05T11:00:00","title":"Peer Jury ","eventDetails":"First Saturday of the month at 9:00 AM. Cases are referred to the 12th District Peer Jury by the Area Central Detective Division. The offenders have already admitted their guilt before they are referred to Peer Jury. Teen?s, ages 13-17, hear the reason for the criminal act and issue sanctions. The Peer Juror will receive Community Service Hours by the Community Policing Office. ","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-05-26T13:41:54"},{"calendarId":25,"start":"2016-11-05T08:30:00","end":"2016-11-05T10:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave\nCommunity Room ","modifiedDate":"2015-12-10T10:43:26"},{"calendarId":4,"start":"2016-11-03T19:00:20","end":"2016-11-03T20:00:20","title":"Beat 431 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708.","location":"2255 E. 103rd St.","modifiedDate":"2016-04-13T11:47:55"},{"calendarId":8,"start":"2016-11-03T19:00:00","end":"2016-11-03T20:00:00","title":"835 Beat Meeting","eventDetails":"Bogan High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3939 W. 79th St","modifiedDate":"2015-12-28T11:27:22"},{"calendarId":16,"start":"2016-11-03T19:00:00","end":null,"title":"1631 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Hiawatha Park\n8029 W. Forest Preserve Drive","modifiedDate":"2016-03-01T13:20:12"},{"calendarId":6,"start":"2016-11-03T18:30:00","end":"2016-11-03T19:30:00","title":"Beat 631 Meeting","eventDetails":"Discuss community related problems and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"Chatham Fields Lutheran Church\n8050 S. St. Lawrence","modifiedDate":"2016-10-11T15:46:37"},{"calendarId":25,"start":"2016-11-03T18:30:00","end":"2016-11-03T19:30:00","title":"Beat Meeting 2511","eventDetails":"Beat Meeting 2511","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"2833 N. Nordica","modifiedDate":"2015-12-10T11:25:39"},{"calendarId":15,"start":"2016-11-03T18:30:00","end":"2016-11-03T19:30:00","title":"Beat 1512/23 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"PCC Family Health Ctr.\n5425 W. Lake St.\n","modifiedDate":"2016-07-08T07:26:52"},{"calendarId":18,"start":"2016-11-03T18:30:00","end":"2016-11-03T19:30:00","title":"30 Sector Beat Meeting","eventDetails":"30 Sector Beat Community Meeting","eventUrl":null,"contactDetails":"P.O Schenk","location":"Access Living\n115 W. Chicago Ave\nChicago, Il 60654","modifiedDate":"2016-10-17T17:22:39"},{"calendarId":11,"start":"2016-11-03T18:00:22","end":"2016-11-03T19:00:22","title":"Beat Meeting: 1112/21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2015-12-14T15:23:31"},{"calendarId":10,"start":"2016-11-03T18:00:00","end":"2016-11-03T19:00:00","title":"Beat 1011/1012 Community CAPs meeting","eventDetails":"Beat 1011/1012 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Clair House\n1350 S. Harding","modifiedDate":"2016-06-03T10:15:15"},{"calendarId":14,"start":"2016-11-03T17:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T09:47:14"},{"calendarId":22,"start":"2016-11-03T14:00:00","end":null,"title":"Diversity and Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:56:01"},{"calendarId":1,"start":"2016-11-03T14:00:00","end":"2016-11-03T15:00:00","title":"20 Sector Business Mtg","eventDetails":"Beat meeting with business partners from the 20 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS\n1718 S State\n312-745-4381","location":"181 W Madison\nNorthern Trust Bank","modifiedDate":"2015-12-15T16:58:03"},{"calendarId":3,"start":"2016-11-03T13:00:00","end":"2016-11-03T14:00:00","title":"003rd District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:01:08"},{"calendarId":11,"start":"2016-11-03T11:00:00","end":"2016-11-03T12:00:00","title":"Domestic Violence Subcommittee","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312.746.9841\n","location":"011th District (Auditorium)\n3151 W. Harrison\n","modifiedDate":"2015-12-22T15:07:58"},{"calendarId":5,"start":"2016-11-03T10:00:00","end":"2016-11-03T11:00:00","title":"DOMESTIC VIOLENCE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:12:59"},{"calendarId":5,"start":"2016-11-03T10:00:00","end":"2016-11-03T11:00:00","title":"DOMESTIC VIOLENCE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:13:09"},{"calendarId":8,"start":"2016-11-02T19:00:00","end":"2016-11-02T20:00:00","title":"815/821 Beat Meeting","eventDetails":"St. Bruno's Hall","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4839 S. Harding","modifiedDate":"2015-12-28T11:28:02"},{"calendarId":4,"start":"2016-11-02T19:00:00","end":"2016-11-02T20:00:00","title":"Beat 412 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708.","location":"8455 S. Stony Island Ave.","modifiedDate":"2016-04-13T11:48:09"},{"calendarId":12,"start":"2016-11-02T19:00:00","end":"2016-11-02T20:00:00","title":"Beat Meeting 1221 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the Smith Park 2526 W. Grand Ave. on the1st Wednesday of the odd months. ","modifiedDate":"2016-06-03T13:31:08"},{"calendarId":16,"start":"2016-11-02T19:00:00","end":null,"title":"1621 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"First Church of Forest Glen\n5400 N. Lawler","modifiedDate":"2016-03-01T13:32:07"},{"calendarId":6,"start":"2016-11-02T18:30:00","end":"2016-11-02T19:30:00","title":"Beat 621 Meeting","eventDetails":"Discuss community problems and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"006 District Police District\n7808 S. Halsted","modifiedDate":"2016-10-11T15:47:56"},{"calendarId":6,"start":"2016-11-02T18:30:00","end":"2016-11-02T19:30:00","title":"Beat 622 Meeting","eventDetails":"Discuss Community related problems and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"006 District Police District \n7808 S. Halsted","modifiedDate":"2016-10-11T15:47:37"},{"calendarId":14,"start":"2016-11-02T18:30:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T09:47:37"},{"calendarId":15,"start":"2016-11-02T18:00:00","end":"2016-11-02T19:00:00","title":"Beat 1522/33 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Loretto Hospital\n645 S. Central, 6th Fl.\n","modifiedDate":"2016-07-08T07:27:01"},{"calendarId":9,"start":"2016-11-02T18:00:00","end":"2016-11-02T19:00:00","title":"911, 921 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Davis School Annex\n3050 W. 39th St.","modifiedDate":"2016-04-14T18:12:15"},{"calendarId":14,"start":"2016-11-02T18:00:00","end":null,"title":"Beat Facilitator Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T09:48:00"},{"calendarId":18,"start":"2016-11-02T15:00:00","end":"2016-11-02T16:00:00","title":"20 Sector Hospitality Meeting","eventDetails":"20 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"She-Nannigans\n16 W. Division\nChicago, Il 60610","modifiedDate":"2016-10-17T17:34:05"},{"calendarId":3,"start":"2016-11-02T14:00:00","end":"2016-11-02T15:00:00","title":"Court Advocate Meeting","eventDetails":"Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:08:50"},{"calendarId":25,"start":"2016-11-02T10:00:00","end":"2016-11-02T11:00:00","title":"Domestic Violence","eventDetails":"Domestic Violence\nSub-committee meeting \n","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave. \nCommunity Room","modifiedDate":"2015-12-10T10:40:43"},{"calendarId":12,"start":"2016-11-01T19:00:47","end":"2016-11-01T20:00:47","title":"Beat Meeting 1225","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Chicago Hope Academy 2108 W. Ogden. on the 1st Tuesday of the odd months. ","modifiedDate":"2016-06-03T13:29:56"},{"calendarId":24,"start":"2016-11-01T19:00:00","end":"2016-11-01T20:00:00","title":"2412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office. (312) 744-6321","location":null,"modifiedDate":"2015-12-07T14:54:08"},{"calendarId":22,"start":"2016-11-01T19:00:00","end":"2016-11-01T20:00:00","title":"Beat 2221 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Christ the King Church\n9225 S Hamilton","modifiedDate":"2015-12-03T11:21:09"},{"calendarId":8,"start":"2016-11-01T19:00:00","end":"2016-11-01T20:00:00","title":"822/824 Beat Meeting","eventDetails":"Solorio High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5400 S. St. Louis","modifiedDate":"2015-12-28T11:27:50"},{"calendarId":4,"start":"2016-11-01T19:00:00","end":"2016-11-01T20:00:00","title":"Beat 432 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708.","location":"10155 S. Ewing Ave.","modifiedDate":"2016-04-13T11:48:19"},{"calendarId":11,"start":"2016-11-01T18:30:00","end":"2016-11-01T19:30:00","title":"Beat Meeting: 1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe.","eventUrl":null,"contactDetails":"011th District CAPS 3151 W. Harrison Street 312-746-9841","location":"Brian Piccolo School 1040 N. Keeler","modifiedDate":"2015-12-14T15:24:19"},{"calendarId":25,"start":"2016-11-01T18:30:00","end":"2016-11-01T19:30:00","title":"Beat Meeting 2521","eventDetails":"Beat Meeting 2521","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2715 N. Cicero","modifiedDate":"2015-12-10T11:17:13"},{"calendarId":15,"start":"2016-11-01T18:30:00","end":"2016-11-01T19:30:00","title":"Beat 1531/32 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"West Branch Library\n4856 W. Chicago Ave\n","modifiedDate":"2016-07-08T07:27:13"},{"calendarId":6,"start":"2016-11-01T18:30:00","end":"2016-11-01T19:30:00","title":"Beat 611 Meeting","eventDetails":"Discuss community problems and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"2nd Mount Vernon Annex\n2101 W. 79th Street","modifiedDate":"2016-10-11T15:49:08"},{"calendarId":2,"start":"2016-11-01T18:30:00","end":null,"title":"Beat Meeting 212/214","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"Mandrake Park Field House\n3858 S. Cottage Grove","modifiedDate":"2016-06-24T11:34:34"},{"calendarId":19,"start":"2016-11-01T18:30:00","end":"2016-11-01T19:30:00","title":"Beat 1913","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Courtenay School\n4420 N. Beacon","modifiedDate":"2016-05-25T15:36:00"},{"calendarId":25,"start":"2016-11-01T18:30:00","end":"2016-11-01T19:30:00","title":"Beat Meeting 2535","eventDetails":"Beat Meeting 2535","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"3647 W. North","modifiedDate":"2015-12-10T10:47:57"},{"calendarId":18,"start":"2016-11-01T18:30:00","end":"2016-11-01T19:30:00","title":"1824 Beat Meeting","eventDetails":"1824 Beat Community Meeting","eventUrl":null,"contactDetails":"P.O Schenk","location":"Latin School\n59 W. North Blvd\nChicago, Il 60614","modifiedDate":"2016-10-17T17:34:42"},{"calendarId":10,"start":"2016-11-01T18:00:00","end":"2016-11-01T19:00:00","title":"Beat 1014 Community CAPs Meeting","eventDetails":"Beat 1014 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs- 312-747-7190","location":"Lawndale Church\n3839 W. Ogden Ave\n","modifiedDate":"2016-06-03T10:14:56"},{"calendarId":9,"start":"2016-11-01T18:00:00","end":"2016-11-01T19:00:00","title":"924, 931, 933 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"New City Supportive Living\n4707 S. Marshfield Ave.","modifiedDate":"2016-04-14T18:05:12"},{"calendarId":25,"start":"2016-11-01T14:00:00","end":"2016-11-01T15:00:00","title":"Court Advocacy","eventDetails":"Court Advocacy","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:42:17"},{"calendarId":25,"start":"2016-10-31T17:00:00","end":"2016-10-31T20:00:00","title":"Haunted House","eventDetails":"Bring the kids in for some safe and spooky Halloween fun!","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090.","location":"5555 W. Grand Ave. - 25th District Community Room","modifiedDate":"2016-10-05T15:40:54"},{"calendarId":11,"start":"2016-10-31T16:00:00","end":"2016-10-31T19:00:00","title":"11th District Halloween Celebration","eventDetails":"Halloween Celebration for\nChildren 17 and under.\nFree Halloween movie, popcorn & candy.","eventUrl":null,"contactDetails":"11th District CAPS Office 1.312.746.9841","location":"011th District Auditorium\n3151 W.Harrison","modifiedDate":"2016-10-20T11:36:44"},{"calendarId":14,"start":"2016-10-30T11:00:00","end":"2016-10-30T13:00:00","title":"Domestic Violence Rally","eventDetails":"March against domestic violence ","eventUrl":null,"contactDetails":null,"location":"March begins at Roberto Clemente High School (1147 N Western) and ends at the 014th District (2150 N California)","modifiedDate":"2016-09-27T15:22:12"},{"calendarId":6,"start":"2016-10-29T11:00:00","end":null,"title":"006th Dist. October Festival - community corvette","eventDetails":"October fest party with the youth. FREE!!","eventUrl":null,"contactDetails":"P.O. N. Mathews","location":"006th Dist. \n7808 S. Halsted ","modifiedDate":"2016-10-05T16:18:26"},{"calendarId":20,"start":"2016-10-28T16:00:02","end":"2016-10-28T17:30:02","title":"20th District Halloween Party","eventDetails":"Join us for a fun filled Halloween Party. Games, Prizes, Candy and Costume Contest at 5pm. This is a free party open to kids of all ages.","eventUrl":null,"contactDetails":"312-742-8770","location":"5400 N. Lincoln Ave\nChicago, IL 60625","modifiedDate":"2016-10-24T10:02:17"},{"calendarId":18,"start":"2016-10-28T13:00:16","end":"2016-10-28T14:00:16","title":"Domestic Violence Information Table","eventDetails":"Domestic Violence Infomation Table","eventUrl":null,"contactDetails":"P.O Incaprera","location":"DePaul University\n2250 N. Sheffield\nChicago, Il 60614","modifiedDate":"2016-09-23T13:54:46"},{"calendarId":1,"start":"2016-10-28T10:00:15","end":"2016-10-28T11:00:15","title":"Domestic Violence Workshop","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2631 S. Indiana","modifiedDate":"2016-10-26T11:30:58"},{"calendarId":3,"start":"2016-10-27T19:00:00","end":"2016-10-27T20:00:00","title":"Beat Meeting (321, 324)","eventDetails":"Beat Meeting (321, 324)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station\n7040 S. Cottage Grove \nChicago IL. 60637\n\n","modifiedDate":"2015-12-29T15:52:17"},{"calendarId":16,"start":"2016-10-27T19:00:00","end":null,"title":"1634 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"St. Batholomew Church\n4910 W. Addison\nKrueger Hall","modifiedDate":"2016-03-01T13:31:04"},{"calendarId":25,"start":"2016-10-27T18:30:00","end":"2016-10-27T19:30:00","title":"Beat Meeting 2514","eventDetails":"Beat Meeting 2514","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"3115 N. Mason","modifiedDate":"2015-12-10T11:23:18"},{"calendarId":7,"start":"2016-10-27T18:30:00","end":"2016-10-27T19:30:00","title":"BEAT 711 & 712 MEETING","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"Sherwood Park\n5701 S. Shields","modifiedDate":"2016-01-20T16:28:29"},{"calendarId":6,"start":"2016-10-27T18:30:00","end":"2016-10-27T19:30:00","title":"Beat 634 Meeting","eventDetails":"Discuss community related problems and concerns","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"New Progressive Baptist Church\n9400 S. Perry","modifiedDate":"2016-10-11T15:45:09"},{"calendarId":11,"start":"2016-10-27T18:00:00","end":"2016-10-27T19:00:00","title":"Beat Meeting:1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Eloise Mc Coy Village Apt. 4650 W. Van Buren ","modifiedDate":"2015-12-21T13:54:11"},{"calendarId":5,"start":"2016-10-27T18:00:00","end":"2016-10-27T20:00:00","title":"DISTRICT ADVISORY COUNCIL","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:15:56"},{"calendarId":1,"start":"2016-10-27T14:00:00","end":"2016-10-27T14:00:00","title":"10 Sector Business","eventDetails":"Beat meeting with business partners from the 30 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS\n1718 S State\n312-745-4381","location":"175 N State\nChicago Theatre","modifiedDate":"2015-12-15T17:00:45"},{"calendarId":22,"start":"2016-10-27T14:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:40:58"},{"calendarId":22,"start":"2016-10-27T13:00:00","end":"2016-10-27T13:00:00","title":"Beat Facilitators Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:41:11"},{"calendarId":22,"start":"2016-10-27T10:30:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room, 1900 W. Monterey","modifiedDate":"2015-12-23T08:41:52"},{"calendarId":12,"start":"2016-10-27T08:30:25","end":"2016-10-27T10:30:25","title":"Food Giveaway ","eventDetails":"The Greater Chicago Food Depository?s Produce mobile will be in the West Town Community giving away FREE fresh fruits, bread & vegetables!! Bring a cart there is usually a lot of food. This sill be the last food giveaway for the year. ","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The event is held at Eckhart Park - 1330 W. Chicago Ave. ","modifiedDate":"2016-04-30T11:09:32"},{"calendarId":17,"start":"2016-10-26T19:30:00","end":"2016-10-26T20:30:00","title":"Beat Meeting 1711 - 1712","eventDetails":"Beat Meeting for 1711 - 1712","eventUrl":null,"contactDetails":"017th CAPS office 312-742-4588 or email CAPS.017district@chicagoplice.org","location":"Mayfair Church \n5020 N Pulaski Rd\n7:30pm","modifiedDate":"2016-08-08T17:16:50"},{"calendarId":16,"start":"2016-10-26T19:00:00","end":null,"title":"1624 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Portage Park Senior Center\n4100 N. Long","modifiedDate":"2016-03-01T13:30:46"},{"calendarId":8,"start":"2016-10-26T19:00:00","end":null,"title":"835 Beat Meeting","eventDetails":"Wrightwood Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"8530 S. Kedzie","modifiedDate":"2015-12-22T10:55:49"},{"calendarId":9,"start":"2016-10-26T18:30:00","end":"2016-10-26T19:30:00","title":"914 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chinatown Library\n2100 S. Wentworth Ave.","modifiedDate":"2016-04-14T18:09:30"},{"calendarId":25,"start":"2016-10-26T18:00:00","end":"2016-10-26T19:00:00","title":"Beat Meeting 2534","eventDetails":"Beat Meeting 2534","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"4338 W. Wabansia","modifiedDate":"2015-12-10T10:48:47"},{"calendarId":3,"start":"2016-10-26T18:00:00","end":"2016-10-26T19:00:00","title":"DAC Meeting","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T11:31:28"},{"calendarId":14,"start":"2016-10-26T13:30:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2016-07-29T15:27:31"},{"calendarId":15,"start":"2016-10-26T10:00:00","end":"2016-10-26T12:00:00","title":"Senior Meeting","eventDetails":"Senior Citizens related topics w/ Guest Speakers from various agencies and departments","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District\n5701 W. Madison\n","modifiedDate":"2016-07-08T07:27:22"},{"calendarId":15,"start":"2016-10-26T08:30:00","end":"2016-10-26T09:30:00","title":"Business Meeting","eventDetails":"Business owners of the 15th District meet with Community Organizer and discuss concerns of crime and ways to improve business related issues","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"MacArthur's Restaurant\n5412 W. Madison\n","modifiedDate":"2016-07-08T07:27:33"},{"calendarId":18,"start":"2016-10-26T01:00:57","end":"2016-10-26T02:00:57","title":"Domestic Violence Halloween Party","eventDetails":"Domestic Violence Halloween Party","eventUrl":null,"contactDetails":"For more information please call (312) 742-5778","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-09-19T18:10:02"},{"calendarId":9,"start":"2016-10-25T19:00:00","end":"2016-10-25T20:00:00","title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"3120 S. Halsted St.","modifiedDate":"2016-05-02T19:43:42"},{"calendarId":24,"start":"2016-10-25T19:00:00","end":null,"title":"2431 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"St. Jerome Parish Center 1709 W. Lunt","modifiedDate":"2016-01-08T11:25:45"},{"calendarId":16,"start":"2016-10-25T19:00:00","end":null,"title":"1614 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Salvation Army\n8354 W. Foster","modifiedDate":"2016-03-01T13:30:22"},{"calendarId":9,"start":"2016-10-25T19:00:00","end":"2016-10-25T20:00:00","title":"922, 923 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Simon Church Hall \n5157 S. California Ave.","modifiedDate":"2016-04-14T18:12:34"},{"calendarId":8,"start":"2016-10-25T19:00:00","end":null,"title":"813/833 Beat Meeting","eventDetails":"West Lawn Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W. 65th Street","modifiedDate":"2015-12-22T11:11:51"},{"calendarId":3,"start":"2016-10-25T19:00:00","end":"2016-10-25T20:00:00","title":"20 Sector Beat Meeting (322, 323)","eventDetails":"Beat Meeting (322,323)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t\t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"Park Manor Church\n600 E. 73rd St.\nChicago, IL. 60619\n\n","modifiedDate":"2015-12-29T15:51:43"},{"calendarId":25,"start":"2016-10-25T18:30:00","end":"2016-10-25T19:30:00","title":"Beat Meeting 2532","eventDetails":"Beat Meeting 2532","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"1511 N. Long","modifiedDate":"2015-12-10T10:50:35"},{"calendarId":7,"start":"2016-10-25T18:30:00","end":"2016-10-25T19:30:00","title":"BEAT 713,714 AND 715","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"007TH DISTRICT POLICE STATION","modifiedDate":"2016-01-20T16:26:35"},{"calendarId":11,"start":"2016-10-25T18:00:00","end":"2016-10-25T19:00:00","title":"Beat Meeting: 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2015-12-22T14:00:38"},{"calendarId":12,"start":"2016-10-25T18:00:00","end":"2016-10-25T19:00:00","title":"Beat Meeting 1232","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at 12th District, 1412 S. Blue Island, on the 4th Tuesday of the even months. ","modifiedDate":"2016-06-02T13:11:49"},{"calendarId":3,"start":"2016-10-25T14:00:00","end":"2016-10-25T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:50:43"},{"calendarId":5,"start":"2016-10-25T10:00:00","end":"2016-10-25T11:00:00","title":"COURT ADVOCACY","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111THG STREET","modifiedDate":"2016-01-27T11:14:53"},{"calendarId":11,"start":"2016-10-24T18:00:44","end":"2016-10-24T19:00:44","title":"District Advisory Committee ","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 11th District.\n","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium ","modifiedDate":"2015-12-28T09:30:47"},{"calendarId":5,"start":"2016-10-22T10:00:00","end":"2016-10-22T12:00:00","title":"YOUTH LAW EXPLORERS","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:07:57"},{"calendarId":14,"start":"2016-10-22T10:00:00","end":"2016-10-22T14:00:00","title":"Gun Turn In Event","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"New Life Covenant Church\n1665 N. Mozart","modifiedDate":"2016-09-27T15:26:49"},{"calendarId":5,"start":"2016-10-22T09:00:00","end":"2016-10-22T12:00:00","title":"PEER JURY","eventDetails":"005TH DISTRICT POLICE STATION ","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:12:07"},{"calendarId":15,"start":"2016-10-22T08:30:14","end":"2016-10-22T13:00:14","title":"Peer Jury Session","eventDetails":"Youths with misdemeanor court cases are presented and sanctioned by their peers","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave","modifiedDate":"2016-01-13T10:23:22"},{"calendarId":2,"start":"2016-10-22T08:00:00","end":null,"title":"Peer Jury","eventDetails":"Monthly Peer Jury\n","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:22:31"},{"calendarId":7,"start":"2016-10-21T10:00:00","end":"2016-10-21T14:00:00","title":"RESOURCE FAIR","eventDetails":"SPONSORED BY THE 007TH DISTRICT DOMESTIC VIOLENCE SUBCOMMITTEE","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"007TH DISTRICT\n1438 W. 63RD STREET","modifiedDate":"2016-01-20T16:18:13"},{"calendarId":5,"start":"2016-10-20T19:00:00","end":"2016-10-20T20:00:00","title":"BEAT 533 COMMUNITY MEETING","eventDetails":"ALTGELD HEALTH CENTER","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"1029 E 130TH STREET","modifiedDate":"2016-01-26T08:25:41"},{"calendarId":8,"start":"2016-10-20T19:00:00","end":null,"title":"Court Advocacy Subcommittee Meeting","eventDetails":"West Lawn Park","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W. 65th Street","modifiedDate":"2015-12-28T11:22:41"},{"calendarId":20,"start":"2016-10-20T19:00:00","end":"2016-10-20T20:00:00","title":"20th Dist Beat Meeting Beat 2024","eventDetails":"Beat 2024","eventUrl":null,"contactDetails":"20th Dist CAPS 312-742-8770","location":"Margate Field House\n4921 N. Marine Dr","modifiedDate":"2016-02-09T13:44:07"},{"calendarId":25,"start":"2016-10-20T18:30:00","end":"2016-10-20T19:30:00","title":"Beat Meeting 2524","eventDetails":"Beat Meeting 2524","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2446 N. Ridgeway","modifiedDate":"2015-12-10T10:53:04"},{"calendarId":11,"start":"2016-10-20T18:30:00","end":"2016-10-20T19:30:00","title":"Beat Meeting:1113/14/15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"St. Michael MBC 4106 W. Monroe","modifiedDate":"2015-12-21T14:11:31"},{"calendarId":7,"start":"2016-10-20T18:30:00","end":"2016-10-20T19:30:00","title":"BEAT 734 & 735","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"GIFTS FROM GOD MINISTRY\n1818 W. 74TH STREET","modifiedDate":"2016-01-20T16:20:16"},{"calendarId":14,"start":"2016-10-20T18:30:00","end":null,"title":"1433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Pulaski Park\n1419 W. Blackhawk","modifiedDate":"2016-01-06T09:59:03"},{"calendarId":16,"start":"2016-10-20T18:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-03-01T13:21:51"},{"calendarId":3,"start":"2016-10-20T14:00:00","end":"2016-10-20T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:53:21"},{"calendarId":11,"start":"2016-10-20T10:00:00","end":"2016-10-20T11:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Senior Subcommittee monthly meeting. ","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312-746-9841\n","location":"Meeting 011th District Auditorium \n3151 W. Harrison \n","modifiedDate":"2015-12-28T08:49:46"},{"calendarId":6,"start":"2016-10-20T10:00:00","end":null,"title":"006th Domestic Violence Meeting","eventDetails":"006th Domestic Violence Monthly Meeting","eventUrl":null,"contactDetails":"P.O. M. Hughes","location":"7808 S. Halsted","modifiedDate":"2016-10-01T21:05:31"},{"calendarId":17,"start":"2016-10-19T19:30:00","end":"2016-10-19T20:30:00","title":"Beat Meeting 1722-1723","eventDetails":"Beat Meeting 1722-1723 combined ","eventUrl":null,"contactDetails":"017th CAPS office 312-742-4588 or email CAPS.017district@chicagoplice.org","location":"017th District Community Room 4650 N. Pulaski Rd.","modifiedDate":"2016-08-08T17:16:39"},{"calendarId":8,"start":"2016-10-19T19:00:00","end":null,"title":"823/825 Beat Meeting","eventDetails":"008th District Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W. 63rd Street","modifiedDate":"2015-12-22T10:58:18"},{"calendarId":5,"start":"2016-10-19T19:00:00","end":"2016-10-19T20:00:00","title":"BEAT 532 COMMUNITY MEETING","eventDetails":"ST. ANTHONY CHURCH","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"11533 S PRAIRIE","modifiedDate":"2016-01-26T08:27:05"},{"calendarId":22,"start":"2016-10-19T19:00:00","end":"2016-10-19T20:00:00","title":"Beat 2234 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Station\n1900 W Monterey","modifiedDate":"2015-12-03T11:15:28"},{"calendarId":1,"start":"2016-10-19T19:00:00","end":"2016-10-19T20:00:00","title":"BT 133 Residential Mtg","eventDetails":"Beat meeting with residents from BT 133","eventUrl":null,"contactDetails":"001st Dist CAPS\n1718 S State\n312-745-4381","location":"2930 S Dearborn\nDearborn Homes","modifiedDate":"2015-12-15T17:01:32"},{"calendarId":3,"start":"2016-10-19T19:00:00","end":null,"title":"Beat Meeting ( 333, 334)","eventDetails":"Beat Meeting (333,334)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"South Shore Cultural Center\n7059 S. South shore Dr.\nChicago, Ill. 60649\n","modifiedDate":"2016-01-20T18:50:32"},{"calendarId":20,"start":"2016-10-19T19:00:00","end":"2016-10-19T20:00:00","title":"20th Dist Beat Meeting Beat 2013","eventDetails":"Beat 2013","eventUrl":null,"contactDetails":"20th Dist CAPS 312-742-8770","location":"Philadelphia Church\n5437 N. Clark","modifiedDate":"2016-02-09T13:44:59"},{"calendarId":2,"start":"2016-10-19T18:30:00","end":null,"title":"Beat Meeting 233/234/235","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"Treasure Island\n1526 E. 55th Street","modifiedDate":"2016-06-24T11:40:25"},{"calendarId":14,"start":"2016-10-19T18:30:00","end":null,"title":"1434 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Bucktown Library\n1701 N. Milwaukee","modifiedDate":"2016-10-11T08:32:56"},{"calendarId":9,"start":"2016-10-19T18:00:00","end":"2016-10-19T19:00:00","title":"925 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Gabriel Church Hall\n4500 S. Wallace Ave.","modifiedDate":"2016-04-14T18:12:44"},{"calendarId":10,"start":"2016-10-19T18:00:00","end":"2016-10-19T19:00:00","title":"Beat 1031/1032 Community CAPs Meeting","eventDetails":"Beat 1031 & 1032 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"St. Agnes Church\n2658 S. Central Park Ave","modifiedDate":"2016-06-03T10:25:49"},{"calendarId":12,"start":"2016-10-19T18:00:00","end":"2016-10-19T19:00:00","title":"Beat Meeting 1234","eventDetails":" The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"The meeting is at Harrison Park, 1824 S. Wood Street on the 3rd Wednesday of the even months. ","modifiedDate":"2016-06-02T13:05:58"},{"calendarId":5,"start":"2016-10-19T13:00:00","end":"2016-10-19T14:00:00","title":"SENIOR ADVISORY COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:09:41"},{"calendarId":18,"start":"2016-10-19T09:30:39","end":"2016-10-19T10:30:39","title":"Coffee with the Commander","eventDetails":"Have a cup of coffee with Commander Bauer and find out what's going on in the 018 District.","eventUrl":null,"contactDetails":"Sgt. Wooten","location":"Eva's Cafe\n1447 N. Sedgwick\nChicago, Il 60610","modifiedDate":"2016-09-19T18:17:46"},{"calendarId":1,"start":"2016-10-18T19:00:35","end":"2016-10-18T20:00:35","title":"BT 131/132 Residential Mtg","eventDetails":"Beat meeting with residents from Bts 131/132","eventUrl":null,"contactDetails":"001st Dist CAPS\n1718 S State\n312-745-4381","location":"30 W Cermak\nHilliard Apts","modifiedDate":"2015-12-15T17:02:40"},{"calendarId":8,"start":"2016-10-18T19:00:00","end":null,"title":"811 Beat Meeting","eventDetails":"Good Shepherd Church","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5550 S. Merrimac","modifiedDate":"2015-12-22T11:20:59"},{"calendarId":22,"start":"2016-10-18T19:00:00","end":"2016-10-18T20:00:00","title":"Beat 2222 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Brainerd Park\n1246 W 92nd St","modifiedDate":"2015-12-03T11:19:51"},{"calendarId":5,"start":"2016-10-18T19:00:00","end":"2016-10-18T20:00:00","title":"BEAT 531 COMMUNITY MEETING ","eventDetails":"GREEN STONE UNITED METHODIST","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"11211 S ST. LAWRENCE","modifiedDate":"2016-01-26T08:28:17"},{"calendarId":24,"start":"2016-10-18T19:00:00","end":null,"title":"2423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Touhy Park 7348 N. Paulina","modifiedDate":"2016-01-08T11:27:05"},{"calendarId":7,"start":"2016-10-18T18:30:00","end":"2016-10-18T19:30:00","title":"BEAT 731,732 AND 733","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"HAMILTON PARK\n513 W. 72ND STREET","modifiedDate":"2016-01-20T16:22:23"},{"calendarId":11,"start":"2016-10-18T18:00:00","end":"2016-10-18T19:00:00","title":"Beat Meeting:1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Homan Square Community Center 3559 W. Arthington","modifiedDate":"2015-12-21T15:06:39"},{"calendarId":9,"start":"2016-10-18T18:00:00","end":"2016-10-18T19:00:00","title":"932, 934, 935 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Westhaven Senior Homes\n850 W. Garfield Blvd.","modifiedDate":"2016-04-14T18:14:57"},{"calendarId":16,"start":"2016-10-18T13:00:00","end":null,"title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Jennene Whalen\n(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-03-01T13:31:45"},{"calendarId":11,"start":"2016-10-18T11:00:00","end":"2016-10-18T12:00:00","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"TBA","modifiedDate":"2016-01-26T14:06:27"},{"calendarId":2,"start":"2016-10-18T10:30:00","end":null,"title":"Senior Meeting","eventDetails":"Senior Meeting","eventUrl":null,"contactDetails":"Officer Sanders","location":"5101 S. Wentworth","modifiedDate":"2016-01-04T15:41:13"},{"calendarId":11,"start":"2016-10-17T17:30:00","end":"2016-10-17T20:30:00","title":"Operation Wake UP ","eventDetails":"Operation Wake UP Community Interaction due to a striking incident in the area. ","eventUrl":null,"contactDetails":"11th District CAPS\n1.312.746.9841","location":"3300 block of W. Maypole","modifiedDate":"2016-10-20T13:10:50"},{"calendarId":7,"start":"2016-10-17T13:00:00","end":"2016-10-17T15:00:00","title":"Senior Advisory Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"Tolton Manor\n6345 S. Stewart","modifiedDate":"2016-01-20T16:16:18"},{"calendarId":25,"start":"2016-10-15T13:00:00","end":"2016-10-15T15:00:00","title":"Explorer Scouts Meeting","eventDetails":"Monthly Meeting of the 25th District Police Explorers.","eventUrl":null,"contactDetails":"Call 25th District Community Relations Office: 312-746-5090 for more info.","location":"25th District Police Station - 5555 W. Grand Ave.","modifiedDate":"2016-09-29T15:58:43"},{"calendarId":11,"start":"2016-10-15T12:00:23","end":"2016-10-15T14:00:23","title":"Chicago And You","eventDetails":"Chicago And You peace circle meeting. ","eventUrl":null,"contactDetails":"011th District CAPS Office 1.312.746.9841","location":"11th District Auditorium\n3151 W. Harrison ","modifiedDate":"2016-10-20T13:10:30"},{"calendarId":18,"start":"2016-10-15T10:00:30","end":"2016-10-15T12:00:30","title":"Peer Jury & Explorer Scouts","eventDetails":"Peer Jury & Explorer Scouts","eventUrl":null,"contactDetails":"P.O. Ferguson","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-09-19T18:11:38"},{"calendarId":15,"start":"2016-10-15T10:00:05","end":"2016-10-15T12:00:05","title":"Block Club Training ","eventDetails":"Block Club Training is provided to residents who are concerned and care about their communities and share information, identify concerns and act collectively to address these concerns","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave","modifiedDate":"2016-01-13T11:00:15"},{"calendarId":15,"start":"2016-10-15T10:00:00","end":"2016-10-15T12:00:00","title":"Block Club Training","eventDetails":"Community Organizer and residents partner on solving chronic crime and disorders and strategize together for solutions as block clubs and neighborhood watches are created.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District\n5701 W. Madison\n","modifiedDate":"2016-07-08T07:27:44"},{"calendarId":12,"start":"2016-10-15T09:00:00","end":"2016-10-15T11:00:00","title":"Police Explorer Meeting ","eventDetails":"The program targets youths 12 to 20 years of age. The uniform, (shirt, patch and pants) will be provided by the 12th District Community Policing Office. The Explorer will receive a uniform after the Explorer attends 6 meetings and signs a letter of commitment. Anyone who wants to sign up is welcome. Please contact the Community Policing Office for further information.","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-05-26T13:40:06"},{"calendarId":9,"start":"2016-10-15T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Area Central\n5101 S. Wentworth Ave.","modifiedDate":"2016-09-14T12:21:43"},{"calendarId":17,"start":"2016-10-15T09:00:00","end":"2016-10-15T12:00:00","title":"Peer Jury - Youth","eventDetails":null,"eventUrl":null,"contactDetails":"017th CAPS office 312-742-4588 or email CAPS.017district@chicagoplice.org","location":"4650 N. Pulaski Rd","modifiedDate":"2016-08-08T17:17:10"},{"calendarId":6,"start":"2016-10-15T09:00:00","end":null,"title":"Seniors and Youth","eventDetails":"006TH DIST. SENIOR-YOUTH OUTING","eventUrl":null,"contactDetails":"PO. N. Mathews","location":"Brookfield ZOO","modifiedDate":"2016-10-01T21:06:49"},{"calendarId":7,"start":"2016-10-14T17:00:00","end":"2016-10-14T21:00:00","title":"STEPPIN' AGAINST DOMESTIC VIOLENCE","eventDetails":"SPONSORED BY THE DOMESTIC VIOLENCE SUBCOMMITTEE\nTOILETRY DONATIONS ACCEPTED","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"OGDEN PARK\n6500 S. RACINE","modifiedDate":"2016-01-20T16:18:23"},{"calendarId":1,"start":"2016-10-13T19:00:00","end":"2016-10-13T20:00:00","title":"10 Sector Residential Mtg","eventDetails":"Beat meting with residents from the 10 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS\n1718 S State\n312-745-4381","location":"130 N Garland \nCondo Bldg ","modifiedDate":"2015-12-15T17:03:05"},{"calendarId":4,"start":"2016-10-13T19:00:00","end":"2016-10-13T20:00:00","title":"Beat 422 Community Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708.","location":"2800 E. 79th St.","modifiedDate":"2016-04-13T11:48:37"},{"calendarId":5,"start":"2016-10-13T19:00:00","end":"2016-10-13T20:00:00","title":"BEAT 524 COMMUNITY MEETING","eventDetails":"LUTHERAN CHURCH OF THE HOLY SPIRIT","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"1335 W 115TH STREET","modifiedDate":"2016-01-26T08:29:20"},{"calendarId":16,"start":"2016-10-13T19:00:00","end":null,"title":"1632 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Schorsch Village Hall\n6940 W. Belmont","modifiedDate":"2016-03-01T13:23:19"},{"calendarId":8,"start":"2016-10-13T19:00:00","end":null,"title":"814 Beat Meeting","eventDetails":"Vittum Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5010 W. 50th Street","modifiedDate":"2015-12-22T11:10:23"},{"calendarId":3,"start":"2016-10-13T19:00:00","end":"2016-10-13T20:00:00","title":"30 Sector Beat Meeting (331, 332)","eventDetails":"Beat Meeting (331, 332)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"ABJ Community Center\n1818 E. 71st St.\nChicago, IL. 60649\n","modifiedDate":"2015-12-29T15:51:08"},{"calendarId":14,"start":"2016-10-13T19:00:00","end":null,"title":"1422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Simons Park\n1640 N. Drake","modifiedDate":"2016-01-06T09:59:47"},{"calendarId":22,"start":"2016-10-13T19:00:00","end":"2016-10-13T20:00:00","title":"Beat 2213 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Ridge Park\n9625 S Longwood Dr","modifiedDate":"2015-12-02T10:57:32"},{"calendarId":15,"start":"2016-10-13T18:30:00","end":"2016-10-13T19:30:00","title":"Beat 1513S CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"George R. Clarke School\n1045 S. Monitor\n","modifiedDate":"2016-07-08T07:28:00"},{"calendarId":7,"start":"2016-10-13T18:30:00","end":"2016-10-13T19:30:00","title":"BEAT 724, 725 AND 726","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"312-747-6722","location":"OGDEN PARK\n6500 S. RACINE","modifiedDate":"2016-01-20T16:25:18"},{"calendarId":2,"start":"2016-10-13T18:30:00","end":null,"title":"Beat Meeting 225/231/232","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth\n312-747-5109","location":"Coppin AME Church\n5627 S. Michigan\n","modifiedDate":"2016-06-24T11:40:18"},{"calendarId":11,"start":"2016-10-13T18:00:00","end":"2016-10-13T19:00:00","title":"Beat Meeting:1122/23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Legler Chicago Public Library 115 S. Pulaski","modifiedDate":"2015-12-21T14:37:27"},{"calendarId":12,"start":"2016-10-13T18:00:00","end":"2016-10-13T19:00:00","title":"Beat Meeting 1214","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at WeWork 220 N. Green Street, on the 2nd Thursday of the even months. ","modifiedDate":"2016-10-13T17:08:26"},{"calendarId":10,"start":"2016-10-13T18:00:00","end":"2016-10-13T19:00:00","title":"Beat 1023/ 1024 Community CAPs Meeting","eventDetails":"Beat 1023 & 1024 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"10th District\n3315 W. Ogden Ave\nCommunity Room","modifiedDate":"2016-06-03T10:14:45"},{"calendarId":11,"start":"2016-10-13T16:30:52","end":"2016-10-13T19:00:52","title":"OWL LACROSSE PEACE GAME","eventDetails":"Free Live DJ, Skills Camp","eventUrl":null,"contactDetails":"11th District CAPS\n312.746.9841","location":"Garfield Park Sports Fields \n138 S. Hamlin Blvd. ","modifiedDate":"2016-09-29T12:54:18"},{"calendarId":12,"start":"2016-10-13T12:00:00","end":"2016-10-13T13:00:00","title":"District Advisory Committee Meeting","eventDetails":"The District Advisory Committee or (DAC) meeting is for stakeholders in the 12th District. These stakeholders are the businesses, faith and community organizations along with Beat Facilitators. The members meet on the 2nd Thursday of the month, with the District Commander, to address and come up with strategies to address issues in the community.","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306 ","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-04-27T12:19:03"},{"calendarId":5,"start":"2016-10-13T11:00:00","end":"2016-10-13T12:00:00","title":"PASTORAL COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:11:06"},{"calendarId":6,"start":"2016-10-13T10:00:00","end":"2016-10-13T11:00:00","title":"006th District Faith Based Meeting","eventDetails":"Meet and plan event with our Faith Based community members","eventUrl":null,"contactDetails":"P.O. M. Hughes","location":"7808 S. Halsted","modifiedDate":"2016-10-01T21:05:46"},{"calendarId":19,"start":"2016-10-12T19:00:00","end":"2016-10-12T20:00:00","title":"Beat 1914","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Clarendon Park\n4501 N. Clarendon","modifiedDate":"2016-05-25T15:35:42"},{"calendarId":8,"start":"2016-10-12T19:00:00","end":null,"title":"812 Beat Meeting","eventDetails":"Clearing Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6423 W. 63rd Place","modifiedDate":"2015-12-22T11:16:01"},{"calendarId":14,"start":"2016-10-12T19:00:00","end":null,"title":"1424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Wicker Park\n1425 N. Damen","modifiedDate":"2016-01-06T09:59:22"},{"calendarId":4,"start":"2016-10-12T19:00:00","end":"2016-10-12T20:00:00","title":"Beat 413 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"9037 S. Harper Ave.","modifiedDate":"2016-04-13T11:48:45"},{"calendarId":20,"start":"2016-10-12T19:00:00","end":"2016-10-12T20:00:00","title":"20th Dist Beat Meeting Beat 2012","eventDetails":"Beat 2012","eventUrl":null,"contactDetails":"20th Dist CAPS 312-742-8770","location":"St. Gregory Gym\n1609 W. Gregory","modifiedDate":"2016-02-09T13:45:26"},{"calendarId":5,"start":"2016-10-12T19:00:00","end":"2016-10-12T20:00:00","title":"BEAT 523 COMMUNITY MEETING","eventDetails":"ST. PETER & PAUL","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"12425 S HALSTED","modifiedDate":"2016-01-26T08:32:13"},{"calendarId":16,"start":"2016-10-12T19:00:00","end":null,"title":"1622 Beet Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Dunham Park\n4638 N. Melvina","modifiedDate":"2016-03-01T13:24:15"},{"calendarId":9,"start":"2016-10-12T19:00:00","end":"2016-10-12T20:00:00","title":"912 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Maurice Church Hall\n3625 S. Hoyne Ave.","modifiedDate":"2016-04-14T18:16:03"},{"calendarId":17,"start":"2016-10-12T19:00:00","end":"2016-10-12T20:00:00","title":"Beat Meeting 1732-1733","eventDetails":"Beat Meeting combined 1732-1733","eventUrl":null,"contactDetails":"017th CAPS office 312-742-4588 or email CAPS.017district@chicagoplice.org","location":"Athletic Park Field House 3546 W. Addison\n","modifiedDate":"2016-08-08T17:16:30"},{"calendarId":22,"start":"2016-10-12T18:45:00","end":"2016-10-12T19:45:00","title":"Beat 2232/2233 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Fernwood Park\n10438 S Wallace","modifiedDate":"2015-12-03T11:16:59"},{"calendarId":2,"start":"2016-10-12T18:30:00","end":null,"title":"Beat Meeting 213-215-224","eventDetails":"Citizens and CPD discuss issues and concerns of the community.","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth\n312-747-5109","location":"St. Elizabeth Church\n4058 S. Michigan","modifiedDate":"2016-06-24T11:39:59"},{"calendarId":25,"start":"2016-10-12T18:00:00","end":"2016-10-12T19:00:00","title":"District Advisory Committee Meeting","eventDetails":"25th District DAC Meeting and Officer of the Month Awards","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"5555 W. Grand Ave. - 25th District Community Room","modifiedDate":"2016-10-05T15:40:39"},{"calendarId":11,"start":"2016-10-12T18:00:00","end":"2016-10-12T19:00:00","title":"Court Advocacy ","eventDetails":"Court Advocacy Meeting","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:25:42"},{"calendarId":25,"start":"2016-10-12T18:00:00","end":"2016-10-12T19:00:00","title":"DAC Meeting","eventDetails":"District Advisory Committee Meeting and Officer of the Month Awards.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"25th District Community Room","modifiedDate":"2016-06-02T09:19:43"},{"calendarId":18,"start":"2016-10-12T15:30:00","end":"2016-10-12T16:30:00","title":"30 Sector Hospitality Meeting","eventDetails":"30 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"Highline\n169 W. Kinzie\nChicago, Il 60654","modifiedDate":"2016-09-19T18:12:07"},{"calendarId":14,"start":"2016-10-12T13:30:00","end":null,"title":"Domestic Violence Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California ","modifiedDate":"2015-12-09T13:09:05"},{"calendarId":22,"start":"2016-10-12T13:30:00","end":null,"title":"Court Advocacy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:57:37"},{"calendarId":6,"start":"2016-10-12T10:00:00","end":"2016-10-12T11:00:00","title":"006th District Senior Meeting","eventDetails":"6th District monthly seniors meeting","eventUrl":null,"contactDetails":"P.O. M. Hughes","location":"Community Room","modifiedDate":"2016-10-01T21:06:09"},{"calendarId":7,"start":"2016-10-12T09:30:00","end":"2016-10-12T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Police Station\n1438 W. 63RD Street","modifiedDate":"2016-01-20T16:13:21"},{"calendarId":12,"start":"2016-10-11T19:00:00","end":"2016-10-11T20:00:00","title":"Beat Meeting 1222","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Above and Beyond Family Recovery Center, 2942 W. Lake St., on the 2nd Tuesday of the even months.","modifiedDate":"2016-06-02T13:06:27"},{"calendarId":22,"start":"2016-10-11T19:00:00","end":"2016-10-11T20:00:00","title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Woodson Library\n9525 S Halsted","modifiedDate":"2015-12-03T11:18:29"},{"calendarId":20,"start":"2016-10-11T19:00:00","end":null,"title":"2022 Beat Meeting","eventDetails":"2022 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Broadway Armory\n5917 N. Broadway","modifiedDate":"2016-02-01T11:36:24"},{"calendarId":4,"start":"2016-10-11T19:00:00","end":"2016-10-11T20:00:00","title":"Beat 424 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"3200 E. 91st St.","modifiedDate":"2016-04-13T11:49:20"},{"calendarId":5,"start":"2016-10-11T19:00:00","end":"2016-10-11T20:00:00","title":"BEAT 522 COMMUNITY MEETING","eventDetails":"GREATER CANAAN MBC","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"35 W 119TH STREET","modifiedDate":"2016-01-26T08:35:23"},{"calendarId":24,"start":"2016-10-11T19:00:00","end":null,"title":"2411 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Indian Boundary Park \n2500 W. Lunt","modifiedDate":"2016-09-28T11:48:56"},{"calendarId":8,"start":"2016-10-11T19:00:00","end":null,"title":"831/832 Beat Meeting","eventDetails":"Marquette Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6734 S. Kedzie","modifiedDate":"2015-12-22T10:57:29"},{"calendarId":7,"start":"2016-10-11T18:30:00","end":"2016-10-11T19:30:00","title":"BEAT 722 & 723","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"KENNEDY-KING COLLEGE\n740 W. 63RD STREET","modifiedDate":"2016-01-20T16:26:01"},{"calendarId":9,"start":"2016-10-11T18:30:00","end":"2016-10-11T19:30:00","title":"913, 915 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"9th District Station\n3120 S. Halsted St.","modifiedDate":"2016-04-14T18:16:17"},{"calendarId":2,"start":"2016-10-11T18:30:00","end":null,"title":"Beat Meeting 222","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth\n312-747-5109","location":"Kennicott Park\n4434 S. Lake Park","modifiedDate":"2016-06-24T11:40:11"},{"calendarId":15,"start":"2016-10-11T18:30:00","end":"2016-10-11T19:30:00","title":"Beat 1511/24 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Hope Community Church\n5900 W. Iowa\n","modifiedDate":"2016-07-08T07:28:10"},{"calendarId":11,"start":"2016-10-11T18:30:00","end":"2016-10-11T19:30:00","title":"Beat Meeting: 1124/25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"JLM Abundant Life Center 2622 W. Jackson","modifiedDate":"2015-12-22T14:00:12"},{"calendarId":6,"start":"2016-10-11T18:00:00","end":"2016-10-11T19:00:00","title":"6th District Court Advocacy Meeting","eventDetails":"6th District Court Advocacy Meeting.","eventUrl":null,"contactDetails":"Mrs. B. Williams 006th Dist. CAPS Coordinator ","location":"Community Room","modifiedDate":"2016-10-01T21:06:24"},{"calendarId":10,"start":"2016-10-11T18:00:00","end":"2016-10-11T19:00:00","title":"Beat 1034 Community CAPs Meeting","eventDetails":"Beat 1034 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"YMCA- Rauner\n2700 S. Western Ave\n2nd Floor","modifiedDate":"2016-06-03T10:29:30"},{"calendarId":2,"start":"2016-10-11T15:00:00","end":null,"title":"Domestic Violence Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109 ","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:09:27"},{"calendarId":7,"start":"2016-10-11T12:00:00","end":"2016-10-11T13:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Police Station\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:15:00"},{"calendarId":6,"start":"2016-10-11T10:00:00","end":"2016-10-11T11:00:00","title":"006th Dist Business Meeting","eventDetails":"Monthly Business Meeting","eventUrl":null,"contactDetails":"PO. T. TATUM","location":"006TH DIST. 7808 S. Halsted HALSTED COMMUNITY ROOM","modifiedDate":"2016-10-01T21:09:18"},{"calendarId":22,"start":"2016-10-11T10:00:00","end":"2016-10-11T11:00:00","title":"Clergy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-22T08:31:19"},{"calendarId":19,"start":"2016-10-10T18:30:00","end":"2016-10-10T19:30:00","title":"Beat 1934 & 1935","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"2nd Unitarian Church\n656 W. Barry","modifiedDate":"2016-05-25T15:33:32"},{"calendarId":14,"start":"2016-10-08T10:00:00","end":null,"title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T09:58:06"},{"calendarId":5,"start":"2016-10-08T10:00:00","end":"2016-10-08T12:00:00","title":"YOUTH LAW EXPLORERS","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:08:09"},{"calendarId":16,"start":"2016-10-08T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Greg Dial\n(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-03-01T13:23:52"},{"calendarId":11,"start":"2016-10-07T16:00:19","end":"2016-10-07T18:00:19","title":"The Community Casino Royale ","eventDetails":"Games, Food & Fun Provided !!! ","eventUrl":null,"contactDetails":"Contact 11th District CAPS Office for more information 312.746.9841","location":"3900 W. Grenshaw","modifiedDate":"2016-09-29T12:37:38"},{"calendarId":7,"start":"2016-10-07T10:00:00","end":"2016-10-07T12:00:00","title":"DOMESTIC VIOLENCE WALK","eventDetails":"WALK STARTS FROM THE 007TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"007TH DISTRICT\n1438 W. 63RD STREET","modifiedDate":"2016-01-20T16:18:30"},{"calendarId":25,"start":"2016-10-07T10:00:00","end":"2016-10-07T12:00:00","title":"National Coffee with a Cop Day","eventDetails":"Members of the community and business owners are invited to come have a cup of coffee with 25th District officers to discuss issues important to our neighborhood.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"Dunkin Donuts - 5650 W. Fullerton Ave.","modifiedDate":"2016-09-29T15:58:31"},{"calendarId":6,"start":"2016-10-07T10:00:00","end":"2016-10-07T12:00:00","title":"National Coffee with a Cop Day ","eventDetails":"Come and have a good conversation and a cup of coffee with you local police officers","eventUrl":null,"contactDetails":"P.O. N. Mathews","location":"Dunkin Donuts\n207 West 79th Street","modifiedDate":"2016-10-05T16:22:23"},{"calendarId":11,"start":"2016-10-07T09:00:48","end":"2016-10-07T11:00:48","title":"COFFEE WITH A COP","eventDetails":"Come have a conversation with your community officers @ COFFEE WITH A COP event. ","eventUrl":null,"contactDetails":"Contact 11th District CAPS' Office 312.746.9841 ","location":"Dunkin Donuts \n800 N. Kedzie Avenue","modifiedDate":"2016-09-29T12:36:53"},{"calendarId":16,"start":"2016-10-07T07:00:36","end":null,"title":"Coffee with a Cop","eventDetails":"Join your neighbors and police officers for coffee and conversation. The mission of Coffee with a Cop is to break down the barriers between police officers and the citizens they serve. By removing agendas and allowing opportunities to ask questions, voice concerns, and get to know the officers in your neighborhood.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Dunkin Donuts\n6342 N Milwaukee","modifiedDate":"2016-10-04T13:35:50"},{"calendarId":22,"start":"2016-10-06T19:00:00","end":null,"title":"Beat 2211 and 2212 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-02T10:59:04"},{"calendarId":8,"start":"2016-10-06T19:00:00","end":null,"title":"834 Beat Meeting","eventDetails":"Bogan High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3939 W. 79th Street","modifiedDate":"2015-12-22T10:56:39"},{"calendarId":14,"start":"2016-10-06T19:00:00","end":null,"title":"1411 & 1412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Nicolai Church\n3000 N. Kedzie","modifiedDate":"2016-01-06T10:00:03"},{"calendarId":4,"start":"2016-10-06T19:00:00","end":"2016-10-06T20:00:00","title":"Beat 434 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"St. Kevin's Church\n10501 S. Torrence Ave","modifiedDate":"2016-04-13T11:49:31"},{"calendarId":5,"start":"2016-10-06T19:00:00","end":"2016-10-06T20:00:00","title":"BEAT 513 COMMUNITY MEETING","eventDetails":"ROSELAND CHRISTIAN MINISTRIES","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"10858 S MICHIGAN AVE","modifiedDate":"2016-01-26T08:36:54"},{"calendarId":3,"start":"2016-10-06T19:00:00","end":"2016-10-06T20:00:00","title":"Beat Meeting (313, 314)","eventDetails":"Beat Meeting (313, 314)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n\n","location":"Harris Park Recreation\n6200 S. Drexel\nChicago, IL. 60637\n","modifiedDate":"2015-12-29T15:53:04"},{"calendarId":15,"start":"2016-10-06T18:30:00","end":"2016-10-06T19:30:00","title":"Beat 1512/23 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"PCC Family Health Ctr.\n5425 W. Lake St.\n","modifiedDate":"2016-07-08T07:28:22"},{"calendarId":19,"start":"2016-10-06T18:30:00","end":"2016-10-06T19:30:00","title":"Beat 1915","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"The Shift\n4101 N. Broadway","modifiedDate":"2016-05-25T15:35:16"},{"calendarId":25,"start":"2016-10-06T18:30:00","end":"2016-10-06T19:30:00","title":"Beat Meeting 2522","eventDetails":"Beat Meeting 2522","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2240 N. Kilbourn","modifiedDate":"2015-12-10T11:12:59"},{"calendarId":11,"start":"2016-10-06T18:00:00","end":"2016-10-06T19:00:00","title":"Beat Meeting: 1112/21","eventDetails":"Community engagements generating strategies to making neighborhoods safe","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2015-12-14T15:24:39"},{"calendarId":14,"start":"2016-10-06T17:00:00","end":null,"title":"Peer Jury ","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T09:58:20"},{"calendarId":22,"start":"2016-10-06T14:00:00","end":null,"title":"Diversity and Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:56:08"},{"calendarId":18,"start":"2016-10-06T13:00:13","end":"2016-10-06T14:00:13","title":"Domestic Violence Infomation Table","eventDetails":"Domestic Violence Infomation Table","eventUrl":null,"contactDetails":"P.O Incaprera","location":"Loyola School of Law\n25 E. Pearson\nChicago, Il 60611","modifiedDate":"2016-09-23T13:55:43"},{"calendarId":3,"start":"2016-10-06T13:00:00","end":"2016-10-06T14:00:00","title":"003rd District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n\n","modifiedDate":"2016-01-19T19:06:01"},{"calendarId":11,"start":"2016-10-06T11:00:00","end":"2016-10-06T12:00:00","title":"Domestic Violence Subcommittee","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312.746.9841\n","location":"011th District (Auditorium)\n3151 W. Harrison\n","modifiedDate":"2015-12-22T15:08:09"},{"calendarId":5,"start":"2016-10-06T10:00:00","end":"2016-10-06T11:00:00","title":"DOMESTIC VIOLENCE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:13:21"},{"calendarId":5,"start":"2016-10-05T19:00:00","end":"2016-10-05T20:00:00","title":"BEAT 512 COMMUNITY MEETING","eventDetails":"CHRISTIAN MISSIONARY BAPTIST CHURCH","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"132 W 104TH STREET","modifiedDate":"2016-01-26T08:38:32"},{"calendarId":8,"start":"2016-10-05T19:00:00","end":null,"title":"815/821 Beat Meeting","eventDetails":"St. Bruno's","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4839 S. Harding","modifiedDate":"2015-12-22T10:59:42"},{"calendarId":4,"start":"2016-10-05T19:00:00","end":"2016-10-05T20:00:00","title":"Beat 414 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"1750 E. 78th St.","modifiedDate":"2016-04-13T11:50:28"},{"calendarId":20,"start":"2016-10-05T19:00:00","end":"2016-10-05T20:00:00","title":"20th Dist Beat Meeting Beat 2033","eventDetails":"Beat 2033","eventUrl":null,"contactDetails":"20th Dist CAPS 312-742-8770","location":"Bezazian Library\n1226 W. Anslie","modifiedDate":"2016-02-09T14:23:25"},{"calendarId":3,"start":"2016-10-05T19:00:00","end":"2016-10-05T20:00:00","title":"Beat Meeting (311, 312)","eventDetails":"Beat Meeting (311, 312)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"Bessie Coleman Library \n731 E. 63rd St.\nChicago, IL. 60637\n","modifiedDate":"2015-12-29T15:54:56"},{"calendarId":19,"start":"2016-10-05T19:00:00","end":"2016-10-05T20:00:00","title":"Beat 1923, 1924 & 1925","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"019 District\n850 W. Addison","modifiedDate":"2016-05-25T15:34:32"},{"calendarId":14,"start":"2016-10-05T18:30:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District community Room","modifiedDate":"2016-01-06T09:58:35"},{"calendarId":25,"start":"2016-10-05T18:30:00","end":"2016-10-05T19:30:00","title":"Beat Meeting 2512","eventDetails":"Beat Meeting 2512","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"2211 N. Oak Park","modifiedDate":"2015-12-10T11:24:51"},{"calendarId":12,"start":"2016-10-05T18:00:00","end":"2016-10-05T19:00:00","title":"Beat Meeting 1224","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Chicago Police Academy 1300 W. Jackson, on the 1st Wednesday of the even months. ","modifiedDate":"2016-06-02T13:12:12"},{"calendarId":9,"start":"2016-10-05T18:00:00","end":"2016-10-05T19:00:00","title":"911, 921 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Davis School Annex\n3050 W. 39th St.","modifiedDate":"2016-04-14T18:16:52"},{"calendarId":15,"start":"2016-10-05T18:00:00","end":"2016-10-05T19:00:00","title":"Beat 1522/33 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Loretto Hospital\n645 S. Central, 6th Fl.\n\n","modifiedDate":"2016-07-08T07:28:34"},{"calendarId":18,"start":"2016-10-05T15:00:32","end":"2016-10-05T16:00:32","title":"20 Sector Hospitality Meeting","eventDetails":"20 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"She-Nannigans\n16 W. Division\nChicago, Il 60610","modifiedDate":"2016-09-19T18:12:37"},{"calendarId":25,"start":"2016-10-05T10:00:00","end":"2016-10-05T11:00:00","title":"Domestic Violence","eventDetails":"Domestic Violence\nSub-committee meeting \n","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:40:52"},{"calendarId":24,"start":"2016-10-05T10:00:00","end":null,"title":"Purple Ribbon Tying Event","eventDetails":"Domestic Violence Awareness Event","eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"24th District\n6464 N. Clark","modifiedDate":"2016-09-30T13:55:00"},{"calendarId":18,"start":"2016-10-05T09:00:03","end":"2016-10-05T10:00:03","title":"Peer Jury Recruitment","eventDetails":"Peer Jury Recruitment","eventUrl":null,"contactDetails":"P.O. Ferguson","location":"Quest Academy\n1443 N. Ogden\nChicago, Il 60610","modifiedDate":"2016-09-19T18:05:12"},{"calendarId":12,"start":"2016-10-04T19:00:00","end":"2016-10-04T20:00:00","title":"Beat Meeting 1212","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at St. Helen's School Basement, 2345 W. Augusta on the 1st Tuesday of the even months. ","modifiedDate":"2016-06-02T13:12:42"},{"calendarId":8,"start":"2016-10-04T19:00:00","end":null,"title":"822/824 Beat Meeting","eventDetails":"Solorio High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5400 S. St. Louis","modifiedDate":"2015-12-22T10:58:50"},{"calendarId":22,"start":"2016-10-04T19:00:00","end":"2016-10-04T20:00:00","title":"Beat 2221 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Christ the King Church\n9225 S Hamilton","modifiedDate":"2015-12-03T11:21:20"},{"calendarId":16,"start":"2016-10-04T19:00:00","end":null,"title":"1612 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Olympia Park\n6566 N. Avondale","modifiedDate":"2016-03-01T13:25:48"},{"calendarId":24,"start":"2016-10-04T19:00:00","end":null,"title":"2413 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Green Briar Park 2650 W. Peterson","modifiedDate":"2015-12-07T14:53:35"},{"calendarId":5,"start":"2016-10-04T19:00:00","end":"2016-10-04T20:00:00","title":"BEAT 511 COMMUNITY MEETING","eventDetails":"ROSEHAVEN MANOR","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"10220 S MICHIGAN AVE","modifiedDate":"2016-01-26T08:40:00"},{"calendarId":4,"start":"2016-10-04T19:00:00","end":"2016-10-04T20:00:00","title":"433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708.","location":"13323 S. Green Bay Ave","modifiedDate":"2016-04-13T11:50:49"},{"calendarId":11,"start":"2016-10-04T18:30:00","end":"2016-10-04T19:30:00","title":"Beat Meeting: 1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe.","eventUrl":null,"contactDetails":"011th District CAPS 3151 W. Harrison Street 312-746-9841","location":"Brian Piccolo School 1040 N. Keeler","modifiedDate":"2015-12-14T15:28:15"},{"calendarId":15,"start":"2016-10-04T18:30:00","end":"2016-10-04T19:30:00","title":"Beat 1531/32 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"West Branch Library\n4856 W. Chicago Ave\n\n","modifiedDate":"2016-07-08T07:28:46"},{"calendarId":2,"start":"2016-10-04T18:30:00","end":null,"title":"Beat Meeting 212/214","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-474-5109","location":"Mandrake Park Field House\n3858 S. Cottage Grove\n\n","modifiedDate":"2016-06-24T11:39:52"},{"calendarId":18,"start":"2016-10-04T18:00:26","end":"2016-10-04T19:00:26","title":"Court Advocacy Meeting","eventDetails":"Court Advocacy Subcommittee Meeting","eventUrl":null,"contactDetails":"P.O. Incaprera","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-09-19T18:06:41"},{"calendarId":9,"start":"2016-10-04T18:00:00","end":"2016-10-04T19:00:00","title":"924, 931, 933 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"New City Supportive Living\n4707 S. Marshfield Ave.","modifiedDate":"2016-04-14T18:17:04"},{"calendarId":10,"start":"2016-10-04T18:00:00","end":"2016-10-04T19:00:00","title":"Beat 1022 Community CAPs Meeting","eventDetails":"Beat 1022 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Albany Terrace\n3030 W. 21st Place","modifiedDate":"2016-06-03T10:12:13"},{"calendarId":17,"start":"2016-10-04T11:00:00","end":null,"title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Sub committee meeting","eventUrl":null,"contactDetails":"017th CAPS office 312-742-4588 or email CAPS.017district@chicagoplice.org","location":"017 District Community Room","modifiedDate":"2016-08-08T17:17:01"},{"calendarId":25,"start":"2016-10-04T10:00:00","end":"2016-10-04T11:00:00","title":"Senior Advisory","eventDetails":"Senior Advisory","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:47:15"},{"calendarId":20,"start":"2016-10-03T19:00:00","end":null,"title":"2011 Beat Meeting","eventDetails":"2011 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District \n5400 N. Lincoln","modifiedDate":"2016-02-01T11:36:31"},{"calendarId":11,"start":"2016-10-03T10:00:00","end":"2016-10-03T11:00:00","title":"Altgeld Park Outrreach & Cleaning ","eventDetails":"Come Out and help cleanup the park and outreach the Community","eventUrl":null,"contactDetails":"CAPS Office 312.746.9841","location":"515 S. Washtenaw \nAltgeld Park Field House ","modifiedDate":"2016-09-29T12:39:24"},{"calendarId":3,"start":"2016-10-01T11:00:00","end":"2016-10-01T12:00:00","title":"Youth/Explorers","eventDetails":"Youth/Explorers","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T18:59:13"},{"calendarId":14,"start":"2016-10-01T10:00:00","end":"2016-10-01T12:00:00","title":"Car Seat Safety Event","eventDetails":"Have your child's carseat inspected ","eventUrl":null,"contactDetails":"P.O. Cervantes","location":"14th District \n2150 N California","modifiedDate":"2016-09-27T15:21:15"},{"calendarId":12,"start":"2016-10-01T09:00:00","end":"2016-10-01T11:00:00","title":"Peer Jury ","eventDetails":"First Saturday of the month at 9:00 AM. Cases are referred to the 12th District Peer Jury by the Area Central Detective Division. The offenders have already admitted their guilt before they are referred to Peer Jury. Teen?s, ages 13-17, hear the reason for the criminal act and issue sanctions. The Peer Juror will receive Community Service Hours by the Community Policing Office. ","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-05-26T13:42:13"},{"calendarId":11,"start":"2016-10-01T09:00:00","end":"2016-10-01T10:00:00","title":"Peer Jury","eventDetails":"Misdemeanor court cases are presented and sanctioned by their peers.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"\n11th District Auditorium\n\n","modifiedDate":"2015-12-28T11:05:21"},{"calendarId":25,"start":"2016-10-01T08:30:00","end":"2016-10-01T10:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:43:34"},{"calendarId":5,"start":"2016-09-29T18:00:00","end":"2016-09-29T20:00:00","title":"DISTRICT ADVISORY COUNCIL","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:16:11"},{"calendarId":17,"start":"2016-09-28T19:30:00","end":"2016-09-28T20:30:00","title":"Beat Meeting for Beat 1711 & 1712","eventDetails":"Combined Beat Meeting for Beat 1711 and Beat 1712","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"5020 N. Pulaski \nMayfair Church ","modifiedDate":"2016-07-06T10:58:33"},{"calendarId":20,"start":"2016-09-28T19:00:00","end":null,"title":"2032 Beat Meeting","eventDetails":"2032 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Ravenswood Evangelical Church\n4900 N. Damen","modifiedDate":"2016-02-01T11:36:01"},{"calendarId":8,"start":"2016-09-28T19:00:00","end":"2016-09-28T20:00:00","title":"835 Beat Meeting","eventDetails":"Wrightwood Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"8530 S. Kedzie","modifiedDate":"2015-12-22T11:21:28"},{"calendarId":25,"start":"2016-09-28T18:30:00","end":"2016-09-28T19:30:00","title":"Beat Meeting 2523","eventDetails":"Beat Meeting 2523","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"4021 W. Belmont","modifiedDate":"2015-12-10T10:53:57"},{"calendarId":6,"start":"2016-09-28T18:30:00","end":"2016-09-28T19:30:00","title":"624 Beat Meeting","eventDetails":"Discuss community concerns and issues.75th-80th King Drive-Greenwood (TRAIN TRACKS)","eventUrl":null,"contactDetails":null,"location":"7740 S.Eberhart - St. Dorothy school gym","modifiedDate":"2016-08-17T13:45:30"},{"calendarId":17,"start":"2016-09-28T18:30:00","end":"2016-09-28T19:30:00","title":"1713's Beat Meeting ","eventDetails":"Bi monthly beat meeting for beat 1713. ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"5000 N. Spaulding \nNorth Park University ","modifiedDate":"2016-07-06T10:58:51"},{"calendarId":9,"start":"2016-09-28T18:30:00","end":"2016-09-28T19:30:00","title":"914 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chinatown Library\n2100 S. Wentworth Ave.","modifiedDate":"2016-04-14T18:17:44"},{"calendarId":12,"start":"2016-09-28T18:00:00","end":"2016-09-28T19:00:00","title":"Beat Meeting 1235","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Las Americas on the 4th Wednesday of the odd months. ","modifiedDate":"2016-05-26T14:21:05"},{"calendarId":25,"start":"2016-09-28T13:00:00","end":"2016-09-28T14:00:00","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave\nCommunity Room","modifiedDate":"2015-12-10T10:46:22"},{"calendarId":15,"start":"2016-09-28T10:00:00","end":"2016-09-28T12:00:00","title":"Senior Meeting","eventDetails":"Senior Citizens related topics w/ Guest Speakers from various agencies and departments\n\n","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District\n5701 W. Madison\n","modifiedDate":"2016-07-08T07:28:57"},{"calendarId":15,"start":"2016-09-28T08:30:00","end":"2016-09-28T09:30:00","title":"Business Meeting","eventDetails":"Business owners of the 15th District meet with Community Organizer and discuss concerns of crime and ways to improve business related issues","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"MacArthur's Restaurant\n5412 W. Madison\n","modifiedDate":"2016-07-08T07:29:08"},{"calendarId":20,"start":"2016-09-27T19:00:00","end":null,"title":"2031 Beat Meeting","eventDetails":"2031 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Swedish Covenant Hospital\n2751 W. Winona","modifiedDate":"2016-02-01T11:36:17"},{"calendarId":8,"start":"2016-09-27T19:00:00","end":"2016-09-27T20:00:00","title":"813/833 Beat Meeting","eventDetails":"West Lawn Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W. 65th Street","modifiedDate":"2015-12-22T11:22:38"},{"calendarId":9,"start":"2016-09-27T19:00:00","end":"2016-09-27T20:00:00","title":"922, 923 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Simon Church Hall\n5157 S. California Ave.","modifiedDate":"2016-04-14T18:17:58"},{"calendarId":3,"start":"2016-09-27T19:00:00","end":"2016-09-27T20:00:00","title":"20 Sector Beat Meeting (322, 323)","eventDetails":"Beat Meeting (322,323)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T15:51:51"},{"calendarId":24,"start":"2016-09-27T19:00:00","end":"2016-09-27T20:00:00","title":"2433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"6000 N. Broadway","modifiedDate":"2016-01-08T14:07:55"},{"calendarId":24,"start":"2016-09-27T19:00:00","end":"2016-09-27T20:00:00","title":"2422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Willye White Park 1610 W. Howard","modifiedDate":"2015-12-07T14:52:43"},{"calendarId":9,"start":"2016-09-27T19:00:00","end":"2016-09-27T20:00:00","title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"3120 S. Halsted St.","modifiedDate":"2016-05-02T19:43:52"},{"calendarId":12,"start":"2016-09-27T19:00:00","end":"2016-09-27T20:00:00","title":"Beat Meeting 1211","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is a Norwegian Hospital 1044 N. Francisco on the 4th Tuesday of the odd months. ","modifiedDate":"2016-05-26T14:25:05"},{"calendarId":19,"start":"2016-09-27T18:30:00","end":"2016-09-27T19:30:00","title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"19th District\n850 W. Addison","modifiedDate":"2016-09-27T15:12:16"},{"calendarId":25,"start":"2016-09-27T18:30:00","end":"2016-09-27T19:30:00","title":"Beat Meeting 2513","eventDetails":"Beat Meeting 2513","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"6200 W. Bloomingdale","modifiedDate":"2015-12-10T11:24:05"},{"calendarId":6,"start":"2016-09-27T18:30:00","end":"2016-09-27T19:30:00","title":"614 Beat Meeting","eventDetails":"Discuss community concerns and issues.81st-87th Loomis-Western","eventUrl":null,"contactDetails":null,"location":"1440 W.84TH St. Foster Park Field House","modifiedDate":"2016-08-17T13:45:44"},{"calendarId":11,"start":"2016-09-27T18:00:00","end":"2016-09-27T19:00:00","title":"Beat Meeting: 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2015-12-22T14:00:55"},{"calendarId":1,"start":"2016-09-27T14:00:00","end":"2016-09-27T15:00:00","title":"30 Sector Business Mtg","eventDetails":"Beat meeting with business partners from the 30 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS\n1718 S State\n312-745-4381","location":"1718 S State\n001 Community room\n","modifiedDate":"2015-12-15T17:07:03"},{"calendarId":3,"start":"2016-09-27T14:00:00","end":"2016-09-27T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:50:58"},{"calendarId":22,"start":"2016-09-27T10:30:00","end":"2016-09-27T11:30:00","title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:43:06"},{"calendarId":5,"start":"2016-09-27T10:00:00","end":"2016-09-27T11:00:00","title":"COURT ADVOCACY","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:15:17"},{"calendarId":11,"start":"2016-09-26T18:00:17","end":"2016-09-26T19:00:17","title":"District Advisory Committee ","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 11th District.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium ","modifiedDate":"2015-12-28T09:30:21"},{"calendarId":6,"start":"2016-09-26T18:00:00","end":"2016-09-26T20:00:00","title":"6th District Beat Facilitators/DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)745-3641","location":"7808 S. Halsted 6th District Community Room","modifiedDate":"2016-08-17T13:45:05"},{"calendarId":15,"start":"2016-09-26T15:00:00","end":"2016-09-26T16:00:00","title":"District Advisory Committee ","eventDetails":"District Advisory Committee Subcommittee/ Chairpersons of different subcommittees meet to discuss the quality of life issues within the 15th District","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District\n5701 W. Madison\n","modifiedDate":"2016-07-08T07:29:20"},{"calendarId":15,"start":"2016-09-26T15:00:00","end":"2016-09-26T16:00:00","title":"District Advisory Committee","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 15th district.","eventUrl":null,"contactDetails":"15th District \nCommunity Policing Office\n312-743-1495","location":"15th District\nCommunity Room\n5701 W Madison Ave","modifiedDate":"2016-03-24T12:35:52"},{"calendarId":5,"start":"2016-09-24T10:00:00","end":"2016-09-24T12:00:00","title":"YOUTH LAW EXPLORERS","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:08:22"},{"calendarId":8,"start":"2016-09-24T09:00:00","end":null,"title":"Peer Jury","eventDetails":"Branch 34","eventUrl":null,"contactDetails":"Community Policing\n(312) 747-8724","location":"155 W 51st Street","modifiedDate":"2016-09-06T13:35:50"},{"calendarId":5,"start":"2016-09-24T09:00:00","end":"2016-09-24T12:00:00","title":"PEER JURY","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:12:19"},{"calendarId":15,"start":"2016-09-24T08:30:53","end":"2016-09-24T13:00:53","title":"Peer Jury Session","eventDetails":"Youths with misdemeanor court cases are presented and sanctioned by their peers","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave","modifiedDate":"2016-01-13T10:20:57"},{"calendarId":2,"start":"2016-09-24T08:00:00","end":"2016-09-24T11:00:00","title":"Peer Jury","eventDetails":"Monthly Peer Jury","eventUrl":null,"contactDetails":"Officer sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:23:00"},{"calendarId":3,"start":"2016-09-22T19:00:00","end":"2016-09-22T20:00:00","title":"Beat Meeting (321, 324)","eventDetails":"Beat Meeting (321,324)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station\n7040 S. Cottage Grove \nChicago IL. 60637\n\n","modifiedDate":"2015-12-29T15:52:25"},{"calendarId":8,"start":"2016-09-22T19:00:00","end":"2016-09-22T20:00:00","title":"DAC Meeting","eventDetails":"008th District Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W. 63rd Street","modifiedDate":"2015-12-22T11:21:12"},{"calendarId":6,"start":"2016-09-22T18:30:00","end":"2016-09-22T19:30:00","title":"634 Beat Meeting","eventDetails":"Discuss community concerns and issues.87th -95th Stewart-State St. 85th-89th State-Indiana","eventUrl":null,"contactDetails":null,"location":"9400 S. Perry New Progressive Baptist Church","modifiedDate":"2016-08-17T13:45:23"},{"calendarId":11,"start":"2016-09-22T18:00:00","end":"2016-09-22T19:00:00","title":"Beat Meeting:1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Eloise Mc Coy Village Apt. 4650 W. Van Buren ","modifiedDate":"2015-12-21T13:53:53"},{"calendarId":22,"start":"2016-09-22T10:30:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room, 1900 W. Monterey","modifiedDate":"2015-12-23T08:41:59"},{"calendarId":12,"start":"2016-09-22T08:30:00","end":"2016-09-22T10:30:00","title":"Food Giveaway ","eventDetails":"The Greater Chicago Food Depository?s Produce mobile will be in the West Town Community giving away FREE fresh fruits, bread & vegetables!! Bring a cart there is usually a lot of food. ","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The event is held at Eckhart Park - 1330 W. Chicago Ave. ","modifiedDate":"2016-04-30T11:09:58"},{"calendarId":17,"start":"2016-09-21T19:30:00","end":"2016-09-21T20:30:00","title":"1722 & 1723 Beat Meeting ","eventDetails":"Combined beat meeting for beat 1722 and beat 1723","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room","modifiedDate":"2016-07-06T11:03:26"},{"calendarId":16,"start":"2016-09-21T19:00:00","end":null,"title":"1623 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"16th District Station\n5151 N. Milwaukee Ave.\n","modifiedDate":"2016-03-01T13:27:46"},{"calendarId":3,"start":"2016-09-21T19:00:00","end":"2016-09-21T20:00:00","title":"30 Sector Beat Meeting (333, 334)","eventDetails":"Beat meeting (333, 334)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"South Shore Cultural Center\n7059 S. South shore Dr.\nChicago, Ill. 60649\n","modifiedDate":"2016-01-20T18:50:47"},{"calendarId":20,"start":"2016-09-21T19:00:00","end":null,"title":"2013 Beat Meeting","eventDetails":"2013 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church\n5437 N. Clark st.","modifiedDate":"2016-02-01T11:35:52"},{"calendarId":14,"start":"2016-09-21T19:00:00","end":null,"title":"1423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Humboldt Park Fieldhouse\n1440 N. Sacramento","modifiedDate":"2016-08-17T14:46:23"},{"calendarId":5,"start":"2016-09-21T19:00:00","end":"2016-09-21T20:00:00","title":"BEAT 532 COMMUNITY MEETING","eventDetails":"ST. ANTHONY CHURCH","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"11533 S PRAIRIE","modifiedDate":"2016-01-26T08:27:20"},{"calendarId":8,"start":"2016-09-21T19:00:00","end":"2016-09-21T20:00:00","title":"823/825 Beat Meeting","eventDetails":"008th District Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W. 63rd Street","modifiedDate":"2015-12-22T11:21:59"},{"calendarId":1,"start":"2016-09-21T19:00:00","end":"2016-09-21T20:00:00","title":"BT 133 Residential Mtg","eventDetails":"Beat meeting with residents from Beat 133","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"125 S State\nTrinity Episcopal Church","modifiedDate":"2015-12-15T17:07:24"},{"calendarId":22,"start":"2016-09-21T19:00:00","end":"2016-09-21T20:00:00","title":"Beat 2234 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Station\n1900 W Monterey","modifiedDate":"2015-12-03T11:15:43"},{"calendarId":12,"start":"2016-09-21T19:00:00","end":"2016-09-21T20:00:00","title":"Beat Meeting 1213 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is a Northwest Settlement 1012 N. Noble on the 3rd Wednesday of the odd months. ","modifiedDate":"2016-05-26T14:24:38"},{"calendarId":19,"start":"2016-09-21T19:00:00","end":"2016-09-21T20:00:00","title":"Beat 1921, 1922 & 1931","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"19th Police Auditorium\n2452 W. Belmont","modifiedDate":"2016-05-25T15:34:59"},{"calendarId":25,"start":"2016-09-21T18:30:00","end":"2016-09-21T19:30:00","title":"Beat Meeting 2515","eventDetails":"Beat Meeting 2515","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2310 N. Lorel","modifiedDate":"2015-12-10T11:20:30"},{"calendarId":17,"start":"2016-09-21T18:30:00","end":"2016-09-21T19:30:00","title":"1724's Beat Meeting ","eventDetails":"Bi monthly beat meeting for beat 1724. ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Horner Park\n2741 W. Montrose ","modifiedDate":"2016-07-06T11:00:36"},{"calendarId":2,"start":"2016-09-21T18:30:00","end":null,"title":"Beat Meeting 233/234/235","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"Treasure Island\n1526 E. 55th Street","modifiedDate":"2016-06-24T11:39:38"},{"calendarId":6,"start":"2016-09-21T18:30:00","end":"2016-09-21T19:30:00","title":"623 Beat Meeting","eventDetails":"Discuss community concerns and issues.75th-81st Stewart-King Drive","eventUrl":null,"contactDetails":null,"location":"7801 S. State ST. Urban Partnership Bank","modifiedDate":"2016-08-17T13:45:53"},{"calendarId":10,"start":"2016-09-21T18:00:00","end":"2016-09-21T19:00:00","title":"30 Sector Community CAPs Meeting","eventDetails":"30 Sector Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"10th District\n3315 W. Ogden Ave\nCommunity Room","modifiedDate":"2016-06-03T10:25:57"},{"calendarId":9,"start":"2016-09-21T18:00:00","end":"2016-09-21T19:00:00","title":"925 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Gabriel Church Hall\n4500 S. Wallace Ave.","modifiedDate":"2016-04-14T18:18:08"},{"calendarId":18,"start":"2016-09-21T15:00:00","end":"2016-09-21T16:00:00","title":"10 Sector Hospitality Meeting","eventDetails":"10 Sector Hospitality subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"Goose Island BrewPub\n1800 N. Clybourn\nChicago, Il 60614","modifiedDate":"2016-08-17T17:30:39"},{"calendarId":5,"start":"2016-09-21T13:00:00","end":"2016-09-21T14:00:00","title":"SENIOR ADVISORY COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:09:51"},{"calendarId":18,"start":"2016-09-21T09:30:00","end":"2016-09-21T10:30:00","title":"Coffee with the Commander","eventDetails":"Have a cup of coffee with Commander Bauer and find out what's going on in the 018 District.","eventUrl":null,"contactDetails":"Sgt. Wooten","location":"Eva's Cafe\n1447 N. Sedgwick\nChicago, Il 60610","modifiedDate":"2016-09-19T17:58:13"},{"calendarId":22,"start":"2016-09-20T19:00:00","end":"2016-09-20T20:00:00","title":"Beat 2222 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Brainerd Park\n1246 W 92nd St","modifiedDate":"2015-12-03T11:20:01"},{"calendarId":19,"start":"2016-09-20T19:00:00","end":"2016-09-20T20:00:00","title":"Beat 1911 & 1912","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Sulzer Library\n4455 N. Lincoln","modifiedDate":"2016-05-25T15:36:29"},{"calendarId":1,"start":"2016-09-20T19:00:00","end":"2016-09-20T20:00:00","title":"BT 131/132 Residential Mtg","eventDetails":"Beat meeting with residents from BT 131/132","eventUrl":null,"contactDetails":"001st Dist CAPS\n1718 S State\n312-745-4381","location":"1718 S State\n001 Community Room","modifiedDate":"2015-12-15T17:07:50"},{"calendarId":24,"start":"2016-09-20T19:00:00","end":"2016-09-20T20:00:00","title":"2424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Pottawatomie Park 7340 N. Rogers","modifiedDate":"2016-01-08T11:26:28"},{"calendarId":5,"start":"2016-09-20T19:00:00","end":"2016-09-20T20:00:00","title":"BEAT 531 COMMUNITY MEETING","eventDetails":"GREEN STONE UNITED METHODIST","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"11211 S ST. LAWRENCE","modifiedDate":"2016-01-26T08:28:28"},{"calendarId":8,"start":"2016-09-20T19:00:00","end":"2016-09-20T20:00:00","title":"811 Beat Meeting","eventDetails":"Good Shepherd Church","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5550 S. Merrimac","modifiedDate":"2015-12-22T11:25:53"},{"calendarId":16,"start":"2016-09-20T19:00:00","end":null,"title":"1633 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Merrimac Park\n6343 W. Irving Park Rd.","modifiedDate":"2016-03-01T13:29:51"},{"calendarId":12,"start":"2016-09-20T19:00:00","end":"2016-09-20T20:00:00","title":"Beat Meeting 1223","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Westhaven Park Community Room 1939 W. Lake St. on the 3rd Tuesday of the odd months","modifiedDate":"2016-05-26T14:22:57"},{"calendarId":25,"start":"2016-09-20T18:30:00","end":"2016-09-20T19:30:00","title":"Beat Meeting 2531","eventDetails":"Beat Meeting 2531","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:51:24"},{"calendarId":6,"start":"2016-09-20T18:30:00","end":"2016-09-20T19:30:00","title":"613 Beat Meeting","eventDetails":"Discuss Community Concerns and issues.81st-87th Loomis-Halsted","eventUrl":null,"contactDetails":null,"location":"8524 S. Green Gresham School","modifiedDate":"2016-08-17T13:46:04"},{"calendarId":2,"start":"2016-09-20T18:30:00","end":null,"title":"Beat Meeting","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"King Center\n4314 S. Cottage Grove","modifiedDate":"2016-06-24T11:37:13"},{"calendarId":25,"start":"2016-09-20T18:30:00","end":"2016-09-20T19:30:00","title":"Beat Meeting 2525","eventDetails":"Beat Meeting 2525","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2036 N. Avers","modifiedDate":"2015-12-10T10:52:12"},{"calendarId":9,"start":"2016-09-20T18:00:00","end":"2016-09-20T19:00:00","title":"932, 934, 935 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Westhaven Senior Homes\n850 W. Garfield Blvd","modifiedDate":"2016-04-14T18:18:17"},{"calendarId":11,"start":"2016-09-20T18:00:00","end":"2016-09-20T19:00:00","title":"Beat Meeting:1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Homan Square Community Center 3559 W. Arthington","modifiedDate":"2015-12-21T15:06:23"},{"calendarId":16,"start":"2016-09-20T13:00:00","end":null,"title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways","eventUrl":null,"contactDetails":"Officer Jennene Whalen\n(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-03-01T13:28:56"},{"calendarId":11,"start":"2016-09-20T11:00:00","end":"2016-09-20T12:00:00","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"TBA","modifiedDate":"2016-01-26T14:06:51"},{"calendarId":17,"start":"2016-09-20T11:00:00","end":"2016-09-20T12:00:00","title":"Monthly Senior Meeting","eventDetails":"Monthly Senior Meeting \nDetails: Monthly Senior Subcommittee Meeting \n","eventUrl":null,"contactDetails":"Contact Details: (312) 742-4588 CAPS.017district@chicagopolice.org\n","location":"Location: 4650 N. Pulaski 17th District Community Room ","modifiedDate":"2016-08-08T17:16:06"},{"calendarId":2,"start":"2016-09-20T10:30:00","end":null,"title":"Senior Meeting","eventDetails":"Senior Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:40:56"},{"calendarId":18,"start":"2016-09-20T10:00:00","end":"2016-09-20T11:00:00","title":"Senior Bracelet Drive","eventDetails":"Senior Bracelet Drive","eventUrl":null,"contactDetails":"P.O. Ramirez","location":"Zelda Ormes Apartments\n116 W. Elm\nChicago, Il 60610","modifiedDate":"2016-08-18T13:29:35"},{"calendarId":7,"start":"2016-09-19T13:00:00","end":"2016-09-19T15:00:00","title":"Senior Advisory Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"Tolton Manor\n6345 S. Stewart","modifiedDate":"2016-01-20T16:16:24"},{"calendarId":15,"start":"2016-09-17T10:00:31","end":"2016-09-17T12:00:31","title":"Block Club Training ","eventDetails":"Block Club Training is provided to residents who are concerned and care about their communities and share information, identify concerns and act collectively to address these concerns","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave","modifiedDate":"2016-01-13T10:54:39"},{"calendarId":15,"start":"2016-09-17T10:00:00","end":"2016-09-17T12:00:00","title":"Block Club Training","eventDetails":"Community Organizer and residents partner on solving chronic crime and disorders and strategize together for solutions as block clubs and neighborhood watches are created","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District\n5701 W. Madison\n","modifiedDate":"2016-07-08T07:29:39"},{"calendarId":18,"start":"2016-09-17T10:00:00","end":"2016-09-17T12:00:00","title":"Peer Jury & Explorer Scouts","eventDetails":"Peer Jury & Explorer Scouts","eventUrl":null,"contactDetails":"P.O. Ferguson","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-08-17T17:14:24"},{"calendarId":12,"start":"2016-09-17T09:00:00","end":"2016-09-17T11:00:00","title":"Police Explorer Meeting ","eventDetails":"The program targets youths 12 to 20 years of age. The uniform, (shirt, patch and pants) will be provided by the 12th District Community Policing Office. The Explorer will receive a uniform after the Explorer attends 6 meetings and signs a letter of commitment. Anyone who wants to sign up is welcome. Please contact the Community Policing Office for further information.","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-05-26T13:40:27"},{"calendarId":17,"start":"2016-09-17T09:00:00","end":"2016-09-17T13:00:00","title":"Peer Jury Meeting ","eventDetails":"Peer Jury Meeting ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski \n17th District Community Room ","modifiedDate":"2016-07-06T11:03:42"},{"calendarId":3,"start":"2016-09-17T09:00:00","end":"2016-09-17T10:00:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"51st Wentworth","modifiedDate":"2016-01-19T18:57:05"},{"calendarId":9,"start":"2016-09-17T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Area Central\n5101 S Wentworth Ave.","modifiedDate":"2016-09-14T12:01:25"},{"calendarId":14,"start":"2016-09-15T19:00:00","end":null,"title":"1431 & 1432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Haas Park\n2402 N. Washtenaw","modifiedDate":"2016-01-06T10:03:05"},{"calendarId":16,"start":"2016-09-15T19:00:00","end":null,"title":"1611 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"St. Thecla\n6333 N. Newcastle","modifiedDate":"2016-02-19T18:33:29"},{"calendarId":5,"start":"2016-09-15T19:00:00","end":"2016-09-15T20:00:00","title":"BEAT 533 COMMUNITY MEETING","eventDetails":"ALTGELD HEALTH CENTER","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"1029 E 130TH STREET","modifiedDate":"2016-01-26T08:25:57"},{"calendarId":7,"start":"2016-09-15T18:30:00","end":"2016-09-15T19:30:00","title":"District Advisory Council Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Station\n1438 W. 63RD STREET","modifiedDate":"2016-01-20T16:17:26"},{"calendarId":25,"start":"2016-09-15T18:30:00","end":"2016-09-15T19:30:00","title":"Beat Meeting 2533","eventDetails":"Beat Meeting 2533","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave. \nCommunity Room","modifiedDate":"2015-12-10T10:49:45"},{"calendarId":11,"start":"2016-09-15T18:30:00","end":"2016-09-15T19:30:00","title":"Beat Meeting:1113/14/15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"St. Michael MBC 4106 W. Monroe","modifiedDate":"2015-12-21T14:11:17"},{"calendarId":16,"start":"2016-09-15T18:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-02-19T18:33:10"},{"calendarId":3,"start":"2016-09-15T14:00:00","end":"2016-09-15T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:53:30"},{"calendarId":25,"start":"2016-09-15T13:30:00","end":"2016-09-15T14:30:00","title":"Business Meeting","eventDetails":"Business Meeting","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2016-02-01T15:27:37"},{"calendarId":18,"start":"2016-09-15T12:00:00","end":"2016-09-15T13:00:00","title":"Senior Bingo & Ice Cream Social","eventDetails":"Senior Bingo & Ice Cream Social","eventUrl":null,"contactDetails":"P.O. Ramirez","location":"Evergreen Tower I\n1333 N. Cleveland\nChicago, Il 60610","modifiedDate":"2016-08-17T17:31:14"},{"calendarId":6,"start":"2016-09-15T10:00:00","end":"2016-09-15T11:00:00","title":"6th District Domestic Violence Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)745-3641","location":"7808 S. Halsted 6th District Community Room","modifiedDate":"2016-08-17T13:44:36"},{"calendarId":11,"start":"2016-09-15T10:00:00","end":"2016-09-15T11:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Senior Subcommittee monthly meeting. ","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312-746-9841\n","location":"Meeting 011th District Auditorium \n3151 W. Harrison \n","modifiedDate":"2015-12-28T08:49:36"},{"calendarId":4,"start":"2016-09-14T19:00:00","end":"2016-09-14T20:00:00","title":"Beat 411 Caps Meeting","eventDetails":"St. Felicitas Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"1526 E. 84th St.","modifiedDate":"2016-03-29T17:58:39"},{"calendarId":9,"start":"2016-09-14T19:00:00","end":"2016-09-14T20:00:00","title":"912 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Maurice Church Hall\n3625 S. Hoyne Ave.","modifiedDate":"2016-04-14T18:18:36"},{"calendarId":1,"start":"2016-09-14T19:00:00","end":"2016-09-14T20:00:00","title":"20 Sector Residential Mtg","eventDetails":"Beat meeting with residents from 20 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS\n1718 S State\n312-745-4381","location":"525 S State\nUniversity Center","modifiedDate":"2015-12-15T17:08:06"},{"calendarId":5,"start":"2016-09-14T19:00:00","end":"2016-09-14T20:00:00","title":"BEAT 523 COMMUNITY MEETING","eventDetails":"ST. PETER & PAUL","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"12425 S HALSTED","modifiedDate":"2016-01-26T08:32:28"},{"calendarId":17,"start":"2016-09-14T19:00:00","end":"2016-09-14T20:00:00","title":"1732 & 1733 Beat Meeting ","eventDetails":"Combined beat meeting for beat 1732 and beat 1733.","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"3546 W. Addison\nAthletic Field Park ","modifiedDate":"2016-07-06T11:04:01"},{"calendarId":8,"start":"2016-09-14T19:00:00","end":"2016-09-14T20:00:00","title":"812 Beat Meeting","eventDetails":"St. Symphorosa Church","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6135 S. Austin","modifiedDate":"2015-12-22T11:25:15"},{"calendarId":22,"start":"2016-09-14T18:45:00","end":"2016-09-14T19:45:00","title":"Beat 2232/2233 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Fernwood Park\n10438 S Wallace","modifiedDate":"2015-12-03T11:17:08"},{"calendarId":14,"start":"2016-09-14T18:30:00","end":null,"title":"1421 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Public Library-Humboldt Park\n1605 N. Troy","modifiedDate":"2016-01-06T10:05:38"},{"calendarId":2,"start":"2016-09-14T18:30:00","end":null,"title":"Beat Meeting 213/215/224","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"St Elizabeth Church\n4058 S. Michigan \n","modifiedDate":"2016-06-24T11:39:09"},{"calendarId":12,"start":"2016-09-14T18:00:00","end":"2016-09-14T19:00:00","title":"Beat Meeting 1231","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Academy Square, 318 S. Throop on the 2nd Wednesday of the odd months. ","modifiedDate":"2016-05-26T14:21:59"},{"calendarId":11,"start":"2016-09-14T18:00:00","end":"2016-09-14T19:00:00","title":"Court Advocacy ","eventDetails":"Court Advocacy Meeting","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:25:30"},{"calendarId":18,"start":"2016-09-14T15:30:00","end":"2016-09-14T16:30:00","title":"30 Sector Hospitality Meeting","eventDetails":"30 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"Highline\n169 W. Kinzie\nChicago, Il 60654","modifiedDate":"2016-08-17T17:15:01"},{"calendarId":14,"start":"2016-09-14T13:30:00","end":null,"title":"Domestic Violence Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2015-12-09T13:09:21"},{"calendarId":22,"start":"2016-09-14T13:30:00","end":null,"title":"Court Advocacy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:57:47"},{"calendarId":6,"start":"2016-09-14T11:00:00","end":"2016-09-14T12:00:00","title":"Senior Citizens Sub committee","eventDetails":null,"eventUrl":null,"contactDetails":"(312)745-3641 ","location":"7808 S. Halsted 6th District Community Room","modifiedDate":"2016-08-17T13:45:11"},{"calendarId":7,"start":"2016-09-14T09:30:00","end":"2016-09-14T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Police Station\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:13:43"},{"calendarId":16,"start":"2016-09-13T19:00:00","end":null,"title":"1613 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Oriole Park\n5430 N. Olcott","modifiedDate":"2016-02-19T18:33:43"},{"calendarId":5,"start":"2016-09-13T19:00:00","end":"2016-09-13T20:00:00","title":"BEAT 522 COMMUNITY MEETING","eventDetails":"GREATER CANAAN MBC","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"35 W 119TH STREET","modifiedDate":"2016-01-26T08:35:33"},{"calendarId":8,"start":"2016-09-13T19:00:00","end":"2016-09-13T20:00:00","title":"831/832 Beat Meeting","eventDetails":"Marquette Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6734 S. Kedzie","modifiedDate":"2015-12-22T11:21:50"},{"calendarId":24,"start":"2016-09-13T19:00:00","end":"2016-09-13T20:00:00","title":"2432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"24th District 6464 N. Clark","modifiedDate":"2016-01-08T14:08:48"},{"calendarId":4,"start":"2016-09-13T19:00:00","end":"2016-09-13T20:00:00","title":"Beat 423 Caps Meeting","eventDetails":"Bessemer Park Field House","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"8930 S. Muskegon Ave.","modifiedDate":"2016-06-01T11:46:47"},{"calendarId":22,"start":"2016-09-13T19:00:00","end":"2016-09-13T20:00:00","title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Woodson Library\n9525 S Halsted","modifiedDate":"2015-12-03T11:18:39"},{"calendarId":17,"start":"2016-09-13T19:00:00","end":"2016-09-13T20:00:00","title":"1731's Beat Meeting ","eventDetails":"Bi monthly beat meeting for beat 1731","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"3501 N. Kilbourn \nKilbourn Park ","modifiedDate":"2016-07-06T11:04:18"},{"calendarId":6,"start":"2016-09-13T18:30:00","end":"2016-09-13T19:30:00","title":"612 Beat meeting","eventDetails":"Discuss community concerns and issues. 74th-81st Ashland-Morgan","eventUrl":null,"contactDetails":null,"location":"7724 S. Racine Southside Tabernacle Church ","modifiedDate":"2016-08-17T13:46:22"},{"calendarId":11,"start":"2016-09-13T18:30:00","end":"2016-09-13T19:30:00","title":"Beat Meeting: 1124/25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"JLM Abundant Life Center 2622 W. Jackson","modifiedDate":"2015-12-22T14:06:58"},{"calendarId":18,"start":"2016-09-13T18:30:00","end":"2016-09-13T19:30:00","title":"1821,22,23 Beat Meeting","eventDetails":"1821,22,23 Beat Community Meeting","eventUrl":null,"contactDetails":"P.O. Schenk","location":"018 District \n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-08-17T17:31:43"},{"calendarId":9,"start":"2016-09-13T18:30:00","end":"2016-09-13T19:30:00","title":"913, 915 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Barbara's Church Hall, 2853 S. Throop St.","modifiedDate":"2016-06-15T17:45:17"},{"calendarId":19,"start":"2016-09-13T18:30:00","end":"2016-09-13T19:30:00","title":"Beat 1933","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Illinois Masonic\n836 W. Wellington","modifiedDate":"2016-05-25T15:33:59"},{"calendarId":2,"start":"2016-09-13T18:30:00","end":null,"title":"Beat Meeting 222","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"Kennicott Park\n4434 S. Lake Park","modifiedDate":"2016-06-24T11:39:20"},{"calendarId":15,"start":"2016-09-13T18:30:00","end":"2016-09-13T19:30:00","title":"Beat 1511/24 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Hope Community Church\n5900 W. Iowa\n","modifiedDate":"2016-07-08T07:29:50"},{"calendarId":12,"start":"2016-09-13T18:00:00","end":"2016-09-13T19:00:00","title":"Beat Meeting 1233","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the 12th District Station Community Room, 1412 S. Blue island on the 2nd Tuesday of the odd months","modifiedDate":"2016-05-26T14:21:36"},{"calendarId":2,"start":"2016-09-13T15:00:00","end":"2016-09-13T16:00:00","title":"Domestic Violence Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:16:01"},{"calendarId":7,"start":"2016-09-13T12:00:00","end":"2016-09-13T13:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Police Station\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:15:08"},{"calendarId":12,"start":"2016-09-13T12:00:00","end":"2016-09-13T13:30:00","title":"FREE Senior Enrichment Seminar","eventDetails":"\"Senior Driving: Tips for the Active Senior\"\nTopics to Include:\n?Traffic Court process and procedures\n?Safe driving tips\n?Guidelines for renewing your driver?s license \n?Parking program for persons with disabilities","eventUrl":null,"contactDetails":"TO REGISTER AND ATTEND THIS FREE SEMINAR, PLS CONTACT:\nThe Circuit Court of Cook County Elder Justice Center at\n(312) 603-9233","location":"Daley Center\n50 W Washington Blvd\nCourtroom 2005","modifiedDate":"2016-08-27T11:58:09"},{"calendarId":18,"start":"2016-09-13T12:00:00","end":"2016-09-13T13:00:00","title":"Domestic Violence Information Table","eventDetails":"Domestic Violence Information Table","eventUrl":null,"contactDetails":"P.O. Incaprera","location":"Kendall College\n900 N. North Branch\nChicago, Il 60642","modifiedDate":"2016-08-17T17:14:07"},{"calendarId":6,"start":"2016-09-13T10:00:00","end":"2016-09-13T10:00:00","title":"6th District Business Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)745-3641","location":"7808 S. Halsted 6th District Community Room","modifiedDate":"2016-08-17T13:44:56"},{"calendarId":22,"start":"2016-09-13T10:00:00","end":"2016-09-13T11:00:00","title":"Clergy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-22T08:32:51"},{"calendarId":19,"start":"2016-09-12T19:00:00","end":"2016-09-12T20:00:00","title":"Beat 1932","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"New Life Church\n1110 W. Lill\n","modifiedDate":"2016-05-25T15:34:15"},{"calendarId":2,"start":"2016-09-12T18:30:00","end":null,"title":"Beat Meeting 211","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth\n312-747-5109","location":"College of Optometry\n3240 S. Indiana Ave\n","modifiedDate":"2016-06-24T11:38:27"},{"calendarId":18,"start":"2016-09-12T17:30:00","end":"2016-09-12T18:30:00","title":"DAC Meeting","eventDetails":"District Advisory Committee Meeting","eventUrl":null,"contactDetails":"Sgt. Wooten","location":"018 District \n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-08-17T17:32:01"},{"calendarId":15,"start":"2016-09-12T15:00:43","end":"2016-09-12T16:00:43","title":"Domestic Violence Meeting","eventDetails":"Domestic violence members discuss and plan upcoming events for domestic violence / survivors.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-12T16:16:54"},{"calendarId":5,"start":"2016-09-10T10:00:00","end":"2016-09-10T12:00:00","title":"YOUTH LAW EXPLORERS","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:08:33"},{"calendarId":16,"start":"2016-09-10T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Greg Dial\n(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-02-19T18:33:53"},{"calendarId":14,"start":"2016-09-09T09:00:00","end":null,"title":"Senior Trip","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Gretchen Chavez","location":null,"modifiedDate":"2016-09-19T14:26:42"},{"calendarId":20,"start":"2016-09-08T19:00:00","end":null,"title":"2023 Beat Meeting","eventDetails":"2023 Beat Community Beat Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Kenmore Plaza\n5225 N. Marine Drive","modifiedDate":"2016-02-01T11:36:10"},{"calendarId":1,"start":"2016-09-08T19:00:00","end":"2016-09-08T20:00:00","title":"10 Sector Residential meeting","eventDetails":"Beat meeting with residents from 10 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"400 E Randolph\nCondo Bldg","modifiedDate":"2015-12-15T17:10:28"},{"calendarId":8,"start":"2016-09-08T19:00:00","end":"2016-09-08T20:00:00","title":"814 Beat Meeting","eventDetails":"Vittum Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5010 W. 50th Street","modifiedDate":"2015-12-22T11:22:30"},{"calendarId":5,"start":"2016-09-08T19:00:00","end":"2016-09-08T20:00:00","title":"BEAT 524 COMMUNITY MEETING","eventDetails":"LUTHERAN CHURCH OF THE HOLY SPIRIT","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"1335 W 115TH STREET","modifiedDate":"2016-01-26T08:29:30"},{"calendarId":22,"start":"2016-09-08T19:00:00","end":"2016-09-08T20:00:00","title":"Beat 2213 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Ridge Park\n9625 S Longwood Dr","modifiedDate":"2015-12-02T10:57:42"},{"calendarId":4,"start":"2016-09-08T19:00:00","end":"2016-09-08T20:00:00","title":"Beat 421 Caps Meeting","eventDetails":"Labor Of Love Apostolic Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"2800 E. 79th St.","modifiedDate":"2016-06-01T11:47:27"},{"calendarId":12,"start":"2016-09-08T19:00:00","end":"2016-09-08T20:00:00","title":"Beat Meeting 1215","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the Goldblatt's Building 1615 W. Chicago Ave. on the 2nd Thursday of the odd months. ","modifiedDate":"2016-05-26T14:24:08"},{"calendarId":3,"start":"2016-09-08T19:00:00","end":"2016-09-08T20:00:00","title":"30 Sector Beat Meeting (331, 332)","eventDetails":"Beat Meeting (331, 332)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n\n","location":"ABJ Community Center\n1818 E. 71st St.\nChicago, IL. 60649\n","modifiedDate":"2015-12-29T15:51:16"},{"calendarId":14,"start":"2016-09-08T18:30:00","end":null,"title":"1413 & 1414 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Public Library-Logan Square \n3030 W. Fullerton","modifiedDate":"2016-01-06T10:09:11"},{"calendarId":6,"start":"2016-09-08T18:30:00","end":"2016-09-08T19:30:00","title":"632 & 633 Beat Meeting","eventDetails":"Discuss Community Concerns and issues.83rd-89th State-Greenwood. 89th-95th Indiana-Dauphin","eventUrl":null,"contactDetails":null,"location":"501 E. 90TH PL. Tuley Park Field House","modifiedDate":"2016-08-17T13:46:13"},{"calendarId":15,"start":"2016-09-08T18:30:00","end":"2016-09-08T19:30:00","title":"Beat 1513N CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495\t","location":"15th District\n5701 W. Madison\n","modifiedDate":"2016-07-08T07:30:07"},{"calendarId":2,"start":"2016-09-08T18:30:00","end":null,"title":"Beat Meeting 225/231/232","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth\n312-747-5109","location":"Coppin AME Church\n5627 S. Michigan ","modifiedDate":"2016-06-24T11:39:29"},{"calendarId":18,"start":"2016-09-08T18:30:00","end":"2016-09-08T19:30:00","title":"10 Sector Beat Meeting","eventDetails":"10 Sector Beat Community Meeting","eventUrl":null,"contactDetails":"P.O. Schenk","location":"St. James Lutheran Church & School\n2101 N. Fremont\nChicago, Il 60614","modifiedDate":"2016-08-17T17:15:45"},{"calendarId":10,"start":"2016-09-08T18:00:00","end":"2016-09-08T19:00:00","title":"20 Sector Community Meeting","eventDetails":"20 Sector Community Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"10th District\n3315 W. Ogden Ave\nCommunity Room","modifiedDate":"2016-06-03T10:12:43"},{"calendarId":11,"start":"2016-09-08T18:00:00","end":"2016-09-08T19:00:00","title":"Beat Meeting:1122/23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Legler Chicago Public Library 115 S. Pulaski","modifiedDate":"2015-12-21T14:37:09"},{"calendarId":1,"start":"2016-09-08T15:00:00","end":"2016-09-08T16:00:00","title":"District Advisory Committee","eventDetails":null,"eventUrl":null,"contactDetails":"001st District CAPS office 312-745-4381. ","location":"1718 S. State Street\nCommunity Room ","modifiedDate":"2016-05-09T15:40:22"},{"calendarId":12,"start":"2016-09-08T12:00:00","end":"2016-09-08T13:00:00","title":"District Advisory Committee Meeting:","eventDetails":"The District Advisory Committee or (DAC) meeting is for stakeholders in the 12th District. These stakeholders are the businesses, faith and community organizations along with Beat Facilitators. The members meet on the 2nd Thursday of the month, with the District Commander, to address and come up with strategies to address issues in the community.","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306 ","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-04-27T12:19:20"},{"calendarId":5,"start":"2016-09-08T11:00:00","end":"2016-09-08T12:00:00","title":"PASTORAL COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:11:19"},{"calendarId":6,"start":"2016-09-08T10:00:00","end":"2016-09-08T11:00:00","title":"6th District Faithbased Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)745-3641","location":"7808 S. Halsted 6th District Community Room","modifiedDate":"2016-08-17T13:44:48"},{"calendarId":8,"start":"2016-09-07T19:00:00","end":"2016-09-07T20:00:00","title":"815/821 Beat Meeting","eventDetails":"St. Bruno's","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4839 S. Harding","modifiedDate":"2015-12-22T11:22:18"},{"calendarId":12,"start":"2016-09-07T19:00:00","end":"2016-09-07T20:00:00","title":"Beat Meeting 1221 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the Smith Park 2526 W. Grand Ave. on the1st Wednesday of the odd months.","modifiedDate":"2016-05-26T14:23:38"},{"calendarId":16,"start":"2016-09-07T19:00:00","end":null,"title":"1621 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"First Church of Forest Glen\n5400 N. Lawler","modifiedDate":"2016-02-19T18:34:02"},{"calendarId":3,"start":"2016-09-07T19:00:00","end":"2016-09-07T20:00:00","title":"Beat Meeting (311, 312)","eventDetails":"Beat Meeting (311, 312)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Bessie Coleman Library \n731 E. 63rd St.\nChicago, IL. 60637\n","modifiedDate":"2015-12-29T15:55:03"},{"calendarId":5,"start":"2016-09-07T19:00:00","end":"2016-09-07T20:00:00","title":"BEAT 512 COMMUNITY MEETING","eventDetails":"CHRISTIAN MISSIONARY BAPTIST CHURCH","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"132 W 104TH STREET","modifiedDate":"2016-01-26T08:38:54"},{"calendarId":4,"start":"2016-09-07T19:00:00","end":"2016-09-07T20:00:00","title":"Beat 412 Caps Meeting","eventDetails":"Zion Lutheran Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"8455 S. Stony Island Ave","modifiedDate":"2016-06-01T11:47:50"},{"calendarId":6,"start":"2016-09-07T18:30:00","end":"2016-09-07T19:30:00","title":"621 & 622 Beat Meeting","eventDetails":"Discuss community concerns and issues.75th-81st Morgan-Stewart. 81st-87th Halsted-State st.","eventUrl":null,"contactDetails":null,"location":"7808 S. HALSTED 6TH DISTRICT COMMUNITY ROOM ","modifiedDate":"2016-08-16T16:18:13"},{"calendarId":14,"start":"2016-09-07T18:30:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T10:01:39"},{"calendarId":15,"start":"2016-09-07T18:00:00","end":"2016-09-07T19:00:00","title":"Beat 1522/33 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Loretto Hospital\n645 S. Central, 6th Fl\n","modifiedDate":"2016-07-08T07:30:19"},{"calendarId":10,"start":"2016-09-07T18:00:00","end":"2016-09-07T19:00:00","title":"10 SECTOR BEAT MEETING","eventDetails":"10 SECTOR COMMUNITY BEAT MEETING","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-7190","location":"10TH DISTRICT COMMUNITY ROOM 3315 W. OGDEN AVE","modifiedDate":"2015-12-17T16:08:07"},{"calendarId":14,"start":"2016-09-07T18:00:00","end":null,"title":"Beat Facilitator Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T10:02:43"},{"calendarId":9,"start":"2016-09-07T18:00:00","end":"2016-09-07T19:00:00","title":"911, 921 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Davis School Annex\n3050 W. 39th St.","modifiedDate":"2016-04-14T18:18:54"},{"calendarId":8,"start":"2016-09-07T16:00:00","end":null,"title":"Domestic Subcommittee Meeting","eventDetails":"008th District Community Room","eventUrl":null,"contactDetails":"Community Policing\n(312) 747-8724","location":"3420 W. 63rd street","modifiedDate":"2016-09-06T13:35:59"},{"calendarId":18,"start":"2016-09-07T15:00:00","end":"2016-09-07T16:00:00","title":"20 Sector Hospitality Meeting","eventDetails":"20 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"She-Nannigans\n16 W. Division\nChicago, Il 60610","modifiedDate":"2016-08-17T17:32:31"},{"calendarId":3,"start":"2016-09-07T14:00:00","end":"2016-09-07T15:00:00","title":"Court Advocate Meeting","eventDetails":"Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:08:59"},{"calendarId":25,"start":"2016-09-07T10:00:00","end":"2016-09-07T11:00:00","title":"Domestic Violence","eventDetails":"Domestic Violence\nSub-committee meeting \n","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:41:01"},{"calendarId":22,"start":"2016-09-06T19:00:00","end":"2016-09-06T20:00:00","title":"Beat 2221 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Christ the King Church\n9225 S Hamilton","modifiedDate":"2015-12-03T11:21:31"},{"calendarId":24,"start":"2016-09-06T19:00:00","end":"2016-09-06T20:00:00","title":"2412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office. (312)744-6321","location":null,"modifiedDate":"2015-12-07T14:54:18"},{"calendarId":5,"start":"2016-09-06T19:00:00","end":"2016-09-06T20:00:00","title":"BEAT 511 COMMUNITY MEETING","eventDetails":"ROSEHAVEN MANOR","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"10220 S MICHIGAN AVE","modifiedDate":"2016-01-26T08:40:15"},{"calendarId":8,"start":"2016-09-06T19:00:00","end":"2016-09-06T20:00:00","title":"822/824 Beat Meeting","eventDetails":"Solorio High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5400 S. St. Louis","modifiedDate":"2015-12-22T11:22:08"},{"calendarId":4,"start":"2016-09-06T19:00:00","end":"2016-09-06T20:00:00","title":"Beat 432 Caps Meeting","eventDetails":"St. Francis De Sales School","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"10155 S. Ewing Ave","modifiedDate":"2016-06-01T11:48:13"},{"calendarId":12,"start":"2016-09-06T19:00:00","end":"2016-09-06T20:00:00","title":"Beat Meeting 1225","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Chicago Hope Academy 2108 W. Ogden. on the 1st Tuesday of the odd months. ","modifiedDate":"2016-05-26T14:22:26"},{"calendarId":25,"start":"2016-09-06T18:30:00","end":"2016-09-06T19:30:00","title":"Beat Meeting 2521","eventDetails":"Beat Meeting 2521","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2715 N. Cicero","modifiedDate":"2015-12-10T11:17:24"},{"calendarId":25,"start":"2016-09-06T18:30:00","end":"2016-09-06T19:30:00","title":"Beat Meeting 2535","eventDetails":"Beat Meeting 2535","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"3647 W. North","modifiedDate":"2015-12-10T10:48:06"},{"calendarId":15,"start":"2016-09-06T18:30:00","end":"2016-09-06T19:30:00","title":"Beat 1531/32 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495\t","location":"West Branch Library\n4856 W. Chicago Ave\n","modifiedDate":"2016-07-08T07:30:31"},{"calendarId":18,"start":"2016-09-06T18:30:00","end":"2016-09-06T19:30:00","title":"1824 Beat Meeting","eventDetails":"1824 Beat Community Meeting","eventUrl":null,"contactDetails":"P.O. Schenk","location":"Latin School\n59 W. North Ave\nChicago, Il 60610","modifiedDate":"2016-08-17T17:16:20"},{"calendarId":2,"start":"2016-09-06T18:30:00","end":null,"title":"Beat Meeting 212/214","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"Mandrake Park Filed House\n3858 S. Cottage Grove","modifiedDate":"2016-06-24T11:38:39"},{"calendarId":11,"start":"2016-09-06T18:30:00","end":"2016-09-06T19:30:00","title":"Beat Meeting: 1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe.","eventUrl":null,"contactDetails":"011th District CAPS 3151 W. Harrison Street 312-746-9841","location":"Brian Piccolo School 1040 N. Keeler","modifiedDate":"2015-12-14T15:24:57"},{"calendarId":6,"start":"2016-09-06T18:30:00","end":"2016-09-06T19:30:00","title":" 611 Beat Meeting","eventDetails":"Discuss community concern and isues. 75th- 81st Hamilton-Ashland ","eventUrl":null,"contactDetails":null,"location":"2101 W. 79TH ST.","modifiedDate":"2016-08-16T16:12:27"},{"calendarId":9,"start":"2016-09-06T18:00:00","end":"2016-09-06T19:00:00","title":"924, 931, 933 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"New City Supportive Living\n4707 S. Marshfield Ave.","modifiedDate":"2016-04-14T18:19:04"},{"calendarId":25,"start":"2016-09-06T14:00:00","end":"2016-09-06T15:00:00","title":"Court Advocacy","eventDetails":"Court Advocacy","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:42:33"},{"calendarId":19,"start":"2016-09-06T06:30:00","end":"2016-09-06T07:30:00","title":"Beat 1913","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Courtenay School\n4420 N. Beacon","modifiedDate":"2016-05-25T15:36:09"},{"calendarId":6,"start":"2016-09-04T10:00:00","end":"2016-09-04T13:30:00","title":"free back to school hair cuts","eventDetails":"hair cuts for kids ages 5-18. parent must be accompanied by an adult","eventUrl":null,"contactDetails":"6th District CAPS 0ffice (312)745-6341","location":"7808 S. Halsted 6th District Community Room","modifiedDate":"2016-08-16T16:04:52"},{"calendarId":3,"start":"2016-09-03T11:00:00","end":"2016-09-03T12:00:00","title":"Youth/Explorers","eventDetails":"Youth/Explorers","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T18:59:26"},{"calendarId":11,"start":"2016-09-03T09:00:00","end":"2016-09-03T10:00:00","title":"Peer Jury","eventDetails":"Misdemeanor court cases are presented and sanctioned by their peers.","eventUrl":null,"contactDetails":"\nCAPS 11th District 3151 West Harrison St 312-746-9841\n","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:05:10"},{"calendarId":12,"start":"2016-09-03T09:00:00","end":"2016-09-03T11:00:00","title":"Peer Jury ","eventDetails":"First Saturday of the month at 9:00 AM. Cases are referred to the 12th District Peer Jury by the Area Central Detective Division. The offenders have already admitted their guilt before they are referred to Peer Jury. Teen?s, ages 13-17, hear the reason for the criminal act and issue sanctions. The Peer Juror will receive Community Service Hours by the Community Policing Office. ","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-05-26T13:42:29"},{"calendarId":25,"start":"2016-09-03T08:30:00","end":"2016-09-03T10:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:43:41"},{"calendarId":4,"start":"2016-09-02T10:00:00","end":"2016-09-02T16:30:00","title":"Flag Football - Cops and Community Day","eventDetails":null,"eventUrl":null,"contactDetails":"Sgt. Edward Ramirez - (312) 747-1708","location":"Calumet Park - 9801 S Avenue G","modifiedDate":"2016-09-01T17:01:34"},{"calendarId":16,"start":"2016-09-01T19:00:00","end":null,"title":"1631 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Hiawatha Park\n8029 W. Forest Preserve Drive","modifiedDate":"2016-02-19T18:34:11"},{"calendarId":24,"start":"2016-09-01T19:00:00","end":null,"title":"DAC Meeting","eventDetails":"Not open to public","eventUrl":null,"contactDetails":null,"location":"6464 N. Clark","modifiedDate":"2016-07-06T15:23:32"},{"calendarId":8,"start":"2016-09-01T19:00:00","end":"2016-09-01T20:00:00","title":"834 Beat Meeting","eventDetails":"Bogan High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3939 W. 79th Street","modifiedDate":"2015-12-22T11:21:39"},{"calendarId":5,"start":"2016-09-01T19:00:00","end":"2016-09-01T20:00:00","title":"BEAT 513 COMMUNITY MEETING","eventDetails":"ROSELAND CHRISTIAN MINISTRIES","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"10858 S MICHIGAN AVE","modifiedDate":"2016-01-26T08:37:17"},{"calendarId":3,"start":"2016-09-01T19:00:00","end":"2016-09-01T20:00:00","title":"Beat Meeting (313, 314)","eventDetails":"Beat Meeting (313,314)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n\n","location":"Harris Park Recreation\n6200 S. Drexel\nChicago, IL. 60637\n","modifiedDate":"2015-12-29T15:54:31"},{"calendarId":4,"start":"2016-09-01T19:00:00","end":"2016-09-01T20:00:00","title":"Beat 431 Caps Meeting","eventDetails":"004th District Station","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"2255 E. 103rd St.","modifiedDate":"2016-06-01T11:48:37"},{"calendarId":15,"start":"2016-09-01T18:30:00","end":"2016-09-01T19:30:00","title":"Beat 1512/23 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"15th District\n5701 W. Madison\n","location":"PCC Family Health Ctr.\n5425 W. Lake St.\n","modifiedDate":"2016-07-08T07:30:43"},{"calendarId":25,"start":"2016-09-01T18:30:00","end":"2016-09-01T19:30:00","title":"Beat Meeting 2511","eventDetails":"Beat Meeting 2511","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"2833 N. Nordica","modifiedDate":"2015-12-10T11:26:01"},{"calendarId":18,"start":"2016-09-01T18:30:00","end":"2016-09-01T19:30:00","title":"30 Sector Beat Meeting","eventDetails":"30 Sector Beat Community Meeting","eventUrl":null,"contactDetails":"P.O. Schenk","location":"Access Living\n115 W. Chicago Ave\nChicago, Il 60610","modifiedDate":"2016-08-17T17:16:51"},{"calendarId":6,"start":"2016-09-01T18:30:00","end":"2016-09-01T19:30:00","title":"631 Beat Meeting","eventDetails":"Discuss community concerns and issues.81st-83rd State-King Drive","eventUrl":null,"contactDetails":null,"location":"8050 S St.Lawrence ","modifiedDate":"2016-08-17T13:46:32"},{"calendarId":11,"start":"2016-09-01T18:00:00","end":"2016-09-01T19:00:00","title":"Beat Meeting: 1112/21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2015-12-14T15:25:28"},{"calendarId":14,"start":"2016-09-01T17:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T10:02:01"},{"calendarId":1,"start":"2016-09-01T14:00:00","end":"2016-09-01T15:00:00","title":"20 Sector Business","eventDetails":"Beat meeting for business partners in 20 sector","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"181 W Madison\nNorthern Trust Bank","modifiedDate":"2015-12-15T17:11:42"},{"calendarId":22,"start":"2016-09-01T14:00:00","end":null,"title":"Diversity and Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:56:16"},{"calendarId":3,"start":"2016-09-01T13:00:00","end":"2016-09-01T14:00:00","title":"003rd District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:07:15"},{"calendarId":11,"start":"2016-09-01T11:00:00","end":"2016-09-01T12:00:00","title":"Domestic Violence Subcommittee","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312.746.9841\n","location":"011th District (Auditorium)\n3151 W. Harrison\n","modifiedDate":"2015-12-22T15:08:16"},{"calendarId":5,"start":"2016-09-01T10:00:00","end":"2016-09-01T11:00:00","title":"DOMESTIC VIOLENCE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:13:31"},{"calendarId":12,"start":"2016-08-31T18:00:00","end":"2016-08-31T20:00:00","title":"Keepin it Real ","eventDetails":"Keepin it Real is a forum where the Gang members tell their stories how they got involved with gangs and sign to look for to see it your child maybe involved. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306","location":"St. Mary's Hospital \n1127 N. Oakley ","modifiedDate":"2016-08-31T13:22:34"},{"calendarId":11,"start":"2016-08-31T17:30:00","end":"2016-08-31T18:30:00","title":"Take Back Your Block","eventDetails":"We invite you to come learn new ways to participate in community meetings, committees and voice your concerns. Alderman Michael Scott will be in attendance. ","eventUrl":null,"contactDetails":"11th District CAPS 312-746-9841","location":"3900-4000 W. Grenshaw","modifiedDate":"2016-08-24T13:14:10"},{"calendarId":25,"start":"2016-08-31T10:00:00","end":"2016-08-31T11:00:00","title":"Principals Meeting","eventDetails":"All Schools within the 25th District are asked to send their principal or asst principal to an important meeting to plan for the 2016-2017 school year and to address any questions or concerns the schools may have.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090 or Caps025district@chicagopolice.org","location":"25th District Community Room - 5555 W. Grand Ave.","modifiedDate":"2016-08-12T10:51:03"},{"calendarId":6,"start":"2016-08-31T09:00:00","end":"2016-08-31T17:00:00","title":"3rd Annual Golf Outing","eventDetails":"Shotgun start at 10 AM\nDinner at 4PM","eventUrl":null,"contactDetails":"Contact Sgt. Spradley at (312) 745-3641 for prices","location":"Glenwoodie Golf Club\n19301 State St\nGlenwood, IL","modifiedDate":"2016-08-03T11:42:08"},{"calendarId":11,"start":"2016-08-30T17:30:00","end":"2016-08-30T18:30:00","title":"Take Back Your Block","eventDetails":"We invite you to come learn new ways to participate in community meetings, committees and voice your concerns. Alderman Michael Scott will be in attendance. ","eventUrl":null,"contactDetails":"11th District CAPS 312-746-9841","location":"700 S. Kenneth ","modifiedDate":"2016-08-24T13:14:29"},{"calendarId":4,"start":"2016-08-27T11:00:00","end":"2016-08-27T15:00:00","title":"Alderman Greg Mitchell's Back to School Kickoff","eventDetails":"Book bags, school supplies, fun ,food, games, live entertainment, giveaways and much more!","eventUrl":null,"contactDetails":"7th Ward Service Center\n(773) 731-7777\nalderman@gregmitchell7thward.org","location":"Compassion Baptist Church\n2650 E 95th St","modifiedDate":"2016-09-01T11:35:59"},{"calendarId":4,"start":"2016-08-27T11:00:00","end":"2016-08-27T21:00:00","title":"8800-8900 S Oglesby Block Party","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"8800-8900 S Oglesby Ave","modifiedDate":"2016-09-01T11:36:12"},{"calendarId":4,"start":"2016-08-27T11:00:00","end":"2016-08-27T16:00:00","title":"St. Paul Lutheran Church Back to School Community","eventDetails":"FREE to the public!","eventUrl":null,"contactDetails":"St. Paul Lutheran Church (773) 721-2350","location":"St. Paul Lutheran Church 7621 S Dorchester Ave","modifiedDate":"2016-09-01T11:36:28"},{"calendarId":5,"start":"2016-08-27T10:00:00","end":"2016-08-27T12:00:00","title":"YOUTH LAW EXPLORERS","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:08:44"},{"calendarId":4,"start":"2016-08-27T10:00:00","end":"2016-08-27T14:00:00","title":"Bessemer Park Back to School Event","eventDetails":"FREE School supplies, entertainment, haircuts, bounce house music and haircuts.","eventUrl":null,"contactDetails":null,"location":"Bessemer Park\n8930 S Muskegon Ave","modifiedDate":"2016-09-01T11:35:48"},{"calendarId":4,"start":"2016-08-27T10:00:00","end":"2016-08-27T15:00:00","title":"AKA Sorority 10th Annual Community Expo","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Bethany Lutheran Church\n9147 S Jeffrey Blvd","modifiedDate":"2016-09-01T11:36:39"},{"calendarId":5,"start":"2016-08-27T09:00:00","end":"2016-08-27T12:00:00","title":"PEER JURY","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STRTTE","modifiedDate":"2016-01-27T11:12:38"},{"calendarId":15,"start":"2016-08-27T08:30:23","end":"2016-08-27T13:00:23","title":"Peer Jury Session","eventDetails":"Youths with misdemeanor court cases are presented and sanctioned by their peers","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-13T10:16:30"},{"calendarId":2,"start":"2016-08-27T08:00:00","end":"2016-08-27T11:00:00","title":"Peer Jury","eventDetails":"\nMonthly Peer Jury","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002 Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:23:20"},{"calendarId":6,"start":"2016-08-26T14:00:00","end":"2016-08-27T08:00:00","title":"Peace in the Park (PPAD)","eventDetails":"Overnight camping experience for children age 10-16 ","eventUrl":null,"contactDetails":"Contact the CAPS office at (312) 745-3641","location":"Cole Park\n361 East 85th Street\n","modifiedDate":"2016-08-03T11:42:27"},{"calendarId":4,"start":"2016-08-26T11:00:00","end":"2016-08-26T15:00:00","title":"Germano Millgate 1st Annual Peace Fest","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"8800-8900 S Burley Ave","modifiedDate":"2016-09-01T11:36:51"},{"calendarId":3,"start":"2016-08-25T19:00:00","end":"2016-08-25T20:00:00","title":"30 Sector Beat Meeting (331, 332, 333 & 334)","eventDetails":"30 Sector Beat Meeting (331, 332, 333 & 334)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"ABJ Community Center\n1818 E. 71st St.\nChicago, IL. 60649\n","modifiedDate":"2015-12-29T11:44:31"},{"calendarId":16,"start":"2016-08-25T19:00:00","end":null,"title":"1634 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"St. Bartholomew Church\n4910 W. Addison\nKrueger Hall","modifiedDate":"2016-02-19T18:34:20"},{"calendarId":25,"start":"2016-08-25T18:30:00","end":"2016-08-25T19:30:00","title":"Beat Meeting 2514","eventDetails":"Beat Meeting 2514","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"3115 N. Mason","modifiedDate":"2015-12-10T11:23:26"},{"calendarId":7,"start":"2016-08-25T18:30:00","end":"2016-08-25T19:30:00","title":"BEAT 711 & 712 MEETING","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"Sherwood Park\n5701 S. Shields","modifiedDate":"2016-01-20T16:28:38"},{"calendarId":5,"start":"2016-08-25T18:00:00","end":"2016-08-25T20:00:00","title":"DISTRICT ADVISORY COUNCIL","eventDetails":"005TH DISTRICT POLICE STATION ","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:19:41"},{"calendarId":11,"start":"2016-08-25T18:00:00","end":"2016-08-25T19:00:00","title":"Beat Meeting:1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Eloise Mc Coy Village Apt. 4650 W. Van Buren ","modifiedDate":"2015-12-21T13:53:40"},{"calendarId":1,"start":"2016-08-25T14:00:00","end":"2016-08-25T15:00:00","title":"10 Sector Business Mtg","eventDetails":"Beat meeting for business partners from 10 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"175 N State\nChicago Theatre","modifiedDate":"2015-12-15T17:12:31"},{"calendarId":22,"start":"2016-08-25T14:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:41:17"},{"calendarId":22,"start":"2016-08-25T13:00:00","end":null,"title":"Beat Facilitators","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:41:24"},{"calendarId":22,"start":"2016-08-25T10:30:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room, 1900 W. Monterey","modifiedDate":"2015-12-23T08:42:09"},{"calendarId":12,"start":"2016-08-25T08:30:00","end":"2016-08-25T10:30:00","title":"Food Giveaway ","eventDetails":"The Greater Chicago Food Depository?s Produce mobile will be in the West Town Community giving away FREE fresh fruits, bread & vegetables!! Bring a cart there is usually a lot of food. ","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The event is held at Eckhart Park - 1330 W. Chicago Ave. ","modifiedDate":"2016-04-30T11:10:25"},{"calendarId":17,"start":"2016-08-24T19:30:00","end":"2016-08-24T20:30:00","title":"1711 & 1712 Beat Meeting ","eventDetails":"Combined beat meeting for beat 1711 and beat 1712","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"5020 N. Pulaski\nMayfair Church ","modifiedDate":"2016-07-06T11:04:29"},{"calendarId":3,"start":"2016-08-24T19:00:00","end":"2016-08-24T20:00:00","title":"20 Sector Beat Meeting (321, 322, 323 & 324)","eventDetails":"20 Sector Beat Meeting (321, 322, 323 & 324)","eventUrl":null,"contactDetails":"P.O. Hutchinson \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"Park Manor Church\n600 E. 73rd St.\nChicago, IL. 60619\n","modifiedDate":"2015-12-29T11:52:58"},{"calendarId":16,"start":"2016-08-24T19:00:00","end":null,"title":"1624 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Portage Park Senior Center\n4100 N. Long","modifiedDate":"2016-02-19T12:55:35"},{"calendarId":8,"start":"2016-08-24T19:00:00","end":"2016-08-24T20:00:00","title":"835 Beat Meeting","eventDetails":"Wrightwood Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"8530 S. Kedzie","modifiedDate":"2015-12-22T11:26:05"},{"calendarId":9,"start":"2016-08-24T18:30:00","end":"2016-08-24T19:30:00","title":"914 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chinatown Library\n2100 S. Wentworth Ave.","modifiedDate":"2016-04-14T18:19:22"},{"calendarId":3,"start":"2016-08-24T18:00:00","end":"2016-08-24T19:00:00","title":"DAC Meeting","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T11:31:41"},{"calendarId":25,"start":"2016-08-24T18:00:00","end":"2016-08-24T19:00:00","title":"Beat Meeting 2534","eventDetails":"Beat Meeting 2534","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"4338 W. Wabansia","modifiedDate":"2015-12-10T10:48:56"},{"calendarId":11,"start":"2016-08-24T17:30:00","end":"2016-08-24T18:30:00","title":"Take Back Your Block","eventDetails":"We invite you to come learn new ways to participate in community meetings, committees and voice your concerns. ","eventUrl":null,"contactDetails":"11th District CAPS 312-746-9841","location":"3900-4000 W. Grenshaw","modifiedDate":"2016-08-24T13:14:50"},{"calendarId":25,"start":"2016-08-24T13:00:00","end":"2016-08-24T14:00:00","title":"Youth Council Meeting","eventDetails":"The youth of the 25th District Community are invited to another sit-down with Sgt. Cotter and the officers to discuss youth-police relations and to work together to solve problems.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"25th District Community Room - 5555 W. Grand Ave.","modifiedDate":"2016-07-14T14:56:26"},{"calendarId":15,"start":"2016-08-24T10:00:00","end":"2016-08-24T12:00:00","title":"Senior Meeting","eventDetails":"Senior Citizens related topics w/ Guest Speakers from various agencies and departments","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District\n5701 W. Madison\n","modifiedDate":"2016-07-08T07:31:12"},{"calendarId":15,"start":"2016-08-24T08:30:00","end":"2016-08-24T10:00:00","title":"Business Meeting","eventDetails":"Business owners of the 15th District meet to discuss concerns of crime and ways to improve business related issues.","eventUrl":null,"contactDetails":"15th District CAPS\n5701 W Madison\n312-743-1495","location":"MacArthur's Restaurant\n5412 W Madison","modifiedDate":"2016-05-16T14:18:26"},{"calendarId":9,"start":"2016-08-23T19:00:00","end":"2016-08-23T20:00:00","title":"922, 923 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Simon Church Hall\n5157 S. California Ave.","modifiedDate":"2016-04-14T18:19:33"},{"calendarId":16,"start":"2016-08-23T19:00:00","end":null,"title":"1614 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Salvation Army\n8354 W. Foster","modifiedDate":"2016-02-19T12:52:29"},{"calendarId":9,"start":"2016-08-23T19:00:00","end":"2016-08-23T20:00:00","title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"3120 S. Halsted St.","modifiedDate":"2016-05-02T19:44:02"},{"calendarId":3,"start":"2016-08-23T19:00:00","end":"2016-08-23T20:00:00","title":"10 Sector Beat Meeting (311,312,313 & 314)","eventDetails":"10 Sector Beat Meeting (311, 312, 313 & 314)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2017-02-14T21:25:26"},{"calendarId":8,"start":"2016-08-23T19:00:00","end":"2016-08-23T20:00:00","title":"813/833 Beat Meeting","eventDetails":"West Lawn Park","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W. 65th Street","modifiedDate":"2015-12-22T11:31:50"},{"calendarId":7,"start":"2016-08-23T18:30:00","end":"2016-08-23T19:30:00","title":"BEAT 713,714 AND 715","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"007TH DISTRICT POLICE STATION\n1438 W. 63RD STREET","modifiedDate":"2016-01-20T16:26:43"},{"calendarId":25,"start":"2016-08-23T18:30:00","end":"2016-08-23T19:30:00","title":"Beat Meeting 2532","eventDetails":"Beat Meeting 2532","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"1511 N. Long","modifiedDate":"2015-12-10T10:50:42"},{"calendarId":11,"start":"2016-08-23T18:00:28","end":"2016-08-23T19:00:28","title":"Beat Meeting: 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Altgeld Park 515 S. Washtenaw\n\n","modifiedDate":"2015-12-22T14:01:35"},{"calendarId":12,"start":"2016-08-23T18:00:00","end":"2016-08-23T19:00:00","title":"Beat Meeting 1232","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at 12th District, 1412 S. Blue Island, on the 4th Tuesday of the even months. ","modifiedDate":"2016-04-30T11:13:04"},{"calendarId":11,"start":"2016-08-23T17:30:00","end":"2016-08-23T18:30:00","title":"Take Back Your Block","eventDetails":"We invite you to come learn new ways to participate in community meetings, committees and voice your concerns. ","eventUrl":null,"contactDetails":"11th District CAPS 312-746-9841","location":"700 S. Kenneth","modifiedDate":"2016-08-24T13:13:42"},{"calendarId":3,"start":"2016-08-23T14:00:00","end":"2016-08-23T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:51:18"},{"calendarId":12,"start":"2016-08-23T12:00:00","end":"2016-08-23T13:30:00","title":"Senior Enrichment Seminar","eventDetails":"CCEJC is hosting a guardianship seminar as part of its Senior Enrichment Seminar Series entitled ?Everything You Want to Know About Guardianship?. The topics of discussion for this seminar will include:\n?Guardians? duties and responsibilities\n?Guardianship process and procedures\n?Guardianship vs. Power of Attorney","eventUrl":null,"contactDetails":"Call (312) 603-9233 today to reserve your seat for the seminar.","location":"Richard J Daley Center\n50 W Washington Blvd\nCourtroom #2005","modifiedDate":"2016-08-23T12:10:55"},{"calendarId":22,"start":"2016-08-23T10:30:00","end":"2016-08-23T11:30:00","title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:43:21"},{"calendarId":8,"start":"2016-08-23T10:00:00","end":null,"title":"Senior Subcommittee Meeting","eventDetails":"Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W 63rd Street","modifiedDate":"2016-08-03T14:29:31"},{"calendarId":5,"start":"2016-08-23T10:00:00","end":"2016-08-23T11:00:00","title":"COURT ADVOCACY","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:15:31"},{"calendarId":11,"start":"2016-08-22T18:00:51","end":"2016-08-22T19:00:51","title":"District Advisory Committee ","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 11th District.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841\n","location":"11th District Auditorium \n","modifiedDate":"2015-12-28T09:29:55"},{"calendarId":6,"start":"2016-08-20T11:00:00","end":"2016-08-20T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities ","eventUrl":null,"contactDetails":"Contact Officer Mathews at (312) 745-3641","location":"006th District\nCommunity Room\n7808 S. Halsted St","modifiedDate":"2016-07-28T14:44:46"},{"calendarId":15,"start":"2016-08-20T10:00:00","end":"2016-08-20T12:00:00","title":"Block Club Training","eventDetails":"Community Organizer and residents partner on solving chronic crime and disorders and strategize together for solutions as block clubs and neighborhood watches are created.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District\n5701 W. Madison\n","modifiedDate":"2016-07-08T07:31:41"},{"calendarId":3,"start":"2016-08-20T09:00:00","end":"2016-08-20T10:00:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"51st Wentworth\n\n","modifiedDate":"2016-01-19T18:57:22"},{"calendarId":12,"start":"2016-08-20T09:00:00","end":"2016-08-20T11:00:00","title":"Police Explorer Meeting ","eventDetails":"The program targets youths 12 to 20 years of age. The uniform, (shirt, patch and pants) will be provided by the 12th District Community Policing Office. The Explorer will receive a uniform after the Explorer attends 6 meetings and signs a letter of commitment. Anyone who wants to sign up is welcome. Please contact the Community Policing Office for further information.","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-05-26T13:40:51"},{"calendarId":5,"start":"2016-08-18T19:00:00","end":"2016-08-18T20:00:00","title":"BEAT 533 COMMUNITY MEETING","eventDetails":"ALTGELD HEALTH CENTER","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"1029 E 130TH STREET","modifiedDate":"2016-01-26T08:26:13"},{"calendarId":20,"start":"2016-08-18T19:00:00","end":"2016-08-18T20:00:00","title":"2024 Beat Meeting ","eventDetails":"2024 Beat Community Meeting ","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Margate Field House\n4921 N. Marine Drive ","modifiedDate":"2016-02-01T11:47:11"},{"calendarId":8,"start":"2016-08-18T19:00:00","end":"2016-08-18T20:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":"West Lawn Park","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W. 65th St","modifiedDate":"2015-12-28T11:22:54"},{"calendarId":11,"start":"2016-08-18T18:30:46","end":"2016-08-18T19:30:46","title":"Beat Meeting:1113/14/15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"St. Michael MBC 4106 W. Monroe ","modifiedDate":"2015-12-21T14:10:59"},{"calendarId":25,"start":"2016-08-18T18:30:00","end":"2016-08-18T19:30:00","title":"Beat Meeting 2524","eventDetails":"Beat Meeting 2524","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2446 N. Ridgeway","modifiedDate":"2015-12-10T10:53:12"},{"calendarId":7,"start":"2016-08-18T18:30:00","end":"2016-08-18T19:30:00","title":"District Advisory Council Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Station\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:17:34"},{"calendarId":7,"start":"2016-08-18T18:30:00","end":"2016-08-18T19:30:00","title":"BEAT 734 & 735","eventDetails":"COMMUNITY MEETING\n\n","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"GIFTS FROM GOD MINISTRY\n1818 W. 74TH STREET","modifiedDate":"2016-01-20T16:20:25"},{"calendarId":14,"start":"2016-08-18T18:30:00","end":null,"title":"1433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Pulaski Park\n1419 W. Blackhawk","modifiedDate":"2016-01-06T10:11:34"},{"calendarId":16,"start":"2016-08-18T18:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-02-19T12:48:16"},{"calendarId":3,"start":"2016-08-18T14:00:00","end":"2016-08-18T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:53:43"},{"calendarId":6,"start":"2016-08-18T10:00:00","end":"2016-08-18T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":"Meet to discuss topics on Domestic Violence and prevention. ","eventUrl":null,"contactDetails":"Contact Officer Hughes at (312) 745-3541","location":"006th District\nCommunity Room\n7808 S. Halsted St","modifiedDate":"2016-07-28T12:52:23"},{"calendarId":11,"start":"2016-08-18T10:00:00","end":"2016-08-18T11:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Senior Subcommittee monthly meeting. ","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312-746-9841\n","location":"Meeting 011th District Auditorium \n3151 W. Harrison \n","modifiedDate":"2015-12-28T08:49:20"},{"calendarId":17,"start":"2016-08-17T19:30:00","end":"2016-08-17T20:30:00","title":"1722 & 1723 Beat Meeting ","eventDetails":"Combined meeting for beat 1722 and beat 1723. ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski \n17th District Community Room ","modifiedDate":"2016-07-06T11:04:44"},{"calendarId":1,"start":"2016-08-17T19:00:00","end":"2016-08-17T20:00:00","title":"BT 133 Residential Mtg","eventDetails":"Beat meeting for residents from BT 133","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"2930 S Dearborn\nDearborn Homes","modifiedDate":"2015-12-16T12:12:25"},{"calendarId":22,"start":"2016-08-17T19:00:00","end":"2016-08-17T20:00:00","title":"Beat 2234 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Station\n1900 W Monterey","modifiedDate":"2015-12-03T11:15:51"},{"calendarId":5,"start":"2016-08-17T19:00:00","end":"2016-08-17T20:00:00","title":"BEAT 532 COMMUNITY MEETING","eventDetails":"ST. ANTHONY CHURCH","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"11533 S PRAIRIE","modifiedDate":"2016-01-26T08:27:33"},{"calendarId":20,"start":"2016-08-17T19:00:00","end":"2016-08-17T20:00:00","title":"2013 Beat Meeting","eventDetails":"2013 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church\n5437 N. Clark ","modifiedDate":"2016-02-01T11:47:02"},{"calendarId":8,"start":"2016-08-17T19:00:00","end":"2016-08-17T20:00:00","title":"823/825 Beat Meeting","eventDetails":"008th District Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W. 63rd Street","modifiedDate":"2015-12-22T11:30:20"},{"calendarId":2,"start":"2016-08-17T18:30:00","end":null,"title":"Beat Meeting 233/234/235","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"Treasure Island\n1526 E. 55th Street","modifiedDate":"2016-06-24T11:38:15"},{"calendarId":14,"start":"2016-08-17T18:30:00","end":null,"title":"1434 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Public Library-Bucktown\n1701 N. Milwaukee","modifiedDate":"2016-01-06T10:10:51"},{"calendarId":9,"start":"2016-08-17T18:00:00","end":"2016-08-17T19:00:00","title":"925 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Gabriel Church Hall\n4500 S. Wallace St.","modifiedDate":"2016-04-14T18:19:42"},{"calendarId":10,"start":"2016-08-17T18:00:00","end":"2016-08-17T19:00:00","title":"Beat 1031/ 1032 Community CAPs Meeting","eventDetails":"Beat 1031 & 1032 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"St. Agnes Church\n2658 S. Central Park Ave","modifiedDate":"2016-06-03T10:25:17"},{"calendarId":12,"start":"2016-08-17T18:00:00","end":"2016-08-17T19:00:00","title":"Beat Meeting 1234","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Harrison Park, 1824 S. Wood Street on the 3rd Wednesday of the even months","modifiedDate":"2016-04-30T11:14:29"},{"calendarId":5,"start":"2016-08-17T13:00:00","end":"2016-08-17T14:00:00","title":"SENIOR ADVISORY COMMITTEE","eventDetails":"0058TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:10:04"},{"calendarId":18,"start":"2016-08-17T10:00:00","end":"2016-08-17T14:00:00","title":"Explorer Scouts Fishing Trip","eventDetails":"Explorer Scouts Fishing Trip at Northerly Island.","eventUrl":null,"contactDetails":"P.O Ferguson","location":"Northerly Island\n1300 S. Linn White Dr.\nChicago, Il 60605","modifiedDate":"2016-07-12T16:17:03"},{"calendarId":18,"start":"2016-08-17T09:30:00","end":"2016-08-17T10:30:00","title":"Coffee with the Commander","eventDetails":"Discuss issues in the 018 District over a cup of coffee with Commander Bauer.","eventUrl":null,"contactDetails":"P.O Schenk","location":"Eva's Cafe\n1447 N. Sedgwick\nChicago, Il 60610","modifiedDate":"2016-07-13T15:56:05"},{"calendarId":5,"start":"2016-08-16T19:00:00","end":"2016-08-16T20:00:00","title":"BEAT 531 COMMUNITY MEETING","eventDetails":"GREEN STONE UNITED METHODIST","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"11211 S ST. LAWRENCE","modifiedDate":"2016-01-26T08:28:41"},{"calendarId":8,"start":"2016-08-16T19:00:00","end":"2016-08-16T20:00:00","title":"811 Beat Meeting","eventDetails":"Good Shepherd Church","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5550 S. Merrimac","modifiedDate":"2015-12-22T11:33:04"},{"calendarId":22,"start":"2016-08-16T19:00:00","end":"2016-08-16T20:00:00","title":"Beat 2222 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Brainerd Park\n1246 W 92nd St","modifiedDate":"2015-12-03T11:20:11"},{"calendarId":1,"start":"2016-08-16T19:00:00","end":"2016-08-16T20:00:00","title":"BT 131/132 Residential ","eventDetails":"Beat meeting for residents from BT 131/132","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"30 W Cermak\nHilliard Apts","modifiedDate":"2015-12-15T17:15:10"},{"calendarId":12,"start":"2016-08-16T19:00:00","end":"2016-08-16T20:00:00","title":"Beat Meeting 1212","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at St. Helen's School Basement, 2345 W. Augusta. For this month the meeting will be held on August 16 because of National Night Out.","modifiedDate":"2016-04-30T11:16:07"},{"calendarId":7,"start":"2016-08-16T18:30:00","end":"2016-08-16T19:30:00","title":"BEAT 731,732 AND 733","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"HAMILTON PARK\n513 W. 72ND STREET","modifiedDate":"2016-01-20T16:22:31"},{"calendarId":2,"start":"2016-08-16T18:30:00","end":null,"title":"Beat Meeting 221/223","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"King Center\n4314 S. Cottage Grove","modifiedDate":"2016-06-24T11:37:53"},{"calendarId":11,"start":"2016-08-16T18:00:00","end":"2016-08-16T19:00:00","title":"Beat Meeting:1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Homan Square Community Center 3559 W. Arthington","modifiedDate":"2015-12-21T15:06:07"},{"calendarId":9,"start":"2016-08-16T18:00:00","end":"2016-08-16T19:00:00","title":"932, 934, 935 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Westhaven Senior Homes\n850 W. Garfield Blvd.","modifiedDate":"2016-04-14T18:19:56"},{"calendarId":16,"start":"2016-08-16T13:00:00","end":null,"title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Jennene Whalen\n(312)742-4521\nCAPS016District@chicagopolice.org","location":null,"modifiedDate":"2016-02-19T12:47:57"},{"calendarId":17,"start":"2016-08-16T11:00:00","end":"2016-08-16T13:00:00","title":"Monthly Senior Meeting ","eventDetails":"Monthly Senior Subcommittee Meeting ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski \n17th District Community Room ","modifiedDate":"2016-07-06T11:05:16"},{"calendarId":11,"start":"2016-08-16T11:00:00","end":"2016-08-16T12:00:00","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"TBA","modifiedDate":"2016-01-26T14:07:13"},{"calendarId":2,"start":"2016-08-16T10:30:00","end":null,"title":"Senior Meeting","eventDetails":"Senior Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"5101 S. Wentworth","modifiedDate":"2016-01-04T15:37:01"},{"calendarId":2,"start":"2016-08-16T10:30:00","end":null,"title":"Senior Meeting","eventDetails":"Senior Meeting","eventUrl":null,"contactDetails":"officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:40:35"},{"calendarId":17,"start":"2016-08-15T16:30:00","end":"2016-08-15T18:30:00","title":"Back to school event","eventDetails":"Back to school event","eventUrl":null,"contactDetails":"Call 017th District CAPS office 312-742-4588 or email CAPS.017thdistrict@chiagopolice.org","location":"Location: 4650 N. Pulaski 17th District Community Room ","modifiedDate":"2016-08-08T17:16:17"},{"calendarId":7,"start":"2016-08-15T13:00:00","end":"2016-08-15T15:00:00","title":"Senior Advisory Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"Tolton Manor\n6345 S. Stewart","modifiedDate":"2016-01-20T16:16:32"},{"calendarId":24,"start":"2016-08-13T12:00:00","end":"2016-08-13T14:00:00","title":"Back to School Event","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office. (312) 744-6321","location":"Howard at Ashland","modifiedDate":"2016-07-28T17:20:42"},{"calendarId":5,"start":"2016-08-13T10:00:00","end":"2016-08-13T12:00:00","title":"YOUTH LAW EXPLORERS","eventDetails":"005TH DISTRICT POLICE STATION ","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:08:55"},{"calendarId":18,"start":"2016-08-13T10:00:00","end":"2016-08-13T12:00:00","title":"Peer Jury and Explorer Scouts","eventDetails":"Peer Jury and Explorer Scouts","eventUrl":null,"contactDetails":"P.O Ferguson","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-07-09T17:51:09"},{"calendarId":8,"start":"2016-08-11T19:00:00","end":"2016-08-11T20:00:00","title":"814 Beat Meeting","eventDetails":"Vittum Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5010 W. 50th Street","modifiedDate":"2015-12-22T11:31:03"},{"calendarId":4,"start":"2016-08-11T19:00:00","end":"2016-08-11T20:00:00","title":"Beat 422 Caps Meting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"2800 E. 79th St.","modifiedDate":"2016-06-01T11:51:01"},{"calendarId":14,"start":"2016-08-11T19:00:00","end":null,"title":"1422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Hispanic Housing\n1402 N. Kedzie","modifiedDate":"2016-01-06T10:12:58"},{"calendarId":1,"start":"2016-08-11T19:00:00","end":"2016-08-11T20:00:00","title":"10 Sector Residential meeting","eventDetails":"Beat meeting for residents from 10 sector beats\n","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"130 N Garland\nCondo Bldg","modifiedDate":"2015-12-16T12:12:57"},{"calendarId":5,"start":"2016-08-11T19:00:00","end":"2016-08-11T20:00:00","title":"BEAT 524 COMMUNITY MEETING","eventDetails":"LUTHERAN CHURCH OF THE HOLY SPIRIT","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"1335 W 115TH STREET","modifiedDate":"2016-01-26T08:29:41"},{"calendarId":22,"start":"2016-08-11T19:00:00","end":"2016-08-11T20:00:00","title":"Beat 2213 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Ridge Park\n9625 S Longwood Dr","modifiedDate":"2015-12-02T10:57:57"},{"calendarId":16,"start":"2016-08-11T19:00:00","end":null,"title":"1632 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Schorsch Village Hall\n6940 W. Belmont Ave.","modifiedDate":"2016-02-19T18:34:32"},{"calendarId":2,"start":"2016-08-11T18:30:00","end":null,"title":"Beat Meeting","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"Coppin AME Church\n5627 S. Michigan ","modifiedDate":"2016-06-24T11:38:03"},{"calendarId":15,"start":"2016-08-11T18:30:00","end":"2016-08-11T19:30:00","title":"Beat 1513S CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"George R. Clarke School\n1045 S. Monitor\n","location":"George R. Clarke School\n1045 S. Monitor\n","modifiedDate":"2016-07-08T07:31:59"},{"calendarId":7,"start":"2016-08-11T18:30:00","end":"2016-08-11T19:30:00","title":"BEAT 724, 725 AND 726","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"OGDEN PARK\n6500 S. RACINE","modifiedDate":"2016-01-20T16:25:27"},{"calendarId":10,"start":"2016-08-11T18:00:00","end":"2016-08-11T19:00:00","title":"Beat 1023/ 1024 Community CAPs Meeting","eventDetails":"Beat 1023 & 1024 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"10th District\n3315 W. Ogden Ave\nCommunity Room","modifiedDate":"2016-06-03T10:14:17"},{"calendarId":11,"start":"2016-08-11T18:00:00","end":"2016-08-11T19:00:00","title":"Beat Meeting:1122/23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Legler Chicago Public Library 115 S. Pulaski","modifiedDate":"2015-12-21T14:36:48"},{"calendarId":12,"start":"2016-08-11T18:00:00","end":"2016-08-11T19:00:00","title":"Beat Meeting 1214","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Coyne Institute, 330 N. Green Street, on the 2nd Thursday of the even months. The location may be changed please contact the 12th District ","modifiedDate":"2016-04-30T11:14:02"},{"calendarId":12,"start":"2016-08-11T12:00:00","end":"2016-08-11T13:00:00","title":"NO District Advisory Committee Meeting","eventDetails":"NO MEETING ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":null,"modifiedDate":"2016-06-02T12:28:56"},{"calendarId":5,"start":"2016-08-11T11:00:00","end":"2016-08-11T12:00:00","title":"PASTORAL COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:11:35"},{"calendarId":18,"start":"2016-08-11T10:00:00","end":"2016-08-11T11:00:00","title":"Senior Emergency Bracelet Drive","eventDetails":"Senior Emergency Bracelet Drive","eventUrl":null,"contactDetails":"P.O Ramirez","location":"Zelda Ormes Apartments\n116 W. Elm\nChicago, Il 60610","modifiedDate":"2016-07-09T17:51:51"},{"calendarId":6,"start":"2016-08-11T10:00:00","end":"2016-08-11T11:00:00","title":"Faith Based Subcommittee Meeting","eventDetails":"Join the faith based leaders as we connect with the our community","eventUrl":null,"contactDetails":"Contact Officer Jones at (312) 745-3641","location":"New Covenant Church\n754 East 77th Street","modifiedDate":"2016-07-28T12:51:13"},{"calendarId":16,"start":"2016-08-10T19:00:00","end":null,"title":"1622 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Dunham Park\n4638 N. Melvina","modifiedDate":"2016-02-19T12:48:06"},{"calendarId":8,"start":"2016-08-10T19:00:00","end":"2016-08-10T20:00:00","title":"812 Beat Meeting","eventDetails":"Clearing Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6423 W. 63rd Place ","modifiedDate":"2015-12-22T11:32:33"},{"calendarId":14,"start":"2016-08-10T19:00:00","end":null,"title":"1424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Wicker Park\n1425 N. Damen","modifiedDate":"2016-01-06T10:12:31"},{"calendarId":19,"start":"2016-08-10T19:00:00","end":"2016-08-10T20:00:00","title":"Beat 1914","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Clarendon Park\n4501 N. Clarendon","modifiedDate":"2016-05-25T15:35:51"},{"calendarId":5,"start":"2016-08-10T19:00:00","end":"2016-08-10T20:00:00","title":"BEAT 523 COMMUNITY MEETING","eventDetails":"ST. PETER & PAUL","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100 ","location":"12425 S HALSTED","modifiedDate":"2016-01-26T08:32:46"},{"calendarId":1,"start":"2016-08-10T19:00:00","end":"2016-08-10T20:00:00","title":"20 Sector Residential","eventDetails":"Beat meeting for residents from 20 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"525 S State\nUniversity Center","modifiedDate":"2015-12-16T12:14:13"},{"calendarId":4,"start":"2016-08-10T19:00:00","end":"2016-08-10T20:00:00","title":"Beat 413 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"9037 S. Harper Ave.","modifiedDate":"2016-06-01T11:59:10"},{"calendarId":9,"start":"2016-08-10T19:00:00","end":"2016-08-10T20:00:00","title":"912 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Maurice Church Hall\n3625 S. Hoyne Ave.","modifiedDate":"2016-04-14T18:19:13"},{"calendarId":17,"start":"2016-08-10T19:00:00","end":"2016-08-10T20:00:00","title":"1732 & 1733 Beat meeting ","eventDetails":"Combined Meeting for Beat 1732 and Beat 1733","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Athletic Field Park\n3546 W. Addison ","modifiedDate":"2016-07-06T11:05:35"},{"calendarId":20,"start":"2016-08-10T19:00:00","end":"2016-08-10T20:00:00","title":"2012 Beat Meeting","eventDetails":"2012 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"St. Gregory Gym\n1609 W. Gregory ","modifiedDate":"2016-02-01T11:46:48"},{"calendarId":22,"start":"2016-08-10T18:45:00","end":"2016-08-10T19:45:00","title":"Beat 2232/2233 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Fernwood Park\n10438 S Wallace","modifiedDate":"2015-12-03T11:17:18"},{"calendarId":2,"start":"2016-08-10T18:30:00","end":null,"title":"Beat Meeting 213/215/224","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"St. Elizabeth Church\n4058 S. Michigan \n","modifiedDate":"2016-06-24T11:37:42"},{"calendarId":25,"start":"2016-08-10T18:00:00","end":"2016-08-10T19:00:00","title":"DAC Meeting","eventDetails":"District Advisory Committee Meeting and Officer of the Month Awards.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"25th District Community Room","modifiedDate":"2016-06-02T09:19:56"},{"calendarId":11,"start":"2016-08-10T18:00:00","end":"2016-08-10T19:00:00","title":"Court Advocacy ","eventDetails":"Court Advocacy Meeting","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:25:18"},{"calendarId":18,"start":"2016-08-10T15:30:00","end":"2016-08-10T16:30:00","title":"30 Sector Hospitality Meeting","eventDetails":"30 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"Highline\n169 W. Kinzie\nChicago, Il 60654","modifiedDate":"2016-07-09T17:52:04"},{"calendarId":22,"start":"2016-08-10T13:30:00","end":null,"title":"Court Advocacy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:57:54"},{"calendarId":14,"start":"2016-08-10T13:30:00","end":null,"title":"Domestic Violence Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2015-12-09T13:09:41"},{"calendarId":6,"start":"2016-08-10T11:00:00","end":"2016-08-10T12:30:00","title":"Senior Subcommittee Meeting","eventDetails":"Meet with Seniors on crime tip prevention and plan fun filled events","eventUrl":null,"contactDetails":"Contact Officer Hughes at(312) 745-3641.","location":"006th District\nCommunity Room\n7808 S. Halsted St","modifiedDate":"2016-07-28T12:50:34"},{"calendarId":18,"start":"2016-08-10T10:00:00","end":"2016-08-10T11:00:00","title":"Senior Fire Safety","eventDetails":"Senior Fire Safety Presentation","eventUrl":null,"contactDetails":"P.O Ramirez","location":"Margaret Day Blake Apartments\n2140 N. Clark\nChicago, Il 60614","modifiedDate":"2016-07-20T11:34:04"},{"calendarId":7,"start":"2016-08-10T09:30:00","end":"2016-08-10T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Police Station\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:13:58"},{"calendarId":12,"start":"2016-08-09T19:00:00","end":"2016-08-09T20:00:00","title":"Beat Meeting 1222","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Above and Beyond Family Recovery Center, 2942 W. Lake St., on the 2nd Tuesday of the even months","modifiedDate":"2016-04-30T11:15:13"},{"calendarId":4,"start":"2016-08-09T19:00:00","end":"2016-08-09T20:00:00","title":"Beat 424 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"3200 E. 91st St.","modifiedDate":"2016-06-01T11:58:45"},{"calendarId":22,"start":"2016-08-09T19:00:00","end":"2016-08-09T20:00:00","title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Woodson Library\n9525 S Halsted","modifiedDate":"2015-12-03T11:18:47"},{"calendarId":20,"start":"2016-08-09T19:00:00","end":"2016-08-09T20:00:00","title":"2022 Beat Meeting","eventDetails":"2022 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Broadway Armory \n5917 N. Broadway ","modifiedDate":"2016-02-01T11:46:40"},{"calendarId":8,"start":"2016-08-09T19:00:00","end":"2016-08-09T20:00:00","title":"831/832 Beat Meeting","eventDetails":"Marquette Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6734 S. Kedzie","modifiedDate":"2015-12-22T11:30:08"},{"calendarId":5,"start":"2016-08-09T19:00:00","end":"2016-08-09T20:00:00","title":"BEAT 522 COMMUNITY MEETING","eventDetails":"GREATER CANAAN MBC","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"35 W 119TH STREET","modifiedDate":"2016-01-26T08:35:44"},{"calendarId":9,"start":"2016-08-09T18:30:00","end":"2016-08-09T19:30:00","title":"913, 915 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Barbara's Church Hall, 2853 S. Throop St.","modifiedDate":"2016-06-15T17:45:27"},{"calendarId":11,"start":"2016-08-09T18:30:00","end":"2016-08-09T19:30:00","title":"Beat Meeting: 1124/25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"JLM Abundant Life Center 2622 W. Jackson","modifiedDate":"2015-12-22T14:07:42"},{"calendarId":15,"start":"2016-08-09T18:30:00","end":"2016-08-09T19:30:00","title":"Beat 1511/24 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495\t\t\t\n15th District\n5701 W. Madison\n\n","location":"Hope Community Church\n5900 W. Iowa\n","modifiedDate":"2016-07-08T07:32:10"},{"calendarId":7,"start":"2016-08-09T18:30:00","end":"2016-08-09T19:30:00","title":"BEAT 722 & 723","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"KENNEDY-KING COLLEGE\n740 W. 63RD STREET","modifiedDate":"2016-01-20T16:26:08"},{"calendarId":6,"start":"2016-08-09T18:00:00","end":"2016-08-09T19:00:00","title":"Court Advocacy Meeting","eventDetails":"Track and learn about the court process, civil and criminal. \n","eventUrl":null,"contactDetails":"Contact the CAPS office at (312) 745-3641","location":"006th District\nCommunity Room\n7808 S. Halsted St","modifiedDate":"2016-08-03T11:42:52"},{"calendarId":10,"start":"2016-08-09T18:00:00","end":"2016-08-09T19:00:00","title":"Beat 1034 Community CAPs Meeting","eventDetails":"Beat 1034 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"YMCA- Rauner\n2700 S. Western Ave\n2nd Floor","modifiedDate":"2016-06-03T10:29:40"},{"calendarId":18,"start":"2016-08-09T18:00:00","end":"2016-08-09T19:00:00","title":"Court Advocacy Meeting","eventDetails":"Court Advocates track criminal cases from the 018 District.","eventUrl":null,"contactDetails":"P.O Incaprera","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-07-09T17:52:16"},{"calendarId":2,"start":"2016-08-09T15:00:00","end":"2016-08-09T16:00:00","title":"Domestic Violence Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:16:29"},{"calendarId":7,"start":"2016-08-09T12:00:00","end":"2016-08-09T13:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Police Station\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:15:15"},{"calendarId":6,"start":"2016-08-09T10:00:00","end":"2016-08-09T11:00:00","title":"Business Subcommittee Meeting","eventDetails":"Meet with local businesses as we plan future events to foster a safe community","eventUrl":null,"contactDetails":"Contact Officer Jones at (312) 745-3641","location":"006th District \nCommunity Room\n7808 S. Halsted St","modifiedDate":"2016-07-28T12:52:00"},{"calendarId":22,"start":"2016-08-09T10:00:00","end":"2016-08-09T11:00:00","title":"Clergy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-22T08:33:08"},{"calendarId":19,"start":"2016-08-08T18:30:00","end":"2016-08-08T19:30:00","title":"Beat 1934 & 1935","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"2nd Unitarian Church\n656 W. Barry\n","modifiedDate":"2016-05-25T15:33:40"},{"calendarId":2,"start":"2016-08-08T18:30:00","end":null,"title":"Beat Meeting 211","eventDetails":"Citizens and CPD discuss issues and concerns of the community","eventUrl":null,"contactDetails":"2nd District Caps\n5101 S. Wentworth \n312-747-5109","location":"College of Optometry\n3240 S. Indiana ave\n","modifiedDate":"2016-06-24T11:36:55"},{"calendarId":15,"start":"2016-08-08T15:00:07","end":"2016-08-08T16:00:07","title":"Domestic Violence Meeting","eventDetails":"Domestic violence members discuss and plan upcoming events for domestic violence victims / survivors.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-12T16:20:18"},{"calendarId":17,"start":"2016-08-08T12:00:00","end":"2016-08-08T14:00:00","title":"Bicycle Registration","eventDetails":"Bicycle Rodeo/Registration \n","eventUrl":null,"contactDetails":"CAPS.017district@chicagopolice.org 312-742-4588","location":"Community Room\n4650 N. Pulaski Rd. ","modifiedDate":"2016-08-08T17:15:49"},{"calendarId":6,"start":"2016-08-06T11:00:00","end":"2016-08-06T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities ","eventUrl":null,"contactDetails":"Contact Officer Mathews\nat (312) 745-3641","location":"006th District \nCommunity Room\n7808 S. Halsted St\n","modifiedDate":"2016-07-28T14:44:31"},{"calendarId":3,"start":"2016-08-06T11:00:00","end":"2016-08-06T12:00:00","title":"Youth/Explorers","eventDetails":"Youth/Explorers","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T18:59:39"},{"calendarId":12,"start":"2016-08-06T09:00:00","end":"2016-08-06T09:15:00","title":"NO Peer Jury ","eventDetails":"No Peer Jury till September. ","eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2016-05-26T13:42:49"},{"calendarId":11,"start":"2016-08-06T09:00:00","end":"2016-08-06T10:00:00","title":"Peer Jury","eventDetails":"Misdemeanor court cases are presented and sanctioned by their peers.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:04:56"},{"calendarId":25,"start":"2016-08-06T08:30:00","end":"2016-08-06T10:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave. \nCommunity Room","modifiedDate":"2015-12-10T10:43:51"},{"calendarId":5,"start":"2016-08-04T19:00:00","end":"2016-08-04T20:00:00","title":"BEAT 513 COMMUNITY MEETING","eventDetails":"ROSELAND CHRISTIAN MINISTRIES","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"10858 S MICHIGAN AVE","modifiedDate":"2016-01-26T08:37:33"},{"calendarId":8,"start":"2016-08-04T19:00:00","end":"2016-08-04T20:00:00","title":"834 Beat Meeting","eventDetails":"Bogan High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3939 W. 79th Street","modifiedDate":"2015-12-22T11:26:49"},{"calendarId":22,"start":"2016-08-04T19:00:00","end":null,"title":"Beat 2211 and 2212 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-02T10:59:14"},{"calendarId":4,"start":"2016-08-04T19:00:00","end":"2016-08-04T20:00:00","title":"Beat 434 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"10501 S. Torrence Ave.","modifiedDate":"2016-06-01T11:58:25"},{"calendarId":14,"start":"2016-08-04T19:00:00","end":null,"title":"1411 & 1412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Nicolai Church\n3000 N. Kedzie","modifiedDate":"2016-01-06T10:13:16"},{"calendarId":15,"start":"2016-08-04T18:30:00","end":"2016-08-04T19:30:00","title":"Beat 1512/23 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495\t\t\t\n15th District\n5701 W. Madison\n","location":"PCC Family Health Ctr.\n5425 W. Lake St.\n","modifiedDate":"2016-07-08T07:32:46"},{"calendarId":19,"start":"2016-08-04T18:30:00","end":"2016-08-04T19:30:00","title":"Beat 1915","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"The Shift\n4101 N. Broadway","modifiedDate":"2016-05-25T15:35:24"},{"calendarId":25,"start":"2016-08-04T18:30:00","end":"2016-08-04T19:30:00","title":"Beat Meeting 2522","eventDetails":"Beat Meeting 2522","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2240 N. Kilbourn","modifiedDate":"2015-12-10T11:13:07"},{"calendarId":11,"start":"2016-08-04T18:00:00","end":"2016-08-04T19:00:00","title":"Beat Meeting: 1112/21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2015-12-14T15:25:42"},{"calendarId":14,"start":"2016-08-04T17:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T10:09:41"},{"calendarId":22,"start":"2016-08-04T14:00:00","end":null,"title":"Diversity and Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:56:23"},{"calendarId":3,"start":"2016-08-04T13:00:00","end":"2016-08-04T14:00:00","title":"003rd District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:07:25"},{"calendarId":11,"start":"2016-08-04T11:00:00","end":"2016-08-04T12:00:00","title":"Domestic Violence Subcommittee","eventDetails":"Domestic Violence Meetings","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312.746.9841\n","location":"011th District(Auditorium)\n3151 W. Harrison\n","modifiedDate":"2015-12-22T15:08:25"},{"calendarId":5,"start":"2016-08-04T10:00:00","end":"2016-08-04T11:00:00","title":"DOMESTIC VIOLENCE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:13:43"},{"calendarId":5,"start":"2016-08-03T19:00:00","end":"2016-08-03T20:00:00","title":"BEAT 512 COMMUNITY MEETING","eventDetails":"CHRISTIAN MISSIONARY BAPTIST CHURCH","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"132 W 104TH STREET","modifiedDate":"2016-01-26T08:39:05"},{"calendarId":20,"start":"2016-08-03T19:00:00","end":"2016-08-03T20:00:00","title":"2033 Beat Meeting","eventDetails":"2033 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Bezazian Library \n1226 W. Ainslie\n","modifiedDate":"2016-02-01T11:37:16"},{"calendarId":19,"start":"2016-08-03T19:00:00","end":"2016-08-03T20:00:00","title":"Beat 1923, 1924 & 1925","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"019 District\n850 W. Addison","modifiedDate":"2016-05-25T15:34:42"},{"calendarId":8,"start":"2016-08-03T19:00:00","end":"2016-08-03T20:00:00","title":"815/821 Beat Meeting","eventDetails":"St. Bruno's","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4839 S. Harding","modifiedDate":"2015-12-22T11:30:51"},{"calendarId":4,"start":"2016-08-03T19:00:00","end":"2016-08-03T20:00:00","title":"Beat 414 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"1750 E. 78th St.","modifiedDate":"2016-06-01T11:57:53"},{"calendarId":25,"start":"2016-08-03T18:30:00","end":"2016-08-03T19:30:00","title":"Beat Meeting 2512","eventDetails":"Beat Meeting 2512","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"2211 N. Oak Park ","modifiedDate":"2015-12-10T11:24:59"},{"calendarId":14,"start":"2016-08-03T18:30:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T10:10:31"},{"calendarId":15,"start":"2016-08-03T18:00:00","end":"2016-08-03T19:00:00","title":"Beat 1522/33 CAPS Meeting","eventDetails":"Community Residents, Block Clubs and other stakeholders come together to discuss community concerns and strategize for solutions\n\n","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495\t\t\t\n15th District\n5701 W. Madison\n","location":"Loretto Hospital\n645 S. Central, 6th Fl.\n","modifiedDate":"2016-07-27T15:37:56"},{"calendarId":12,"start":"2016-08-03T18:00:00","end":"2016-08-03T19:00:00","title":"Beat Meeting 1224","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Chicago Police Academy 1300 W. Jackson, on the 1st Wednesday of the even months. ","modifiedDate":"2016-04-30T11:15:39"},{"calendarId":9,"start":"2016-08-03T18:00:00","end":"2016-08-03T19:00:00","title":"911, 921 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Davis School Annex\n3050 W. 39th St.","modifiedDate":"2016-04-14T18:20:20"},{"calendarId":18,"start":"2016-08-03T15:00:00","end":"2016-08-03T16:00:00","title":"20 Sector Hospitality Meeting","eventDetails":"20 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"She-Nannigans\n16 W. Division\nChicago, Il 60610","modifiedDate":"2016-07-09T17:52:27"},{"calendarId":3,"start":"2016-08-03T14:00:00","end":"2016-08-03T15:00:00","title":"Court Advocate Meeting","eventDetails":"Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:09:10"},{"calendarId":25,"start":"2016-08-03T10:00:00","end":"2016-08-03T11:00:00","title":"Domestic Violence","eventDetails":"Domestic Violence\nSub-committee meeting \n","eventUrl":null,"contactDetails":" \nFor Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:41:10"},{"calendarId":8,"start":"2016-08-02T18:00:00","end":"2016-08-02T20:00:00","title":"National Night Out","eventDetails":"West Lawn Park","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W. 65th St","modifiedDate":"2016-08-03T14:29:41"},{"calendarId":15,"start":"2016-08-02T18:00:00","end":"2016-08-02T20:00:00","title":"National Night Out","eventDetails":"Community Residents, Local Business Owners, Community Organizations, Clergy and other stakeholders of the Austin Community partner together to heighten the awareness of crime and disorder.","eventUrl":null,"contactDetails":"CAPS Office\n312-743-1495","location":"Chicago Park District\nMoore Park\n5055 W. Adams","modifiedDate":"2016-07-08T07:33:13"},{"calendarId":19,"start":"2016-08-02T18:00:00","end":"2016-08-02T20:00:00","title":"National Night Out","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Hamlin Park\n3035 N. Hoyne","modifiedDate":"2016-06-28T12:59:37"},{"calendarId":6,"start":"2016-08-02T18:00:00","end":"2016-08-02T20:00:00","title":"National Night Out","eventDetails":"Join us to celebrate the police and community working together. ","eventUrl":null,"contactDetails":"Contact the CAPS Office at (312)745=3641","location":"Foster Park\n1440 W. 84th Street","modifiedDate":"2016-07-28T12:50:06"},{"calendarId":24,"start":"2016-08-02T18:00:00","end":"2016-08-02T21:00:00","title":"National Night Out","eventDetails":"Separate events for each beat.","eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"24th District","modifiedDate":"2016-07-28T17:20:52"},{"calendarId":12,"start":"2016-08-02T17:00:23","end":"2016-08-02T20:00:23","title":"National Night Out ","eventDetails":"Food, Music, Police Mounted Unit, CFD Fire Truck K-9 Unit, Obstacle Course, Bomb and Arson Unit, Dunk Tank, Balloon Art, Face Painting Raffle and Prizes. Free Car Show with trophies and White Sox Southpaw & Ronald McDonald will also be there too. ","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306\n","location":"12th District Police Station \n1412 S. Blue Island\nparking lot \n ","modifiedDate":"2016-05-26T14:26:32"},{"calendarId":16,"start":"2016-08-02T17:00:00","end":"2016-08-02T21:00:00","title":"National Night Out","eventDetails":"Join concerned citizens everywhere to celebrate police and community working together to make their neighborhood safe. This evening of family fun will feature a variety of activities including antique car show, musical performances, food for purchase, balloon artist, and many more activities. We are looking forward to sharing fun times with you all.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Norwood Park\n5801 N. Natoma","modifiedDate":"2016-03-15T15:19:08"},{"calendarId":25,"start":"2016-08-02T17:00:00","end":"2016-08-02T20:00:00","title":"National Night Out","eventDetails":"Our annual community building campaign that promotes police-community partnerships and neighborhood camaraderie to make our neighborhoods safer, better places to live.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"25th District Station\n5555 W. Grand Ave.\nChicago, IL 60639","modifiedDate":"2016-06-02T13:50:18"},{"calendarId":17,"start":"2016-08-02T17:00:00","end":"2016-08-02T20:00:00","title":"Annual National Night Out ","eventDetails":"Please Join us for our Annual National Night Out. Entertainment, Music and Children's Games will be provided. Target is our main sponsor. ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N Pulaski\n17th District East Parking Lot","modifiedDate":"2016-07-06T11:05:02"},{"calendarId":14,"start":"2016-08-02T17:00:00","end":"2016-08-02T20:00:00","title":"National Night Out","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2016-02-16T10:16:30"},{"calendarId":3,"start":"2016-08-02T17:00:00","end":"2016-08-02T19:00:00","title":"NATIONAL NIGHT OUT","eventDetails":"NATIONAL NIGHT OUT","eventUrl":null,"contactDetails":"P.O HUTCHINSON\n7040 S. COTTAGE GROVE\n-CHICAGO, ILL. 60637\n(312) ","location":"7140 S. KING DRIVE","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":11,"start":"2016-08-02T16:00:40","end":"2016-08-02T20:00:40","title":"011th District National Nightout","eventDetails":"Police & Community Partnerships\nFUN..FOOD..GAMES..MUSIC..RAFFLES \nSponsored by 011th District","eventUrl":null,"contactDetails":"011th District CAPS\n1-312-746-9841","location":"Welles Park \n3201 W. Chicago Ave. ","modifiedDate":"2016-06-16T17:04:50"},{"calendarId":5,"start":"2016-08-02T16:00:00","end":"2016-08-02T20:00:00","title":"NATIONAL NIGHT-OUT","eventDetails":null,"eventUrl":null,"contactDetails":"005TH DISTRICT CAPS OFFICE\n312-747-3100","location":"GATELY PARK \n744 E 103RD STREET","modifiedDate":"2016-07-02T09:22:26"},{"calendarId":18,"start":"2016-08-02T16:00:00","end":"2016-08-02T19:00:00","title":"National Night Out","eventDetails":"A Police and Community partnership event with a focus on Identity Theft Prevention.","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"018th District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-07-09T17:52:38"},{"calendarId":2,"start":"2016-08-02T14:00:00","end":"2016-08-02T18:00:00","title":"No Beat Meeting 212/214National Night Out","eventDetails":"A Night Of Fun and Games\nwith the Community\nNo Meeting","eventUrl":null,"contactDetails":"2nd District Caps \n5101 S. Wentworth \n312-747-5109","location":"AMC Center\nNational Night Out\n4421 S. State Street","modifiedDate":"2016-07-25T12:32:21"},{"calendarId":4,"start":"2016-08-01T19:00:00","end":"2016-08-01T20:00:00","title":"Beat 433 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"13323 S. Green Bay Ave","modifiedDate":"2016-06-01T11:57:20"},{"calendarId":20,"start":"2016-08-01T19:00:00","end":"2016-08-01T20:00:00","title":"2011 Beat Meeting ","eventDetails":"2011 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District \n5400 N. Lincoln","modifiedDate":"2016-02-01T11:46:30"},{"calendarId":25,"start":"2016-07-30T13:00:00","end":"2016-07-30T15:00:00","title":"Basketball Game","eventDetails":"The NW Community Church Teens will play the officers of the 25th District in a friendly game of basketball. Come and join us for the fun!","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090.","location":"Cragin Park - 2611 N. Lockwood Ave.","modifiedDate":"2016-07-08T19:57:50"},{"calendarId":8,"start":"2016-07-28T19:00:00","end":null,"title":"DAC Meeting","eventDetails":"008th District Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W. 63rd Street","modifiedDate":"2015-12-21T12:34:29"},{"calendarId":3,"start":"2016-07-28T19:00:00","end":"2016-07-28T20:00:00","title":"ALL BEATS MEETING","eventDetails":"ALL BEATS MEETING ","eventUrl":null,"contactDetails":"P.O. Hutchinson\n(312) 747-7004\n7040 S. Cottage Grove\nChicago, IL. 60637\n","location":"SOUTH SHORE CULTURAL CENTER\r\n7059 S. SOUTH SHORE DR\r\nCHICAGO, ILL. 60649","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":6,"start":"2016-07-28T18:30:00","end":null,"title":"634 Beat Meeting","eventDetails":"COME OUT AND MEET YOUR BEAT TEAM INCLUDING THE POLICE, THE COMMUNITY, AND OTHER RESIDENTS.","eventUrl":null,"contactDetails":"312-745-3641","location":"New Progressive Baptist Church 9425 S. Perry","modifiedDate":"2015-12-16T15:50:59"},{"calendarId":5,"start":"2016-07-28T18:00:00","end":"2016-07-28T20:00:00","title":"DISTRICT ADVISORY COUNCIL","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:19:52"},{"calendarId":11,"start":"2016-07-28T18:00:00","end":"2016-07-28T19:00:00","title":"Beat Meeting:1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Eloise Mc Coy Village Apt. 4650 W. Van Buren ","modifiedDate":"2015-12-21T13:53:27"},{"calendarId":11,"start":"2016-07-28T18:00:00","end":"2016-07-28T19:00:00","title":"Beat Meeting:1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Eloise Mc Coy Village Apt. 4650 W. Van Buren ","modifiedDate":"2015-12-21T13:42:32"},{"calendarId":22,"start":"2016-07-28T10:30:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room, 1900 W. Monterey","modifiedDate":"2015-12-23T08:42:16"},{"calendarId":12,"start":"2016-07-28T08:30:00","end":"2016-07-28T10:30:00","title":"Food Giveaway ","eventDetails":"The Greater Chicago Food Depository?s Produce mobile will be in the West Town Community giving away FREE fresh fruits, bread & vegetables!! Bring a cart there is usually a lot of food. ","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The event is held at Eckhart Park - 1330 W. Chicago Ave. ","modifiedDate":"2016-04-30T11:10:58"},{"calendarId":17,"start":"2016-07-27T19:30:00","end":"2016-07-27T20:30:00","title":"Beat Meeting for beat 1711and beat 1712","eventDetails":"Combined beat meeting for beat 1711 and beat 1712","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Mayfair Church\n5020 N Pulaski ","modifiedDate":"2016-06-22T16:29:51"},{"calendarId":8,"start":"2016-07-27T19:00:00","end":null,"title":"835 Beat Meeting","eventDetails":"Wrightwood Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"8530 S. Kedzie","modifiedDate":"2015-12-21T12:35:24"},{"calendarId":20,"start":"2016-07-27T19:00:00","end":"2016-07-27T19:00:00","title":"2032 Beat Meeting ","eventDetails":"2032 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Ravenswood Evangelical Church","modifiedDate":"2016-02-09T14:23:10"},{"calendarId":25,"start":"2016-07-27T18:30:00","end":"2016-07-27T19:30:00","title":"Beat Meeting 2523","eventDetails":"Beat Meeting 2523","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"4021 W. Belmont","modifiedDate":"2015-12-10T10:54:07"},{"calendarId":17,"start":"2016-07-27T18:30:00","end":"2016-07-27T19:30:00","title":"1713's Beat Meeting","eventDetails":"bi-monthly beat meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"North Park University\n5000 N. Spaulding ","modifiedDate":"2016-06-22T16:30:00"},{"calendarId":9,"start":"2016-07-27T18:30:00","end":"2016-07-27T19:30:00","title":"914 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chinatown Library\n2100 S. Wentworth Ave.","modifiedDate":"2016-04-14T18:20:38"},{"calendarId":6,"start":"2016-07-27T18:30:00","end":null,"title":"624 Beat Meeting","eventDetails":"COME OUT AND MEET YOUR BEAT TEAM INCLUDING THE POLICE, THE COMMUNITY, AND OTHER RESIDENTS.","eventUrl":null,"contactDetails":"312-745-3641","location":"St. Dorothy Catholic School 450 E. 78th","modifiedDate":"2015-12-16T15:55:51"},{"calendarId":25,"start":"2016-07-27T18:00:00","end":"2016-07-27T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"Every Wednesday in the months of June and July Faith-Based leaders and the community will show their UNITY AGAINST THE VIOLENCE in our community by wearing red and being visible to all.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"1200 N. Keeler\n1200 N. Mason\n1600 N. Lockwood\n5318 W. Diversey","modifiedDate":"2016-06-02T13:50:42"},{"calendarId":12,"start":"2016-07-27T18:00:00","end":"2016-07-27T19:00:00","title":"Beat Meeting 1235","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"The meeting is at Las Americas on the 4th Wednesday of the odd months. ","location":"The meeting is at Las Americas on the 4th Wednesday of the odd months. ","modifiedDate":"2016-04-27T12:13:18"},{"calendarId":3,"start":"2016-07-27T18:00:00","end":"2016-07-27T19:00:00","title":"DAC Meeting","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T11:39:07"},{"calendarId":3,"start":"2016-07-27T14:00:00","end":"2016-07-27T17:00:00","title":"Back to School Event","eventDetails":"Back to School Event","eventUrl":null,"contactDetails":"P.O. Howell \n7040 S. Cottage Grove\nChicago, Ill. 60637\n(312) 747-7004","location":"Parkway Garden Christian Church 6600 S. King Dr. Chicago, Ill.60637\r\n","modifiedDate":"2017-02-14T21:38:39"},{"calendarId":14,"start":"2016-07-27T13:30:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2015-12-09T13:07:03"},{"calendarId":25,"start":"2016-07-27T13:00:00","end":"2016-07-27T14:00:00","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:46:34"},{"calendarId":18,"start":"2016-07-27T11:00:00","end":null,"title":"Senior & Explorer Scouts Bingo","eventDetails":"Senior & Explorer Scouts Bingo","eventUrl":null,"contactDetails":"P.O Ramirez","location":"Flannery Apartments\n1507 N. Clybourn\nChicago, Il 60610","modifiedDate":"2016-06-08T14:38:00"},{"calendarId":15,"start":"2016-07-27T08:30:54","end":"2016-07-27T10:00:54","title":"Business Meeting","eventDetails":"Business owners of the 15th district meet to discuss concerns of crime and ways to improve business related issues.","eventUrl":null,"contactDetails":"15th District CAPS\n5701 W Madison\n312-743-1495","location":"MacArthur's Restaurant\n5412 W Madison","modifiedDate":"2016-05-16T14:18:59"},{"calendarId":15,"start":"2016-07-27T08:30:00","end":"2016-07-27T09:30:00","title":"Business Meeting","eventDetails":"Business Subcommittee Meeting/ Business owners of the 15th District meet and discuss concerns of crime and ways to improve business related issues\n\n","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"MacArthur's Restaurant\n5412 W. Madison\n","modifiedDate":"2016-07-03T07:32:36"},{"calendarId":15,"start":"2016-07-27T06:00:17","end":"2016-07-27T19:00:17","title":"100 Blocks / 100 Churches","eventDetails":"Residents, stakeholders, business owners, faith based and the police gather each Wednesday night at 6pm to hold a positive loitering event and engage the public and at the same time send a message to those in the community who are part of the problem, that their actions will no longer be tolerated","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Laramie & Lake Street\nLaramie & Adams\nMadison & Central\nChicago Ave & Central\nDivision & Central","modifiedDate":"2016-05-10T11:18:26"},{"calendarId":9,"start":"2016-07-26T19:00:00","end":"2016-07-26T20:00:00","title":"922, 923 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Simon Church Hall\n5157 S. California Ave.","modifiedDate":"2016-04-14T18:20:49"},{"calendarId":20,"start":"2016-07-26T19:00:00","end":null,"title":"2031 Beat Meeting ","eventDetails":"2031 Beat Community Meeting\n","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Swedish Covenant Hospital \n2751 W. Winona St.","modifiedDate":"2016-02-01T11:37:01"},{"calendarId":12,"start":"2016-07-26T19:00:00","end":"2016-07-26T20:00:00","title":"Beat Meeting 1211","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is a Norwegian Hospital 1044 N. Francisco on the 4th Tuesday of the odd months. ","modifiedDate":"2016-04-27T12:16:57"},{"calendarId":8,"start":"2016-07-26T19:00:00","end":null,"title":"813/833 Beat Meeting","eventDetails":"West Lawn Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W. 65th St","modifiedDate":"2015-12-21T12:39:56"},{"calendarId":24,"start":"2016-07-26T19:00:00","end":null,"title":"2433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"6000 N. Broadway","modifiedDate":"2016-01-08T14:08:05"},{"calendarId":9,"start":"2016-07-26T19:00:00","end":"2016-07-26T20:00:00","title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"3120 S. Halsted St.","modifiedDate":"2016-05-02T19:44:10"},{"calendarId":24,"start":"2016-07-26T19:00:00","end":null,"title":"2422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Willye White Park 1610 W. Howard","modifiedDate":"2015-12-07T14:52:52"},{"calendarId":25,"start":"2016-07-26T18:30:00","end":"2016-07-26T19:30:00","title":"Beat Meeting 2513","eventDetails":"Beat Meeting 2513","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"6200 W. Bloomingdale","modifiedDate":"2015-12-10T11:24:12"},{"calendarId":6,"start":"2016-07-26T18:30:00","end":null,"title":"614 Beat Meeting","eventDetails":"COME OUT AND MEET YOUR BEAT TEAM INCLUDING THE POLICE, THE COMMUNITY, AND OTHER RESIDENTS.","eventUrl":null,"contactDetails":"312-745-3641","location":"Foster Park Field House\n1440 W. 84th st","modifiedDate":"2015-12-16T15:58:22"},{"calendarId":11,"start":"2016-07-26T18:00:00","end":"2016-07-26T19:00:00","title":"Beat Meeting: 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2015-12-22T14:01:47"},{"calendarId":3,"start":"2016-07-26T14:00:00","end":"2016-07-26T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:51:31"},{"calendarId":1,"start":"2016-07-26T14:00:00","end":"2016-07-26T15:00:00","title":"30 Sector Business Mtg","eventDetails":"Beat meeting with business partners from 30 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"1718 S State\n001 Community Room","modifiedDate":"2015-12-16T12:15:34"},{"calendarId":12,"start":"2016-07-26T12:00:00","end":"2016-07-26T13:30:00","title":"When a Mental Illness Requires Protective Care","eventDetails":"Cook County Elder Justice Center presents, as part of their Senior Enrichment Seminar series, a FREE presentation titled \"When a Mental Illness Requires Protective Care.\" ","eventUrl":null,"contactDetails":"Please call the Cook County Elder Justice Center (312) 603-9233 to reserve your seat.","location":"Daley Center\n50 W Washington Blvd","modifiedDate":"2016-07-13T16:58:39"},{"calendarId":22,"start":"2016-07-26T10:30:00","end":"2016-07-26T11:30:00","title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:43:35"},{"calendarId":5,"start":"2016-07-26T10:00:00","end":"2016-07-26T11:00:00","title":"COURT ADVOCACY","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:15:43"},{"calendarId":17,"start":"2016-07-25T19:00:00","end":"2016-07-25T20:00:00","title":"DAC Meeeting ","eventDetails":"District Advisory Committee Meeting. For established members only - not open to the public.","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski \n17th District Community Room","modifiedDate":"2016-06-22T16:29:00"},{"calendarId":11,"start":"2016-07-25T18:00:26","end":"2016-07-25T19:00:26","title":"District Advisory Committee ","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 11th District.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"011th District Auditorium ","modifiedDate":"2015-12-28T09:29:30"},{"calendarId":6,"start":"2016-07-25T18:00:00","end":null,"title":"Beat Facilitator's/DAC Meeting","eventDetails":"District wide concerns and planning for the entire 6th District","eventUrl":null,"contactDetails":"312-745-3641","location":"006th District Community Room\n7808 S. Halsted","modifiedDate":"2015-12-16T15:48:31"},{"calendarId":15,"start":"2016-07-25T15:00:00","end":"2016-07-25T16:00:00","title":"District Advisory Committee","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 15th district.","eventUrl":null,"contactDetails":"15th District \nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District\nCommunity Room\n5701 W Madison Ave","modifiedDate":"2016-03-24T12:36:03"},{"calendarId":5,"start":"2016-07-23T10:00:00","end":"2016-07-23T12:00:00","title":"YOUTH LAW EXPLORERS","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:09:06"},{"calendarId":5,"start":"2016-07-23T09:00:00","end":"2016-07-23T12:00:00","title":"PEER JURY","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:12:48"},{"calendarId":15,"start":"2016-07-23T08:30:27","end":"2016-07-23T13:00:27","title":"Peer Jury Session","eventDetails":"Youths with misdemeanor cases are presented and sanctioned by their peers","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-13T10:12:17"},{"calendarId":2,"start":"2016-07-23T08:00:00","end":null,"title":"Peer Jury","eventDetails":"Monthly Peer Jury","eventUrl":null,"contactDetails":"P.O. Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth ","modifiedDate":"2016-01-04T15:23:44"},{"calendarId":14,"start":"2016-07-21T19:00:00","end":null,"title":"1431 & 1432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Haas Park\n2402 N. Washtenaw","modifiedDate":"2016-01-06T10:15:16"},{"calendarId":5,"start":"2016-07-21T19:00:00","end":"2016-07-21T20:00:00","title":"BEAT 533 COMMUNITY MEETING","eventDetails":"ALTGELD HEALTH CENTER","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"1029 E 130TH STREET","modifiedDate":"2016-01-26T08:26:31"},{"calendarId":16,"start":"2016-07-21T19:00:00","end":null,"title":"1611 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"St. Thecla\n6333 N. Newcastle","modifiedDate":"2016-02-19T12:48:34"},{"calendarId":11,"start":"2016-07-21T18:30:00","end":"2016-07-21T19:30:00","title":"Beat Meeting:1113/14/15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"St. Michael MBC 4106 W. Monroe ","modifiedDate":"2015-12-21T14:10:19"},{"calendarId":25,"start":"2016-07-21T18:30:00","end":"2016-07-21T19:30:00","title":"Beat Meeting 2533","eventDetails":"Beat Meeting 2533","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:49:53"},{"calendarId":16,"start":"2016-07-21T18:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-02-19T12:48:25"},{"calendarId":3,"start":"2016-07-21T14:00:00","end":"2016-07-21T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n\n","modifiedDate":"2016-01-19T18:53:56"},{"calendarId":25,"start":"2016-07-21T13:30:00","end":"2016-07-21T14:30:00","title":"Business Meeting","eventDetails":"Business Meeting","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2016-02-01T15:28:21"},{"calendarId":11,"start":"2016-07-21T10:00:00","end":"2016-07-21T11:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Senior Subcommittee monthly meeting. ","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312-746-9841\n","location":"Meeting 011th District Auditorium \n3151 W. Harrison \n","modifiedDate":"2015-12-28T08:41:41"},{"calendarId":6,"start":"2016-07-21T10:00:00","end":null,"title":"Domestic Violence Sub-Comm. Meeting","eventDetails":"Meet to discuss topics on Domestic Violence and prevention.","eventUrl":null,"contactDetails":"Officer Hughes 312-745-3610","location":"006th District Community Room","modifiedDate":"2015-12-16T15:50:49"},{"calendarId":17,"start":"2016-07-20T19:30:00","end":"2016-07-20T20:30:00","title":"Beat meeting for beat 1722 and beat 1723","eventDetails":"Combined beat meeting for beat 1722 and beat 1723. ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room","modifiedDate":"2016-06-22T16:29:34"},{"calendarId":20,"start":"2016-07-20T19:00:00","end":null,"title":"2013 Beat Meeting ","eventDetails":"2013 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church \n5437 N. Clark","modifiedDate":"2016-02-01T11:36:38"},{"calendarId":5,"start":"2016-07-20T19:00:00","end":"2016-07-20T20:00:00","title":"BEAT 532 COMMUNITY MEETING","eventDetails":"ST. ANTHONY CHURCH","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"11533 S PRAIRIE","modifiedDate":"2016-01-26T08:27:47"},{"calendarId":14,"start":"2016-07-20T19:00:00","end":null,"title":"1423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Casa Central\n1343 N. California","modifiedDate":"2016-01-06T10:15:34"},{"calendarId":1,"start":"2016-07-20T19:00:00","end":"2016-07-20T20:00:00","title":"BT 133 Residential Mtg","eventDetails":"Beat meeting for residents from BT 133","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"125 E 26th St\nTrinity Episcopal Church","modifiedDate":"2015-12-16T12:15:58"},{"calendarId":16,"start":"2016-07-20T19:00:00","end":null,"title":"1623 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.\nCommunity Room","modifiedDate":"2016-02-19T12:48:43"},{"calendarId":19,"start":"2016-07-20T19:00:00","end":"2016-07-20T20:00:00","title":"Beat 1921, 1922, & 1931","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"19th Police Auditorium\n2452 W. Belmont","modifiedDate":"2016-05-02T11:36:25"},{"calendarId":8,"start":"2016-07-20T19:00:00","end":null,"title":"823/825 Beat Meeting","eventDetails":"008th District Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W. 63rd Street","modifiedDate":"2015-12-21T12:37:25"},{"calendarId":12,"start":"2016-07-20T19:00:00","end":"2016-07-20T20:00:00","title":"Beat Meeting 1213 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is a Northwest Settlement 1012 N. Noble on the 3rd Wednesday of the odd months. ","modifiedDate":"2016-04-27T12:16:36"},{"calendarId":22,"start":"2016-07-20T19:00:00","end":"2016-07-20T20:00:00","title":"Beat 2234 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Station\n1900 W Monterey","modifiedDate":"2015-12-03T11:16:01"},{"calendarId":6,"start":"2016-07-20T18:30:00","end":null,"title":"623 Beat Meeting","eventDetails":"COME OUT AND MEET YOUR BEAT TEAM INCLUDING THE POLICE, THE COMMUNITY, AND OTHER RESIDENTS.","eventUrl":null,"contactDetails":"312-745-3641","location":"Urban Partnership Bank","modifiedDate":"2015-12-16T15:57:14"},{"calendarId":17,"start":"2016-07-20T18:30:00","end":"2016-07-20T19:30:00","title":"1724's Beat Meeting ","eventDetails":"Bi-monthly beat meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Horner Park\n2741 W. Montrose","modifiedDate":"2016-06-22T16:30:22"},{"calendarId":2,"start":"2016-07-20T18:30:00","end":null,"title":"Beat Meeting 233/234/235","eventDetails":"Citizens and CPD come together to talk about community issues","eventUrl":null,"contactDetails":"2nd District Caps office\n5101 S. Wentworth \n312-747-5109","location":"Treasure Island\n1526 E. 55th Street","modifiedDate":"2016-06-24T11:36:43"},{"calendarId":25,"start":"2016-07-20T18:30:00","end":"2016-07-20T19:30:00","title":"Beat Meeting 2515","eventDetails":"Beat Meeting 2515","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2310 N. Lorel","modifiedDate":"2015-12-10T11:20:48"},{"calendarId":15,"start":"2016-07-20T18:00:17","end":"2016-07-20T19:00:17","title":"100 Blocks / 100 Churches","eventDetails":"Residents, stakeholders, business owners, faith based and the police gather each Wednesday night at 6pm to hold a positive loitering event and engage the public and at the same time send a message to those in the community who are part of the problem, that their actions will no longer be tolerated","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Laramie & Lake Street\nLaramie & Adams\nMadison & Central\nChicago Ave & Central\nDivision & Central","modifiedDate":"2016-05-10T11:36:23"},{"calendarId":10,"start":"2016-07-20T18:00:00","end":"2016-07-20T19:00:00","title":"Beat 1013 Community CAPs Meeting","eventDetails":"CAPs Beat meeting for Beat 1013","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Epiphany Church\n2524 S. Keeler Ave\nRectory","modifiedDate":"2016-06-03T10:15:45"},{"calendarId":9,"start":"2016-07-20T18:00:00","end":"2016-07-20T19:00:00","title":"925 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Gabriel Church Hall\n4500 S. Wallace St.","modifiedDate":"2016-04-14T18:21:17"},{"calendarId":25,"start":"2016-07-20T18:00:00","end":"2016-07-20T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"Every Wednesday in the months of June and July Faith-Based leaders and the community will show their UNITY AGAINST THE VIOLENCE in our community by wearing red and being visible to all.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"1200 N. Keeler\n1200 N. Mason\n1600 N. Lockwood\n5318 W. Diversey","modifiedDate":"2016-06-02T13:51:01"},{"calendarId":25,"start":"2016-07-20T17:30:00","end":"2016-07-20T18:00:00","title":"Outdoor Roll Call","eventDetails":"Residents of the 5100 block of W. Concord and nearby blocks are invited to come out, meet the officers of the 25th District, and stand together in unity to let the gangs know they are not welcome here!","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"5131 W. Concord Ave.","modifiedDate":"2016-07-18T11:51:10"},{"calendarId":5,"start":"2016-07-20T13:00:00","end":"2016-07-20T14:00:00","title":"SENIOR ADVISORY COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:10:21"},{"calendarId":18,"start":"2016-07-20T09:30:00","end":null,"title":"Coffee with the Commander","eventDetails":"Discuss issues in the 018 District over a cup of coffee with Commander Bauer.","eventUrl":null,"contactDetails":"P.O Schenk","location":"Eva's Cafe\n1447 N. Sedgwick\nChicago, Il 60610","modifiedDate":"2016-07-13T15:16:57"},{"calendarId":2,"start":"2016-07-19T22:30:00","end":null,"title":"Senior Meeting","eventDetails":"Senior Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:40:12"},{"calendarId":5,"start":"2016-07-19T19:00:00","end":"2016-07-19T20:00:00","title":"BEAT 531 COMMUNITY MEETING","eventDetails":"GREEN STONE UNITED METHODIST","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"11211 S ST. LAWRENCE","modifiedDate":"2016-01-26T08:28:52"},{"calendarId":1,"start":"2016-07-19T19:00:00","end":"2016-07-19T20:00:00","title":"BT 131/132 Residential ","eventDetails":"Beat meeting for residents from BT's 131/132","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"1718 S State\n001 Community Room","modifiedDate":"2015-12-16T12:16:17"},{"calendarId":24,"start":"2016-07-19T19:00:00","end":null,"title":"2424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Pottawatomie Park 7340 N. Rogers","modifiedDate":"2016-01-08T11:26:35"},{"calendarId":12,"start":"2016-07-19T19:00:00","end":"2016-07-19T20:00:00","title":"Beat Meeting 1223","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Westhaven Park Community Room 1939 W. Lake St. on the 3rd Tuesday of the odd months","modifiedDate":"2016-04-27T12:15:20"},{"calendarId":8,"start":"2016-07-19T19:00:00","end":null,"title":"811 Beat Meeting","eventDetails":"Good Shepherd Church","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5550 S. Merrimac","modifiedDate":"2015-12-21T12:41:34"},{"calendarId":22,"start":"2016-07-19T19:00:00","end":"2016-07-19T20:00:00","title":"Beat 2222 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Brainerd Park\n1246 W 92nd St","modifiedDate":"2015-12-03T11:20:20"},{"calendarId":19,"start":"2016-07-19T19:00:00","end":"2016-07-19T20:00:00","title":"Beat 1911 & 1912","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Sulzer Library\n4455 N. Lincoln","modifiedDate":"2016-05-02T11:36:43"},{"calendarId":16,"start":"2016-07-19T19:00:00","end":null,"title":"1633 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Merrimac Park\n6343 W. Irving Park Rd.","modifiedDate":"2016-02-19T12:49:24"},{"calendarId":6,"start":"2016-07-19T18:30:00","end":null,"title":"613 Beat Meeting","eventDetails":"COME OUT AND MEET YOUR BEAT TEAM INCLUDING THE POLICE, THE COMMUNITY, AND OTHER RESIDENTS.","eventUrl":null,"contactDetails":"312-745-3641","location":"Gresham Elementary\n8524 S. Green","modifiedDate":"2015-12-16T15:58:41"},{"calendarId":25,"start":"2016-07-19T18:30:00","end":"2016-07-19T19:30:00","title":"Beat Meeting 2525","eventDetails":"Beat Meeting 2525","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2036 N. Avers","modifiedDate":"2015-12-10T10:52:20"},{"calendarId":25,"start":"2016-07-19T18:30:00","end":"2016-07-19T19:30:00","title":"Beat Meeting 2531","eventDetails":"Beat Meeting 2531","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:51:32"},{"calendarId":2,"start":"2016-07-19T18:30:00","end":null,"title":"Beat Meeting 221/223","eventDetails":"Citizens and CPD discuss issues and concerns occurring on the beat.","eventUrl":null,"contactDetails":"2nd District Caps office\n5101 S. Wentworth\n312-747-5109","location":"King Center\n4314 S. Cottage Grove","modifiedDate":"2016-06-24T11:35:41"},{"calendarId":9,"start":"2016-07-19T18:00:00","end":"2016-07-19T19:00:00","title":"932, 934, 935 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Westhaven Senior Homes\n850 W. Garfield Blvd","modifiedDate":"2016-04-14T18:21:25"},{"calendarId":11,"start":"2016-07-19T18:00:00","end":"2016-07-19T19:00:00","title":"Beat Meeting:1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Homan Square Community Center 3559 W. Arthington","modifiedDate":"2015-12-21T15:05:52"},{"calendarId":16,"start":"2016-07-19T13:00:00","end":null,"title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-02-19T12:49:14"},{"calendarId":11,"start":"2016-07-19T11:00:00","end":"2016-07-19T12:00:00","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"TBA","modifiedDate":"2016-01-26T14:07:32"},{"calendarId":17,"start":"2016-07-19T11:00:00","end":"2016-07-19T13:00:00","title":"Senior Meeting ","eventDetails":"Monthly Senior Subcommittee Meeting. Please contact the CAPS Office for details.","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N Pulaski\n17th District Community Room","modifiedDate":"2016-06-22T16:31:00"},{"calendarId":7,"start":"2016-07-18T13:00:00","end":"2016-07-18T15:00:00","title":"Senior Advisory Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"Tolton Manor\n6345 S. Stewart\n","modifiedDate":"2016-01-20T16:16:39"},{"calendarId":25,"start":"2016-07-16T13:00:00","end":"2016-07-16T15:00:00","title":"Explorer Scouts Meeting","eventDetails":"Monthly meeting of our Explorer Scout Post.","eventUrl":null,"contactDetails":"25th District Community Policing Office: 312-746-5090","location":"25th District - 5555 W. Grand Ave.","modifiedDate":"2016-07-18T11:51:26"},{"calendarId":18,"start":"2016-07-16T10:00:00","end":null,"title":"Peer Jury & Explorer Scouts","eventDetails":"Peer Jury & Explorer Scouts","eventUrl":null,"contactDetails":"P.O Ferguson","location":"018th District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-06-08T14:38:40"},{"calendarId":15,"start":"2016-07-16T10:00:00","end":"2016-07-16T12:00:00","title":"Block Club Training","eventDetails":"Block Club Training is provided to residents who are concerned and care about their communities and share information, identify concerns and act collectively to address their concerns","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave","modifiedDate":"2016-01-13T11:14:19"},{"calendarId":15,"start":"2016-07-16T10:00:00","end":"2016-07-16T12:00:00","title":"Block Club Training","eventDetails":"Community Organizer and residents partner on solving chronic crime and disorders and strategize together for solutions as block clubs and neighborhood watches are created.","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"15th District\t\n5701 W. Madison\n","modifiedDate":"2016-07-03T07:32:52"},{"calendarId":3,"start":"2016-07-16T09:00:00","end":"2016-07-16T10:00:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"51st Wentworth","modifiedDate":"2016-01-19T18:57:33"},{"calendarId":12,"start":"2016-07-16T09:00:00","end":"2016-07-16T11:00:00","title":"Police Explorer Meeting ","eventDetails":"The program targets youths 12 to 20 years of age. The uniform, (shirt, patch and pants) will be provided by the 12th District Community Policing Office. The Explorer will receive a uniform after the Explorer attends 6 meetings and signs a letter of commitment. Anyone who wants to sign up is welcome. Please contact the Community Policing Office for further information.","eventUrl":null,"contactDetails":" 12th District Community Policing Office \n312-746-8306\n","location":"The program targets youths 12 to 20 years of age. The uniform, (shirt, patch and pants) will be provided by the 12th District Community Policing Office. The Explorer will receive a uniform after the Explorer attends 6 meetings and signs a letter of commitment. Anyone who wants to sign up is welcome. Please contact the Community Policing Office for further information.","modifiedDate":"2016-05-26T13:41:10"},{"calendarId":25,"start":"2016-07-15T17:00:00","end":"2016-07-15T19:00:00","title":"Smoke-Out","eventDetails":"Join us as we celebrate Community and Police working together to make the block safe. Free hot dogs and drinks for all !","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"4100 W. Potomac","modifiedDate":"2016-07-11T14:25:37"},{"calendarId":7,"start":"2016-07-15T10:00:00","end":"2016-07-15T12:00:00","title":"DOMESTIC VIOLENCE WALK","eventDetails":"WALK STARTS FROM THE 007TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"007TH DISTRICT\n1438 W. 63RD STREET","modifiedDate":"2016-01-20T16:18:36"},{"calendarId":8,"start":"2016-07-14T19:00:00","end":null,"title":"814 Beat Meeting","eventDetails":"Vittum Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5010 W. 50th Street","modifiedDate":"2015-12-21T12:39:06"},{"calendarId":4,"start":"2016-07-14T19:00:00","end":"2016-07-14T20:00:00","title":"Beat 421 Caps Meeting","eventDetails":"Labor of Love Apostolic Church","eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"2800 E. 79th St.","modifiedDate":"2016-06-01T11:49:01"},{"calendarId":20,"start":"2016-07-14T19:00:00","end":null,"title":"2023 Beat Meeting","eventDetails":"2023 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Kenmore Plaza\n5225 N. Kenmore","modifiedDate":"2016-02-01T11:36:53"},{"calendarId":1,"start":"2016-07-14T19:00:00","end":"2016-07-14T20:00:00","title":"10 Sector Residential meeting","eventDetails":"Beat meeting for residents from the 10 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"400 E Randolph\nCondo Bldg","modifiedDate":"2015-12-16T12:16:42"},{"calendarId":5,"start":"2016-07-14T19:00:00","end":"2016-07-14T20:00:00","title":"BEAT 524 COMMUNITY MEETING","eventDetails":"LUTHERAN CHURCH OF THE HOLY SPIRIT","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"1335 W 115TH STREET","modifiedDate":"2016-01-26T08:29:51"},{"calendarId":22,"start":"2016-07-14T19:00:00","end":"2016-07-14T20:00:00","title":"Beat 2213 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Ridge Park\n9625 S Longwood Dr","modifiedDate":"2015-12-03T11:22:44"},{"calendarId":12,"start":"2016-07-14T19:00:00","end":"2016-07-14T20:00:00","title":"Beat Meeting 1215","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the Goldblatt's Building 1615 W. Chicago Ave. on the 2nd Thursday of the odd months. ","modifiedDate":"2016-04-27T12:15:59"},{"calendarId":6,"start":"2016-07-14T18:30:00","end":null,"title":"632 Beat Meeting","eventDetails":"Tuley Park Field House","eventUrl":null,"contactDetails":"312-745-3641","location":"COME OUT AND MEET YOUR BEAT TEAM INCLUDING THE POLICE, THE COMMUNITY, AND OTHER RESIDENTS.","modifiedDate":"2015-12-16T15:51:29"},{"calendarId":2,"start":"2016-07-14T18:30:00","end":null,"title":"Beat Meeting 225/231/232","eventDetails":"Citizens and CPD come together to talk about community issues","eventUrl":null,"contactDetails":"2nd District Caps office\n5101 S. Wentworth\n312-747-5109","location":"Coppin AME Church\n5627 S. Michigan Ave\n","modifiedDate":"2016-06-24T11:36:15"},{"calendarId":18,"start":"2016-07-14T18:30:00","end":null,"title":"10 Sector Beat Meeting","eventDetails":"10 Sector Beat Community Meeting","eventUrl":null,"contactDetails":"P.O Schenk","location":"St. James Lutheran Church & School\n2101 N. Fremont\nChicago, Il 60614 ","modifiedDate":"2016-06-08T14:39:06"},{"calendarId":6,"start":"2016-07-14T18:30:00","end":null,"title":"633 Beat Meeting","eventDetails":"COME OUT AND MEET YOUR BEAT TEAM INCLUDING THE POLICE, THE COMMUNITY, AND OTHER RESIDENTS.","eventUrl":null,"contactDetails":"312-745-3641","location":"Tuley Park Field House","modifiedDate":"2015-12-16T15:51:12"},{"calendarId":14,"start":"2016-07-14T18:30:00","end":null,"title":"1413 & 1414 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Public Library-Logan Square\n3030 W. Fullerton","modifiedDate":"2016-01-06T10:16:41"},{"calendarId":10,"start":"2016-07-14T18:00:00","end":"2016-07-14T19:00:00","title":"Beat 1033 Community CAPs Meeting","eventDetails":"Beat 1033 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Little Village Library\n2311 S. Kedzie","modifiedDate":"2016-06-03T10:25:39"},{"calendarId":11,"start":"2016-07-14T18:00:00","end":"2016-07-14T19:00:00","title":"Beat Meeting:1122/23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Legler Chicago Public Library 115 S. Pulaski","modifiedDate":"2015-12-21T14:36:34"},{"calendarId":1,"start":"2016-07-14T15:00:00","end":"2016-07-14T16:00:00","title":"District Advisory Committee ","eventDetails":null,"eventUrl":null,"contactDetails":"001st District CAPS office 312-745-4381","location":"1718 S. State Street\nCommunity Room ","modifiedDate":"2016-05-09T15:39:58"},{"calendarId":12,"start":"2016-07-14T12:00:00","end":"2016-07-14T13:00:00","title":"NO District Advisory Committee Meeting:","eventDetails":"NO MEETING ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":null,"modifiedDate":"2016-06-02T12:29:15"},{"calendarId":5,"start":"2016-07-14T11:00:00","end":"2016-07-14T12:00:00","title":"PASTORAL COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:11:56"},{"calendarId":6,"start":"2016-07-14T10:00:00","end":null,"title":"Fatih Based Meeting","eventDetails":"Join the members of the Faith based community in projects joining us all together.","eventUrl":null,"contactDetails":"Officer Jones 312-745-3641","location":"TBA","modifiedDate":"2015-12-16T15:50:04"},{"calendarId":4,"start":"2016-07-13T19:00:00","end":"2016-07-13T20:00:00","title":"Beat 411 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"1526 E. 84th St.","modifiedDate":"2016-06-01T11:49:24"},{"calendarId":17,"start":"2016-07-13T19:00:00","end":"2016-07-13T20:00:00","title":"Beat Meeting for beat 1732 and beat 1733","eventDetails":"Combined beat meeting for beat 1732 and beat 1733","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"3546 W Addison \nAthletic Field Park House","modifiedDate":"2016-06-22T16:30:38"},{"calendarId":8,"start":"2016-07-13T19:00:00","end":null,"title":"812 Beat Meeting","eventDetails":"Clearing Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6423 W. 63rd Place","modifiedDate":"2015-12-21T12:40:46"},{"calendarId":1,"start":"2016-07-13T19:00:00","end":"2016-07-13T20:00:00","title":"20 Sector Residential","eventDetails":"Beat meeting for residents from 20 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"525 S State\nUniversity Center","modifiedDate":"2015-12-16T12:17:01"},{"calendarId":5,"start":"2016-07-13T19:00:00","end":"2016-07-13T20:00:00","title":"BEAT 523 COMMUNITY MEETING","eventDetails":"ST. PETER & PAUL","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"12425 S HALSTED","modifiedDate":"2016-01-26T08:33:01"},{"calendarId":9,"start":"2016-07-13T19:00:00","end":"2016-07-13T20:00:00","title":"912 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Maurice Church Hall\n3625 S. Hoyne Ave.","modifiedDate":"2016-04-14T18:21:34"},{"calendarId":22,"start":"2016-07-13T18:45:00","end":"2016-07-13T19:45:00","title":"Beat 2232/2233 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Fernwood Park\n10438 S Wallace","modifiedDate":"2015-12-03T11:17:27"},{"calendarId":2,"start":"2016-07-13T18:30:00","end":null,"title":"Beat Meeting 213/215/224","eventDetails":"Citizens and CPD discuss issues and concerns occurring on the beat.","eventUrl":null,"contactDetails":"2nd District Caps Office\n5101 S. Wentworth\n312-747-5109","location":"St. Elizabeth Church \n4058 S. Michigan Ave","modifiedDate":"2016-06-24T11:35:27"},{"calendarId":14,"start":"2016-07-13T18:30:00","end":null,"title":"1421 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Public Library-Humboldt Park\n1605 N. Troy","modifiedDate":"2016-01-06T10:15:53"},{"calendarId":15,"start":"2016-07-13T18:00:00","end":"2016-07-13T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"Residents, stakeholders, business owners, faith based and the police gather each Wednesday to hold a positive loitering event and engage the public and at the same time send a message to those in the community who are part of the problem, that their actions will no longer be tolerated","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Laramie & Lake Street\nLaramie & Adams\nMadison & Central\nChicago Ave & Central\nDivision & Central","modifiedDate":"2016-05-16T14:56:09"},{"calendarId":25,"start":"2016-07-13T18:00:00","end":"2016-07-13T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"Every Wednesday in the months of June and July Faith-Based leaders and the community will show their UNITY AGAINST THE VIOLENCE in our community by wearing red and being visible to all.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"1200 N. Keeler\n1200 N. Mason\n1600 N. Lockwood\n5318 W. Diversey","modifiedDate":"2016-06-02T13:51:23"},{"calendarId":11,"start":"2016-07-13T18:00:00","end":"2016-07-13T19:00:00","title":"Court Advocacy ","eventDetails":"Court Advocacy Meeting","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:24:59"},{"calendarId":12,"start":"2016-07-13T18:00:00","end":"2016-07-13T19:00:00","title":"Beat Meeting 1231","eventDetails":"The meeting is at Academy Square, 318 S. Throop on the 2nd Wednesday of the odd months","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Academy Square, 318 S. Throop on the 2nd Wednesday of the odd months. ","modifiedDate":"2016-04-27T12:14:16"},{"calendarId":18,"start":"2016-07-13T15:30:00","end":null,"title":"30 Sector Hospitality Meeting","eventDetails":"30 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"Highline\n169 W. Kinzie\nChicago, Il 60654","modifiedDate":"2016-06-08T14:39:42"},{"calendarId":22,"start":"2016-07-13T13:30:00","end":null,"title":"Court Advocacy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:58:03"},{"calendarId":14,"start":"2016-07-13T13:30:00","end":null,"title":"Domestic Violence Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2015-12-09T13:10:01"},{"calendarId":6,"start":"2016-07-13T11:00:00","end":null,"title":"Senior Meeting","eventDetails":"Meet with the Seniors and be apart of planning and fun filled events.","eventUrl":null,"contactDetails":"Officer Hughes 312-745-3641","location":"6th District Community Room. 7808 S.Halsted","modifiedDate":"2015-12-16T15:50:19"},{"calendarId":7,"start":"2016-07-13T09:30:00","end":"2016-07-13T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722 ","location":"007th District Police Station\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:14:07"},{"calendarId":22,"start":"2016-07-12T19:00:00","end":"2016-07-12T20:00:00","title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Woodson Library\n9525 S Halsted","modifiedDate":"2015-12-03T11:19:03"},{"calendarId":16,"start":"2016-07-12T19:00:00","end":null,"title":"1613 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Oriole Park\n5430 N. Olcott","modifiedDate":"2016-02-19T12:49:36"},{"calendarId":17,"start":"2016-07-12T19:00:00","end":"2016-07-12T20:00:00","title":"1731's Beat Meeting ","eventDetails":"Bi monthly Beat Meeting ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Kilbourn Park\n3501 N. Kilbourn ","modifiedDate":"2016-05-23T13:07:21"},{"calendarId":5,"start":"2016-07-12T19:00:00","end":"2016-07-12T20:00:00","title":"BEAT 522 COMMUNITY MEETING","eventDetails":"GREATER CANAAN MBC","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"35 W 119TH STREET","modifiedDate":"2016-01-26T08:36:07"},{"calendarId":4,"start":"2016-07-12T19:00:00","end":"2016-07-12T20:00:00","title":"Beat 423 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"8930 S. Muskegon Ave.","modifiedDate":"2016-06-01T11:49:45"},{"calendarId":8,"start":"2016-07-12T19:00:00","end":null,"title":"831/832 Beat Meeting","eventDetails":"Marquette Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6734 S. Kedzie","modifiedDate":"2015-12-21T12:36:37"},{"calendarId":24,"start":"2016-07-12T19:00:00","end":null,"title":"2432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"24th District 6464 N. Clark","modifiedDate":"2016-01-08T14:08:56"},{"calendarId":9,"start":"2016-07-12T18:30:00","end":"2016-07-12T19:30:00","title":"913, 915 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Barbara's Church Hall, 2853 S. Throop St.","modifiedDate":"2016-06-15T17:48:14"},{"calendarId":2,"start":"2016-07-12T18:30:00","end":null,"title":"Beat Meeting 222","eventDetails":"Citizens and CPD come together to talk about community issues","eventUrl":null,"contactDetails":"2nd District Caps office\n5101 S. Wentworth \n312-747-5109","location":"Kennicott Park\n4434 S. Lake Park\n","modifiedDate":"2016-06-24T11:35:55"},{"calendarId":18,"start":"2016-07-12T18:30:00","end":null,"title":"1821,22,23 Beat Meeting","eventDetails":"1821,22,23 Beat Community Meeting","eventUrl":null,"contactDetails":"P.O Schenk","location":"018th District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-06-08T14:40:11"},{"calendarId":6,"start":"2016-07-12T18:30:00","end":null,"title":"612 Beat Meeting","eventDetails":"COME OUT AND MEET YOUR BEAT TEAM INCLUDING THE POLICE, THE COMMUNITY, AND OTHER RESIDENTS.","eventUrl":null,"contactDetails":"312-745-3641","location":"Southside tabernacle Church 7724 S. Racine","modifiedDate":"2015-12-16T15:58:53"},{"calendarId":15,"start":"2016-07-12T18:30:00","end":"2016-07-12T19:30:00","title":"Beat 1511/24 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"Hope Community Church\n5900 W. Iowa\n","modifiedDate":"2016-07-03T07:33:05"},{"calendarId":11,"start":"2016-07-12T18:30:00","end":"2016-07-12T19:30:00","title":"Beat Meeting: 1124/25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"JLM Abundant Life Center 2622 W. Jackson","modifiedDate":"2015-12-22T14:08:31"},{"calendarId":19,"start":"2016-07-12T18:30:00","end":"2016-07-12T19:30:00","title":"Beat 1933","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Illinois Masonic\n836 W. Wellington","modifiedDate":"2016-05-02T11:36:07"},{"calendarId":10,"start":"2016-07-12T18:00:00","end":"2016-07-12T19:00:00","title":"Beat 1021 Commuinity CAPs Meeting","eventDetails":"Beat 1012 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs- 312-747-7190","location":"Carey Tercentenary\n1448 S, Homan Ave","modifiedDate":"2016-06-03T10:14:36"},{"calendarId":12,"start":"2016-07-12T18:00:00","end":"2016-07-12T19:00:00","title":"Beat Meeting 1233","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the 12th District Station Community Room, 1412 S. Blue island on the 2nd Tuesday of the odd months","modifiedDate":"2016-04-27T12:13:54"},{"calendarId":6,"start":"2016-07-12T18:00:00","end":null,"title":"Court Advocacy Meeting","eventDetails":"Track and learn about the court process, civil and criminal. ","eventUrl":null,"contactDetails":"312-745-3641","location":"6th District Police station 7808 S. Halsted.","modifiedDate":"2015-12-16T15:47:55"},{"calendarId":2,"start":"2016-07-12T15:00:00","end":null,"title":"Domestic Violence Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:17:27"},{"calendarId":7,"start":"2016-07-12T12:00:00","end":"2016-07-12T13:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007TH District Police Station\n1438 W. 63rd Station","modifiedDate":"2016-01-20T16:15:23"},{"calendarId":22,"start":"2016-07-12T10:00:00","end":"2016-07-12T11:00:00","title":"Clergy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-22T08:33:19"},{"calendarId":6,"start":"2016-07-12T10:00:00","end":null,"title":"Business Sub Committee","eventDetails":"Meet and join the Business group as we plan for a better business community.","eventUrl":null,"contactDetails":"Officer Jones 312-745-3641","location":"TBA","modifiedDate":"2016-07-12T15:39:49"},{"calendarId":19,"start":"2016-07-11T19:00:00","end":"2016-07-11T20:00:00","title":"Beat 1932","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064\n","location":"New Life Church\n1110 W. Lill","modifiedDate":"2016-05-02T11:36:16"},{"calendarId":2,"start":"2016-07-11T18:30:00","end":null,"title":"Beat Meeting 211","eventDetails":"Citizens and CPD come together to talk about community issues.","eventUrl":null,"contactDetails":"2nd District CAPS Office\n5201 S. Wentworth\n312-747-5109","location":"College of Optometry\n3240 S. Indiana","modifiedDate":"2016-06-24T11:34:54"},{"calendarId":15,"start":"2016-07-11T15:00:37","end":"2016-07-11T16:00:37","title":"Domestic Violence Meeting","eventDetails":"Domestic violence members discuss and plan upcoming events for domestic violence victims / survivors.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-12T16:23:42"},{"calendarId":25,"start":"2016-07-11T12:30:00","end":"2016-07-11T13:30:00","title":"25th District Youth Council Meeting","eventDetails":"Youth members of the community aged 15-24 and work, live, or go to school in the 25th District are invited to a sit-down with the Leadership of the 25th District and to make their voices heard.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"25th District Community Room\n5555 W. Grand Ave.\nChicago, IL 60639","modifiedDate":"2016-07-04T14:52:47"},{"calendarId":6,"start":"2016-07-10T07:00:00","end":null,"title":"006th District Car Show and Annual Picnic","eventDetails":"Annual car & motorcycle\nshow and Picnic 7am-Dusk\nALL invited","eventUrl":null,"contactDetails":"006th District Caps office (312)745-3641","location":"136th Ashland\nRiverdale Illinois","modifiedDate":"2016-07-12T15:39:59"},{"calendarId":17,"start":"2016-07-09T10:00:00","end":"2016-07-09T14:00:00","title":"Unity in the Community","eventDetails":"Unity in the Community Summer Party. ","eventUrl":null,"contactDetails":"La Villa Restaurant\n(773) 283-7980","location":"3638 N Pulaski","modifiedDate":"2016-05-23T13:05:27"},{"calendarId":5,"start":"2016-07-09T10:00:00","end":"2016-07-09T12:00:00","title":"YOUTH LAW EXPLORERS","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:09:19"},{"calendarId":14,"start":"2016-07-09T10:00:00","end":null,"title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T10:13:46"},{"calendarId":16,"start":"2016-07-09T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Greg Dial\n(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-02-19T12:49:44"},{"calendarId":5,"start":"2016-07-07T19:00:00","end":"2016-07-07T20:00:00","title":"BEAT 513 COMMUNITY MEETING","eventDetails":"ROSELAND CHRISTIAN MINISTRIES","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"10858 S MICHIGAN AVE","modifiedDate":"2016-01-26T08:37:58"},{"calendarId":8,"start":"2016-07-07T19:00:00","end":null,"title":"834 Beat Meeting","eventDetails":"Bogan High School\n","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3939 W. 79th Street","modifiedDate":"2015-12-21T12:36:02"},{"calendarId":4,"start":"2016-07-07T19:00:00","end":"2016-07-07T20:00:00","title":"Beat 431 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"2255 E. 103rd St.","modifiedDate":"2016-06-01T11:50:08"},{"calendarId":16,"start":"2016-07-07T19:00:00","end":null,"title":"1631","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Hiawatha Park\n8029 W. Forest Preserve Drive","modifiedDate":"2016-02-19T12:49:53"},{"calendarId":15,"start":"2016-07-07T18:30:00","end":"2016-07-07T19:30:00","title":"Beat 1512/23 CAPS Meeting","eventDetails":"Residents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. ","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"PCC Family Health Ctr.\n5425 W. Lake St.\n","modifiedDate":"2016-07-03T07:33:14"},{"calendarId":18,"start":"2016-07-07T18:30:00","end":null,"title":"30 Sector Beat Meeting","eventDetails":"30 Sector Beat Community Meeting","eventUrl":null,"contactDetails":"P.O Schenk","location":"Access Living\n115 W. Chicago\nChicago, Il 60654","modifiedDate":"2016-06-08T14:40:48"},{"calendarId":6,"start":"2016-07-07T18:30:00","end":null,"title":"631 Beat Meeting","eventDetails":"COME OUT AND MEET YOUR BEAT TEAM INCLUDING THE POLICE, THE COMMUNITY, AND OTHER RESIDENTS.","eventUrl":null,"contactDetails":"312-745-3641","location":"Chatham Fields Lutheran Church 8050 S. St. Lawrence","modifiedDate":"2015-12-16T15:51:51"},{"calendarId":25,"start":"2016-07-07T18:30:00","end":"2016-07-07T19:30:00","title":"Beat Meeting 2511","eventDetails":"Beat Meeting 2511","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"2833 N. Nordica","modifiedDate":"2015-12-10T11:26:12"},{"calendarId":10,"start":"2016-07-07T18:00:00","end":"2016-07-07T19:00:00","title":"1011/1012 Community CAPs Meeting","eventDetails":"CAPs Meeting for Beats 1011 and 1012","eventUrl":null,"contactDetails":"CAPS 312-747-7190","location":"Clair House\n1350 S. Harding","modifiedDate":"2016-06-03T10:15:53"},{"calendarId":11,"start":"2016-07-07T18:00:00","end":"2016-07-07T19:00:00","title":"Beat Meeting: 1112/21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":" CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2015-12-14T15:26:13"},{"calendarId":14,"start":"2016-07-07T17:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T10:14:04"},{"calendarId":12,"start":"2016-07-07T14:00:00","end":"2016-07-07T18:00:00","title":"Shredding Event ","eventDetails":"Bring sensitive documents to the 12th District and have them shredded for FREE! You can bring up to 5 boxes. ","eventUrl":null,"contactDetails":"CAPS Office \n312-746-8306","location":"12th District Station \n1412 S. Blue Island in the rear parking lot. ","modifiedDate":"2016-06-15T14:50:12"},{"calendarId":22,"start":"2016-07-07T14:00:00","end":null,"title":"Diversity and Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:56:31"},{"calendarId":1,"start":"2016-07-07T14:00:00","end":"2016-07-07T15:00:00","title":"20 Sector Business","eventDetails":"Beat meeting for business partners from 20 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"181 W Madison\nNorthern Trust Bank","modifiedDate":"2015-12-15T17:14:06"},{"calendarId":3,"start":"2016-07-07T13:00:00","end":"2016-07-07T14:00:00","title":"003rd District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:07:34"},{"calendarId":11,"start":"2016-07-07T11:00:00","end":"2016-07-07T12:00:00","title":"Domestic Violence Subcommittee","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312.746.9841\n","location":"011th District (Auditorium)\n3151 W. Harrison\n","modifiedDate":"2015-12-22T15:08:37"},{"calendarId":5,"start":"2016-07-07T10:00:00","end":"2016-07-07T11:00:00","title":"DOMESTIC VIOLENCE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-27T11:14:06"},{"calendarId":12,"start":"2016-07-06T19:00:00","end":"2016-07-06T20:00:00","title":"Beat Meeting 1221 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the Smith Park 2526 W. Grand Ave. on the1st Wednesday of the odd months. ","modifiedDate":"2016-04-27T12:15:39"},{"calendarId":8,"start":"2016-07-06T19:00:00","end":null,"title":"815/821 Beat Meeting","eventDetails":"St. Bruno's Hall","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4839 S. Harding","modifiedDate":"2015-12-21T12:38:18"},{"calendarId":16,"start":"2016-07-06T19:00:00","end":null,"title":"1621 Beat Meeting","eventDetails":"Come develop strategies with police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"First Church of Forest Glen\n5400 N. Lawler","modifiedDate":"2016-02-19T12:50:01"},{"calendarId":5,"start":"2016-07-06T19:00:00","end":"2016-07-06T20:00:00","title":"BEAT 512 COMMUNITY MEETING","eventDetails":"CHRISTIAN MISSIONARY BAPTIST CHURCH","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"132 W 104TH STREET","modifiedDate":"2016-01-26T08:39:16"},{"calendarId":4,"start":"2016-07-06T19:00:00","end":"2016-07-06T20:00:00","title":"Beat 412 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"8455 S. Stony Island Ave","modifiedDate":"2016-03-29T17:55:56"},{"calendarId":6,"start":"2016-07-06T18:30:00","end":null,"title":"621 Beat Meeting","eventDetails":"COME OUT AND MEET YOUR BEAT TEAM INCLUDING THE POLICE, THE COMMUNITY, AND OTHER RESIDENTS.","eventUrl":null,"contactDetails":"312-745-3641","location":"006th District Station\n7808 S. Halsted","modifiedDate":"2015-12-16T15:58:01"},{"calendarId":6,"start":"2016-07-06T18:30:00","end":null,"title":"622 Beat Meeting","eventDetails":"COME OUT AND MEET YOUR BEAT TEAM INCLUDING THE POLICE, THE COMMUNITY, AND OTHER RESIDENTS.","eventUrl":null,"contactDetails":"312-745-3641","location":"006th District Station Community Room","modifiedDate":"2015-12-16T15:57:47"},{"calendarId":14,"start":"2016-07-06T18:30:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T10:14:22"},{"calendarId":15,"start":"2016-07-06T18:00:13","end":"2016-07-06T19:00:13","title":"100 Blocks / 100 Churches","eventDetails":"Residents, stakeholders, business owners, faith based and the police gather each Wednesday night at 6pm to hold a positive loitering event and engage the public and at the same time send a message to those in the community who are part of the problem, that their actions will no longer be tolerated.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison\n312-743-1495","location":"Laramie and Lake Street\nLaramie and Adams\nMadison and Central\nChicago and Central\nDivision and Central","modifiedDate":"2016-05-16T14:31:27"},{"calendarId":2,"start":"2016-07-06T18:00:00","end":null,"title":"D.A.C. Meeting","eventDetails":"Monthly D.A.C. Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002n Dist. 5101 S Wentworth","modifiedDate":"2016-01-04T14:40:24"},{"calendarId":14,"start":"2016-07-06T18:00:00","end":null,"title":"Beat Facilitator","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T10:14:46"},{"calendarId":9,"start":"2016-07-06T18:00:00","end":"2016-07-06T19:00:00","title":"911, 921 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Davis School Annex\n3050 W. 39th St.","modifiedDate":"2016-04-14T18:21:55"},{"calendarId":25,"start":"2016-07-06T18:00:00","end":"2016-07-06T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"Every Wednesday in the months of June and July Faith-Based leaders and the community will show their UNITY AGAINST THE VIOLENCE in our community by wearing red and being visible to all.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"1200 N. Keeler\n1200 N. Mason\n1600 N. Lockwood\n5318 W. Diversey","modifiedDate":"2016-06-02T13:51:34"},{"calendarId":18,"start":"2016-07-06T15:00:00","end":null,"title":"20 Sector Hospitality Meeting","eventDetails":"20 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"She-Nannigans\n16 W. Division\nChicago, Il 60610","modifiedDate":"2016-06-08T14:41:43"},{"calendarId":3,"start":"2016-07-06T14:00:00","end":"2016-07-06T15:00:00","title":"Court Advocate Meeting","eventDetails":"Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:09:19"},{"calendarId":25,"start":"2016-07-06T10:00:00","end":"2016-07-06T11:00:00","title":"Domestic Violence","eventDetails":"Domestic Violence\nSub-committee meeting \n","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:41:18"},{"calendarId":22,"start":"2016-07-05T19:00:00","end":"2016-07-05T20:00:00","title":"Beat 2221 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Christ the King Church\n9225 S Hamilton","modifiedDate":"2015-12-03T11:21:42"},{"calendarId":24,"start":"2016-07-05T19:00:00","end":null,"title":"2412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"6435 N. California Northtown Library","modifiedDate":"2016-07-06T15:16:55"},{"calendarId":5,"start":"2016-07-05T19:00:00","end":"2016-07-05T20:00:00","title":"BEAT 511 COMMUNITY MEETING","eventDetails":"ROSEHAVEN MANOR","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"10220 S MICHIGAN AVE","modifiedDate":"2016-01-26T08:42:03"},{"calendarId":4,"start":"2016-07-05T19:00:00","end":"2016-07-05T20:00:00","title":"Beat 432 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 4th District Caps Office at 312-747-1708","location":"10155 S. Ewing Ave.","modifiedDate":"2016-06-01T11:50:33"},{"calendarId":12,"start":"2016-07-05T19:00:00","end":"2016-07-05T20:00:00","title":"Beat Meeting 1225","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Chicago Hope Academy 2108 W. Ogden. on the 1st Tuesday of the odd months. ","modifiedDate":"2016-04-27T12:14:43"},{"calendarId":2,"start":"2016-07-05T18:30:00","end":null,"title":"Beat Meeting 212/214","eventDetails":"Citizens and CPD come together to talk about community issues.","eventUrl":null,"contactDetails":"2nd District CAPS Office\n5101 S. Wentworth\n312-747-5109","location":"Mandrake Park Field House\n3858 S. Cottage Grove","modifiedDate":"2016-06-24T11:35:07"},{"calendarId":15,"start":"2016-07-05T18:30:00","end":"2016-07-05T19:30:00","title":"Beat 1531/32 CAPS Meeting","eventDetails":"\nResidents, Stakeholders and Police partner on solving chronic crime and disorders and strategize together for solutions. \n","eventUrl":null,"contactDetails":"CAPS Office 312-743-1495","location":"West Branch Library\n4856 W. Chicago Ave\n","modifiedDate":"2016-07-03T07:33:23"},{"calendarId":19,"start":"2016-07-05T18:30:00","end":"2016-07-05T19:30:00","title":"Beat 1913","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Courtenay School\n4420 N. Beacon","modifiedDate":"2016-05-02T11:36:34"},{"calendarId":6,"start":"2016-07-05T18:30:00","end":null,"title":"611 BEAT MEETING","eventDetails":"COME OUT AND MEET YOUR BEAT TEAM INCLUDING THE POLICE, THE COMMUNITY, AND OTHER RESIDENTS.","eventUrl":null,"contactDetails":"312-745-3641","location":"2ND Mt. Vernon Annex Church 2101 W. 79th","modifiedDate":"2015-12-16T15:59:05"},{"calendarId":11,"start":"2016-07-05T18:30:00","end":"2016-07-05T19:30:00","title":"Beat Meeting: 1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe.","eventUrl":null,"contactDetails":"Brian Piccolo School 1040 N. Keeler","location":"011th District CAPS 3151 W. Harrison Street 312-746-9841","modifiedDate":"2015-12-14T15:28:34"},{"calendarId":18,"start":"2016-07-05T18:30:00","end":null,"title":"1824 Beat Meeting","eventDetails":"1824 Beat Community Meeting","eventUrl":null,"contactDetails":"P.O. Schenk","location":"Latin School\n59 W. North Ave\nChicago, Il 60614","modifiedDate":"2016-06-08T14:44:21"},{"calendarId":25,"start":"2016-07-05T18:30:00","end":"2016-07-05T19:30:00","title":"Beat Meeting 2521","eventDetails":"Beat Meeting 2521","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2715 N. Cicero","modifiedDate":"2015-12-10T11:17:32"},{"calendarId":25,"start":"2016-07-05T18:30:00","end":"2016-07-05T19:30:00","title":"Beat Meeting 2535","eventDetails":"Beat Meeting 2535","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"3647 W. North","modifiedDate":"2015-12-10T10:48:14"},{"calendarId":9,"start":"2016-07-05T18:00:00","end":"2016-07-05T19:00:00","title":"924, 931, 933 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"New City Supportive Living\n4707 S. Marshfield Ave.","modifiedDate":"2016-04-14T18:22:48"},{"calendarId":10,"start":"2016-07-05T18:00:00","end":"2016-07-05T19:00:00","title":"Beat 1014 Community CAPs Meeting","eventDetails":"CAPs Beat Meeting for Beat 1014","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Lawndale Church\n3839 W. Ogden Ave","modifiedDate":"2016-06-03T10:15:36"},{"calendarId":25,"start":"2016-07-05T14:00:00","end":"2016-07-05T15:00:00","title":"Court Advocacy","eventDetails":"Court Advocacy","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:42:42"},{"calendarId":19,"start":"2016-07-03T11:00:00","end":"2016-07-03T12:00:00","title":"Positive Loitering Wilson/Broadway","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Wilson & Broadway","modifiedDate":"2016-07-01T15:26:12"},{"calendarId":11,"start":"2016-07-02T13:00:56","end":"2016-07-02T18:00:56","title":"011th District Youth Concert","eventDetails":"Youth Concert\nPut Down the [GUNS] and Pick-Up the MIC! Come out and support your vision for a SAFE & PEACEFUL Community.","eventUrl":null,"contactDetails":"011th District CAPS 312-746-9841","location":"Garfield Park 100 N. Central Park","modifiedDate":"2016-06-16T17:05:14"},{"calendarId":3,"start":"2016-07-02T11:00:00","end":"2016-07-02T12:00:00","title":"Youth/Explorers","eventDetails":"Youth/Explorers","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T18:59:50"},{"calendarId":19,"start":"2016-07-02T11:00:00","end":"2016-07-02T13:00:00","title":"Ice Cream Social for Kids","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Bronco Billy Playlot\n4437 N. Magnolia","modifiedDate":"2016-07-01T15:26:21"},{"calendarId":12,"start":"2016-07-02T09:00:00","end":"2016-07-02T09:15:00","title":"NO Peer Jury ","eventDetails":"No Peer Jury till September. ","eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2016-05-26T13:43:07"},{"calendarId":11,"start":"2016-07-02T09:00:00","end":"2016-07-02T10:00:00","title":"Peer Jury","eventDetails":"Misdemeanor court cases are presented and sanctioned by their peers.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:04:46"},{"calendarId":25,"start":"2016-07-02T08:30:00","end":"2016-07-02T10:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave. \nCommunity Room","modifiedDate":"2015-12-10T10:43:59"},{"calendarId":15,"start":"2016-07-01T02:00:44","end":"2016-07-01T02:15:44","title":"15th District Outdoor Roll Call","eventDetails":"A positive event for the community. Come out and observe and speak with your officers.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Cicero & Jackson\nBeat 1533\n29th Ward","modifiedDate":"2016-06-01T13:47:01"},{"calendarId":5,"start":"2016-06-30T18:00:00","end":"2016-06-30T19:00:00","title":"DISTRICT ADVIRORY COUNCIL","eventDetails":"005TH DISTRICT POLICE STATION ","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:03:17"},{"calendarId":15,"start":"2016-06-29T19:00:15","end":"2016-06-29T19:15:15","title":"15th District Outdoor Roll Call","eventDetails":"A positive event for the community. Come out and observe and speak with your officers.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Laramie & Adams\nBeat 1522\n29th Ward","modifiedDate":"2016-06-01T13:49:23"},{"calendarId":15,"start":"2016-06-29T18:00:06","end":"2016-06-29T19:00:06","title":"100 Blocks / 100 Churches","eventDetails":"Residents, stakeholders, business owners, faith based and the Police gather each Wednesday night at 6pm to hold a positive loitering event and engage the public and at the same time send a message to those in the community who are part of the problem, that their actions will no longer be tolerated.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison\n312-743-1495","location":"Laramie and Lake Street\nLaramie and Adams\nMadison and Central\nChicago Ave and Central\nDivision and Central","modifiedDate":"2016-05-16T15:02:40"},{"calendarId":25,"start":"2016-06-29T18:00:00","end":"2016-06-29T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"Every Wednesday in the months of June and July Faith-Based leaders and the community will show their UNITY AGAINST THE VIOLENCE in our community by wearing red and being visible to all.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"1200 N. Keeler\n1200 N. Mason\n1600 N. Lockwood\n5318 W. Diversey","modifiedDate":"2016-06-02T13:51:45"},{"calendarId":16,"start":"2016-06-28T19:00:00","end":null,"title":"1614 Beat Meeting","eventDetails":"Come join us at Salvation Army at 8354 W. Foster for a Beat Meeting.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":null,"modifiedDate":"2016-06-13T13:53:49"},{"calendarId":8,"start":"2016-06-28T19:00:00","end":"2016-06-28T20:00:00","title":"813/833 Beat Meeting","eventDetails":"West Lawn Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W. 65th St","modifiedDate":"2015-12-21T12:43:12"},{"calendarId":24,"start":"2016-06-28T19:00:00","end":"2016-06-28T20:00:00","title":"2431 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"St. Jerome Parish Center 1709 W. Lunt","modifiedDate":"2016-01-08T11:25:53"},{"calendarId":9,"start":"2016-06-28T19:00:00","end":"2016-06-28T20:00:00","title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"3120 S. Halsted St.","modifiedDate":"2016-05-02T19:44:21"},{"calendarId":9,"start":"2016-06-28T19:00:00","end":"2016-06-28T20:00:00","title":"922, 923 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Simon Church Hall\n5157 S. California Ave.","modifiedDate":"2016-04-14T18:22:57"},{"calendarId":16,"start":"2016-06-28T18:45:00","end":"2016-06-28T19:00:00","title":"1614 Outdoor Roll Call","eventDetails":"Please join us for an outdoor roll call at Salvation Army, 8354 W. Foster","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":null,"modifiedDate":"2016-06-13T13:53:32"},{"calendarId":25,"start":"2016-06-28T18:30:00","end":"2016-06-28T19:30:00","title":"Beat Meeting 2532","eventDetails":"Beat Meeting 2532","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"1511 N. Long","modifiedDate":"2015-12-10T10:50:49"},{"calendarId":19,"start":"2016-06-28T18:30:00","end":"2016-06-28T19:30:00","title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"19th District\n850 W. Addison","modifiedDate":"2016-06-22T14:39:36"},{"calendarId":7,"start":"2016-06-28T18:30:00","end":"2016-06-28T19:30:00","title":"BEAT 713,714 AND 715","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"007TH DISTRICT POLICE STATION\n1438 W. 63RD STREET","modifiedDate":"2016-01-20T16:28:03"},{"calendarId":11,"start":"2016-06-28T18:00:00","end":"2016-06-28T19:00:00","title":"Beat Meeting: 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2015-12-22T14:02:04"},{"calendarId":12,"start":"2016-06-28T18:00:00","end":"2016-06-28T19:00:00","title":"Beat Meeting 1232","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at 12th District, 1412 S. Blue Island, on the 4th Tuesday of the even months. ","modifiedDate":"2016-01-14T11:10:46"},{"calendarId":3,"start":"2016-06-28T18:00:00","end":"2016-06-28T19:00:00","title":"Positive Loitering Event","eventDetails":"Positive Loitering Event","eventUrl":null,"contactDetails":"P.O. Hutchinson\n(312) 747-7004\n7040 S. Cottage Grove\nChicago, IL. 60637\n","location":"7100 S. Jeffery\nChicago, IL. 60649","modifiedDate":"2016-01-19T18:48:25"},{"calendarId":3,"start":"2016-06-28T14:00:00","end":"2016-06-28T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:51:41"},{"calendarId":22,"start":"2016-06-28T10:30:00","end":"2016-06-28T11:30:00","title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:44:01"},{"calendarId":5,"start":"2016-06-28T10:00:00","end":"2016-06-28T11:00:00","title":"COURT ADVOCACY","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:02:59"},{"calendarId":11,"start":"2016-06-27T18:00:55","end":"2016-06-27T19:00:55","title":"District Advisory Committee ","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 11th District.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"011th District Auditorium ","modifiedDate":"2015-12-28T09:29:03"},{"calendarId":15,"start":"2016-06-27T10:00:00","end":"2016-06-27T10:15:00","title":"15th District Outdoor Roll Call","eventDetails":"A positive event for the community. Come out and observe and speak with your officers.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Division & Lavergne\nBeat 1531\n37th Ward","modifiedDate":"2016-06-01T13:49:57"},{"calendarId":17,"start":"2016-06-25T11:30:00","end":"2016-06-25T13:00:00","title":"Self Defense Event ","eventDetails":"Please call or e mail the CAPS Office to RSVP if you plan on attending this event. ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Bosen Chicago Martial Arts\n4224 W. Belmont ","modifiedDate":"2016-05-23T13:11:16"},{"calendarId":15,"start":"2016-06-25T11:00:00","end":"2016-06-25T14:00:00","title":" Anti-Violence Police-Youth Softball Game","eventDetails":"Please join the 15th District CAPS office as we host a community event, along with the Chicago Park District and Chicago Public Schools for youth ages 13 to 18. Come join us for a positive engagement, open dialogue, refreshments, fun and entertainment.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave \n312-743-1495","location":"Columbus Park\n500 S Central\nChicago IL","modifiedDate":"2016-05-26T11:52:13"},{"calendarId":15,"start":"2016-06-25T10:00:00","end":"2016-06-25T10:15:00","title":"15th District Outdoor Roll Call","eventDetails":"A positive event for the community. Come out and observe and speak with your officers","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Madison & Lockwood\nBeat 1522\n29th Ward","modifiedDate":"2016-06-01T13:50:51"},{"calendarId":5,"start":"2016-06-25T10:00:00","end":"2016-06-25T12:00:00","title":"YOUTH LAW EXPLORERS","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:02:04"},{"calendarId":15,"start":"2016-06-25T08:30:17","end":"2016-06-25T13:00:17","title":"Peer Jury Session","eventDetails":"Youths with misdemeanor court cases are presented and sanctioned by their peers","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-13T10:03:25"},{"calendarId":5,"start":"2016-06-25T08:30:00","end":"2016-06-25T11:00:00","title":"PEER JURY","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:01:16"},{"calendarId":2,"start":"2016-06-25T08:00:00","end":"2016-06-25T11:00:00","title":"Peer Jury","eventDetails":"Monthly Peer Jury","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:24:09"},{"calendarId":6,"start":"2016-06-24T17:30:00","end":"2016-06-24T20:00:00","title":"Line Dancing Class","eventDetails":"Free Line Dancing Class","eventUrl":null,"contactDetails":"Contact Ms. Leaks at 312-745-3641","location":"6th District Station\n7808 S. Halsted Street\nCommunity Room","modifiedDate":"2016-05-06T16:08:23"},{"calendarId":25,"start":"2016-06-24T11:00:00","end":"2016-06-24T12:00:00","title":"25th District Coffee Talk","eventDetails":"Meet & Greet with the 25th District Community Relations Staff, the Ward Office, and Area North Dep Chief.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"McDonalds - 4338 W. North Ave","modifiedDate":"2016-06-24T10:28:25"},{"calendarId":3,"start":"2016-06-23T20:00:00","end":"2016-06-23T20:00:00","title":"Beat Meeting (321, 324)","eventDetails":"Beat Meeting (321, 324)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T15:52:35"},{"calendarId":16,"start":"2016-06-23T19:00:00","end":null,"title":"1634 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"St. Bartholomew Church\n4910 W. Addison\nKrueger Hall","modifiedDate":"2016-02-19T12:51:08"},{"calendarId":7,"start":"2016-06-23T18:30:00","end":"2016-06-23T19:30:00","title":"BEAT 711 & 712 MEETING","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"Sherwood Park\n5701 S. Shields","modifiedDate":"2016-01-20T16:28:47"},{"calendarId":14,"start":"2016-06-23T18:30:00","end":null,"title":"1433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Pulaski Park\n1419 W. Blackhawk","modifiedDate":"2016-01-06T10:18:05"},{"calendarId":25,"start":"2016-06-23T18:30:00","end":"2016-06-23T19:30:00","title":"Beat Meeting 2514","eventDetails":"Beat Meeting 2514","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"3115 N. Mason ","modifiedDate":"2015-12-10T11:23:34"},{"calendarId":11,"start":"2016-06-23T18:00:00","end":"2016-06-23T19:00:00","title":"Beat Meeting:1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Eloise Mc Coy Village Apt. 4650 W. Van Buren ","modifiedDate":"2015-12-21T13:44:01"},{"calendarId":22,"start":"2016-06-23T14:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:41:38"},{"calendarId":1,"start":"2016-06-23T14:00:00","end":"2016-06-23T15:00:00","title":"10 Sect Business","eventDetails":"Beat meeting for business partners from 10 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"175 N State\nChicago Theatre","modifiedDate":"2015-12-15T17:14:32"},{"calendarId":22,"start":"2016-06-23T13:00:00","end":"2016-06-23T14:00:00","title":"Beat Facilitators Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:41:45"},{"calendarId":22,"start":"2016-06-23T10:30:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room, 1900 W. Monterey","modifiedDate":"2015-12-23T08:42:39"},{"calendarId":15,"start":"2016-06-23T02:00:00","end":"2016-06-23T02:15:00","title":"15th District Outdoor Roll Call","eventDetails":"A positive event for the community. Come out and observe and speak with your officers.","eventUrl":null,"contactDetails":"15th District \nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Cicero & Lake Street\nBeat 1532\n28th Ward","modifiedDate":"2016-06-01T13:51:13"},{"calendarId":17,"start":"2016-06-22T19:30:00","end":"2016-06-22T20:30:00","title":"1711& 1712 Beat Meeting","eventDetails":"Monthly Beat Meeting for Beat 1711 and Beat 1712","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Mayfair Church\n5020 N. Pulaski","modifiedDate":"2016-05-23T13:09:19"},{"calendarId":16,"start":"2016-06-22T19:00:00","end":null,"title":"1624 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Portage Park Senior Center\n4100 N. Long ","modifiedDate":"2016-02-19T12:55:20"},{"calendarId":8,"start":"2016-06-22T19:00:00","end":"2016-06-22T20:00:00","title":"835 Beat Meeting","eventDetails":"Wrightwood Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"8530 S. Kedzie","modifiedDate":"2015-12-21T12:41:50"},{"calendarId":14,"start":"2016-06-22T18:30:00","end":null,"title":"1434 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Public Library-\nBucktown\n1701 N. Milwaukee","modifiedDate":"2016-01-06T10:17:47"},{"calendarId":9,"start":"2016-06-22T18:30:00","end":"2016-06-22T19:30:00","title":"914 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chinatown Library\n2100 S. Wentworth Ave.","modifiedDate":"2016-04-14T18:23:06"},{"calendarId":15,"start":"2016-06-22T18:00:43","end":"2016-06-22T19:00:43","title":"100 Blocks / 100 Churches","eventDetails":"Residents, stakeholders, business owners, faith based and the Police gather each Wednesday night at 6pm to hold a positive loitering event and engage the public and at the same time send a message to those in the community who are part of the problem, that their actions will no longer be tolerated.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison\n312-743-1495","location":"Laramie and Lake Street\nLaramie and Adams\nMadison and Central\nChicago and Central\nDivision and Central","modifiedDate":"2016-05-16T14:46:33"},{"calendarId":25,"start":"2016-06-22T18:00:00","end":"2016-06-22T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"Every Wednesday in the months of June and July Faith-Based leaders and the community will show their UNITY AGAINST THE VIOLENCE in our community by wearing red and being visible to all.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"1200 N. Keeler\n1200 N. Mason\n1600 N. Lockwood\n5318 W. Diversey","modifiedDate":"2016-06-02T13:51:55"},{"calendarId":25,"start":"2016-06-22T18:00:00","end":"2016-06-22T19:00:00","title":"Beat Meeting 2534","eventDetails":"Beat Meeting 2534","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"4338 W. Wabansia","modifiedDate":"2015-12-10T10:49:09"},{"calendarId":3,"start":"2016-06-22T18:00:00","end":"2016-06-22T19:00:00","title":"DAC Meeting","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T11:41:24"},{"calendarId":16,"start":"2016-06-22T13:00:00","end":null,"title":"1633 Outdoor Roll Call","eventDetails":"Please join us at this outdoor roll call to be conducted with the purpose of providing a visible police presence and to help strengthen community/police interactions.\n","eventUrl":null,"contactDetails":"caps016district@chicagopolice.org, (312)742-4521","location":"Chopin Park, 3420 N Long","modifiedDate":"2016-05-25T17:37:09"},{"calendarId":15,"start":"2016-06-22T08:30:00","end":"2016-06-22T10:00:00","title":"Business Meeting","eventDetails":"Business owners of the 15th district meet to discuss concerns of crime and ways to improve business related issues.","eventUrl":null,"contactDetails":"15th District CAPS\n5701 W Madison\n312-743-1495","location":"MacArthur's Restaurant\n5412 W Madison","modifiedDate":"2016-05-16T14:19:23"},{"calendarId":2,"start":"2016-06-21T22:30:00","end":null,"title":"Senior Meeting","eventDetails":"Senior Monthly Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:39:31"},{"calendarId":24,"start":"2016-06-21T19:00:00","end":"2016-06-21T20:00:00","title":"2423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Touhy Park 7348 N. Paulina","modifiedDate":"2016-01-08T14:09:14"},{"calendarId":24,"start":"2016-06-21T19:00:00","end":null,"title":"2423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Touhy Park\n7348 N. Paulina","modifiedDate":"2016-01-08T14:09:23"},{"calendarId":15,"start":"2016-06-21T19:00:00","end":"2016-06-21T19:15:00","title":"15th District Outdoor Roll Call","eventDetails":"A positive event for the community. Come out and observe and speak with your officers.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Madison & Central\nBeat 1522\n29th Ward","modifiedDate":"2016-06-01T12:56:22"},{"calendarId":5,"start":"2016-06-21T19:00:00","end":"2016-06-21T20:00:00","title":"BEAT 531 COMMUNITY MEETING","eventDetails":"GREEN STONE UNITED METHODIST","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"11211 S ST. LAWRENCE","modifiedDate":"2016-01-26T08:29:01"},{"calendarId":8,"start":"2016-06-21T19:00:00","end":"2016-06-21T20:00:00","title":"811 Beat Meeting","eventDetails":"Good Shepherd Church","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5550 S. Merrimac","modifiedDate":"2015-12-21T12:43:43"},{"calendarId":22,"start":"2016-06-21T19:00:00","end":"2016-06-21T20:00:00","title":"Beat 2222 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Brainerd Park\n1246 W 92nd St","modifiedDate":"2015-12-03T11:20:28"},{"calendarId":1,"start":"2016-06-21T19:00:00","end":"2016-06-21T20:00:00","title":"BT 131/132 Residential Mtg","eventDetails":"Beat meeting for residents from BT 132","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"30 W Cermak\nHillard Apts","modifiedDate":"2015-12-16T12:17:23"},{"calendarId":7,"start":"2016-06-21T18:30:00","end":"2016-06-21T19:30:00","title":"BEAT 731,732 AND 733","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"HAMILTON PARK\n513 W. 72ND STREET","modifiedDate":"2016-01-20T16:22:38"},{"calendarId":2,"start":"2016-06-21T18:30:00","end":"2016-06-21T19:30:00","title":"BEAT MEETING 221/223","eventDetails":"CITIZENS COME TOGETHER TO DISCUSS ISSUES AND CONCERNS IN THEIR COMMUNITY.","eventUrl":null,"contactDetails":"2ND DISTRICT CAPS OFFICE\n5101 S. WENTWORTH\n312-747-5109","location":"KING CENTER\n4314 S. COTTAGE GROVE.","modifiedDate":"2016-06-16T09:31:54"},{"calendarId":2,"start":"2016-06-21T18:30:00","end":"2016-06-21T19:30:00","title":"BEAT MEETING FOR 221/223","eventDetails":"BEAT MEETING WHERE COMMUNITY COMES TOGETHER AND TALK ABOUT THEIR ISSUES.","eventUrl":null,"contactDetails":"2ND DISTRICT CAPS OFFICE\n5101 S. WENTWORTH\n312-747-5109","location":"KING CENTER\n4314 S. KING DRIVE","modifiedDate":"2016-05-17T16:58:21"},{"calendarId":3,"start":"2016-06-21T18:00:00","end":"2016-06-21T19:00:00","title":"Positive Loitering Event","eventDetails":"Positive Loitering event","eventUrl":null,"contactDetails":"P.O. Hutchinson\n(312) 747-7004\n7040 S. Cottage Grove\nChicago, IL. 60637\n","location":"7300 S. Dorchester\nChicago, IL. 60619","modifiedDate":"2016-01-19T18:48:41"},{"calendarId":11,"start":"2016-06-21T18:00:00","end":"2016-06-21T19:00:00","title":"Beat Meeting:1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Homan Square Community Center 3559 W. Arthington","modifiedDate":"2015-12-21T15:05:38"},{"calendarId":9,"start":"2016-06-21T18:00:00","end":"2016-06-21T19:00:00","title":"932, 934, 935 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Westhaven Senior Homes\n850 W. Garfield Blvd.","modifiedDate":"2016-04-14T18:23:15"},{"calendarId":16,"start":"2016-06-21T13:00:00","end":null,"title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-02-19T12:54:31"},{"calendarId":9,"start":"2016-06-21T13:00:00","end":"2016-06-21T15:00:00","title":"Seniors Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"009th District Station\n3120 S. Halsted Ave.","modifiedDate":"2016-01-05T17:25:41"},{"calendarId":11,"start":"2016-06-21T11:00:08","end":"2016-06-21T12:00:08","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"TBA","modifiedDate":"2016-01-26T14:09:12"},{"calendarId":17,"start":"2016-06-21T11:00:00","end":"2016-06-21T13:00:00","title":"Senior Citizen Subcommittee Meeting","eventDetails":"Monthly Senior Citizen Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room","modifiedDate":"2016-04-07T10:07:39"},{"calendarId":7,"start":"2016-06-20T13:00:00","end":"2016-06-20T15:00:00","title":"Senior Advisory Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"Tolton Manor\n6345 S. Stewart","modifiedDate":"2016-01-20T16:16:47"},{"calendarId":2,"start":"2016-06-19T18:30:00","end":"2016-06-19T19:30:00","title":"BEAT MEETING FOR 233/234/235","eventDetails":"BEAT MEETING FOR CITIZENS TO COME AND TALK ABOUT THEIR ISSUES","eventUrl":null,"contactDetails":"2ND DISTRICT CAPS OFFICE\n5101 S. WENTWORTH\n312-747-5109","location":"TREASURE ISLAND\n1526 E.55TH STREET","modifiedDate":"2016-05-17T17:00:44"},{"calendarId":25,"start":"2016-06-18T13:00:00","end":"2016-06-18T15:00:00","title":"Explorer Scouts Meeting","eventDetails":"25th District's Grand Opening Meeting of our new Police Explorer Post for our Youth.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090.","location":"25th District Community Room","modifiedDate":"2016-06-02T09:20:14"},{"calendarId":6,"start":"2016-06-18T12:00:00","end":"2016-06-18T14:00:00","title":"Kids N Kops","eventDetails":"Positive mentoring for kids ages 8-12.","eventUrl":null,"contactDetails":"Contact Ms. Dorothy Leaks\nat 312-745-3641","location":"6th District Station\n7808 S. Halsted Street\nCommunity Room\n","modifiedDate":"2016-05-06T16:08:36"},{"calendarId":15,"start":"2016-06-18T10:00:21","end":"2016-06-18T12:00:21","title":"Block Club Training","eventDetails":"Block club training is provided to residents who are concerned and care about their community and share information, identify concerns and act collectively to address these concerns.","eventUrl":null,"contactDetails":"15th District \nCommunity Policing Office\n5701 W Madison Ave\nChicago, IL\n312-7431495","location":"15th District \nCommunity Policing Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-07T09:57:30"},{"calendarId":18,"start":"2016-06-18T10:00:00","end":"2016-06-18T12:00:00","title":"Peer Jury and Explorer Scouts","eventDetails":"Peer Jury and Explorer Scouts","eventUrl":null,"contactDetails":"P.O Ferguson","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-05-04T16:17:42"},{"calendarId":3,"start":"2016-06-18T09:00:00","end":"2016-06-18T10:00:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"51st Wentworth","modifiedDate":"2016-01-19T18:57:45"},{"calendarId":12,"start":"2016-06-18T09:00:00","end":"2016-06-18T10:00:00","title":"Police Explorers ","eventDetails":"The program targets youths 12 to 20 years of age. The uniform, (shirt, patch and pants) will be provided by the 12th District Community Policing Office. The Explorer will receive a uniform after the Explorer attends 6 meetings and signs a letter of commitment. Anyone who wants to sign up is welcome. Please contact the Community Policing Office for further information.","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-04-30T11:17:17"},{"calendarId":17,"start":"2016-06-18T09:00:00","end":"2016-06-18T13:00:00","title":"Peer Jury","eventDetails":"Monthly Peer Jury and Youth Beat Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room","modifiedDate":"2016-04-07T10:07:56"},{"calendarId":16,"start":"2016-06-17T23:00:00","end":null,"title":"1611 Outdoor Roll Call ","eventDetails":"Please join us at this outdoor roll call to be conducted with the purpose of providing a visible police presence and to help strengthen community/police interactions.\n","eventUrl":null,"contactDetails":"caps016district@chicagopolice.org, (312)742-4521","location":"Indian Road Park, 6010 W Matson","modifiedDate":"2016-05-25T17:37:39"},{"calendarId":15,"start":"2016-06-17T10:00:00","end":"2016-06-17T10:15:00","title":"15th District Outdoor Roll Call","eventDetails":"A positive event for the community. Come out and observe and speak with your officers.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Division & Lavergne\nBeat 1531\n37th Ward","modifiedDate":"2016-06-01T12:56:42"},{"calendarId":20,"start":"2016-06-16T19:00:00","end":"2016-06-16T20:00:00","title":"2024 Beat Meeting","eventDetails":"2024 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Margate Field House \n4921 N. Marine Drive ","modifiedDate":"2016-02-01T11:46:12"},{"calendarId":5,"start":"2016-06-16T19:00:00","end":"2016-06-16T20:00:00","title":"BEAT 533 COMMUNITY MEETING","eventDetails":"ALTGELD HEALTH CENTER","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"1029 E 130TH STREET","modifiedDate":"2016-01-26T08:26:43"},{"calendarId":8,"start":"2016-06-16T19:00:00","end":"2016-06-16T20:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":"West Lawn Park","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W. 65th Street","modifiedDate":"2015-12-28T11:23:30"},{"calendarId":11,"start":"2016-06-16T18:30:00","end":"2016-06-16T19:30:00","title":"Beat Meeting:1113/14/15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"St. Michael MBC 4106 W. Monroe ","modifiedDate":"2015-12-21T14:10:05"},{"calendarId":25,"start":"2016-06-16T18:30:00","end":"2016-06-16T19:30:00","title":"Beat Meeting 2524","eventDetails":"Beat Meeting 2524","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2446 N. Ridgeway","modifiedDate":"2015-12-10T10:53:22"},{"calendarId":7,"start":"2016-06-16T18:30:00","end":"2016-06-16T19:30:00","title":"BEAT 734 & 735","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"GIFTS FROM GOD MINISTRY\n1818 W. 74TH STREET","modifiedDate":"2016-01-20T16:20:35"},{"calendarId":7,"start":"2016-06-16T18:30:00","end":"2016-06-16T19:30:00","title":"District Advisory Council Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Station\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:17:42"},{"calendarId":16,"start":"2016-06-16T18:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-02-19T12:52:00"},{"calendarId":6,"start":"2016-06-16T18:00:00","end":"2016-06-16T19:00:00","title":"Out door roll call","eventDetails":"street corner roll call","eventUrl":null,"contactDetails":"006th District Caps Office (312)745-3641","location":"79th marshfield","modifiedDate":"2016-07-12T15:39:33"},{"calendarId":3,"start":"2016-06-16T14:00:00","end":"2016-06-16T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:54:07"},{"calendarId":11,"start":"2016-06-16T10:00:00","end":"2016-06-16T11:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Senior Subcommittee monthly meeting. ","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312-746-9841\n","location":"Meeting 011th District Auditorium \n3151 W. Harrison \n","modifiedDate":"2015-12-28T08:49:01"},{"calendarId":17,"start":"2016-06-15T19:30:00","end":"2016-06-15T20:30:00","title":"1722& 1723 Beat Meeting ","eventDetails":"Monthly Beat Meeting for Beat 1722 and Beat 1723 ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"17th District Community Room\n4650 N Pulaski ","modifiedDate":"2016-05-23T13:08:34"},{"calendarId":20,"start":"2016-06-15T19:00:00","end":"2016-06-15T20:00:00","title":"2013 Beat Meeting","eventDetails":"2013 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church\n5437 N. Clark ","modifiedDate":"2016-02-01T11:45:59"},{"calendarId":22,"start":"2016-06-15T19:00:00","end":"2016-06-15T20:00:00","title":"Beat 2234 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Station\n1900 W Monterey","modifiedDate":"2015-12-03T11:16:09"},{"calendarId":3,"start":"2016-06-15T19:00:00","end":"2016-06-15T20:00:00","title":"30 Sector Beat Meeting (333, 334)","eventDetails":"Beat meeting (333, 334)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"South Shore Cultural Center\n7059 S. South shore Dr.\nChicago, Ill. 60649\n","modifiedDate":"2016-01-20T18:50:59"},{"calendarId":8,"start":"2016-06-15T19:00:00","end":"2016-06-15T20:00:00","title":"823/825 Beat Meeting","eventDetails":"008th District Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W. 63rd Street","modifiedDate":"2015-12-21T12:42:25"},{"calendarId":5,"start":"2016-06-15T19:00:00","end":"2016-06-15T20:00:00","title":"BEAT 532 COMMUNITY MEETING","eventDetails":"ST. ANTHONY CHURCH","eventUrl":null,"contactDetails":"CAPOS OFFICE 312-747-3100","location":"11533 S PRAIRIE","modifiedDate":"2016-01-26T08:27:57"},{"calendarId":1,"start":"2016-06-15T19:00:00","end":"2016-06-15T20:00:00","title":"BT 133 Residential meeting","eventDetails":"Beat meeting with residents from Bt 133","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"2930 S Dearborn\nDearborn Homes","modifiedDate":"2015-12-15T17:19:06"},{"calendarId":15,"start":"2016-06-15T18:00:35","end":"2016-06-15T19:00:35","title":"100 Blocks / 100 Churches","eventDetails":"Residents, stakeholders, business owners, faith based and the Police gather each Wednesday night at 6pm to hold a positive loitering event and engage the public and at the same time send a message to those in the community who are part of the problem, that their actions will no longer be tolerated.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison\n312-743-1495","location":"Laramie and Lake Street\nLaramie and Adams\nMadison and Central\nChicago Ave and Central\nDivision and Central","modifiedDate":"2016-05-16T14:25:43"},{"calendarId":10,"start":"2016-06-15T18:00:00","end":"2016-06-15T19:00:00","title":"Beat 1031/ 1032 Community CAPs Meeting","eventDetails":"Beat 1031 & 1032 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"At. Agnes Church\n2658 S. Central Park Ave","modifiedDate":"2016-06-03T10:26:07"},{"calendarId":9,"start":"2016-06-15T18:00:00","end":"2016-06-15T19:00:00","title":"925 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Gabriel Church\n4500 S. Wallace St.","modifiedDate":"2016-04-14T18:23:28"},{"calendarId":12,"start":"2016-06-15T18:00:00","end":"2016-06-15T19:00:00","title":"Beat Meeting 1234","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The meeting is at Harrison Park, 1824 S. Wood Street on the 3rd Wednesday of the even months. ","modifiedDate":"2016-04-30T11:16:47"},{"calendarId":25,"start":"2016-06-15T18:00:00","end":"2016-06-15T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"Every Wednesday in the months of June and July Faith-Based leaders and the community will show their UNITY AGAINST THE VIOLENCE in our community by wearing red and being visible to all.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"1200 N. Mason\n1200 N. Keeler\n1600 N. Lockwood\n5318 W. Diversey","modifiedDate":"2016-06-02T13:52:09"},{"calendarId":18,"start":"2016-06-15T15:00:00","end":"2016-06-15T16:00:00","title":"10 Sector Hospitality Meeting","eventDetails":"10 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"Goose Island BrewPub\n1800 N. Clybourn\nChicago, Il 60642","modifiedDate":"2016-05-04T16:17:25"},{"calendarId":5,"start":"2016-06-15T13:00:00","end":"2016-06-15T14:00:00","title":"SENIOR COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:00:28"},{"calendarId":18,"start":"2016-06-15T09:30:00","end":"2016-06-15T10:30:00","title":"Coffee with the Commander","eventDetails":"Stop by for a cup of coffee with the Commander and find out what's going on in the 018 District.","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"Eva's Cafe\n1447 N. Sedgwick\nChicago, Il 60610","modifiedDate":"2016-05-04T16:17:34"},{"calendarId":15,"start":"2016-06-15T02:00:09","end":"2016-06-15T02:15:09","title":"15th District Outdoor Roll Call","eventDetails":"A positive event for the community. Come out and observe your officers.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Cicero & Jackson\nBeat 1533\n29th Ward","modifiedDate":"2016-06-01T12:57:15"},{"calendarId":22,"start":"2016-06-14T19:00:00","end":"2016-06-14T20:00:00","title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Woodson Library\n9525 S Halsted","modifiedDate":"2015-12-03T11:19:12"},{"calendarId":5,"start":"2016-06-14T19:00:00","end":"2016-06-14T20:00:00","title":"BEAT 522 COMMUNITY MEETING","eventDetails":"GREATER CANAAN MBC","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"365 W 119TH STREET","modifiedDate":"2016-01-26T08:36:19"},{"calendarId":24,"start":"2016-06-14T19:00:00","end":"2016-06-14T20:00:00","title":"2411 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Bernard Horwich Center JCC 3003 W. Touhy","modifiedDate":"2016-03-24T15:03:34"},{"calendarId":8,"start":"2016-06-14T19:00:00","end":"2016-06-14T20:00:00","title":"831/832 Beat Meeting","eventDetails":"Marquette Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6734 S. Kedzie","modifiedDate":"2015-12-21T12:42:12"},{"calendarId":4,"start":"2016-06-14T19:00:00","end":"2016-06-14T20:00:00","title":"Beat 424 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 004th Dist. Caps Office 312-747-1708","location":"Our Lady of Guadalupe\n3200 E. 91st St.","modifiedDate":"2016-06-01T11:56:57"},{"calendarId":20,"start":"2016-06-14T19:00:00","end":"2016-06-14T20:00:00","title":"2022 Beat Meeting","eventDetails":"2022 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Broadway Armory \n5917 N. Broadway ","modifiedDate":"2016-02-01T11:38:22"},{"calendarId":2,"start":"2016-06-14T18:30:00","end":"2016-06-14T19:30:00","title":"BEAT MEETING FOR 222","eventDetails":"BEAT MEETING WHERE CITIZENS COME TOGETHER TO TALK ABOUT THEIR ISSUES","eventUrl":null,"contactDetails":"2ND DISTRICT CAPS OFFICE\n5101 S. WENTWORTH\n312-747-5109","location":"KENNICOTT PARK\n4414 S. COTTAGE GROVE","modifiedDate":"2016-05-17T16:41:49"},{"calendarId":7,"start":"2016-06-14T18:30:00","end":"2016-06-14T19:30:00","title":"BEAT 722 & 723","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"KENNEDY-KING COLLEGE\n740 W. 63RD STREET","modifiedDate":"2016-01-20T16:26:15"},{"calendarId":9,"start":"2016-06-14T18:30:00","end":"2016-06-14T19:30:00","title":"913, 915 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"9th District Station\n3120 S. Halsted St.","modifiedDate":"2016-04-14T18:23:38"},{"calendarId":11,"start":"2016-06-14T18:30:00","end":"2016-06-14T19:30:00","title":"Beat Meeting: 1124/25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"JLM Abundant Life Center 2622 W. Jackson","modifiedDate":"2015-12-22T14:08:51"},{"calendarId":12,"start":"2016-06-14T18:00:00","end":"2016-06-14T19:00:00","title":"Beat Meeting 1222","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at The Above and Beyond Family Recovery Center 2942 W. Lake St. on the 2nd Tuesday of the even months.","modifiedDate":"2016-01-14T11:11:01"},{"calendarId":10,"start":"2016-06-14T18:00:00","end":"2016-06-14T19:00:00","title":"Beat 1034 Community CAPs Meeting","eventDetails":"Beat 1034 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"YMCA- Rauner\n2700 S. Western Ave\n2nd Floor","modifiedDate":"2016-06-03T10:29:56"},{"calendarId":3,"start":"2016-06-14T18:00:00","end":"2016-06-14T19:00:00","title":"Positive Loitering Event","eventDetails":"Positive Loitering Event","eventUrl":null,"contactDetails":"P.O. Hutchinson\n(312) 747-7004\n7040 S. Cottage Grove\nChicago, IL. 60637\n","location":"7459 S. Exchange\nChicago, IL. 60649","modifiedDate":"2016-01-19T18:48:51"},{"calendarId":2,"start":"2016-06-14T15:00:00","end":"2016-06-14T16:00:00","title":"Domestic Violence Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S Wentworth","modifiedDate":"2016-01-04T15:17:59"},{"calendarId":22,"start":"2016-06-14T10:00:00","end":"2016-06-14T11:00:00","title":"Clergy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-22T08:33:31"},{"calendarId":15,"start":"2016-06-13T19:00:54","end":"2016-06-13T19:15:54","title":"15th District Outdoor Roll Call","eventDetails":"A positive event for the community. Come out and observe and speak with your officers.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing office\n5701 W Madison Ave\n312-743-1495","location":"Chicago & Lavergne\nBeat 1531\n37th Ward","modifiedDate":"2016-06-01T12:58:00"},{"calendarId":2,"start":"2016-06-13T18:30:00","end":"2016-06-13T19:30:00","title":"BEAT MEETING - 211 ","eventDetails":"BEAT MEETING FOR 211","eventUrl":null,"contactDetails":"2ND DISTRICT CAPS OFFICE\n5101 S. WENTWORTH\n312-747-5109","location":"COLLEGE OF OPTOMETRY\n3240 S. INDIANA","modifiedDate":"2016-05-17T16:33:28"},{"calendarId":19,"start":"2016-06-13T18:30:00","end":"2016-06-13T19:30:00","title":"Beat 1934 & 1935","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"2nd Unitarian Church\n656 W. Barry","modifiedDate":"2016-03-28T14:04:49"},{"calendarId":2,"start":"2016-06-13T18:30:00","end":"2016-06-13T19:30:00","title":"BEAT MEETING 211","eventDetails":"CITIZENS COME TOGETHER TO DISCUSS ISSUES AND CONCERNS IN THEIR COMMUNITY.","eventUrl":null,"contactDetails":"2ND DISTRICT CAPS OFFICE\n5101 S. WENTWORTH\n312-747-5109","location":"COLLEGE OF OPTOMETRY\n3240 S. INDIANA","modifiedDate":"2016-06-16T09:30:37"},{"calendarId":18,"start":"2016-06-13T17:30:00","end":"2016-06-13T18:30:00","title":"D.A.C Meeting","eventDetails":"District Advisory Committee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-05-04T16:17:50"},{"calendarId":15,"start":"2016-06-13T15:00:13","end":"2016-06-13T16:00:13","title":"Domestic Violence Meeting","eventDetails":"Domestic violence members discuss and plan upcoming events for domestic violence victims / survivors.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-12T16:30:54"},{"calendarId":15,"start":"2016-06-11T19:00:00","end":"2016-06-11T19:15:00","title":"15th District Outdoor Roll Call","eventDetails":"A positive event for the community. Come out and observe and speak with your police.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Madison & Central\nBeat 1522\n29th Ward","modifiedDate":"2016-06-01T12:58:22"},{"calendarId":14,"start":"2016-06-11T10:00:00","end":"2016-06-11T12:00:00","title":"Bicycle Safety Rodeo","eventDetails":"Bicycle Safety Rodeo","eventUrl":null,"contactDetails":null,"location":"Moos School\n1611 N California","modifiedDate":"2016-04-21T16:06:18"},{"calendarId":14,"start":"2016-06-11T10:00:00","end":null,"title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T10:17:01"},{"calendarId":16,"start":"2016-06-11T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.\n","modifiedDate":"2016-02-19T12:53:56"},{"calendarId":6,"start":"2016-06-10T17:30:00","end":"2016-06-10T20:00:00","title":"Line Dancing Class","eventDetails":"Free Line Dancing Class","eventUrl":null,"contactDetails":"Contact Ms. Dorothy Leaks\nat 312-745-3641","location":"6th District Station\n7808 S. Halsted Street\nCommunity Room","modifiedDate":"2016-05-06T16:08:45"},{"calendarId":22,"start":"2016-06-09T19:00:00","end":null,"title":"Beat 2213 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Ridge Park\n9625 S Longwood Dr","modifiedDate":"2015-12-02T10:58:08"},{"calendarId":8,"start":"2016-06-09T19:00:00","end":"2016-06-09T20:00:00","title":"814 Beat Meeting","eventDetails":"Vittum Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5010 W. 50th St","modifiedDate":"2015-12-21T12:42:59"},{"calendarId":14,"start":"2016-06-09T19:00:00","end":null,"title":"1422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Simons Park\n1640 N. Drake","modifiedDate":"2016-01-06T10:18:46"},{"calendarId":4,"start":"2016-06-09T19:00:00","end":"2016-06-09T20:00:00","title":"Beat 422 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 004th Dist. Caps Office 312-747-1708","location":"Labor of Love Apostolic Church\n2800 E. 79th St.","modifiedDate":"2016-06-01T11:56:32"},{"calendarId":5,"start":"2016-06-09T19:00:00","end":"2016-06-09T20:00:00","title":"BEAT 524 COMMUNITY MEETING","eventDetails":"LUTHERAN CHURCH OF THE HOLY SPIRIT","eventUrl":null,"contactDetails":"CAPS OFFICE 312-77-3100","location":"1335 W 115TH STREET","modifiedDate":"2016-01-26T08:30:05"},{"calendarId":16,"start":"2016-06-09T19:00:00","end":null,"title":"1632 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Schorsch Village Hall\n6940 W. Belmont Ave.","modifiedDate":"2016-02-19T12:53:43"},{"calendarId":1,"start":"2016-06-09T19:00:00","end":"2016-06-09T20:00:00","title":"10 Sect Residential","eventDetails":"Beat meeting for residents from 10 sector beats.","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"130 N Garland\nCondo Bldg","modifiedDate":"2015-12-16T12:17:47"},{"calendarId":2,"start":"2016-06-09T18:30:00","end":"2016-06-09T19:30:00","title":"BEAT MEETING FOR 225/231/232","eventDetails":"BEAT MEETING FOR CITIZENS TO COME TOGETHER AND TALK ABOUT THEIR ISSUES","eventUrl":null,"contactDetails":"2ND DISTRICT CAPS OFFICE\n5101 S. WENTWORTH\n312-747-5109","location":"COPPIN A.M.E.\nCHURCH\n5627 S. MICHIGAN","modifiedDate":"2016-05-17T16:59:37"},{"calendarId":7,"start":"2016-06-09T18:30:00","end":"2016-06-09T19:30:00","title":"BEAT 724, 725 AND 726","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"OGDEN PARK\n6500 S. RACINE","modifiedDate":"2016-01-20T16:25:35"},{"calendarId":10,"start":"2016-06-09T18:00:00","end":"2016-06-09T19:00:00","title":"Beat 1023/ 1024 Community CAPs Meeting","eventDetails":"Beat 1023 & 1024 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"10th District\n3315 W. Ogden Ave\nCommunity Room","modifiedDate":"2016-06-03T10:14:27"},{"calendarId":12,"start":"2016-06-09T18:00:00","end":"2016-06-09T19:00:00","title":"Beat Meeting 1214","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Coyne Institute, 330 N. Green Street, on the 2nd Thursday of the even months. ","modifiedDate":"2015-12-05T13:58:02"},{"calendarId":11,"start":"2016-06-09T18:00:00","end":"2016-06-09T19:00:00","title":"Beat Meeting:1122/23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Legler Chicago Public Library 115 S. Pulaski","modifiedDate":"2015-12-21T14:36:19"},{"calendarId":16,"start":"2016-06-09T17:00:00","end":"2016-06-09T17:30:00","title":"1632 Outdoor Roll Call","eventDetails":"Please join us at this outdoor roll call to be conducted with the purpose of providing a visible police presence at various locations, to help strengthen community/police interactions.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Victory Worship Center\n3750 N. Neva","modifiedDate":"2016-05-24T11:13:03"},{"calendarId":12,"start":"2016-06-09T12:00:00","end":"2016-06-09T13:00:00","title":"NO District Advisory Committee Meeting:","eventDetails":"No Meeting ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":null,"modifiedDate":"2016-06-02T12:29:28"},{"calendarId":12,"start":"2016-06-09T12:00:00","end":"2016-06-09T13:30:00","title":"?Long Term Care: Who Will Pay?\"","eventDetails":"Cook County Elder Justice Center, FREE Senior Enrichment Seminar Series entitled ?Long Term Care: Who Will Pay??","eventUrl":null,"contactDetails":"Elder Justice Center\n(312) 603-9233","location":"50 W WASHINGTON ST\nDALEY CENTER\nCOURTROOM 2005","modifiedDate":"2016-06-02T13:05:11"},{"calendarId":5,"start":"2016-06-09T10:00:00","end":"2016-06-09T11:00:00","title":"PASTORAL COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:00:54"},{"calendarId":15,"start":"2016-06-09T10:00:00","end":"2016-06-09T10:15:00","title":"15th District Outdoor Roll Call","eventDetails":"A positive event for the community. Come out and observe and speak with your officers.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Cicero & Adams\nBeat 1533\n29th Ward","modifiedDate":"2016-05-31T11:08:26"},{"calendarId":14,"start":"2016-06-08T19:00:00","end":null,"title":"1424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Wicker Park\n1425 N. Damen","modifiedDate":"2016-01-06T10:18:28"},{"calendarId":19,"start":"2016-06-08T19:00:00","end":"2016-06-08T20:00:00","title":"Beat 1914","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Clarendon Park\n4501 N. Clarendon","modifiedDate":"2016-03-28T14:07:46"},{"calendarId":1,"start":"2016-06-08T19:00:00","end":"2016-06-08T20:00:00","title":"20 Sect Residential","eventDetails":"Beat meeting for residents from 20 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"525 S State\nUniversity Center","modifiedDate":"2015-12-16T12:18:21"},{"calendarId":16,"start":"2016-06-08T19:00:00","end":null,"title":"1622 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Dunham Park\n4638 N. Melvina","modifiedDate":"2016-02-18T13:48:03"},{"calendarId":20,"start":"2016-06-08T19:00:00","end":"2016-06-08T20:00:00","title":"2012 Beat Meeting ","eventDetails":"2012 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"St. Gregory Gym\n1609 W. Gregory","modifiedDate":"2016-02-01T11:45:48"},{"calendarId":4,"start":"2016-06-08T19:00:00","end":"2016-06-08T20:00:00","title":"Beat 413 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 004th Dist. Caps Office 312-747-1708","location":"St. Ailbe Church\n9037 S. Harper Ave","modifiedDate":"2016-06-01T11:53:41"},{"calendarId":5,"start":"2016-06-08T19:00:00","end":"2016-06-08T20:00:00","title":"BEAT 523 COMMUNITY MEETING","eventDetails":"ST. PETER & PAUL","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"12425 S HALSTED","modifiedDate":"2016-01-26T08:33:28"},{"calendarId":8,"start":"2016-06-08T19:00:00","end":"2016-06-08T20:00:00","title":"812 Beat Meeting","eventDetails":"Clearing Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6423 W. 63rd Place","modifiedDate":"2015-12-21T12:43:25"},{"calendarId":9,"start":"2016-06-08T19:00:00","end":"2016-06-08T20:00:00","title":"912 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Maurice Church Hall\n3625 S. Hoyne Ave.","modifiedDate":"2016-04-14T18:23:48"},{"calendarId":17,"start":"2016-06-08T19:00:00","end":"2016-06-08T20:00:00","title":"1732&1733 Beat Meeting ","eventDetails":"Monthly Beat Meeting for beat 1732 and beat 1733","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Athletic Field House\n3546 W. Addison ","modifiedDate":"2016-05-23T13:08:12"},{"calendarId":22,"start":"2016-06-08T18:45:00","end":"2016-06-08T19:45:00","title":"Beat 2232/2233 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Fernwood Park\n10438 S Wallace","modifiedDate":"2015-12-03T11:17:44"},{"calendarId":2,"start":"2016-06-08T18:30:00","end":"2016-06-08T19:30:00","title":"BEAT MEETING 213/215/224","eventDetails":"CITIZENS COME TOGETHER TO DISCUSS ISSUES AND CONCERNS IN THEIR COMMUNITY.","eventUrl":null,"contactDetails":"2ND DISTRICT CAPS OFFICE\n51-1 S. WENTWORTH\n312-747-5109","location":"ST ELIZABETH CHURCH\n4058 S. MICHIGAN","modifiedDate":"2016-06-16T09:31:08"},{"calendarId":2,"start":"2016-06-08T18:30:00","end":"2016-06-08T19:30:00","title":"BEAT MEETING FOR 213/215/224","eventDetails":"BEAT MEETING WHERE CITIZENS COME TOGETHER AND TALK ABOUT THEIR ISSUES.","eventUrl":null,"contactDetails":"2ND DISTRICT CAPS OFFICE\n5101 S. WENTWORTH\n312-747-5109","location":"ST ELIZABETH CHURCH\n4058 S. MICHIGAN","modifiedDate":"2016-05-17T16:58:02"},{"calendarId":11,"start":"2016-06-08T18:00:00","end":"2016-06-08T19:00:00","title":"Court Advocacy ","eventDetails":"Court Advocacy Meeting","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:24:42"},{"calendarId":15,"start":"2016-06-08T18:00:00","end":"2016-06-08T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"Residents, stakeholders, business owners, faith based and the police gather each Wednesday night at 6pm to hold a positive loitering event and engage the public and at the same time send a message to those in the community who are part of the problem, that their actions will no longer be tolerated.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison\n312-743-1495","location":"Laramie and Lake Street\nLaramie and Adams\nMadison and Central\nChicago Ave and Central\nDivision and Central","modifiedDate":"2016-05-16T14:56:25"},{"calendarId":15,"start":"2016-06-08T18:00:00","end":null,"title":"100 Blocks / 100 Churches","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2016-07-03T07:38:54"},{"calendarId":25,"start":"2016-06-08T18:00:00","end":"2016-06-08T19:00:00","title":"DAC Meeting","eventDetails":"District Advisory Committee Meeting including Officer of the Month Awards","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"25th District Community Room - 5555 W. Grand Ave.","modifiedDate":"2016-06-02T09:20:33"},{"calendarId":25,"start":"2016-06-08T18:00:00","end":"2016-06-08T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"Every Wednesday in the months of June and July Faith-Based leaders and the community will show their UNITY AGAINST THE VIOLENCE in our community by wearing red and being visible to all.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"1200 N. Mason\n1600 N. Lockwood\n1200 N. Keeler\n5318 W. Diversey","modifiedDate":"2016-06-02T13:52:22"},{"calendarId":18,"start":"2016-06-08T15:30:00","end":"2016-06-08T16:30:00","title":"30 Sector Hospitality Meeting","eventDetails":"30 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"Highline\n169 W. Kinzie\nChicago, Il 60654","modifiedDate":"2016-05-04T16:18:01"},{"calendarId":22,"start":"2016-06-08T13:30:00","end":null,"title":"Court Advocacy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:58:11"},{"calendarId":6,"start":"2016-06-08T11:00:00","end":"2016-06-08T12:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Lets discuss personal and home safety","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"6th District Station\n7808 S. Halsted Street\nCommunity Room","modifiedDate":"2016-05-06T16:08:16"},{"calendarId":25,"start":"2016-06-08T10:00:00","end":"2016-06-08T14:00:00","title":"Health & Resource Fair","eventDetails":"Tips & Clues about healthy eating, healthy living, and tools to make your lives safer.","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"Grace and Peace Community Center - 2100 N. Kildare","modifiedDate":"2016-06-08T09:01:51"},{"calendarId":7,"start":"2016-06-08T09:30:00","end":"2016-06-08T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Police Station\n1438 W. 63RD Street","modifiedDate":"2016-01-20T16:14:15"},{"calendarId":12,"start":"2016-06-07T19:00:00","end":"2016-06-07T20:00:00","title":"Beat Meeting 1212","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at St. Helen's School Basement, 2345 W. Augusta on the 1st Tuesday of the even months. ","modifiedDate":"2015-12-05T13:57:22"},{"calendarId":24,"start":"2016-06-07T19:00:00","end":"2016-06-07T20:00:00","title":"2413 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office. (312) 744-6321","location":"Green Briar Park 2650 W. Peterson","modifiedDate":"2015-12-07T14:53:43"},{"calendarId":8,"start":"2016-06-07T19:00:00","end":"2016-06-07T20:00:00","title":"822/824 Beat Meeting","eventDetails":"Solorio High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5400 S. St. Louis","modifiedDate":"2015-12-21T12:42:37"},{"calendarId":22,"start":"2016-06-07T19:00:00","end":"2016-06-07T20:00:00","title":"Beat 2221 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Christ the King Church\n9225 S Hamilton","modifiedDate":"2015-12-03T11:21:52"},{"calendarId":5,"start":"2016-06-07T19:00:00","end":"2016-06-07T20:00:00","title":"BEAT 511 COMMUNITY MEETING","eventDetails":"ROSEHAVEN MANOR","eventUrl":null,"contactDetails":"CPAS OFFICE 312-747-3100","location":"10220 S MICHIGAN AVE","modifiedDate":"2016-01-26T08:41:47"},{"calendarId":16,"start":"2016-06-07T19:00:00","end":null,"title":"1612 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Olympia Park\n6566 N. Avondale","modifiedDate":"2016-02-18T13:35:31"},{"calendarId":4,"start":"2016-06-07T19:00:00","end":"2016-06-07T20:00:00","title":"Beat 433 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 004th Dist. Caps Office 312-747-1708","location":"St. Columba\n13323 S. Green Bay Ave","modifiedDate":"2016-06-01T11:53:17"},{"calendarId":2,"start":"2016-06-07T18:30:00","end":"2016-06-07T19:30:00","title":"BEAT MEETING FOR 212/214","eventDetails":"BEAT MEETING FOR CITIZENS TO COME TOGETHER AND TALK ABOUT COMMUNITY ISSUES","eventUrl":null,"contactDetails":"2ND DISTRICT CAPS OFFICE\n5101 S. WENTWORTH\n312-747-5109","location":"MANDRAKE PARK FIELD HOUSE\n3858 S. COTTAGE","modifiedDate":"2016-05-17T16:34:15"},{"calendarId":11,"start":"2016-06-07T18:30:00","end":"2016-06-07T19:30:00","title":"Beat Meeting: 1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe.","eventUrl":null,"contactDetails":"011th District CAPS 3151 W. Harrison Street 312-746-9841","location":"Brian Piccolo School 1040 N. Keeler","modifiedDate":"2015-12-14T15:28:50"},{"calendarId":3,"start":"2016-06-07T18:00:00","end":"2016-06-07T19:00:00","title":"003rd District Positive Loitering Event","eventDetails":"003rd District Positive Loitering Event","eventUrl":null,"contactDetails":"P.O. Hutchinson\n7040 S. Cottage Grove\nChicago, Ill. 60637","location":"6600 S. King Drive\nChicago. Il. 60637","modifiedDate":"2016-02-26T12:23:50"},{"calendarId":10,"start":"2016-06-07T18:00:00","end":"2016-06-07T19:00:00","title":"Beat 1022 Community CAPs Meeting","eventDetails":"Beat 1022 Community CAPs Meeting","eventUrl":null,"contactDetails":"CAPs 312-747-7190","location":"Albany Terrace\n3030 W. 21st Place","modifiedDate":"2016-06-03T10:12:22"},{"calendarId":9,"start":"2016-06-07T18:00:00","end":"2016-06-07T19:00:00","title":"924, 931, 933 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"New City Supportive Living\n4707 S. Marshfield Ave.","modifiedDate":"2016-04-14T18:23:59"},{"calendarId":18,"start":"2016-06-07T18:00:00","end":"2016-06-07T19:00:00","title":"Court Advocacy","eventDetails":"Court Advocacy Subcommittee Meeting","eventUrl":null,"contactDetails":"P.O Incaprera","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-05-04T16:18:10"},{"calendarId":15,"start":"2016-06-07T10:00:17","end":"2016-06-07T12:00:17","title":"Faith Based Meeting","eventDetails":"Clergy from various denominations and block club leaders come together and discuss chronic crime issues that affects the community.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\nChicago, IL\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\nChicago, IL \n312-743-1495","modifiedDate":"2016-01-05T10:56:23"},{"calendarId":25,"start":"2016-06-07T10:00:00","end":"2016-06-07T11:00:00","title":"Senior Advisory","eventDetails":"Senior Advisory","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:47:31"},{"calendarId":15,"start":"2016-06-07T02:00:00","end":"2016-06-07T02:15:00","title":"15th District Outdoor Roll Call","eventDetails":"A positive event for the community. Come out and observe your officers.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Madison & Leamington\nBeat 1533\n29th Ward","modifiedDate":"2016-05-31T11:07:28"},{"calendarId":20,"start":"2016-06-06T19:00:00","end":"2016-06-06T20:00:00","title":"2011 Beat Meeting ","eventDetails":"2011 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District \n5400 N. Lincoln","modifiedDate":"2016-02-01T11:45:35"},{"calendarId":6,"start":"2016-06-04T11:00:00","end":"2016-06-04T12:00:00","title":"Law Explorers Meeting","eventDetails":"Gain leadership experience and community service opportunities","eventUrl":null,"contactDetails":"Contact Officer Mathews at 312-745-3641","location":"6th District\n7808 S. Halsted Street\nCommunity Room","modifiedDate":"2016-05-06T16:08:53"},{"calendarId":3,"start":"2016-06-04T11:00:00","end":"2016-06-04T12:00:00","title":"Youth/Explorers","eventDetails":"Youth/Explorers","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:00:00"},{"calendarId":11,"start":"2016-06-04T09:00:00","end":"2016-06-04T10:00:00","title":"Peer Jury","eventDetails":"Misdemeanor court cases are presented and sanctioned by their peers.","eventUrl":null,"contactDetails":"\nCAPS 11th District 3151 West Harrison St 312-746-9841\n","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:04:36"},{"calendarId":12,"start":"2016-06-04T09:00:00","end":"2016-06-04T11:00:00","title":"Peer Jury ","eventDetails":"First Saturday of the month at 9:00 AM. Cases are referred to the 12th District Peer Jury by the Area Central Detective Division. The offenders have already admitted their guilt before they are referred to Peer Jury. Teen?s, ages 13-17, hear the reason for the criminal act and issue sanctions. The Peer Juror will receive Community Service Hours by the Community Policing Office. ","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-05-26T13:43:40"},{"calendarId":25,"start":"2016-06-04T08:30:00","end":"2016-06-04T10:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave\nCommunity Room","modifiedDate":"2015-12-10T10:44:06"},{"calendarId":15,"start":"2016-06-04T08:00:00","end":"2016-06-04T10:00:00","title":"Austin Power 5K Kick Off","eventDetails":"Come out and participate in the kick off of the Austin Power 5K walk/run, June 4th, 8am, rain or shine at Columbus Park Refectory. Take part in many activities and get information about the upcoming 5K walk/run.","eventUrl":null,"contactDetails":"Sankofa Cultural Center\n773-626-4497 OR\nH.O.P.E.\n773-921-2243","location":"Columbus Park Refectory\n5701 W Jackson Boulevard\nChicago Il 60644","modifiedDate":"2016-05-26T11:52:30"},{"calendarId":6,"start":"2016-06-03T17:30:00","end":"2016-06-03T20:00:00","title":"Line Dancing","eventDetails":"Free Line Dancing Class","eventUrl":null,"contactDetails":"Contact Ms. Leaks at \n312-745-3641","location":"6th District Police\n7808 S. Halsted Street\nCommunity Room","modifiedDate":"2016-05-06T16:09:00"},{"calendarId":15,"start":"2016-06-03T02:00:00","end":"2016-06-03T02:15:00","title":"15th District Outdoor Roll Call","eventDetails":"A positive event for the community. Come out and observe and your officers","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Madison & Leamington\nBeat 1533\n29th Ward","modifiedDate":"2016-05-31T11:06:33"},{"calendarId":22,"start":"2016-06-02T19:00:00","end":null,"title":"Beat 2211 and 2212 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-02T10:59:24"},{"calendarId":3,"start":"2016-06-02T19:00:00","end":"2016-06-02T20:00:00","title":"Beat Meeting (313, 314)","eventDetails":"Beat Meeting (313, 314)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Harris Park Recreation\n6200 S. Drexel\nChicago, IL. 60637\n","modifiedDate":"2015-12-29T15:54:40"},{"calendarId":14,"start":"2016-06-02T19:00:00","end":null,"title":"1411 & 1412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Nicolai Church\n3000 N. Kedzie","modifiedDate":"2016-01-06T10:19:39"},{"calendarId":24,"start":"2016-06-02T19:00:00","end":"2016-06-02T20:00:00","title":"District Advisory Council","eventDetails":"Not open to public.","eventUrl":null,"contactDetails":"24th District Community Policing Office. (312) 744-6321","location":"24th District 6464 N. Clark.","modifiedDate":"2016-05-23T13:27:42"},{"calendarId":4,"start":"2016-06-02T19:00:00","end":"2016-06-02T20:00:00","title":"Beat 434 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 004th Dist. Caps Office 312-747-1708","location":"St. Kevin's Church\n10501 S. Torrence Ave.","modifiedDate":"2016-06-01T11:52:51"},{"calendarId":8,"start":"2016-06-02T19:00:00","end":"2016-06-02T20:00:00","title":"834 Beat Meeting","eventDetails":"Bogan High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3939 W. 79th Street","modifiedDate":"2015-12-21T12:42:01"},{"calendarId":25,"start":"2016-06-02T18:30:00","end":"2016-06-02T19:30:00","title":"Beat Meeting 2522","eventDetails":"Beat Meeting 2522","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2240 N. Kilbourn","modifiedDate":"2015-12-10T11:13:38"},{"calendarId":11,"start":"2016-06-02T18:00:00","end":"2016-06-02T19:00:00","title":"Beat Meeting: 1112/21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2015-12-14T15:26:42"},{"calendarId":14,"start":"2016-06-02T17:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T10:17:16"},{"calendarId":22,"start":"2016-06-02T14:00:00","end":null,"title":"Diversity and Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:56:37"},{"calendarId":2,"start":"2016-06-02T13:00:00","end":"2016-06-02T14:00:00","title":"FAITH BASED MEETING","eventDetails":"CITIZENS COME TOGETHER TO DISCUSS ISSUES AND CONCERNS IN THEIR COMMUNITY.","eventUrl":null,"contactDetails":"2ND DISTRICT CAPS OFFICE\n5510 S. WENTWORTH\n312-747-5109","location":"CHICAGO CITY LIFE CENTER\n5501 S. LASALLE","modifiedDate":"2016-06-16T09:32:52"},{"calendarId":3,"start":"2016-06-02T13:00:00","end":"2016-06-02T14:00:00","title":"003rd District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:07:44"},{"calendarId":11,"start":"2016-06-02T11:00:00","end":"2016-06-02T12:00:00","title":"Domestic Violence Subcommittee","eventDetails":"Domestic Violence Meeting ","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312.746.9841\n","location":"011th District (Auditorium)\n3151 W. Harrison\n","modifiedDate":"2015-12-22T15:08:47"},{"calendarId":5,"start":"2016-06-02T10:00:00","end":"2016-06-02T11:00:00","title":"DOMESTIC VIOLENCE COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:02:43"},{"calendarId":19,"start":"2016-06-02T06:30:00","end":"2016-06-02T07:30:00","title":"Beat 1915","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"The Shift\n4101 N. Broadway","modifiedDate":"2016-03-28T14:07:25"},{"calendarId":4,"start":"2016-06-01T19:00:00","end":"2016-06-01T20:00:00","title":"Beat 414 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 004th Dist. Caps Office 312-747-1708","location":"New Original Church\n1750 E. 78th St.","modifiedDate":"2016-06-01T11:52:11"},{"calendarId":5,"start":"2016-06-01T19:00:00","end":"2016-06-01T20:00:00","title":"BEAT 512 COMMUNITY MEETING","eventDetails":"CHRISTIAN MISSIONARY BAPTIST CHURCH","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"132 W 104TH STREET","modifiedDate":"2016-01-26T08:39:29"},{"calendarId":3,"start":"2016-06-01T19:00:00","end":"2016-06-01T20:00:00","title":"Beat Meeting (311, 312)","eventDetails":"Beat Meeting (311, 312)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t\t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"Bessie Coleman Library \n731 E. 63rd St.\nChicago, IL. 60637\n","modifiedDate":"2015-12-29T15:55:12"},{"calendarId":8,"start":"2016-06-01T19:00:00","end":"2016-06-01T20:00:00","title":"815/821 Beat Meeting","eventDetails":"St. Bruno's Hall","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4839 S. Harding","modifiedDate":"2015-12-21T12:42:48"},{"calendarId":19,"start":"2016-06-01T19:00:00","end":"2016-06-01T20:00:00","title":"Beat 1923, 1924 & 1925","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"19th District\n850 W. Addison","modifiedDate":"2016-03-28T14:06:26"},{"calendarId":15,"start":"2016-06-01T19:00:00","end":"2016-06-01T19:15:00","title":"15th District Outdoor Roll Call","eventDetails":"A positive event for the community. Come out and observe and speak with your officers.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Laramie & Adams\nBeat 1533\n29th Ward","modifiedDate":"2016-05-31T11:07:05"},{"calendarId":20,"start":"2016-06-01T19:00:00","end":"2016-06-01T20:00:00","title":"2033 Beat Meeting","eventDetails":"2033 Beat Community Meeting","eventUrl":null,"contactDetails":"caps 312-742-8770","location":"Bezazian Library \n1226 W. Ainslie","modifiedDate":"2016-02-01T11:46:21"},{"calendarId":14,"start":"2016-06-01T18:30:00","end":null,"title":"Court Advocacy","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T10:17:28"},{"calendarId":25,"start":"2016-06-01T18:30:00","end":"2016-06-01T19:30:00","title":"Beat Meeting 2512","eventDetails":"Beat Meeting 2512","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"2211 N. Oak Park","modifiedDate":"2015-12-10T11:25:14"},{"calendarId":9,"start":"2016-06-01T18:00:00","end":"2016-06-01T19:00:00","title":"911, 921 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Davis School Annex\n3050 W. 39th St.","modifiedDate":"2016-04-14T18:24:10"},{"calendarId":12,"start":"2016-06-01T18:00:00","end":"2016-06-01T19:00:00","title":"Beat Meeting 1224","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is held at the Chicago Police Academy 1300 W. Jackson on the1st Wednesday of the even months. ","modifiedDate":"2015-12-05T13:59:46"},{"calendarId":2,"start":"2016-06-01T18:00:00","end":"2016-06-01T19:00:00","title":"D.A.C. Meeting","eventDetails":"Monthly D.A.C. Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T14:40:47"},{"calendarId":15,"start":"2016-06-01T18:00:00","end":"2016-06-01T19:00:00","title":"100 Blocks / 100 Churches","eventDetails":"Residents, stakeholders, business owners, faith based and the police gather each Wednesday night at 6pm to hold a positive loitering event and engage the public and at the same time send a message to those in the community who are part of the problem that their actions will no longer be tolerated.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\nChicago Il\n312-743-1495","location":"Laramie & Lake Street\nLaramie & Adams\nMadison $ Central\nChicago Ave & Central\nDivision & Central","modifiedDate":"2016-05-10T10:24:55"},{"calendarId":18,"start":"2016-06-01T15:00:00","end":"2016-06-01T16:00:00","title":"20 Sector Hospitality Meeting","eventDetails":"20 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"She-Nannigans\n16 W. Division\nChicago, Il 60610","modifiedDate":"2016-05-04T16:18:18"},{"calendarId":3,"start":"2016-06-01T14:00:00","end":"2016-06-01T15:00:00","title":"Court Advocate Meeting","eventDetails":"Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:09:29"},{"calendarId":16,"start":"2016-06-01T11:00:00","end":"2016-06-01T11:30:00","title":"1633 Outdoor Roll Call","eventDetails":"Please join us at this outdoor roll call to be conducted with the purpose of providing a visible police presence at various locations, to help strengthen community/police interactions.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Reinberg School\n3425 N. Major","modifiedDate":"2016-05-24T11:13:52"},{"calendarId":17,"start":"2016-06-01T10:00:00","end":"2016-06-01T11:00:00","title":"Bank Safety and Fraud Prevention Seminar","eventDetails":"Chicago Police Department Bank Safety and Fraud Prevention Seminar","eventUrl":null,"contactDetails":"Please call William Townsell at (312)745-5900 to register for the event. ","location":"4650 N Pulaski\n17th District Community Room ","modifiedDate":"2016-05-23T13:12:57"},{"calendarId":25,"start":"2016-06-01T10:00:00","end":"2016-06-01T11:00:00","title":"Domestic Violence","eventDetails":"Domestic Violence\nSub-committee meeting \n","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:41:26"},{"calendarId":20,"start":"2016-05-31T19:00:00","end":"2016-05-31T20:00:00","title":"2031 Beat Community Meeting","eventDetails":"2031 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Swedish Covenant Hospital\n2751 W. Winona St. ","modifiedDate":"2016-02-01T11:39:20"},{"calendarId":12,"start":"2016-05-31T14:00:00","end":"2016-05-31T15:30:00","title":"Senior Safety and Community Engagement Mtg","eventDetails":"CPD discusses recent criminal activity in the area of Senior Resident Bldg and ways in which we can work together to help make the area safer.","eventUrl":null,"contactDetails":"Community Policing Office\nOfficer Ramirez\n312-746-8306","location":"251-271 N Albany Ave","modifiedDate":"2016-06-02T12:30:07"},{"calendarId":10,"start":"2016-05-30T09:00:00","end":"2016-05-30T12:00:00","title":"Memorial Day Ceremony","eventDetails":"10th District Explorers in partnership with Manuel Perez Plaza will have a memorial day ceremony.","eventUrl":null,"contactDetails":"CAPS Office 312-747-7190","location":"4333 W. 26th Street ","modifiedDate":"2016-05-26T08:31:27"},{"calendarId":5,"start":"2016-05-28T10:00:00","end":"2016-05-28T12:00:00","title":"YOUTH LAW EXPLORERS ","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:04:28"},{"calendarId":8,"start":"2016-05-28T09:30:00","end":null,"title":"Peer Jury","eventDetails":"Branch 34","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"155 W 51st Street","modifiedDate":"2016-05-10T14:09:19"},{"calendarId":10,"start":"2016-05-28T09:00:00","end":"2016-05-28T15:00:00","title":"Butterfly Garden Workshop","eventDetails":"10th District Explorers \nare building a butterfly garden in unity with Dvoreck Elem. School","eventUrl":null,"contactDetails":"CAPS 312-747-7190","location":"3615 W. 16th St.","modifiedDate":"2016-05-26T08:31:36"},{"calendarId":5,"start":"2016-05-28T08:30:00","end":"2016-05-28T11:00:00","title":"PEER JURY","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:04:08"},{"calendarId":2,"start":"2016-05-28T08:00:00","end":"2016-05-28T11:00:00","title":"Peer Jury","eventDetails":"Monthly Peer Jury","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:24:37"},{"calendarId":20,"start":"2016-05-27T19:00:59","end":"2016-05-27T21:00:59","title":"Faith & Action","eventDetails":"20th District , 40th Ward, Residents, Business Owners and Faith Leaders, Peace March","eventUrl":null,"contactDetails":"CAPS Office 312-742-8770","location":"5000 N. Sheridan Ave","modifiedDate":"2016-05-24T14:44:04"},{"calendarId":11,"start":"2016-05-27T19:00:45","end":"2016-05-27T21:00:45","title":"Faith & Action 2016","eventDetails":"Faith & Action 2016 Smoke-out and light music entertainment. ","eventUrl":null,"contactDetails":"011th District CAPS\n312-746-9841","location":"Madison/Keeler","modifiedDate":"2016-05-23T09:35:53"},{"calendarId":8,"start":"2016-05-27T19:00:00","end":null,"title":"Faith & Action Event","eventDetails":"Morrill to St Rita Church","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6011 S Rockwell","modifiedDate":"2016-05-10T14:09:29"},{"calendarId":15,"start":"2016-05-27T19:00:00","end":"2016-05-27T21:00:00","title":"Faith and Action","eventDetails":"Community Residents, Clergy, Youth and other Stakeholders of Austin will come together, participate and support the joining efforts of the Chicago Police Department to help deter crime and disorder by hosting a community event, by providing conducting a Smokeout and providing resources ","eventUrl":null,"contactDetails":"15th District C.A.P.S. Office, 312-743-1495\n","location":"Rock of Salvation Church 118 N. Central","modifiedDate":"2016-05-24T13:56:30"},{"calendarId":19,"start":"2016-05-27T19:00:00","end":"2016-05-27T21:00:00","title":"Night of Faith and Action","eventDetails":"Positive loitering and interaction with faith leaders, residents, business leaders and Alderman Cappleman and police.","eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Uptown Baptist Church\n1011 W. Wilson","modifiedDate":"2016-05-24T10:45:09"},{"calendarId":9,"start":"2016-05-27T19:00:00","end":"2016-05-27T20:00:00","title":"Faith in Action Peace March","eventDetails":"The Peace March will begin at 600 W. Garfield Blvd. and will end at 5200 S. Halsted St.","eventUrl":null,"contactDetails":"The Ninth District Community Relations Office 312-747-3501","location":"^00 W. Garfield Blvd.","modifiedDate":"2016-05-24T13:22:51"},{"calendarId":4,"start":"2016-05-27T19:00:00","end":"2016-05-27T21:00:00","title":"4th District Faith In Action Day","eventDetails":"Join Us For Our Annual Partnership Outing With\nArea Clergy And Block Clubs Hosted By \n4th District Commander Noel Sanchez and \n7th Ward Alderman Greg Mitchell","eventUrl":null,"contactDetails":"Sgt. Edward Ramirez\n(312) 747-1708","location":"2154 E. 97th St\nChicago, IL 60617","modifiedDate":"2016-05-24T15:33:12"},{"calendarId":17,"start":"2016-05-27T18:30:00","end":"2016-05-27T20:30:00","title":"Night of Faith and Action","eventDetails":"Outdoor roll call and Meet and Greet the 17th Commander. ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Mayfair Presbyterian Church\n4358 W. Ainslie ","modifiedDate":"2016-05-23T13:06:20"},{"calendarId":25,"start":"2016-05-27T18:00:00","end":"2016-05-27T21:00:00","title":"Faith In Action Peace Rally & Cookout","eventDetails":"The 25th District joins local churches, community organizations, and residents to stand united against violence in our community. We open our doors to the neighborhood and encourage residents to proactively take back our communities that have been plagued by crime and violence. Please join us for great food and lots of fun !","eventUrl":null,"contactDetails":"25th District Community Relations Office: 312-746-5090","location":"4052 W. Potomac","modifiedDate":"2016-05-27T14:15:00"},{"calendarId":2,"start":"2016-05-27T18:00:00","end":"2016-05-27T21:00:00","title":"FAITH IN ACTION","eventDetails":"EVENT TO PROMOTE STOP THE VIOLENCE","eventUrl":null,"contactDetails":"2ND DISTRICT CAPS OFFICE\n5101 S. WENTWORTH\n312-747-5109","location":"BETHESD A.M.B. CHURCH\nPASTOR DAVID WATKINS\n109 E. 53.STREET","modifiedDate":"2016-05-17T17:02:42"},{"calendarId":16,"start":"2016-05-27T18:00:00","end":"2016-05-27T20:00:00","title":"Faith in Action","eventDetails":"Please join us for an outdoor roll call and get to meet our officers and your neighbors.","eventUrl":null,"contactDetails":"(312)742-4521, caps016district@chicagopolice.org","location":"St. Bartholomew, 4910 W Addison, Parking lot","modifiedDate":"2016-05-24T13:20:58"},{"calendarId":5,"start":"2016-05-27T18:00:00","end":"2016-05-27T20:00:00","title":"FAITH IN ACTION","eventDetails":"FAITH IN ACTION","eventUrl":null,"contactDetails":"005TH DISTRICT CAPS \n312-747-3100","location":"119TH & PRINCETON","modifiedDate":"2016-07-02T09:25:23"},{"calendarId":14,"start":"2016-05-27T18:00:00","end":"2016-05-27T20:00:00","title":"Night of Faith & Action","eventDetails":"Night of Faith & Action, a citywide initiative to empower residents by gathering together to create a safe and welcoming environment in Chicago's neighborhoods","eventUrl":null,"contactDetails":null,"location":"Lucy Flower Park\n2554 W Moffat","modifiedDate":"2016-04-21T16:09:29"},{"calendarId":6,"start":"2016-05-27T18:00:00","end":"2016-05-27T21:00:00","title":"Faith and Action","eventDetails":"Come out to a live praise and worship concert as we take back 79th street","eventUrl":null,"contactDetails":"312-745-3641","location":"79th and the Dan Ryan at the Churches Parking lot","modifiedDate":"2016-05-24T10:36:45"},{"calendarId":3,"start":"2016-05-27T18:00:00","end":"2016-05-27T21:00:00","title":"Night of Faith and Action","eventDetails":"Police, Clergy and Community will partner to empower our neighborhoods.","eventUrl":null,"contactDetails":"003rd District CAPS Office 312 747-7004","location":"6600 S. Cottage Grove","modifiedDate":"2016-05-23T16:10:32"},{"calendarId":2,"start":"2016-05-27T17:00:00","end":"2016-05-27T20:00:00","title":"FAITH IN ACTION","eventDetails":"COMMUNITY EVENT TO PROMOTE PEACE","eventUrl":null,"contactDetails":"2ND DISTRICT CAPS OFFICE\n5101 S. WENTWORTH\n312-747-5109","location":"APOSTLIC FAITH CHURCH\n3821 S. INDIANA","modifiedDate":"2016-05-18T10:19:29"},{"calendarId":10,"start":"2016-05-27T16:00:00","end":"2016-05-27T19:00:00","title":"Chicago's Summer of Faith and Action Kickoff","eventDetails":"Let's TAKE BACK OUR COMMUNITY!! Join us for the kickoff of City of Chicago's Faith and Action","eventUrl":null,"contactDetails":"CAPs 312-747-7511","location":"Blessed Sacrament Youth Center\n3600 W. Cermak Rd.\nChurch Parking Lot\n","modifiedDate":"2016-05-24T12:47:11"},{"calendarId":12,"start":"2016-05-27T16:00:00","end":"2016-05-27T21:00:00","title":"Faith and Action ","eventDetails":"Join us with your family and friends for a night of soccer, basketball, music, hot dogs and fun ","eventUrl":null,"contactDetails":"For information please call the 12th District Community Policing Office \n312-746-8306","location":"Union League Boys & Girls \n2157 W 19th Street \nActivities on \nLeavitt From 19th St.- 18th St. ","modifiedDate":"2016-05-20T12:51:13"},{"calendarId":9,"start":"2016-05-27T16:00:00","end":"2016-05-27T20:00:00","title":"Faith in Action Day","eventDetails":"Free food, Music, Professional Graffiti Mural, Create station for artist of all ages, softball game","eventUrl":null,"contactDetails":"Ninth District Community Relations Offices 312-747-3501","location":"Davis Square Park\n4420 S. Marshfield Av.","modifiedDate":"2016-05-24T13:18:08"},{"calendarId":18,"start":"2016-05-27T16:00:00","end":"2016-05-27T17:30:00","title":"Peace in the Park","eventDetails":"Community PEACE Walk and Out Door Roll Call","eventUrl":null,"contactDetails":"18th Dist. Community Relations 312-742-5778","location":"OZ Park 2021 N. Burling","modifiedDate":"2016-05-20T14:21:13"},{"calendarId":2,"start":"2016-05-27T14:00:00","end":"2016-05-27T16:00:00","title":"FAITH IN ACTION","eventDetails":"FAITH INSTITUTIONS AND THE COMMUNITY COME TOGETHER FOR PEACE","eventUrl":null,"contactDetails":"2ND DISTRICT CAPS OFFICE\n5101 S. WENTWORTH\n312-747-5109","location":"5058 S. KING DRIVE ","modifiedDate":"2016-05-18T10:19:08"},{"calendarId":3,"start":"2016-05-26T19:00:00","end":"2016-05-26T20:00:00","title":"Beat Meeting (321, 324)","eventDetails":"Beat Meeting (321, 324)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T15:52:43"},{"calendarId":24,"start":"2016-05-26T19:00:00","end":"2016-05-26T21:00:00","title":"Faith & Action 2016","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"Pratt and The Lakefront","modifiedDate":"2016-05-23T13:27:51"},{"calendarId":8,"start":"2016-05-26T19:00:00","end":"2016-05-26T20:00:00","title":"DAC Meeting","eventDetails":"008th District Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W 63rd St","modifiedDate":"2015-12-21T12:43:55"},{"calendarId":8,"start":"2016-05-26T19:00:00","end":null,"title":"DAC Meeting","eventDetails":"Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W 63rd Street","modifiedDate":"2016-05-10T14:09:39"},{"calendarId":6,"start":"2016-05-26T18:30:00","end":"2016-05-26T19:30:00","title":"Beat 634 Meeting","eventDetails":"Where the community come together to address their concerns!","eventUrl":null,"contactDetails":"CAPS Office @ 312-745-3641/3610","location":"New Progressive Baptist Church @ 9425 S. Perry","modifiedDate":"2015-12-16T16:41:02"},{"calendarId":11,"start":"2016-05-26T18:00:00","end":"2016-05-26T19:00:00","title":"Beat Meeting:1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Eloise Mc Coy Village Apt. 4650 W. Van Buren ","modifiedDate":"2015-12-21T13:43:44"},{"calendarId":5,"start":"2016-05-26T18:00:00","end":"2016-05-26T19:00:00","title":"DISTRICT ADVISORY COUNCIL","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:05:31"},{"calendarId":22,"start":"2016-05-26T10:30:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room, 1900 W. Monterey","modifiedDate":"2015-12-23T08:43:15"},{"calendarId":12,"start":"2016-05-26T08:30:00","end":"2016-05-26T10:30:00","title":"Food Giveaway ","eventDetails":"The Greater Chicago Food Depository?s Produce mobile will be in the West Town Community giving away FREE fresh fruits, bread & vegetables!! Bring a cart there is usually a lot of food. ","eventUrl":null,"contactDetails":"Contact Info: 12th District Community Policing Office \n312-746-8306","location":"The event is held at Eckhart Park - 1330 W. Chicago Ave. ","modifiedDate":"2016-04-30T11:12:14"},{"calendarId":17,"start":"2016-05-25T19:30:00","end":"2016-05-25T20:30:00","title":"1711 & 1712 Beat Meeting ","eventDetails":"Monthly Beat Meeting for beat 1711 and for beat 1712.","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Mayfair Church\n5020 N Pulaski","modifiedDate":"2016-03-02T10:08:49"},{"calendarId":8,"start":"2016-05-25T19:00:00","end":"2016-05-25T20:00:00","title":"835 Beat Meeting","eventDetails":"Wrightwood Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"8530 S. Kedzie","modifiedDate":"2015-12-21T12:44:10"},{"calendarId":20,"start":"2016-05-25T19:00:00","end":"2016-05-25T20:00:00","title":"2032 Beat Meeting","eventDetails":"2032 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Ravenswood Evangelical Church\n4900 N. Damen","modifiedDate":"2016-02-01T11:39:54"},{"calendarId":25,"start":"2016-05-25T18:30:00","end":"2016-05-25T19:30:00","title":"Beat Meeting 2523","eventDetails":"Beat Meeting 2523","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"4021 W. Belmont","modifiedDate":"2015-12-10T10:54:15"},{"calendarId":6,"start":"2016-05-25T18:30:00","end":"2016-05-25T19:30:00","title":"Beat 624 Meeting","eventDetails":"Where the community come together to address their concerns!","eventUrl":null,"contactDetails":"CAPS Office @ 312-745-3641/3610","location":"St. Dorothy Catholic School @ 450 E. 78th Street","modifiedDate":"2015-12-16T16:41:11"},{"calendarId":17,"start":"2016-05-25T18:30:00","end":"2016-05-25T19:15:00","title":"1713 Beat Meeting ","eventDetails":"Bi monthly meeting for beat 1713. ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"5000 N. Spaulding\nNorth Park University","modifiedDate":"2016-03-02T10:08:38"},{"calendarId":9,"start":"2016-05-25T18:30:00","end":"2016-05-25T19:30:00","title":"914 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chinatown Library\n2100 S. Wentworth Ave.","modifiedDate":"2016-04-14T18:24:21"},{"calendarId":12,"start":"2016-05-25T18:00:00","end":"2016-05-25T19:00:00","title":"Beat Meeting 1235","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Las Americas 1611 S. Racine on the 4th Wednesday of the odd months.","modifiedDate":"2015-11-28T13:21:22"},{"calendarId":3,"start":"2016-05-25T18:00:00","end":"2016-05-25T19:00:00","title":"DAC Meeting","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T11:41:36"},{"calendarId":14,"start":"2016-05-25T13:30:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2015-12-09T13:07:30"},{"calendarId":25,"start":"2016-05-25T13:00:00","end":"2016-05-25T14:00:00","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:46:42"},{"calendarId":24,"start":"2016-05-25T11:00:00","end":"2016-05-25T16:00:00","title":"Senior Citizen Sox Game Outing","eventDetails":"Senior Citizen Outing.","eventUrl":null,"contactDetails":"24th District Community Policing Office. (312)744-6321","location":"U.S. Cellular Field","modifiedDate":"2016-05-23T13:27:34"},{"calendarId":15,"start":"2016-05-25T08:30:00","end":"2016-05-25T10:00:00","title":"Business Meeting","eventDetails":"Business owners of the 15th District meet to discuss concerns of crime and ways to improve business related issues.","eventUrl":null,"contactDetails":"015th District CAPS\n5701 W Madison\n312-743-1495","location":"MacArthur's Restaurant\n5412 W Madison ","modifiedDate":"2016-05-16T14:19:39"},{"calendarId":9,"start":"2016-05-24T19:00:00","end":"2016-05-24T20:00:00","title":"922, 923 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Simon Church Hall\n5157 S. California Ave.","modifiedDate":"2016-04-14T18:24:37"},{"calendarId":8,"start":"2016-05-24T19:00:00","end":"2016-05-24T20:00:00","title":"813/833 Beat Meeting","eventDetails":"West Lawn Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W 65th St","modifiedDate":"2015-12-21T12:45:47"},{"calendarId":12,"start":"2016-05-24T19:00:00","end":"2016-05-24T20:00:00","title":"Beat Meeting 1211","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":": 12th District CAPS Office 312-746-8306 ","location":"The meeting is held at Norwegian Hospital 1044 N. Francisco on the 4th Tuesday of the odd months.","modifiedDate":"2015-11-28T13:17:47"},{"calendarId":3,"start":"2016-05-24T19:00:00","end":"2016-05-24T20:00:00","title":"20 Sector Beat Meeting (322, 323)","eventDetails":"Beat Meeting (322, 323)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T15:52:00"},{"calendarId":9,"start":"2016-05-24T19:00:00","end":"2016-05-24T20:00:00","title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"3120 S. Halsted St.","modifiedDate":"2016-05-02T19:44:29"},{"calendarId":24,"start":"2016-05-24T19:00:00","end":"2016-05-24T20:00:00","title":"2433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Edgewater Library 6000 N. Broadway","modifiedDate":"2016-01-08T14:08:14"},{"calendarId":24,"start":"2016-05-24T19:00:00","end":"2016-05-24T20:00:00","title":"2422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office. (312) 744-6321","location":"Willye White Park 1610 W. Howard","modifiedDate":"2015-12-07T14:53:01"},{"calendarId":6,"start":"2016-05-24T18:30:00","end":"2016-05-24T19:30:00","title":"Beat 614 Meeting","eventDetails":"Where the community come together to address their concerns!","eventUrl":null,"contactDetails":"CAPS Office @ 312-745-3641/3610","location":"Foster Park Fieldhouse @ 1440 W. 84th Street","modifiedDate":"2015-12-16T16:42:01"},{"calendarId":25,"start":"2016-05-24T18:30:00","end":"2016-05-24T19:30:00","title":"Beat Meeting 2513","eventDetails":"Beat Meeting 2513","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"6200 W. Bloomingdale","modifiedDate":"2015-12-10T11:24:19"},{"calendarId":11,"start":"2016-05-24T18:00:00","end":"2016-05-24T19:00:00","title":"Beat Meeting: 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2015-12-22T14:02:17"},{"calendarId":3,"start":"2016-05-24T18:00:00","end":"2016-05-24T19:00:00","title":"Positive Loitering Event","eventDetails":"Positive Loitering Event","eventUrl":null,"contactDetails":"P.O. Hutchinson\n(312) 747-7004\n7040 S. Cottage Grove\nChicago, IL. 60637\n","location":"7100 S. Jeffery\nChicago, IL. 60649","modifiedDate":"2016-01-19T18:49:02"},{"calendarId":1,"start":"2016-05-24T14:00:09","end":"2016-05-24T15:00:09","title":"30 Sect Business meeting","eventDetails":"Beat meeting for business partners from 30 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"1718 S State\n001 Community Room","modifiedDate":"2015-12-16T12:19:18"},{"calendarId":3,"start":"2016-05-24T14:00:00","end":"2016-05-24T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:51:54"},{"calendarId":22,"start":"2016-05-24T10:30:00","end":"2016-05-24T11:30:00","title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:44:25"},{"calendarId":8,"start":"2016-05-24T10:00:00","end":null,"title":"senior subcommitte meeting","eventDetails":"Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W 63rd Street","modifiedDate":"2016-05-10T14:09:48"},{"calendarId":5,"start":"2016-05-24T10:00:00","end":"2016-05-24T11:00:00","title":"COURT ADVOCACY","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:05:16"},{"calendarId":17,"start":"2016-05-23T19:00:00","end":"2016-05-23T20:00:00","title":"DAC Meeting","eventDetails":"District Advisory Committee Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N.Pulaski\n17th District Community Room","modifiedDate":"2016-04-07T10:07:26"},{"calendarId":11,"start":"2016-05-23T18:00:30","end":"2016-05-23T19:00:30","title":"District Advisory Committee ","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 11th District.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"011th District Auditorium ","modifiedDate":"2015-12-28T09:28:34"},{"calendarId":15,"start":"2016-05-23T15:00:00","end":"2016-05-23T16:00:00","title":"District Advisory Committee","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 15th district.","eventUrl":null,"contactDetails":"15th District \nCommunity Policing Office\n312-743-1495\n","location":"15th District \nCommunity Room\n5701 W Madison Ave","modifiedDate":"2016-03-24T12:36:17"},{"calendarId":6,"start":"2016-05-21T11:00:00","end":"2016-05-21T12:00:00","title":"Law Explorers Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office @ 312-745-3641/3610","location":"006th District Police Station @ 7808 S. Halsted","modifiedDate":"2015-12-16T16:39:04"},{"calendarId":18,"start":"2016-05-21T10:00:00","end":"2016-05-21T12:00:00","title":"Explorer Scouts","eventDetails":"Explorer Scouts and Peer Jury","eventUrl":null,"contactDetails":"P.O Ferguson","location":"18th District\n1160 N. Larrabee\nChicago, Il 60610\n","modifiedDate":"2016-03-21T16:16:28"},{"calendarId":15,"start":"2016-05-21T10:00:00","end":"2016-05-21T12:00:00","title":"Block Club Training","eventDetails":"Block club training is provided to residents who are concerned and care about their communities, share information, identify concerns and act collectively to address these concerns.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n5701 W Madison Ave\nChicago, IL\n312-743-1495","location":"15th District\nCommunity Policing Room\n5701 W Madison Ave\nChicago, IL \n312-743-1495","modifiedDate":"2016-01-07T10:25:30"},{"calendarId":9,"start":"2016-05-21T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Area Central\n5101 S. Wentworth","modifiedDate":"2016-04-13T12:52:52"},{"calendarId":3,"start":"2016-05-21T09:00:00","end":"2016-05-21T10:00:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"51st Wentworth","modifiedDate":"2016-01-19T18:57:54"},{"calendarId":17,"start":"2016-05-21T09:00:00","end":"2016-05-21T13:30:00","title":"Peer Jury Meeting ","eventDetails":"Monthly Peer Jury Meeting ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room","modifiedDate":"2016-03-02T10:08:29"},{"calendarId":12,"start":"2016-05-21T09:00:00","end":"2016-05-21T10:00:00","title":"Police Explorers ","eventDetails":"The program targets youths 12 to 20 years of age. The uniform, (shirt, patch and pants) will be provided by the 12th District Community Policing Office. The Explorer will receive a uniform after the Explorer attends 6 meetings and signs a letter of commitment. Anyone who wants to sign up is welcome. Please contact the Community Policing Office for further information.","eventUrl":null,"contactDetails":"Contact Info: 12th District Community Policing Office \n312-746-8306","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-04-30T10:17:59"},{"calendarId":9,"start":"2016-05-21T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Area Central\n5101 S. Wentworth Ave.","modifiedDate":"2016-01-05T17:26:11"},{"calendarId":7,"start":"2016-05-20T18:00:00","end":"2016-05-20T22:00:00","title":"Father/Daughter Dance","eventDetails":"Presented by Chicago Police Districts 005, 007, & 009 2nd Annual Dance.\nSpace is limited, please call for details","eventUrl":null,"contactDetails":"312-747-6722","location":"Hamilton Park\n513 W. 72ND Street","modifiedDate":"2016-01-20T16:13:04"},{"calendarId":8,"start":"2016-05-20T08:30:00","end":"2016-05-20T15:00:00","title":"13th Ward Senior Fair","eventDetails":"West Lawn Park","eventUrl":null,"contactDetails":"13th Ward \n773 581-1313","location":"4233 W 65th Street","modifiedDate":"2016-05-10T14:09:10"},{"calendarId":16,"start":"2016-05-20T07:30:34","end":"2016-05-20T08:00:34","title":"1623 Outdoor Roll Call","eventDetails":"Please join us at this outdoor roll call to be conducted with the purpose of providing a visible police presence and to help strengthen community/police interactions.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Farnsworth School\n5500 W. Balmoral","modifiedDate":"2016-05-24T11:05:49"},{"calendarId":14,"start":"2016-05-20T06:30:00","end":"2016-05-20T12:00:00","title":"Cop on Top for Special Olympics","eventDetails":"Support Special Olympics and meet 14th District Officers","eventUrl":null,"contactDetails":null,"location":"Dunkin Donuts\n2565 W Fullerton","modifiedDate":"2016-04-21T16:05:56"},{"calendarId":8,"start":"2016-05-20T05:30:00","end":null,"title":"Cop on Top","eventDetails":"Dunkin Donuts","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5500 S Pulaski","modifiedDate":"2016-05-10T14:09:56"},{"calendarId":5,"start":"2016-05-19T19:00:00","end":"2016-05-19T20:00:00","title":"BEAT 533 COMMUNITY MEETING","eventDetails":"ALTGELD HEALTH CENTER","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"1029 E 130TH ST ","modifiedDate":"2016-01-26T08:26:55"},{"calendarId":14,"start":"2016-05-19T19:00:00","end":null,"title":"1431 & 1432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Haas Park\n2402 N. Washtenaw","modifiedDate":"2016-01-06T10:22:49"},{"calendarId":16,"start":"2016-05-19T19:00:00","end":null,"title":"1611 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"St. Thecla\n6333 N. Newcastle","modifiedDate":"2016-02-18T13:35:51"},{"calendarId":7,"start":"2016-05-19T18:30:00","end":"2016-05-19T19:30:00","title":"District Advisory Council Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Station\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:17:48"},{"calendarId":11,"start":"2016-05-19T18:30:00","end":"2016-05-19T19:30:00","title":"Beat Meeting:1113/14/15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"St. Michael MBC 4106 W. Monroe ","modifiedDate":"2015-12-21T14:09:52"},{"calendarId":25,"start":"2016-05-19T18:30:00","end":"2016-05-19T19:30:00","title":"Beat Meeting 2533","eventDetails":"Beat Meeting 2533","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave. \nCommunity Room","modifiedDate":"2015-12-10T10:50:02"},{"calendarId":16,"start":"2016-05-19T18:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-02-18T13:35:40"},{"calendarId":3,"start":"2016-05-19T14:00:00","end":"2016-05-19T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:54:17"},{"calendarId":25,"start":"2016-05-19T13:30:00","end":"2016-05-19T14:30:00","title":"Business Meeting","eventDetails":"Business Meeting ","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2016-02-01T15:28:43"},{"calendarId":6,"start":"2016-05-19T10:00:00","end":"2016-05-19T11:00:00","title":"Domestic Violence Subcommitte Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office @ 312-745-3641/3610","location":"006th District Police Station @ 7808 S. Halsted Street ","modifiedDate":"2015-12-16T16:39:44"},{"calendarId":11,"start":"2016-05-19T10:00:00","end":"2016-05-19T11:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Senior Subcommittee monthly meeting. ","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312-746-9841\n","location":"Meeting 011th District Auditorium \n3151 W. Harrison \n","modifiedDate":"2015-12-28T08:41:26"},{"calendarId":17,"start":"2016-05-18T19:30:00","end":"2016-05-18T20:30:00","title":"1722 & 1723 Beat Meeting ","eventDetails":"Monthly Beat Meeting for beat 1722 and for beat 1723.","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room","modifiedDate":"2016-03-02T10:08:20"},{"calendarId":20,"start":"2016-05-18T19:00:00","end":"2016-05-18T20:00:00","title":"2013 Beat Meeting","eventDetails":"2013 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church \n5437 N. Clark ","modifiedDate":"2016-02-01T11:40:22"},{"calendarId":22,"start":"2016-05-18T19:00:00","end":"2016-05-18T20:00:00","title":"Beat 2234 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Station\n1900 W Monterey","modifiedDate":"2015-12-03T11:16:18"},{"calendarId":19,"start":"2016-05-18T19:00:00","end":"2016-05-18T20:00:00","title":"Beat 1921, 1922 & 1931","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"019 Police Auditorium\n2452 W. Belmont","modifiedDate":"2016-03-28T14:07:03"},{"calendarId":5,"start":"2016-05-18T19:00:00","end":"2016-05-18T20:00:00","title":"BEAT 532 COMMUNITY MEETING","eventDetails":"ST. ANTHONY CHURCH","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"11533 S PRAIRIE","modifiedDate":"2016-01-26T08:28:06"},{"calendarId":3,"start":"2016-05-18T19:00:00","end":"2016-05-18T20:00:00","title":"30 Sector Beat Meeting (333, 334)","eventDetails":"Beat Meeting (333, 334)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"South Shore Cultural Center\n7059 S. South shore Dr.\nChicago, Ill. 60649\n","modifiedDate":"2016-01-20T18:51:12"},{"calendarId":1,"start":"2016-05-18T19:00:00","end":"2016-05-18T20:00:00","title":"BT 133 Residential meeting","eventDetails":"Beat meeting for residents from beat 133","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"125 E 26th ST\nTrinity Episcopal Church\n","modifiedDate":"2015-12-16T12:19:47"},{"calendarId":16,"start":"2016-05-18T19:00:00","end":null,"title":"1623 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.\nCommunity Room","modifiedDate":"2016-02-18T13:36:03"},{"calendarId":14,"start":"2016-05-18T19:00:00","end":null,"title":"1423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Casa Central\n1343 N. California","modifiedDate":"2016-01-06T10:23:36"},{"calendarId":8,"start":"2016-05-18T19:00:00","end":"2016-05-18T20:00:00","title":"823/825 Beat Meeting","eventDetails":"008th District Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W. 63rd Street","modifiedDate":"2015-12-21T12:44:51"},{"calendarId":12,"start":"2016-05-18T19:00:00","end":"2016-05-18T20:00:00","title":"Beat Meeting 1213 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is a Norwest Settlement 1012 N. Noble on the 3rd Wednesday of the odd months","modifiedDate":"2015-11-28T13:18:09"},{"calendarId":17,"start":"2016-05-18T18:30:00","end":"2016-05-18T19:30:00","title":"1724 Beat Meeting ","eventDetails":"Bi monthly meeting for beat 1724","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"2741 W. Montrose\nHorner Park","modifiedDate":"2016-03-02T10:08:06"},{"calendarId":25,"start":"2016-05-18T18:30:00","end":"2016-05-18T19:30:00","title":"Beat Meeting 2515","eventDetails":"Beat Meeting 2515","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2310 N. Lorel","modifiedDate":"2015-12-10T11:21:00"},{"calendarId":2,"start":"2016-05-18T18:30:00","end":"2016-05-18T19:30:00","title":"Beat Meeting 233/234/235","eventDetails":"citizens will come together to discuss community problems.","eventUrl":null,"contactDetails":"2nd District CAPS Office\n312-747-5109","location":"Treasure Island\n1526 E. 56th Street","modifiedDate":"2016-04-13T13:12:03"},{"calendarId":6,"start":"2016-05-18T18:30:00","end":"2016-05-18T19:30:00","title":"Beat 623 Meeting","eventDetails":"Where the community come together to address their concerns!","eventUrl":null,"contactDetails":"CAPS Office @ 312-745-3641/3610","location":"Urban Partnership Bank @ 7801 S. State Street","modifiedDate":"2015-12-16T16:45:14"},{"calendarId":10,"start":"2016-05-18T18:00:00","end":"2016-05-18T19:00:00","title":"Beat 1013","eventDetails":"Community Beat Meeting 1013 ","eventUrl":null,"contactDetails":"CAPS Office\n312-747-7190","location":"Epiphany Church 2524 S. Keeler ","modifiedDate":"2016-02-26T10:37:47"},{"calendarId":9,"start":"2016-05-18T18:00:00","end":"2016-05-18T19:00:00","title":"925 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Gabriel Church Hall\n4500 S. Wallace St.","modifiedDate":"2016-04-14T18:24:49"},{"calendarId":18,"start":"2016-05-18T15:00:00","end":"2016-05-18T16:00:00","title":"Near North Security Meeting","eventDetails":"Must register at (312) 742-5778.","eventUrl":null,"contactDetails":"P.O Incaprera","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-03-21T16:18:15"},{"calendarId":5,"start":"2016-05-18T13:00:00","end":"2016-05-18T14:00:00","title":"SENIOR COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:03:33"},{"calendarId":18,"start":"2016-05-18T09:30:00","end":"2016-05-18T10:30:00","title":"Coffee with the Commander","eventDetails":"Commander Deveruex meets with citizens and discusses issues in the 018 District over a cup of coffee.","eventUrl":null,"contactDetails":"Sgt. Schumann","location":"Eva's Cafe\n1447 N. Sedgwick\nChicago, Il 60610","modifiedDate":"2016-03-21T16:16:11"},{"calendarId":12,"start":"2016-05-18T09:30:00","end":"2016-05-18T14:00:00","title":"Midway Service Center Shred-a-Thon","eventDetails":"Bring your documents to be shred. There is a three box limit. ","eventUrl":null,"contactDetails":"Organizer\nPatei Pullos \n773-340-4708 ","location":"Midway Service Center \n2717 West Chicago Ave \nChicago, IL 60622 \n","modifiedDate":"2016-05-04T14:32:18"},{"calendarId":19,"start":"2016-05-17T19:00:00","end":"2016-05-17T20:00:00","title":"Beat 1911 & 1912","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing \n312-744-0064","location":"Sulzer Library\n4455 N. Lincoln","modifiedDate":"2016-03-28T14:08:38"},{"calendarId":8,"start":"2016-05-17T19:00:00","end":"2016-05-17T20:00:00","title":"811 Beat Meeting","eventDetails":"Good Shepherd Church","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5550 S Merrimac","modifiedDate":"2015-12-21T12:46:17"},{"calendarId":24,"start":"2016-05-17T19:00:00","end":"2016-05-17T20:00:00","title":"2424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Pottawatomie Park 7340 N. Rogers","modifiedDate":"2016-01-08T11:26:42"},{"calendarId":5,"start":"2016-05-17T19:00:00","end":"2016-05-17T20:00:00","title":"BEAT 531 COMMUNITY MEETING","eventDetails":"GREEN STONE UNITED METHODIST","eventUrl":null,"contactDetails":"CAPS OFFICE 312-312-747-3100","location":"11211 S ST. LAWRENCE","modifiedDate":"2016-01-26T08:29:11"},{"calendarId":12,"start":"2016-05-17T19:00:00","end":"2016-05-17T20:00:00","title":"Beat Meeting 1223","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Westhaven Park Community Room 1939 W. Lake St. on the 3rd Tuesday of the odd months","modifiedDate":"2015-11-28T13:19:40"},{"calendarId":1,"start":"2016-05-17T19:00:00","end":"2016-05-17T20:00:00","title":"BT 131/132 Residential Mtg","eventDetails":"Beat meeting with residents from BT's 131/132","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"1718 S State\n001 Community Room","modifiedDate":"2015-12-16T12:20:09"},{"calendarId":22,"start":"2016-05-17T19:00:00","end":"2016-05-17T20:00:00","title":"Beat 2222 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Brainerd Park\n1246 W 92nd St","modifiedDate":"2015-12-03T11:20:35"},{"calendarId":16,"start":"2016-05-17T19:00:00","end":null,"title":"1633 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Merrimac Park\n6343 W. Irving Park Rd.","modifiedDate":"2016-02-18T13:36:12"},{"calendarId":25,"start":"2016-05-17T18:30:00","end":"2016-05-17T19:30:00","title":"Beat Meeting 2531","eventDetails":"Beat Meeting 2531","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave. \nCommunity Room","modifiedDate":"2015-12-10T10:51:41"},{"calendarId":6,"start":"2016-05-17T18:30:00","end":"2016-05-17T19:30:00","title":"Beat 613 Meeting","eventDetails":"Where the community come together to address their concerns!","eventUrl":null,"contactDetails":"CAPS Office @ 312-745-3641/3610","location":"Walter Q. Gresham Elementary School @ 8524 S. Green","modifiedDate":"2015-12-16T16:45:48"},{"calendarId":2,"start":"2016-05-17T18:30:00","end":"2016-05-17T19:30:00","title":" Beat Meeting 221/223","eventDetails":"citizens will come together to discuss community problems.","eventUrl":null,"contactDetails":"2ND District CAPS Office\n312-747-5109","location":"King Center\n4314 S. Cottage","modifiedDate":"2016-04-13T13:12:41"},{"calendarId":25,"start":"2016-05-17T18:30:00","end":"2016-05-17T19:30:00","title":"Beat Meeting 2525","eventDetails":"Beat Meeting 2525","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2036 N. Avers","modifiedDate":"2015-12-10T10:52:28"},{"calendarId":9,"start":"2016-05-17T18:00:00","end":"2016-05-17T19:00:00","title":"932, 934, 935 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Westhaven Senior Homes\n850 W. Garfield Blvd.","modifiedDate":"2016-04-14T18:25:04"},{"calendarId":11,"start":"2016-05-17T18:00:00","end":"2016-05-17T19:00:00","title":"Beat Meeting:1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Homan Square Community Center 3559 W. Arthington","modifiedDate":"2015-12-21T15:05:24"},{"calendarId":3,"start":"2016-05-17T18:00:00","end":"2016-05-17T19:00:00","title":"Positive Loitering Event","eventDetails":"Positive Loitering Event","eventUrl":null,"contactDetails":"P.O. Hutchinson\n(312) 747-7004\n7040 S. Cottage Grove\nChicago, IL. 60637\n","location":"7100 S. Vernon\nChicago, IL. 60619","modifiedDate":"2016-01-19T18:49:13"},{"calendarId":9,"start":"2016-05-17T13:00:00","end":"2016-05-17T15:00:00","title":"Seniors Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"009th District Station\n3120 S. Halsted Ave.","modifiedDate":"2016-01-05T17:26:01"},{"calendarId":16,"start":"2016-05-17T13:00:00","end":null,"title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Jennene Whalen\n(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-02-19T12:53:05"},{"calendarId":12,"start":"2016-05-17T12:00:00","end":"2016-05-17T13:30:00","title":"Senior Awareness: Prescription Drug Use and Abuse","eventDetails":"FREE SENIOR ENRICHMENT SEMINAR SERIES\nSenior Awareness: Prescription Drug Use and Abuse","eventUrl":null,"contactDetails":"Please call to register your attendance at (312) 603-9233","location":"Daley Center\n50 W Washington Blvd\nCourtroom 2005","modifiedDate":"2016-05-04T14:33:23"},{"calendarId":17,"start":"2016-05-17T11:00:00","end":"2016-05-17T13:00:00","title":"Senior Citizen Meeting ","eventDetails":"Monthly Senior Citizen Subcommittee Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room","modifiedDate":"2016-03-02T10:04:56"},{"calendarId":11,"start":"2016-05-17T11:00:00","end":"2016-05-17T12:00:00","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"TBA","modifiedDate":"2016-01-26T14:10:05"},{"calendarId":2,"start":"2016-05-17T10:30:00","end":null,"title":"Senior Meeting","eventDetails":"Senior Monthly Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth ","modifiedDate":"2016-01-04T15:39:16"},{"calendarId":7,"start":"2016-05-16T13:00:00","end":"2016-05-16T15:00:00","title":"Senior Advisory Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"Tolton Manor\n6345 S. Stewart","modifiedDate":"2016-01-20T16:16:55"},{"calendarId":5,"start":"2016-05-14T10:00:00","end":"2016-05-14T12:00:00","title":"YOUTH LAW EXPLORERS","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:04:43"},{"calendarId":14,"start":"2016-05-14T10:00:00","end":null,"title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T10:20:26"},{"calendarId":16,"start":"2016-05-14T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Greg Dial\n(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-02-18T13:47:20"},{"calendarId":6,"start":"2016-05-14T09:00:00","end":"2016-05-14T13:00:00","title":"Block Club Convention","eventDetails":"Come out as various city, county and community agencies will be present to answer your questions. ","eventUrl":null,"contactDetails":"Contact the CAPS Office at 312-745-3641","location":"Simeon High School\n8147 S. Vincennes Ave\n","modifiedDate":"2016-05-04T09:26:07"},{"calendarId":7,"start":"2016-05-13T10:00:00","end":"2016-05-13T12:00:00","title":"DOMESTIC VIOLENCE WALK","eventDetails":"WALK STARTS FROM 007TH DISTRICT STATION","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"007TH DISTRICT\n1438 W. 63RD STREET","modifiedDate":"2016-01-20T16:18:44"},{"calendarId":20,"start":"2016-05-12T19:00:00","end":"2016-05-12T20:00:00","title":"2023 Beat Meeting","eventDetails":"2023 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Kenmore Plaza \n5225 N. Kenmore","modifiedDate":"2016-05-24T14:19:45"},{"calendarId":3,"start":"2016-05-12T19:00:00","end":"2016-05-12T20:00:00","title":"30 Sector Beat Meeting (331, 332)","eventDetails":"Beat Meeting (331,332)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"ABJ Community Center\n1818 E. 71st St.\nChicago, IL. 60649\n","modifiedDate":"2015-12-29T15:51:26"},{"calendarId":22,"start":"2016-05-12T19:00:00","end":null,"title":"Beat 2213 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Ridge Park\n9625 S Longwood Dr","modifiedDate":"2015-12-02T10:58:22"},{"calendarId":8,"start":"2016-05-12T19:00:00","end":"2016-05-12T20:00:00","title":"814 Beat Meeting","eventDetails":"Vittum Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5010 W. 50th Street","modifiedDate":"2015-12-21T12:45:32"},{"calendarId":12,"start":"2016-05-12T19:00:00","end":"2016-05-12T20:00:00","title":"Beat Meeting 1215","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the Goldblatt's Building 1615 W. Chicago Ave. on the 2nd Thursday of the odd months. ","modifiedDate":"2015-11-28T13:18:43"},{"calendarId":1,"start":"2016-05-12T19:00:00","end":"2016-05-12T20:00:00","title":"10 Sect Residential","eventDetails":"Beat meeting for residents from 10 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"400 E Randolph\ncondo Bldg","modifiedDate":"2015-12-16T12:20:34"},{"calendarId":4,"start":"2016-05-12T19:00:00","end":"2016-05-12T20:00:00","title":"Beat 421 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 004th Dist. Caps Office 312-747-1708","location":"Labor Of Love Apostolic Church\n2800 E. 79th St.","modifiedDate":"2016-06-01T11:44:14"},{"calendarId":5,"start":"2016-05-12T19:00:00","end":"2016-05-12T20:00:00","title":"BEAT 524 COMMUNITY MEETING","eventDetails":"LUTHERAN CHURCH OF THE HOLY SPIRIT","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"1335 w 115TH STREET","modifiedDate":"2016-01-26T08:30:44"},{"calendarId":15,"start":"2016-05-12T18:30:37","end":"2016-05-12T19:30:37","title":"Beat Meeting 1513S","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"George R Clark School\n1045 S Monitor\nChicago, IL","modifiedDate":"2016-01-05T09:57:46"},{"calendarId":6,"start":"2016-05-12T18:30:00","end":"2016-05-12T19:30:00","title":"Beat 632 Meeting","eventDetails":"Where the community come together to address their concerns!","eventUrl":null,"contactDetails":"CAPS Office @ 312-745-3641/3610","location":"Tuley Park Fieldhouse @ 501 E. 90th Place","modifiedDate":"2015-12-16T16:04:33"},{"calendarId":2,"start":"2016-05-12T18:30:00","end":"2016-05-12T19:30:00","title":"Beat Meeting 225/231/232","eventDetails":"citizens will come together to discuss community problems.","eventUrl":null,"contactDetails":"2nd District CAPS Office\n312-747-5109","location":"Coppin A.M.E. Church\n5627 S. Michigan","modifiedDate":"2016-04-13T13:12:21"},{"calendarId":18,"start":"2016-05-12T18:30:00","end":"2016-05-12T19:30:00","title":"10 Sector Beat Meeting","eventDetails":"10 Sector Beat Community Meeting","eventUrl":null,"contactDetails":"P.O Schenk","location":"St. James Lutheran Church and School\n2101 N. Fremont\nChicago, Il 60614","modifiedDate":"2016-03-21T16:16:52"},{"calendarId":6,"start":"2016-05-12T18:30:00","end":"2016-05-12T19:30:00","title":"Beat 633 Meeting","eventDetails":"Where the community come together to address their concerns!","eventUrl":null,"contactDetails":"CAPS Office @ 312-745-3641/3610","location":"Tuley Park Fieldhouse @ 501 E. 90th Place","modifiedDate":"2015-12-16T16:43:05"},{"calendarId":14,"start":"2016-05-12T18:30:00","end":null,"title":"1413 & 1414 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Public Library-Logan Square \n3030 W. Fullerton","modifiedDate":"2016-01-06T10:24:44"},{"calendarId":8,"start":"2016-05-12T18:00:00","end":null,"title":"faith Based Subcommittee Meeting","eventDetails":"Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W 63rd St","modifiedDate":"2016-05-10T14:10:05"},{"calendarId":11,"start":"2016-05-12T18:00:00","end":"2016-05-12T19:00:00","title":"Beat Meeting:1122/23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Legler Chicago Public Library 115 S. Pulaski","modifiedDate":"2015-12-21T14:35:58"},{"calendarId":10,"start":"2016-05-12T18:00:00","end":"2016-05-12T19:00:00","title":"BEAT 1033","eventDetails":"BEAT 1033 Community Beat Meeting","eventUrl":null,"contactDetails":"CAPS Office\n312-747-7190","location":"Little Village Library\n2311 S. Kedzie Ave","modifiedDate":"2016-02-26T10:38:06"},{"calendarId":20,"start":"2016-05-12T16:00:00","end":"2016-05-12T17:00:00","title":"Youth Explorer","eventDetails":"Peer jury training","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"5400 N. Lincoln","modifiedDate":"2016-05-24T14:20:06"},{"calendarId":1,"start":"2016-05-12T15:00:00","end":"2016-05-12T16:00:00","title":"District Advisory Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"001 District CAPS office \n312-745-4381 ","location":"1718 S. State Street \nCommunity Room ","modifiedDate":"2016-05-09T15:38:52"},{"calendarId":1,"start":"2016-05-12T14:00:00","end":"2016-05-12T15:00:00","title":"10 Sect Business","eventDetails":"Beat meeting for business partners from 20 sect beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"181 W Madison\nNorthern Trust ","modifiedDate":"2015-12-16T12:20:53"},{"calendarId":16,"start":"2016-05-12T13:00:00","end":"2016-05-12T13:15:00","title":"1612 Outdoor Roll Call","eventDetails":"Please join us at this outdoor roll call to be conducted with the purpose of providing a visible police presence at various locations, to help strengthen community/police interactions.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Taft High School\n6530 W. Bryn Mawr","modifiedDate":"2016-05-24T11:14:12"},{"calendarId":12,"start":"2016-05-12T12:00:00","end":"2016-05-12T13:00:00","title":"District Advisory Meeting","eventDetails":"The District Advisory Committee or (DAC) meeting is for stakeholders in the 12th District. These stakeholders are the businesses, faith and community organizations along with Beat Facilitators. The members meet on the 2nd Thursday of the month, with the District Commander, to address and come up with strategies to address issues in the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room. ","modifiedDate":"2016-04-27T12:19:37"},{"calendarId":5,"start":"2016-05-12T11:00:00","end":"2016-05-12T12:00:00","title":"PASTORAL COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:03:53"},{"calendarId":6,"start":"2016-05-12T10:00:00","end":"2016-05-12T11:00:00","title":"Faithbased Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office @ 312-745-3641/3610","location":"TBD","modifiedDate":"2015-12-16T16:37:47"},{"calendarId":8,"start":"2016-05-11T19:00:00","end":"2016-05-11T20:00:00","title":"812 Beat Meeting","eventDetails":"Clearing Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6423 W 63rd Place","modifiedDate":"2015-12-21T12:46:02"},{"calendarId":5,"start":"2016-05-11T19:00:00","end":"2016-05-11T20:00:00","title":"BEAT 523 COMMUNITY MEETING","eventDetails":"ST. PETER & PAUL","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"12425 S HALSTED","modifiedDate":"2016-01-26T08:33:55"},{"calendarId":9,"start":"2016-05-11T19:00:00","end":"2016-05-11T20:00:00","title":"912 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Maurice Church Hall\n3625 S. Hoyne Ave.","modifiedDate":"2016-04-14T18:25:23"},{"calendarId":1,"start":"2016-05-11T19:00:00","end":"2016-05-11T20:00:00","title":"20 Sect Residential","eventDetails":"Beat meeting for residents from 20 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"525 S State\nUniversity Center","modifiedDate":"2015-12-16T12:21:10"},{"calendarId":4,"start":"2016-05-11T19:00:00","end":"2016-05-11T20:00:00","title":"Beat 411 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 004th Dist. Caps Office 312-747-1708","location":"St. Felicitas Church\n1526 E. 84th St.","modifiedDate":"2016-06-01T11:51:41"},{"calendarId":17,"start":"2016-05-11T19:00:00","end":"2016-05-11T20:00:00","title":"1732 & 1733 Beat Meeting ","eventDetails":"Beat Meeting for beat 1732 and for beat 1733.","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"3546 W. Addison\nAthletic Park Field House ","modifiedDate":"2016-03-02T10:07:30"},{"calendarId":22,"start":"2016-05-11T18:45:00","end":"2016-05-11T19:45:00","title":"Beat 2232/2233 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Fernwood Park\n10438 S Wallace","modifiedDate":"2015-12-03T11:17:53"},{"calendarId":2,"start":"2016-05-11T18:30:00","end":"2016-05-11T19:30:00","title":"Beat Meeting","eventDetails":"citizens will come together to discuss community problems.","eventUrl":null,"contactDetails":"2nd District CAPS Office\n312-747-5109","location":"St Elizabeth Church\n4058 S. Michigan","modifiedDate":"2016-04-13T13:12:51"},{"calendarId":17,"start":"2016-05-11T18:30:00","end":"2016-05-11T19:00:00","title":"1731 Beat Meeting ","eventDetails":"Bi Monthly Meeting for beat 1731","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Kilbourn Park\n3501 N. Kilbourn ","modifiedDate":"2016-03-02T10:07:47"},{"calendarId":14,"start":"2016-05-11T18:30:00","end":null,"title":"1421 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Public Library-Humboldt Park\n1605 N. Troy","modifiedDate":"2016-01-06T10:23:59"},{"calendarId":12,"start":"2016-05-11T18:00:00","end":"2016-05-11T19:00:00","title":"Beat Meeting 1231","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Academy Square, 318 S. Throop on the 2nd Wednesday of the odd months. ","modifiedDate":"2015-11-28T13:20:34"},{"calendarId":11,"start":"2016-05-11T18:00:00","end":"2016-05-11T19:00:00","title":"Court Advocacy ","eventDetails":"Court Advocacy Meeting","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:24:32"},{"calendarId":18,"start":"2016-05-11T15:30:00","end":"2016-05-11T16:30:00","title":"30 Sector Hospitality Meeting","eventDetails":"30 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"Highline\n169 W. Kinzie\nChicago, Il 60654","modifiedDate":"2016-03-21T16:18:33"},{"calendarId":22,"start":"2016-05-11T13:30:00","end":null,"title":"Court Advocacy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:58:19"},{"calendarId":14,"start":"2016-05-11T13:30:00","end":null,"title":"Domestic Violence Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2015-12-09T13:10:30"},{"calendarId":6,"start":"2016-05-11T11:00:00","end":"2016-05-11T12:00:00","title":"Senior Citizen Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office @ 312-745-3641/3610","location":"006th District Police Station @ 7808 S. Halsted Street","modifiedDate":"2015-12-16T16:38:52"},{"calendarId":7,"start":"2016-05-11T09:30:00","end":"2016-05-11T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Police Station\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:14:23"},{"calendarId":16,"start":"2016-05-10T19:00:00","end":null,"title":"1613 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Oriole Park \n5430 N. Olcott","modifiedDate":"2016-04-14T17:48:09"},{"calendarId":24,"start":"2016-05-10T19:00:00","end":"2016-05-10T20:00:00","title":"2432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"24th District 6464 N. Clark","modifiedDate":"2016-01-08T14:09:06"},{"calendarId":8,"start":"2016-05-10T19:00:00","end":"2016-05-10T20:00:00","title":"831/832 Beat Meeting","eventDetails":"Marquette Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6734 S Kedzie","modifiedDate":"2015-12-21T12:44:38"},{"calendarId":4,"start":"2016-05-10T19:00:00","end":"2016-05-10T20:00:00","title":"Beat 423 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 004th Dist. Caps Office 312-747-1708","location":"Bessemer Park Field House\n8930 S. Muskegon Ave.","modifiedDate":"2016-06-01T11:46:17"},{"calendarId":5,"start":"2016-05-10T19:00:00","end":"2016-05-10T20:00:00","title":"BEAT 522 COMMUNITY MEETING","eventDetails":"GREATER CANAAN MBC","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"35 W 119TH STREET","modifiedDate":"2016-01-26T08:36:40"},{"calendarId":22,"start":"2016-05-10T19:00:00","end":"2016-05-10T20:00:00","title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Woodson Library\n9525 S Halsted","modifiedDate":"2015-12-03T11:19:23"},{"calendarId":15,"start":"2016-05-10T18:30:56","end":"2016-05-10T19:30:56","title":"Beat Meeting 1511 & 1524","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Hope Community Church\n5900 W Iowa St\nChicago, IL","modifiedDate":"2016-01-04T12:34:01"},{"calendarId":2,"start":"2016-05-10T18:30:00","end":"2016-05-10T19:30:00","title":"Beat Meeting 222","eventDetails":"citizens will come together to discuss community problems.","eventUrl":null,"contactDetails":"2nd District Caps Office\n312-747-5109","location":"Kennicott Park\n4434 S. Lake Park","modifiedDate":"2016-04-13T13:12:30"},{"calendarId":18,"start":"2016-05-10T18:30:00","end":"2016-05-10T19:30:00","title":"1821/22/23 Beat Meeting","eventDetails":"1821/22/23 Beat Community Meeting","eventUrl":null,"contactDetails":"P.O Schenk","location":"18th District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-03-21T16:17:12"},{"calendarId":19,"start":"2016-05-10T18:30:00","end":"2016-05-10T19:30:00","title":"Beat 1933","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Illinois Masonic\n836 W. Wellington","modifiedDate":"2016-03-28T14:05:25"},{"calendarId":9,"start":"2016-05-10T18:30:00","end":"2016-05-10T19:30:00","title":"913, 915 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"9th District Station\n3120 S. Halsted St.","modifiedDate":"2016-04-14T18:25:36"},{"calendarId":11,"start":"2016-05-10T18:30:00","end":"2016-05-10T19:30:00","title":"Beat Meeting: 1124/25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"JLM Abundant Life Center 2622 W. Jackson","modifiedDate":"2015-12-22T14:09:38"},{"calendarId":6,"start":"2016-05-10T18:30:00","end":"2016-05-10T19:30:00","title":"Beat 612 Meeting","eventDetails":"Where the community come together to address their concerns!","eventUrl":null,"contactDetails":"CAPS Office @ 312-745-3641/3610","location":"Southside Tabernacle Church @ 7724 S. Racine","modifiedDate":"2015-12-16T15:59:34"},{"calendarId":3,"start":"2016-05-10T18:00:00","end":"2016-05-10T19:00:00","title":"Positive Loitering Event","eventDetails":"Positive Loitering Event","eventUrl":null,"contactDetails":"P.O. Hutchinson\n(312) 747-7004\n7040 S. Cottage Grove\nChicago, IL. 60637\n","location":"1500 E. 66th Place\nChicago. IL. 60637","modifiedDate":"2016-01-19T18:49:23"},{"calendarId":12,"start":"2016-05-10T18:00:00","end":"2016-05-10T19:00:00","title":"Beat Meeting 1233","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting held at 1412 S. Blue Island, 12th District Community Room on the 2nd Tuesday of the odd months","modifiedDate":"2015-11-28T13:20:58"},{"calendarId":10,"start":"2016-05-10T18:00:00","end":"2016-05-10T19:00:00","title":"BEAT 1021","eventDetails":"1021 Community Beat Meeting","eventUrl":null,"contactDetails":"CAPS OFFICE\n312-747-7190","location":"Carey Tercentenary \n1448 S. Homan Ave","modifiedDate":"2016-02-26T10:38:29"},{"calendarId":2,"start":"2016-05-10T15:00:00","end":"2016-05-10T16:00:00","title":"Domestic Violence Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:18:39"},{"calendarId":15,"start":"2016-05-10T12:00:00","end":null,"title":"On The Table","eventDetails":"A meeting with stakeholders and district personnel discussing unifying members of the Chicago Police Department with people who live in communities most impacted by disparity, crime and negative interactions with law enforcement.","eventUrl":null,"contactDetails":"15th District CAPS Office\n5701 W Madison Ave\n312-743-1495","location":"Church On The Block\n500 N Laramie","modifiedDate":"2016-05-10T10:26:46"},{"calendarId":7,"start":"2016-05-10T12:00:00","end":"2016-05-10T13:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007TH District Police Station\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:15:31"},{"calendarId":17,"start":"2016-05-10T11:00:00","end":"2016-05-10T11:45:00","title":"DV Meeting ","eventDetails":"Monthly Domestic Violence Meeting ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room","modifiedDate":"2016-03-02T10:05:28"},{"calendarId":6,"start":"2016-05-10T10:00:00","end":"2016-05-10T11:00:00","title":"Business Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office @ 312-745-3641/3610","location":"TBD","modifiedDate":"2015-12-16T16:37:31"},{"calendarId":22,"start":"2016-05-10T10:00:00","end":"2016-05-10T11:00:00","title":"Clergy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-22T08:33:51"},{"calendarId":19,"start":"2016-05-09T19:00:00","end":"2016-05-09T20:00:00","title":"Beat 1932","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"New Life Church\n1110 W. Lill","modifiedDate":"2016-03-28T14:06:03"},{"calendarId":2,"start":"2016-05-09T18:30:00","end":"2016-05-09T19:30:00","title":" Beat Meeting ","eventDetails":"Beat Meeting for citizens will come together to discuss community problems.","eventUrl":null,"contactDetails":"2nd District CAPS Office\n312-747-5109","location":"Beat Meeting for 211\n3240 Indiana","modifiedDate":"2016-04-13T13:13:17"},{"calendarId":15,"start":"2016-05-09T15:00:40","end":"2016-05-09T16:00:40","title":"Domestic Violence Meeting","eventDetails":"Domestic violence members discuss and plan upcoming events for domestic violence victims / survivors","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-13T09:07:48"},{"calendarId":6,"start":"2016-05-07T11:00:00","end":"2016-05-07T12:00:00","title":"Law Explorers Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office @ 312-745-3641/3610","location":"006th District Police Station @ 7808 S. Halsted Street","modifiedDate":"2015-12-16T16:37:00"},{"calendarId":3,"start":"2016-05-07T11:00:00","end":"2016-05-07T12:00:00","title":"Youth/Explorers","eventDetails":"Youth/Explorers","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:00:21"},{"calendarId":12,"start":"2016-05-07T09:00:00","end":"2016-05-07T10:00:00","title":"Peer Jury ","eventDetails":"First Saturday of the month at 9:00 AM. Cases are referred to the 12th District Peer Jury by the Area Central Detective Division. The offenders have already admitted their guilt before they are referred to Peer Jury. Teen?s, ages 13-17, hear the reason for the criminal act and issue sanctions. The Peer Juror will receive Community Service Hours by the Community Policing Office. ","eventUrl":null,"contactDetails":"12th District Community Policing Office \n312-746-8306","location":"The meeting is at 12th District, 1412 S. Blue Island in the Community Room.","modifiedDate":"2016-04-30T11:17:48"},{"calendarId":11,"start":"2016-05-07T09:00:00","end":"2016-05-07T10:00:00","title":"Peer Jury","eventDetails":"Misdemeanor court cases are presented and sanctioned by their peers.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:04:26"},{"calendarId":25,"start":"2016-05-07T08:30:00","end":"2016-05-07T10:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave. \nCommunity Room","modifiedDate":"2015-12-10T10:44:24"},{"calendarId":8,"start":"2016-05-05T19:00:00","end":"2016-05-05T20:00:00","title":"834 Beat Meeting","eventDetails":"Bogan High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3939 W. 79th St","modifiedDate":"2015-12-21T12:44:25"},{"calendarId":5,"start":"2016-05-05T19:00:00","end":"2016-05-05T20:00:00","title":"BEAT 513 COMMUNITY MEETING","eventDetails":"ROSELAND CHRISTIAN MINISTRIES","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"10858 S MICHIGAN AVE","modifiedDate":"2016-01-26T08:38:18"},{"calendarId":16,"start":"2016-05-05T19:00:00","end":null,"title":"1631 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521.\nCAPS016District@chicagopolice.org","location":"Hiawatha Park\n8029 W. Forest Preserve Drive","modifiedDate":"2016-02-04T15:27:22"},{"calendarId":3,"start":"2016-05-05T19:00:00","end":"2016-05-05T20:00:00","title":"Beat Meeting (313, 314)","eventDetails":"Beat Meeting (313, 314)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Harris Park Recreation\n6200 S. Drexel\nChicago, IL. 60637\n","modifiedDate":"2015-12-29T15:54:48"},{"calendarId":22,"start":"2016-05-05T19:00:00","end":null,"title":"Beat 2211 and 2212 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-02T10:59:36"},{"calendarId":4,"start":"2016-05-05T19:00:00","end":"2016-05-05T20:00:00","title":"Beat 431 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 004th Dist. Caps Office 312-747-1708","location":"004th District Station\n2255 E.103rd St.","modifiedDate":"2016-06-01T11:45:16"},{"calendarId":15,"start":"2016-05-05T18:30:27","end":"2016-05-05T19:30:27","title":"Beat Meeting 1512 & 1523","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"PCC Wellness Center\n5425 W Lake St\nChicago, IL","modifiedDate":"2016-01-04T11:29:32"},{"calendarId":18,"start":"2016-05-05T18:30:00","end":"2016-05-05T19:30:00","title":"30 Sector Beat Meeting","eventDetails":"30 Sector Beat Community Meeting","eventUrl":null,"contactDetails":"P.O Schenk","location":"Access Living\n115 W. Chicago\nChicago, Il 60654","modifiedDate":"2016-03-21T16:17:42"},{"calendarId":25,"start":"2016-05-05T18:30:00","end":"2016-05-05T19:30:00","title":"Beat Meeting 2511","eventDetails":"Beat Meeting 2511","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"2833 N. Nordica","modifiedDate":"2015-12-10T11:26:21"},{"calendarId":6,"start":"2016-05-05T18:30:00","end":"2016-05-05T19:30:00","title":"Beat 631 Meeting","eventDetails":"Where the community come together to address their concerns!","eventUrl":null,"contactDetails":"CAPS Office @ 312 - 745 - 3641/3610","location":"Chatham Fields Lutheran Church @ 8050 S. St. Lawrence","modifiedDate":"2015-12-16T15:54:35"},{"calendarId":10,"start":"2016-05-05T18:00:00","end":"2016-05-05T19:00:00","title":"BEAT 1011 & 1012","eventDetails":"1011 & 1012 \nCommunity Beat Meeting","eventUrl":null,"contactDetails":"CAPS Office\n312-747-7190","location":"Clair House \n1350 S. Harding Ave.\n","modifiedDate":"2016-02-26T10:38:45"},{"calendarId":10,"start":"2016-05-05T18:00:00","end":"2016-05-05T19:00:00","title":"1011 BEAT MEETING","eventDetails":"1011 BEAT MEETING\n","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-7190","location":"CLAIRS HOUSE \n1350 S. HARDING\n","modifiedDate":"2015-12-17T16:08:42"},{"calendarId":11,"start":"2016-05-05T18:00:00","end":"2016-05-05T19:00:00","title":"Beat Meeting: 1112/21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2015-12-14T15:26:58"},{"calendarId":14,"start":"2016-05-05T17:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T10:20:43"},{"calendarId":20,"start":"2016-05-05T16:00:00","end":"2016-05-05T17:00:00","title":"Youth Explorer ","eventDetails":"Youth Explores","eventUrl":null,"contactDetails":"CAPS Office \n312-742-8770","location":"5400 N. Lincoln","modifiedDate":"2016-05-24T14:20:16"},{"calendarId":22,"start":"2016-05-05T14:00:00","end":null,"title":"Diversity and Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:56:55"},{"calendarId":1,"start":"2016-05-05T13:00:55","end":"2016-05-05T18:30:55","title":"Community Blood Drive ","eventDetails":"001st District CAPS is hosting a community blood drive. ","eventUrl":null,"contactDetails":"001 CAPS Office 312-745-4381 or www.heartlandbc.org to register; Walk-ins are also welcome! ","location":"1718 S. State Street Chicago, IL 60616\nCommunity Room ","modifiedDate":"2016-05-03T11:57:08"},{"calendarId":3,"start":"2016-05-05T13:00:00","end":"2016-05-05T14:00:00","title":"003rd District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:07:51"},{"calendarId":2,"start":"2016-05-05T13:00:00","end":"2016-05-05T14:00:00","title":"Faith Based Meeting ","eventDetails":"citizens will come together to discuss community problems.","eventUrl":null,"contactDetails":"2nd District CAPS Office\n312-747-5109","location":"Bishop Horace Smith Apostolic Faith\n3823 S. Indiana","modifiedDate":"2016-04-13T13:11:48"},{"calendarId":12,"start":"2016-05-05T12:00:00","end":"2016-05-05T13:30:00","title":"Aging at Home: Safety and Support Systems","eventDetails":"FREE SENIOR ENRICHMENT SEMINAR SERIES\nAging at Home: Safety and Support Systems","eventUrl":null,"contactDetails":"Please call to register your attendance. Contact Circuit Court of Cook County Elder Justice Center (312) 603-9233","location":"Daley Center\n50 W Washington Blvd\nCourtroom 2005","modifiedDate":"2016-05-04T14:32:51"},{"calendarId":11,"start":"2016-05-05T11:00:00","end":"2016-05-05T12:00:00","title":"Domestic Violence Subcommittee","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312.746.9841\n","location":"011th District (Auditorium)\n3151 W. Harrison\n","modifiedDate":"2015-12-22T15:08:55"},{"calendarId":5,"start":"2016-05-05T10:00:00","end":"2016-05-05T11:00:00","title":"DOMESTIC VIOLENCE COMMITTEE","eventDetails":"005TH DISTRICE POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:05:00"},{"calendarId":5,"start":"2016-05-04T19:00:00","end":"2016-05-04T20:00:00","title":"BEAT 512 COMMUNITY MEETING","eventDetails":"CHRISTIAN MISSIONARY BAPTIST CHURCH","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"132 W 104TH STREET","modifiedDate":"2016-01-26T08:39:47"},{"calendarId":12,"start":"2016-05-04T19:00:00","end":"2016-05-04T20:00:00","title":"Beat Meeting 1221 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is held at Smith Park 2526 W. Grand Ave. on the1st Wednesday of the odd months. ","modifiedDate":"2015-11-28T13:19:02"},{"calendarId":3,"start":"2016-05-04T19:00:00","end":"2016-05-04T20:00:00","title":"Beat Meeting (311, 312)","eventDetails":"Beat Meeting (311, 312)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n\n","location":"Bessie Coleman Library \n731 E. 63rd St.\nChicago, IL. 60637\n","modifiedDate":"2015-12-29T15:55:21"},{"calendarId":8,"start":"2016-05-04T19:00:00","end":"2016-05-04T20:00:00","title":"815/821 Beat Meeting","eventDetails":"St Bruno's Hall","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4839 S Harding","modifiedDate":"2015-12-21T12:45:19"},{"calendarId":16,"start":"2016-05-04T19:00:00","end":null,"title":"1621 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521\nCAPS016District@chicagopolice.org","location":"First Church of Forest Glen\n5400 N. Lawler","modifiedDate":"2016-01-25T23:09:43"},{"calendarId":4,"start":"2016-05-04T19:00:00","end":"2016-05-04T20:00:00","title":"Beat 412 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 004th Dist. Caps Office 312-747-1708","location":"Zion Lutheran church\n8455 S. Stony Island Ave.","modifiedDate":"2016-06-01T11:44:50"},{"calendarId":6,"start":"2016-05-04T18:30:00","end":"2016-05-04T19:30:00","title":"Beat 621 Meeting","eventDetails":"Where the community come together to address their concerns!","eventUrl":null,"contactDetails":"CAPS Office @ 312 - 745 - 3641/3610","location":"006th District Police Station","modifiedDate":"2015-12-16T15:49:47"},{"calendarId":6,"start":"2016-05-04T18:30:00","end":"2016-05-04T19:30:00","title":"Beat 622 Meeting","eventDetails":"Where the community come together to address their concerns!","eventUrl":null,"contactDetails":"CAPS Office @ 312-745-3641/3610","location":"006th District Police Station @ 7808 S. Halsted","modifiedDate":"2015-12-16T16:43:52"},{"calendarId":14,"start":"2016-05-04T18:30:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T10:21:01"},{"calendarId":15,"start":"2016-05-04T18:00:18","end":"2016-05-04T19:00:18","title":"Beat Meeting 1522 & 1533","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Loretto Hospital\n645 S Central Ave\nChicago, IL","modifiedDate":"2016-01-04T11:33:25"},{"calendarId":9,"start":"2016-05-04T18:00:00","end":"2016-05-04T19:00:00","title":"911, 921 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Davis School Annex\n3050 W. 39th St.","modifiedDate":"2016-04-18T18:45:26"},{"calendarId":14,"start":"2016-05-04T18:00:00","end":null,"title":"Beat Facilitator Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2016-01-06T10:22:11"},{"calendarId":2,"start":"2016-05-04T18:00:00","end":"2016-05-04T19:00:00","title":"D.A.C. Meeting","eventDetails":"Monthly D.A.C. Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T14:41:18"},{"calendarId":18,"start":"2016-05-04T15:00:00","end":"2016-05-04T16:00:00","title":"20 Sector Hospitality Meeting","eventDetails":"20 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"She-Nannigans\n16 W. Division\nChicago, Il 60610","modifiedDate":"2016-03-21T16:18:45"},{"calendarId":3,"start":"2016-05-04T14:00:00","end":"2016-05-04T15:00:00","title":"Court Advocate Meeting","eventDetails":"Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:09:37"},{"calendarId":25,"start":"2016-05-04T10:00:00","end":"2016-05-04T11:00:00","title":"Domestic Violence","eventDetails":"Domestic Violence\nSub-committee meeting \n","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave. \nCommunity Room","modifiedDate":"2015-12-10T10:41:35"},{"calendarId":5,"start":"2016-05-03T19:00:00","end":"2016-05-03T20:00:00","title":"BEAT 511 COMMUNITY MEETING","eventDetails":"ROSEHAVEN MANOR","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"10220 S MICHIGAN AVE","modifiedDate":"2016-01-26T08:41:07"},{"calendarId":12,"start":"2016-05-03T19:00:00","end":"2016-05-03T20:00:00","title":"Beat Meeting 1225","eventDetails":": The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Chicago Hope Academy 2108 W. Ogden on the 1st Tuesday of the odd months. ","modifiedDate":"2015-11-28T13:20:05"},{"calendarId":4,"start":"2016-05-03T19:00:00","end":"2016-05-03T20:00:00","title":"Beat 432 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the 004th District Caps Office at 312-747-1708","location":"St. Francis De Sales School","modifiedDate":"2016-03-29T17:55:23"},{"calendarId":24,"start":"2016-05-03T19:00:00","end":"2016-05-03T20:00:00","title":"2412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":null,"modifiedDate":"2015-12-07T14:54:34"},{"calendarId":8,"start":"2016-05-03T19:00:00","end":"2016-05-03T20:00:00","title":"822/824 Beat Meeting","eventDetails":"Solorio High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5400 S St. Louis","modifiedDate":"2015-12-21T12:45:04"},{"calendarId":22,"start":"2016-05-03T19:00:00","end":"2016-05-03T20:00:00","title":"Beat 2221 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Christ the King Church\n9225 S Hamilton","modifiedDate":"2015-12-03T11:22:04"},{"calendarId":15,"start":"2016-05-03T18:30:46","end":"2016-05-03T19:30:46","title":"Beat Meeting 1531 & 1532","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"West Branch Library\n4856 W Chicago Ave\nChicago, IL","modifiedDate":"2016-01-05T10:02:50"},{"calendarId":2,"start":"2016-05-03T18:30:00","end":"2016-05-03T19:30:00","title":"Beat Meeting","eventDetails":"citizens will come together to discuss community problems.","eventUrl":null,"contactDetails":"2nd District CAPS Office\n312-747-5109","location":"Mandrake Park Field House\n3858 S. Cottage","modifiedDate":"2016-04-13T13:13:02"},{"calendarId":11,"start":"2016-05-03T18:30:00","end":"2016-05-03T19:30:00","title":"Beat Meeting: 1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe.","eventUrl":null,"contactDetails":"011th District CAPS 3151 W. Harrison Street 312-746-9841","location":"Brian Piccolo School 1040 N. Keeler","modifiedDate":"2015-12-14T15:29:08"},{"calendarId":6,"start":"2016-05-03T18:30:00","end":"2016-05-03T19:30:00","title":"Beat 611 Meeting","eventDetails":"Where the community come together to address their concerns!","eventUrl":null,"contactDetails":"CAPS Office @ 312 - 745 - 3641/3610","location":"2nd Mt. Vernon Annex Church\n2101 W. 79th Street","modifiedDate":"2015-12-16T15:48:51"},{"calendarId":25,"start":"2016-05-03T18:30:00","end":"2016-05-03T19:30:00","title":"Beat Meeting 2521","eventDetails":"Beat Meeting 2521","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2715 N. Cicero","modifiedDate":"2015-12-10T11:17:41"},{"calendarId":19,"start":"2016-05-03T18:30:00","end":"2016-05-03T19:30:00","title":"Beat 1913","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Courtenay School\n4420 N. Beacon","modifiedDate":"2016-03-28T14:08:12"},{"calendarId":18,"start":"2016-05-03T18:30:00","end":"2016-05-03T19:30:00","title":"1824 Beat Meeting","eventDetails":"1824 Beat Community Meeting","eventUrl":null,"contactDetails":"P.O Schenk","location":"Latin School\n59 W. North Ave\nChicago, Il 60610","modifiedDate":"2016-03-21T16:19:08"},{"calendarId":25,"start":"2016-05-03T18:30:00","end":"2016-05-03T19:30:00","title":"Beat Meeting 2535","eventDetails":"Beat Meeting 2535","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"3647 W. North","modifiedDate":"2015-12-10T10:48:22"},{"calendarId":10,"start":"2016-05-03T18:00:00","end":"2016-05-03T19:00:00","title":"BEAT 1014","eventDetails":"Community Beat Meeting ","eventUrl":null,"contactDetails":"CAPS Office \n312-747-7511","location":"Lawndale Church \n3839 W. Ogden ave\n","modifiedDate":"2016-02-26T10:38:57"},{"calendarId":9,"start":"2016-05-03T18:00:00","end":"2016-05-03T19:00:00","title":"924, 931, 933 Beat meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"New City Supportive Living\n4707 S. Marshfield Ave.","modifiedDate":"2016-04-14T18:26:53"},{"calendarId":3,"start":"2016-05-03T18:00:00","end":"2016-05-03T19:00:00","title":"Positive Loitering Event","eventDetails":"Positive Loitering Event","eventUrl":null,"contactDetails":"P.O. Hutchinson\n(312) 747-7004\n7040 S. Cottage Grove\nChicago, IL. 60637\n","location":"6600 S. King Drive\nChicago, IL. 60637","modifiedDate":"2016-01-19T18:49:37"},{"calendarId":25,"start":"2016-05-03T14:00:00","end":"2016-05-03T15:00:00","title":"Court Advocacy","eventDetails":"Court Advocacy ","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:42:50"},{"calendarId":15,"start":"2016-05-03T10:00:31","end":"2016-05-03T12:00:31","title":"Faith Based Meeting","eventDetails":"Clergy from various denominations come together and discuss chronic crime issues that affects the community.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\nChicago, IL","modifiedDate":"2016-01-05T10:52:43"},{"calendarId":7,"start":"2016-04-30T10:00:00","end":"2016-04-30T15:00:00","title":"PROM WITH A PURPOSE","eventDetails":"PROM ATTIRE GIVE AWAY\nSPONSORED BY THE DOMESTIC VIOLENCE SUBCOMMITTEE","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"007TH DISTRICT POLICE STATION\n1438 W. 63RD STREET","modifiedDate":"2016-01-20T16:18:51"},{"calendarId":6,"start":"2016-04-29T17:30:00","end":"2016-04-29T20:00:00","title":"Dancin in the DIstrict","eventDetails":"Free Line Dancing Class","eventUrl":null,"contactDetails":"Contact the CAPS Office at 312-745-3641","location":"6th District\nCommunity Room\n7808 S. Halsted St","modifiedDate":"2016-03-12T10:05:46"},{"calendarId":2,"start":"2016-04-29T12:00:00","end":"2016-04-29T14:00:00","title":"CAPS APPERICATION DAY","eventDetails":"Speak to the youth on Safety Issues/Career Day","eventUrl":null,"contactDetails":"2nd District CAPS Office\n5109 S. Wentworth \n312-747-5109\nOfficer Gathings/ Levonne Tredwell","location":"Jackie Robinson School\n4225 S. lake Park","modifiedDate":"2016-05-09T11:05:24"},{"calendarId":16,"start":"2016-04-28T19:00:00","end":null,"title":"1634 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521.\nCAPS016District@chicagopolice.org","location":"St. Bartholomew\nKrueger Church \n4910 W. Addison","modifiedDate":"2016-02-19T12:51:17"},{"calendarId":25,"start":"2016-04-28T18:30:00","end":"2016-04-28T19:30:00","title":"Beat Meeting 2514","eventDetails":"Beat Meeting 2514","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"3115 N. Mason","modifiedDate":"2015-12-10T11:23:43"},{"calendarId":7,"start":"2016-04-28T18:30:00","end":"2016-04-28T19:30:00","title":"BEAT 711 & 712 MEETING","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"Sherwood Park\n5701 S. Shields","modifiedDate":"2016-01-20T16:28:55"},{"calendarId":5,"start":"2016-04-28T18:00:00","end":"2016-04-28T19:00:00","title":"DISTRICT ADVISORY COUNCIL","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:09:21"},{"calendarId":11,"start":"2016-04-28T18:00:00","end":"2016-04-28T19:00:00","title":"Beat Meeting:1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Eloise Mc Coy Village Apt. 4650 W. Van Buren ","modifiedDate":"2015-12-21T13:43:23"},{"calendarId":11,"start":"2016-04-28T16:30:00","end":"2016-04-28T18:30:00","title":"Youth EAVI","eventDetails":"Youth in the grades of 6th-12th will be engaged in academic enrichment, personal development, and community services activities out of school. ","eventUrl":null,"contactDetails":"011th District CAPS\n312-746-9841","location":"Salvation Army 825 N. Christiana, Chicago, IL 60651","modifiedDate":"2016-03-30T10:49:32"},{"calendarId":22,"start":"2016-04-28T14:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:41:31"},{"calendarId":1,"start":"2016-04-28T14:00:00","end":"2016-04-28T15:00:00","title":"10 Sect Business","eventDetails":"Beat meeting for business partners from the 10 sector","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"175 N State\nChicago Theatre","modifiedDate":"2015-12-08T17:14:23"},{"calendarId":22,"start":"2016-04-28T13:00:00","end":"2016-04-28T14:00:00","title":"Beat Facilitators Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:43:45"},{"calendarId":22,"start":"2016-04-28T10:30:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS 312-745-0620","location":"22nd District Community Room, 1900 W. Monterey","modifiedDate":"2015-12-23T08:43:28"},{"calendarId":17,"start":"2016-04-27T19:30:00","end":"2016-04-27T20:30:00","title":"1711 & 1712 Beat Meeting","eventDetails":"Beat Meeting for Beat 1711 and Beat 1712","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Mayfair Church\n5020 N. Pulaski","modifiedDate":"2016-03-02T10:05:16"},{"calendarId":8,"start":"2016-04-27T19:00:00","end":"2016-04-27T20:00:00","title":"835 Beat Meeting","eventDetails":"Wrightwood Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"8530 S Kedzie","modifiedDate":"2015-12-14T08:41:19"},{"calendarId":16,"start":"2016-04-27T19:00:00","end":null,"title":"1624 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521\nCAPS016District@chicagopolice.org","location":"Portage Park Senior Center\n4100 N. LONG","modifiedDate":"2016-01-25T23:10:39"},{"calendarId":16,"start":"2016-04-27T18:45:00","end":"2016-04-27T19:00:00","title":"1624 Outdoor Roll Call","eventDetails":"We are conducting an outdoor roll call with the purpose of providing a visible police presence. Join us in addressing issues in the area. You are invited to come meet and interact with your officers.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Portage Park Senior Ctr.\n4100 N. Long","modifiedDate":"2016-03-21T14:02:05"},{"calendarId":9,"start":"2016-04-27T18:30:00","end":"2016-04-27T19:30:00","title":"914 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chinatown Library\n2100 S. Wentworth Ave.","modifiedDate":"2015-11-30T16:49:36"},{"calendarId":25,"start":"2016-04-27T18:00:00","end":"2016-04-27T19:00:00","title":"Beat Meeting 2534","eventDetails":"Beat Meeting 2534","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"4338 W. Wabansia","modifiedDate":"2015-12-10T10:49:18"},{"calendarId":3,"start":"2016-04-27T18:00:00","end":"2016-04-27T19:00:00","title":"DAC Meeting","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T11:41:50"},{"calendarId":15,"start":"2016-04-27T12:00:00","end":"2016-04-27T20:00:00","title":"Life Source Blood Drive","eventDetails":"Every two seconds someone needs blood. Stop by and donate. Save a life. To learn about donating visit www.lifesource.org ","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n312-743-1495","location":"15th District \nCommunity Room\n5701 W Madison Ave","modifiedDate":"2016-04-01T14:08:23"},{"calendarId":15,"start":"2016-04-27T12:00:00","end":"2016-04-27T20:00:00","title":"Costco Special Reception","eventDetails":"Stop by and sign up for or renew your Costco Card. Enjoy low prices on many items including gas and prescriptions. Sign up at the reception and you are eligible for a Costco Cash Card.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n312-743-1495","location":"15th District Front Lobby\n5701 W. Madison Ave","modifiedDate":"2016-04-01T14:07:29"},{"calendarId":8,"start":"2016-04-26T19:00:00","end":"2016-04-26T20:00:00","title":"813/833 Beat Meeting","eventDetails":"West Lawn Park","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W 65th St","modifiedDate":"2015-12-14T08:42:22"},{"calendarId":24,"start":"2016-04-26T19:00:00","end":"2016-04-26T20:00:00","title":"2431 Beat meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312)744-6321","location":"St. Jerome's Parish Center 1709 W. Lunt","modifiedDate":"2016-01-12T15:53:03"},{"calendarId":16,"start":"2016-04-26T19:00:00","end":null,"title":"1614 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521.\nCAPS016District@chicagopolice.org","location":"Salvation Army\n8354 W. Foster","modifiedDate":"2016-01-25T23:11:09"},{"calendarId":9,"start":"2016-04-26T19:00:00","end":"2016-04-26T20:00:00","title":"922, 923 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Simon Church Hall\n5157 S. California Ave.","modifiedDate":"2015-11-30T16:49:50"},{"calendarId":7,"start":"2016-04-26T18:30:00","end":"2016-04-26T19:30:00","title":"BEAT 713,714 AND 715","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"007TH DISTRICT POLICE STATION\n1438 W. 63RD STREET","modifiedDate":"2016-01-20T16:28:12"},{"calendarId":25,"start":"2016-04-26T18:30:00","end":"2016-04-26T19:30:00","title":"Beat Meeting 2532","eventDetails":"Beat Meeting 2532","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"1511 N. Long","modifiedDate":"2015-12-10T10:50:58"},{"calendarId":12,"start":"2016-04-26T18:00:00","end":"2016-04-26T19:00:00","title":"Beat Meeting 1232","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at 12th District, 1412 S. Blue Island, on the 4th Tuesday of the even months. ","modifiedDate":"2015-11-28T12:59:28"},{"calendarId":3,"start":"2016-04-26T18:00:00","end":"2016-04-26T19:00:00","title":"Positive Loitering Event","eventDetails":"Positive Loitering Event","eventUrl":null,"contactDetails":"P.O. Hutchinson\n(312) 747-7004\n7040 S. Cottage Grove\nChicago, IL. 60637\n","location":"7100 S. Jeffery \nChicago, IL. 60649","modifiedDate":"2016-01-15T13:32:31"},{"calendarId":11,"start":"2016-04-26T18:00:00","end":"2016-04-26T19:00:00","title":"Beat Meeting: 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2015-12-22T14:02:44"},{"calendarId":3,"start":"2016-04-26T14:00:00","end":"2016-04-26T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:52:07"},{"calendarId":22,"start":"2016-04-26T10:30:00","end":"2016-04-26T11:30:00","title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:45:35"},{"calendarId":5,"start":"2016-04-26T10:00:00","end":"2016-04-26T11:00:00","title":"COURY ADVOCACY","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:09:05"},{"calendarId":18,"start":"2016-04-25T18:30:00","end":"2016-04-25T19:30:00","title":"Keeping it Real","eventDetails":"A panel of Ex-Burglary offenders give a presentation on what they would target when committing a Burglary.","eventUrl":null,"contactDetails":"Sgt. Schumann","location":"Park Community Church\n1001 N. Crosby, 2nd Floor\nChicago, Il 60610","modifiedDate":"2016-03-14T15:45:27"},{"calendarId":11,"start":"2016-04-25T18:00:02","end":"2016-04-25T19:00:02","title":"District Advisory Committee ","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 11th District.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"011th District Auditorium ","modifiedDate":"2015-12-28T09:28:06"},{"calendarId":5,"start":"2016-04-23T10:00:00","end":"2016-04-23T12:00:00","title":"YOUTH LAW EXPLORERS","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:08:16"},{"calendarId":7,"start":"2016-04-23T10:00:00","end":"2016-04-23T15:00:00","title":"PROM WITH A PURPOSE","eventDetails":"PROM ATTIRE GIVE AWAY\nSPONSORED BY DOMESTIC VIOLENCE SUBCOMMITTEE","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"007TH DISTRICT POLICE STATION\n1438 W. 63RD STREET","modifiedDate":"2016-01-20T16:18:57"},{"calendarId":8,"start":"2016-04-23T09:00:00","end":null,"title":"Peer Jury","eventDetails":"Branch 34","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"155 W. 51st Street","modifiedDate":"2015-12-28T11:34:48"},{"calendarId":5,"start":"2016-04-23T08:30:00","end":"2016-04-23T11:00:00","title":"PEER JURY","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:07:58"},{"calendarId":2,"start":"2016-04-23T08:00:00","end":"2016-04-23T11:00:00","title":"Peer Jury","eventDetails":"Monthly Peer Jury","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:25:31"},{"calendarId":6,"start":"2016-04-22T17:30:00","end":"2016-04-22T20:00:00","title":"Dancin in the District","eventDetails":"Free Line Dancing Class","eventUrl":null,"contactDetails":"Contact the CAPS Office at 312-745-3641","location":"6th District\nCommunity Room\n7808 S. Halsted St","modifiedDate":"2016-03-12T10:05:53"},{"calendarId":8,"start":"2016-04-21T19:00:00","end":"2016-04-21T20:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":"West Lawn Park","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W. 65th Street","modifiedDate":"2015-12-28T11:23:43"},{"calendarId":20,"start":"2016-04-21T19:00:00","end":null,"title":"2024 Beat Community Meeting","eventDetails":"2024 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS312-742-8770","location":"Margate Park\n4921 N. Marine Drive","modifiedDate":"2016-01-20T08:59:10"},{"calendarId":14,"start":"2016-04-21T18:30:00","end":null,"title":"1433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Pulaski Park\n1419 W. Blackhawk","modifiedDate":"2015-12-15T14:16:35"},{"calendarId":7,"start":"2016-04-21T18:30:00","end":"2016-04-21T19:30:00","title":"BEAT 734 & 735","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"GIFTS FROM GOD MINISTRY\n1818 W. 74TH STREET","modifiedDate":"2016-01-20T16:20:41"},{"calendarId":25,"start":"2016-04-21T18:30:00","end":"2016-04-21T19:30:00","title":"Beat Meting 2524","eventDetails":"Beat Meting 2524","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2446 N. Ridgeway","modifiedDate":"2015-12-10T10:53:33"},{"calendarId":11,"start":"2016-04-21T18:30:00","end":"2016-04-21T19:30:00","title":"Beat Meeting:1113/14/15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"St. Michael MBC 4106 W. Monroe ","modifiedDate":"2015-12-21T14:09:39"},{"calendarId":16,"start":"2016-04-21T18:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Greg Dial","location":"5151 N. Milwaukee Ave.\n(312)742-4521\nCAPS016District@chicagopolice.org","modifiedDate":"2016-02-18T13:46:20"},{"calendarId":3,"start":"2016-04-21T14:00:00","end":"2016-04-21T15:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T18:54:29"},{"calendarId":15,"start":"2016-04-21T12:00:00","end":"2016-04-21T15:00:00","title":"Free Game Day","eventDetails":"Girls In The Game will be here in Austin for a free game day for girls. 3rd to 5th graders will play basketball, jump rope and learn about healthy relationships and self identity. 6th to 8th graders will learn to be an assistant coach, play sports and have fun. The Chicago Force, a women's football team will be in attendance to assist with the afternoon events.","eventUrl":null,"contactDetails":"15th District Caps Office\n5701 W Madison Ave\n312-743-1495","location":"Moore Park\n5085 W Adams Street","modifiedDate":"2016-03-24T12:37:29"},{"calendarId":11,"start":"2016-04-21T10:00:00","end":"2016-04-21T11:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Senior Subcommittee monthly meeting. ","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312-746-9841\n","location":"Meeting 011th District Auditorium \n3151 W. Harrison \n","modifiedDate":"2015-12-28T08:41:07"},{"calendarId":6,"start":"2016-04-21T10:00:00","end":"2016-04-21T11:00:00","title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"Contact CAPS office at\n312-745-3641","location":"Chicago Police Dept.\n7808 S. Halsted St\nCommunity Room","modifiedDate":"2015-12-28T10:02:20"},{"calendarId":17,"start":"2016-04-20T19:30:00","end":"2016-04-20T20:30:00","title":"1722 & 1723 Beat Meeting","eventDetails":"Beat meeting for beat 1722 and beat 1723","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Police Station","modifiedDate":"2016-03-02T10:06:06"},{"calendarId":22,"start":"2016-04-20T19:00:00","end":"2016-04-20T20:00:00","title":"Beat 2234 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Station\n1900 W Monterey","modifiedDate":"2015-12-03T11:16:28"},{"calendarId":8,"start":"2016-04-20T19:00:00","end":"2016-04-20T20:00:00","title":"823/825 Beat Meeting","eventDetails":"008th District Community Policing","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W 63rd St","modifiedDate":"2015-12-14T08:41:47"},{"calendarId":1,"start":"2016-04-20T19:00:00","end":"2016-04-20T20:00:00","title":"BT 133 Residential Mtg","eventDetails":"Beat meeting for residents from BT 133","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"2930 S Dearborn\nDearborn Homes","modifiedDate":"2015-12-15T17:09:00"},{"calendarId":20,"start":"2016-04-20T19:00:00","end":null,"title":"2013 Beat Community Meeting","eventDetails":"2013 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church\n5437 N. Clark","modifiedDate":"2016-01-20T08:59:18"},{"calendarId":14,"start":"2016-04-20T18:30:00","end":null,"title":"1434 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Public Library-Bucktown\n1701 N. Milwaukee","modifiedDate":"2015-12-15T14:15:24"},{"calendarId":2,"start":"2016-04-20T18:30:00","end":"2016-04-20T19:30:00","title":"Beat 233/234/235","eventDetails":"Beat Meeting for citizens to talk about their problems.","eventUrl":null,"contactDetails":"2nd District CAPS Office\n5101 S. Wentworth\n312-747-5109","location":"Treasure Island\n1526 E. 55th Street","modifiedDate":"2016-03-10T11:56:21"},{"calendarId":9,"start":"2016-04-20T18:00:00","end":"2016-04-20T19:00:00","title":"925 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Gabriel Church Hall\n4500 S. Wallace St.","modifiedDate":"2015-11-30T16:50:00"},{"calendarId":12,"start":"2016-04-20T18:00:00","end":"2016-04-20T19:00:00","title":"Beat Meeting 1234","eventDetails":": The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Harrison Park, 1824 S. Wood Street on the 3rd Wednesday of the even months. ","modifiedDate":"2015-11-28T12:59:52"},{"calendarId":10,"start":"2016-04-20T18:00:00","end":"2016-04-20T19:00:00","title":"30 SECTOR MEETING","eventDetails":"1031, 1032, 1033, 1034\nSECTOR MEETING","eventUrl":null,"contactDetails":"CAPS OFFICE \n312-747-7190","location":"10TH DISTRICT COMMUNITY ROOM 3315 W. OGDEN AVE. ","modifiedDate":"2016-02-17T17:07:00"},{"calendarId":18,"start":"2016-04-20T15:00:00","end":"2016-04-20T16:00:00","title":"10 Sector Hospitality Meeting","eventDetails":"10 Sector Hospitality Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"Goose Island BrewPub\n1800 N. Clybourn\nChicago, Il 60642","modifiedDate":"2016-03-14T15:42:59"},{"calendarId":18,"start":"2016-04-20T15:00:00","end":"2016-04-20T16:00:00","title":"Near North Security Meeting","eventDetails":"Must register at 312- 742-5778 to participate.","eventUrl":null,"contactDetails":"P.O Incaprera","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-03-14T15:46:05"},{"calendarId":5,"start":"2016-04-20T13:00:00","end":"2016-04-20T14:00:00","title":"SENIOR COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:05:47"},{"calendarId":18,"start":"2016-04-20T09:30:00","end":"2016-04-20T10:30:00","title":"Coffee with the Commander","eventDetails":"Have a cup of coffee with Commander Devereux and a discussion about events in the 018 District.","eventUrl":null,"contactDetails":"P.O Schenk","location":"Eva's Cafe\n1447 N. Sedgwick\nChicago, Il 60610","modifiedDate":"2016-03-14T15:44:20"},{"calendarId":15,"start":"2016-04-20T08:30:00","end":"2016-04-20T14:00:00","title":"A Spring Break Basketball Tournament","eventDetails":"A basketball tournament for 5th, 6th, 7th, and 8th graders. Come out and have some fun.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"The Peace Corner\n5022 W Madison Ave","modifiedDate":"2016-07-03T07:39:27"},{"calendarId":5,"start":"2016-04-19T19:00:51","end":"2016-04-19T20:00:51","title":"30 SECTOR MEETING","eventDetails":"ALTGELD GARDEN'S CYC BUILDING","eventUrl":null,"contactDetails":null,"location":"951 E 132ND ST.","modifiedDate":"2016-03-01T14:31:45"},{"calendarId":22,"start":"2016-04-19T19:00:00","end":"2016-04-19T20:00:00","title":"Beat 2222 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Brainerd Park\n1246 W 92nd St","modifiedDate":"2015-12-03T11:20:47"},{"calendarId":2,"start":"2016-04-19T19:00:00","end":"2016-04-19T20:30:00","title":"Spring Break Activity","eventDetails":"Youth Seminar Keeping IT Real","eventUrl":null,"contactDetails":"2nd District CAPS Office \nOfficer Gathings\n312-747-5109","location":"Chicago City Church\n5501 S. Wentworth","modifiedDate":"2016-05-09T11:05:39"},{"calendarId":8,"start":"2016-04-19T19:00:00","end":"2016-04-19T20:00:00","title":"811 Beat Meeting","eventDetails":"Good Shepherd Church","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5550 S Merrimac","modifiedDate":"2015-12-14T08:42:38"},{"calendarId":24,"start":"2016-04-19T19:00:00","end":"2016-04-19T20:00:00","title":"2423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"St. Jerome Parish Center 1709 W. Lunt","modifiedDate":"2016-01-12T15:52:18"},{"calendarId":1,"start":"2016-04-19T19:00:00","end":"2016-04-19T20:00:00","title":"BT 131/132 Residential Mtg","eventDetails":"Beat meeting for residents from BT 131/132","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"30 W Cermak\nHillard Apts","modifiedDate":"2015-12-15T17:09:15"},{"calendarId":7,"start":"2016-04-19T18:30:00","end":"2016-04-19T19:30:00","title":"BEAT 731,732 AND 733","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"HAMILTON PARK\n513 W. 72ND STREET","modifiedDate":"2016-01-20T16:22:44"},{"calendarId":2,"start":"2016-04-19T18:30:00","end":"2016-04-19T19:30:00","title":"Beat 221/223 Beat Meeting","eventDetails":"Beat Meeting for citizens to talk about their problems.","eventUrl":null,"contactDetails":"2nd District CAPS Office\n5101 S. Wentworth\n312-747-5109","location":"King Center \n4314 S. Cottage","modifiedDate":"2016-03-10T11:55:39"},{"calendarId":3,"start":"2016-04-19T18:00:00","end":"2016-04-19T19:00:00","title":"Positive Loitering Event","eventDetails":"Positive Loitering Event","eventUrl":null,"contactDetails":"P.O. Hutchinson\n(312) 747-7004\n7040 S. Cottage Grove\nChicago, IL. 60637\n","location":"7100 S. Vernon \nChicago, IL. 60619","modifiedDate":"2016-01-19T18:49:47"},{"calendarId":9,"start":"2016-04-19T18:00:00","end":"2016-04-19T19:00:00","title":"932, 934, 935 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Westhaven Senior Apts.\n850 W. Garfield Blvd.","modifiedDate":"2015-11-30T21:10:27"},{"calendarId":11,"start":"2016-04-19T18:00:00","end":"2016-04-19T19:00:00","title":"Beat Meeting:1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Homan Square Community Center 3559 W. Arthington","modifiedDate":"2015-12-21T15:05:10"},{"calendarId":16,"start":"2016-04-19T13:00:00","end":null,"title":"Senior Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Jennene Whalen\n(312)742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave","modifiedDate":"2016-02-18T14:18:23"},{"calendarId":9,"start":"2016-04-19T13:00:00","end":null,"title":"Seniors Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"009th District Station\n3120 S. Halsted Ave.","modifiedDate":"2016-01-05T17:26:21"},{"calendarId":17,"start":"2016-04-19T11:00:00","end":"2016-04-19T13:00:00","title":"Senior Citizen Meeting ","eventDetails":"Monthly Senior Citizen Subcommittee Meeting ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Fairmont Care Center\n5061 N. Pulaski","modifiedDate":"2016-03-02T10:05:40"},{"calendarId":11,"start":"2016-04-19T11:00:00","end":"2016-04-19T12:00:00","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"TBA","modifiedDate":"2016-01-26T14:10:45"},{"calendarId":2,"start":"2016-04-19T10:30:00","end":null,"title":"Senior Meeting","eventDetails":"Senior Monthly Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:38:54"},{"calendarId":15,"start":"2016-04-19T09:00:12","end":"2016-04-19T13:00:12","title":"015th District Shredding Event","eventDetails":"Do you have papers and documents with sensitive information on them laying around the house? Unsure what to do with them. Get rid of them the correct, proper and safe way. Attend this free event in the 15th District. Pick up information about identity theft and other ideas about consumer safety.","eventUrl":null,"contactDetails":"015th District CAPS Office\n312-743-1495","location":"15th District Parking Lot\n5701 W Madison Ave","modifiedDate":"2016-03-04T09:55:19"},{"calendarId":1,"start":"2016-04-18T18:30:00","end":"2016-04-18T20:30:00","title":"Sex Assault Awareness Training","eventDetails":"Workshop/Training on sexual assault awareness. ","eventUrl":null,"contactDetails":"001st District CAPS 312-745-4381.","location":"525 S. State University Center ","modifiedDate":"2016-03-30T15:39:07"},{"calendarId":7,"start":"2016-04-18T13:00:00","end":"2016-04-18T15:00:00","title":"Senior Advisory Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"Tolton Manor\n6345 S. Stewart","modifiedDate":"2016-01-20T16:17:02"},{"calendarId":16,"start":"2016-04-18T11:00:00","end":"2016-04-18T11:30:00","title":"1633 Outdoor Roll Call","eventDetails":"We are conducting an outdoor roll call with the purpose of providing a visible police presence. Join us in addressing issues in the area. You are invited to come meet and interact with your officers.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Community 1st Hospital\n5645 W. Addison","modifiedDate":"2016-03-23T19:47:16"},{"calendarId":2,"start":"2016-04-18T10:30:00","end":"2016-04-18T12:00:00","title":"Spring Break Activities","eventDetails":"Youth Seminar on Conflict and Resolution\nOfficer Gathings","eventUrl":null,"contactDetails":"Officer Gathings\n2nd District CAPS Office\n312-747-5109","location":"Hartzell Church\n3300 S. King Drive","modifiedDate":"2016-05-09T11:05:15"},{"calendarId":15,"start":"2016-04-18T10:00:53","end":"2016-04-18T14:00:53","title":"Just For Us Girls Teen Expo","eventDetails":"A positive learning event for girls which will include guest speakers from different agencies,local businesses, colleges and the City of Chicago. Topics covered will be career path opportunities, life choices, healthy living, good eating habits, self esteem, educational choices, bullying, teen dating, abuse and others.","eventUrl":null,"contactDetails":"15th District Caps Office\n5701 W Madison Ave\n312-743-1495","location":"Sankofa Cultural Arts & Business Center\n5820 W Chicago Ave","modifiedDate":"2016-03-24T12:44:23"},{"calendarId":15,"start":"2016-04-16T10:00:02","end":"2016-04-16T12:00:02","title":"Block Club Training","eventDetails":"Block club training is provided to residents who are concerned and care about their communities, share information, identify concerns and act collectively to address these concerns.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n5701 W Madison Ave\nChicago, IL\n312-743-1495","location":"15th District\nCommunity Policing Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-07T10:10:07"},{"calendarId":18,"start":"2016-04-16T10:00:00","end":"2016-04-16T12:00:00","title":"Explorer Scouts","eventDetails":"Explorer Scouts and Peer Jury","eventUrl":null,"contactDetails":"P.O Ferguson","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-03-14T15:46:23"},{"calendarId":15,"start":"2016-04-16T10:00:00","end":"2016-04-16T14:00:00","title":"Free Child Safety Seat Inspection","eventDetails":"Children may be at risk because they are not buckled properly in their car safety seats. Stop by for a free child safety seat inspection.","eventUrl":null,"contactDetails":"15th District\nCommunity Policing Office\n312-743-1495","location":"15th District Parking Lot\n5710 W Madison Ave","modifiedDate":"2016-04-01T14:09:17"},{"calendarId":17,"start":"2016-04-16T09:00:00","end":"2016-04-16T13:30:00","title":"Peer Jury Meeting","eventDetails":"Monthly Peer Jury Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Police Station","modifiedDate":"2016-03-02T10:06:36"},{"calendarId":9,"start":"2016-04-16T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Area Central\n5101 S. Wentworth Ave.","modifiedDate":"2016-01-05T17:26:29"},{"calendarId":3,"start":"2016-04-16T09:00:00","end":"2016-04-16T10:00:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"51st Wentworth","modifiedDate":"2016-01-19T18:58:14"},{"calendarId":4,"start":"2016-04-14T19:00:23","end":"2016-04-14T20:00:23","title":"Beat 422 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office.","location":"Labor Of Love Apostolic Church\n2800 E. 79th St.","modifiedDate":"2016-01-26T14:42:55"},{"calendarId":8,"start":"2016-04-14T19:00:00","end":"2016-04-14T20:00:00","title":"814 Beat Meeting","eventDetails":"Vittum Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5010 W 50th St","modifiedDate":"2015-12-14T08:42:13"},{"calendarId":16,"start":"2016-04-14T19:00:00","end":null,"title":"1632 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521.\nCAPS016District@chicagopolice.org","location":"Schorsch Village Hall\n6940 W. Belmont","modifiedDate":"2016-01-25T23:12:09"},{"calendarId":14,"start":"2016-04-14T19:00:00","end":null,"title":"1422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Hispanic Housing\n1402 N. Kedzie","modifiedDate":"2015-12-15T14:18:20"},{"calendarId":1,"start":"2016-04-14T19:00:00","end":"2016-04-14T20:00:00","title":"10 Sect Residential Mtg","eventDetails":"Beat meeting for residents from 10 sect beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"130 N Garland\nCondo Bldg","modifiedDate":"2015-12-08T17:12:44"},{"calendarId":22,"start":"2016-04-14T19:00:00","end":null,"title":"Beat 2213 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Ridge Park\n9625 S Longwood Dr","modifiedDate":"2015-12-02T10:58:32"},{"calendarId":16,"start":"2016-04-14T18:45:00","end":"2016-04-14T19:00:00","title":"1632 Outdoor Roll Call","eventDetails":"We are conducting an outdoor roll call with the purpose of providing a visible police presence. Join us in addressing issues in the area. You are invited to come meet and interact with your officers.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Schorsch Hall\n6940 W. Belmont","modifiedDate":"2016-03-23T19:51:24"},{"calendarId":15,"start":"2016-04-14T18:30:48","end":"2016-04-14T19:30:48","title":"Beat Meeting 1513N","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\nChicago, IL\n312-743-1495 ","modifiedDate":"2016-01-04T12:54:54"},{"calendarId":7,"start":"2016-04-14T18:30:00","end":"2016-04-14T18:30:00","title":"BEAT 724, 725 AND 726","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"OGDEN PARK\n6500 S. RACINE","modifiedDate":"2016-01-20T16:25:48"},{"calendarId":2,"start":"2016-04-14T18:30:00","end":"2016-04-14T19:30:00","title":"Beat Meeting 225/231/232","eventDetails":"Beat Meeting for citizens to talk about their problems.","eventUrl":null,"contactDetails":"2nd District CAPS Office\n5101 S. Wentworth\n312-747-5109","location":"Coppin A.M.E. Church\n5627 S. Michigan","modifiedDate":"2016-03-10T11:56:02"},{"calendarId":11,"start":"2016-04-14T18:00:00","end":"2016-04-14T19:00:00","title":"Beat Meeting:1122/23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"011 District CAPS ","location":"Legler Chicago Public Library 115 S. Pulaski","modifiedDate":"2017-06-28T23:11:01"},{"calendarId":12,"start":"2016-04-14T18:00:00","end":"2016-04-14T19:00:00","title":"Beat Meeting 1214","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Coyne Institute, 330 N. Green Street, on the 2nd Thursday of the even months. ","modifiedDate":"2015-11-28T12:50:04"},{"calendarId":10,"start":"2016-04-14T18:00:00","end":"2016-04-14T19:00:00","title":"1020 SECTOR MEETING","eventDetails":"1021, 1022, 1023, 1024\nSECTOR MEETINGS","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-7511","location":"10TH DISTRICT COMMUNITY ROOM 3315 W. OGDEN AVE.","modifiedDate":"2016-02-17T17:07:12"},{"calendarId":5,"start":"2016-04-14T11:00:00","end":"2016-04-14T12:00:00","title":"PASTORAL COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:07:42"},{"calendarId":6,"start":"2016-04-14T10:00:00","end":null,"title":"Faith-Based Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"Contact PO Derrick Jones at 312-745-3641","location":"Chicago Police Dept\n7808 S. Halsted St\nCommunity Room","modifiedDate":"2015-12-28T10:02:03"},{"calendarId":20,"start":"2016-04-13T19:00:14","end":"2016-04-13T20:00:14","title":"2012 Beat Meeting","eventDetails":"2012 Beat Community Meeting ","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"St. Gregory\n1609 W. Gregory","modifiedDate":"2016-02-09T13:47:18"},{"calendarId":16,"start":"2016-04-13T19:00:00","end":null,"title":"1622 Beat Meeting ","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521.\nCAPS016District@chicagopolice.org ","location":"Dunham Park\n4638 N. Melvina","modifiedDate":"2016-01-22T14:22:18"},{"calendarId":19,"start":"2016-04-13T19:00:00","end":"2016-04-13T20:00:00","title":"Beat 1914","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Clarendon Park\n4501 N. Clarendon","modifiedDate":"2016-02-05T13:52:50"},{"calendarId":22,"start":"2016-04-13T19:00:00","end":"2016-04-13T20:00:00","title":"Beat 2232/2233 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Fernwood Park\n10438 S Wallace","modifiedDate":"2015-12-03T11:18:03"},{"calendarId":17,"start":"2016-04-13T19:00:00","end":"2016-04-13T20:00:00","title":"1732&1733 Beat Meeting","eventDetails":"Beat Meeting for Beat 1732 and beat 1733","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Athletic Park Field House\n3546 W. Addison","modifiedDate":"2016-03-02T10:06:18"},{"calendarId":14,"start":"2016-04-13T19:00:00","end":null,"title":"1424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Wicker Park\n1425 N. Damen","modifiedDate":"2015-12-15T14:17:20"},{"calendarId":8,"start":"2016-04-13T19:00:00","end":"2016-04-13T20:00:00","title":"812 Beat Meeting","eventDetails":"St Symphorosa","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6135 S Austin","modifiedDate":"2015-12-14T08:42:30"},{"calendarId":1,"start":"2016-04-13T19:00:00","end":"2016-04-13T20:00:00","title":"20 Sect Residential Mtg","eventDetails":"Beat meeting for residents from 20 sect beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"525 S State\nUniversity Center","modifiedDate":"2015-12-08T17:03:39"},{"calendarId":9,"start":"2016-04-13T19:00:00","end":"2016-04-13T20:00:00","title":"912 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Maurice Church Hall\n3625 S. Hoyne Ave.","modifiedDate":"2015-11-30T21:10:38"},{"calendarId":4,"start":"2016-04-13T19:00:00","end":"2016-04-13T20:00:00","title":"Beat 413 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office.","location":"St. Ailbe Church\n9037 S. Harper Ave","modifiedDate":"2016-01-26T14:44:40"},{"calendarId":2,"start":"2016-04-13T18:30:00","end":"2016-04-13T19:30:00","title":"Beat 213/215/224 Beat Meetin","eventDetails":"Beat Meeting for citizens to talk about their problems.","eventUrl":null,"contactDetails":"2nd District CAPS Office\n5101 S. Wentworth\n312-747-5109","location":"St Elizabeth Church\n4058 S. Michigan","modifiedDate":"2016-03-10T11:55:22"},{"calendarId":11,"start":"2016-04-13T18:00:00","end":"2016-04-13T19:00:00","title":"Court Advocacy ","eventDetails":"Court Advocacy Meeting","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2017-03-29T11:24:34"},{"calendarId":25,"start":"2016-04-13T18:00:00","end":"2016-04-13T19:00:00","title":"District Advisory Committee","eventDetails":"DAC Meeting & Officer of the Month Awards","eventUrl":null,"contactDetails":"Sergeant Tom Cotter\nCommunity Policing Office\n(312) 746-5090","location":"5555 W. Grand Ave.\nChicago, IL 60639","modifiedDate":"2016-03-09T13:17:23"},{"calendarId":1,"start":"2016-04-13T17:00:00","end":"2016-04-13T18:00:00","title":"Court Advocacy Meeting ","eventDetails":"Information about the program. ","eventUrl":null,"contactDetails":"001st District CAPS 312-745-4381 or CAPS001district@chicagopolice.org ","location":"1718 S. State Street ","modifiedDate":"2016-03-30T15:32:58"},{"calendarId":18,"start":"2016-04-13T15:30:00","end":"2016-04-13T16:30:00","title":"30 Sector Hospitality Meeting","eventDetails":"30 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"Highline\n169 W. Kinzie\nChicago, Il 60654","modifiedDate":"2016-03-14T15:47:04"},{"calendarId":22,"start":"2016-04-13T13:30:00","end":null,"title":"Court Advocacy Subcommitee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:58:27"},{"calendarId":6,"start":"2016-04-13T11:00:00","end":"2016-04-13T12:00:00","title":"Senior Citizen Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"Contact CAPS office at\n312-745-3641","location":"Chicago Police Dept.\n7808 S. Halsted St\nCommunity Room","modifiedDate":"2015-12-28T10:02:10"},{"calendarId":7,"start":"2016-04-13T09:30:00","end":"2016-04-13T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Police Station\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:14:29"},{"calendarId":4,"start":"2016-04-12T19:00:00","end":"2016-04-12T20:00:00","title":"Beat 424 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office.","location":"Our Lady of Guadalupe\n3200 E. 91st St.","modifiedDate":"2016-01-26T14:45:27"},{"calendarId":5,"start":"2016-04-12T19:00:00","end":"2016-04-12T20:00:00","title":"20 SECTOR MEETING","eventDetails":"NEW DELIVERANCE CHURCH","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"11200 S STATE ST","modifiedDate":"2016-03-01T14:32:33"},{"calendarId":8,"start":"2016-04-12T19:00:00","end":"2016-04-12T20:00:00","title":"831/832 Beat Meeting","eventDetails":"Marquette Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6734 S Kedzie","modifiedDate":"2015-12-14T08:41:36"},{"calendarId":22,"start":"2016-04-12T19:00:00","end":"2016-04-12T20:00:00","title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Woodson Library\n9525 S Halsted","modifiedDate":"2015-12-03T11:19:33"},{"calendarId":20,"start":"2016-04-12T19:00:00","end":null,"title":"2022 Beat Community Meeting","eventDetails":"2022 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Broadway Armory \n5917 N. Broadway","modifiedDate":"2016-01-20T08:59:27"},{"calendarId":24,"start":"2016-04-12T19:00:00","end":"2016-04-12T20:00:00","title":"2411 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Indian Boundary Park 2500 W. Lunt","modifiedDate":"2016-03-24T15:03:57"},{"calendarId":12,"start":"2016-04-12T19:00:00","end":"2016-04-12T20:00:00","title":"Beat Meeting 1222","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at The Above and Beyond Family Recovery Center 2942 W. Lake St. on the 2nd Tuesday of the even months.","modifiedDate":"2015-12-05T13:58:53"},{"calendarId":15,"start":"2016-04-12T18:30:43","end":"2016-04-12T19:30:43","title":"Beat Meeting 1511 & 1524","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Hope Community Church\n5900 W Iowa St\nChicago, IL","modifiedDate":"2016-01-04T12:46:47"},{"calendarId":7,"start":"2016-04-12T18:30:00","end":"2016-04-12T19:30:00","title":"BEAT 722 & 723","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"KENNEDY-KING COLLEGE \n740 W. 63RD STREET","modifiedDate":"2016-01-20T16:26:23"},{"calendarId":9,"start":"2016-04-12T18:30:00","end":"2016-04-12T19:30:00","title":"913, 915 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"9th District Station\n3120 S. Halsted St.","modifiedDate":"2015-11-30T21:10:49"},{"calendarId":2,"start":"2016-04-12T18:30:00","end":"2016-04-12T19:30:00","title":"Beat 222 Beat Meeting","eventDetails":"Beat Meeting for citizens to talk about their problems.","eventUrl":null,"contactDetails":"2nd District CAPS Office\n5101 S. Wentworth\n312-747-5109","location":"Kennicott Park\n4434 S. Lake Park","modifiedDate":"2016-03-10T11:55:49"},{"calendarId":11,"start":"2016-04-12T18:30:00","end":"2016-04-12T19:30:00","title":"Beat Meeting: 1124/25","eventDetails":"Community engagements generating strategies to making neighborhoods safe","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"JLM Abundant Life Center 2622 W. Jackson","modifiedDate":"2015-12-22T14:10:14"},{"calendarId":3,"start":"2016-04-12T18:00:00","end":"2016-04-12T19:00:00","title":"Positive Loitering Event","eventDetails":"Positive Loitering Event","eventUrl":null,"contactDetails":"P.O. Hutchinson\n(312) 747-7004\n7040 S. Cottage Grove\nChicago, IL. 60637\n","location":"1500 E. 66th pl.\nChicago, IL. 60637","modifiedDate":"2016-01-19T18:49:57"},{"calendarId":6,"start":"2016-04-12T18:00:00","end":null,"title":"Court Advocacy","eventDetails":null,"eventUrl":null,"contactDetails":"Contact CAPS office at\n312-745-3641","location":"Chicago Police Dept.\n7808 S. Halsted St\nCommunity Room","modifiedDate":"2015-12-28T10:01:54"},{"calendarId":2,"start":"2016-04-12T15:00:00","end":"2016-04-12T16:00:00","title":"Domestic Violence Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:19:01"},{"calendarId":7,"start":"2016-04-12T12:00:00","end":"2016-04-12T13:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Police Station\n1438 W. 63RD STREET","modifiedDate":"2016-01-20T16:15:40"},{"calendarId":17,"start":"2016-04-12T11:00:00","end":"2016-04-12T11:45:00","title":"DV Meeting ","eventDetails":"Monthly Domestic Violence Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Police Station","modifiedDate":"2016-03-02T10:06:28"},{"calendarId":22,"start":"2016-04-12T10:00:00","end":"2016-04-12T11:00:00","title":"Clergy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-22T08:42:41"},{"calendarId":6,"start":"2016-04-12T10:00:00","end":null,"title":"Business Subcommitte ","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the CAPS office\nat 312-745-3641","location":"Chicago Police Dept.\n7808 S. Halsted St\nCommunity Room","modifiedDate":"2015-12-28T10:01:40"},{"calendarId":2,"start":"2016-04-11T18:30:54","end":"2016-04-11T19:30:54","title":"Beat 211 Beat Meeting","eventDetails":"Beat Meeting for citizens to talk about their problems.","eventUrl":null,"contactDetails":"CAPS Office \n5101 S. Wentworth\n312-747-5109","location":"College of Optometry\n3240 S. Indiana","modifiedDate":"2016-03-10T11:53:33"},{"calendarId":19,"start":"2016-04-11T18:30:00","end":"2016-04-11T19:30:00","title":"Beat 1934 & 1935","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"2nd Unitarian Church\n656 W. Barry","modifiedDate":"2016-02-05T13:45:39"},{"calendarId":15,"start":"2016-04-11T15:00:38","end":"2016-04-11T16:00:38","title":"Domestic Violence Meeting","eventDetails":"Domestic violence members discuss and plan upcoming events for domestic violence victims / survivors","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-13T09:10:42"},{"calendarId":5,"start":"2016-04-09T10:00:00","end":"2016-04-09T12:00:00","title":"YOUTH LAW EXPLORERS","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:08:31"},{"calendarId":14,"start":"2016-04-09T10:00:00","end":null,"title":"Senior Advisory Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2015-12-15T14:12:27"},{"calendarId":16,"start":"2016-04-09T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Greg Dial\n(312) 742-4521\nCAPS016District@chicagopolice.org","location":"5151 N Milwaukee Ave","modifiedDate":"2016-02-18T13:36:25"},{"calendarId":16,"start":"2016-04-08T23:00:00","end":"2016-04-08T23:30:00","title":"1611 Outdoor Roll Call","eventDetails":"We are conducting an outdoor roll call with the purpose of providing a visible police presence. Join us in addressing issues in the area. You are invited to come and meet and interact with your officers.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Indian Road Park\n6010 W. Matson","modifiedDate":"2016-03-23T19:54:36"},{"calendarId":4,"start":"2016-04-07T19:00:00","end":"2016-04-07T20:00:00","title":"Beat 434 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office.","location":"St. Kevin's Church\n10501 S. Torrence Ave.","modifiedDate":"2016-01-26T14:45:47"},{"calendarId":14,"start":"2016-04-07T19:00:00","end":null,"title":"1411 & 1412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Nicolai Church\n3000 N. Kedzie","modifiedDate":"2015-12-15T14:20:12"},{"calendarId":8,"start":"2016-04-07T19:00:00","end":"2016-04-07T20:00:00","title":"834 Beat Meeting","eventDetails":"Bogan High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3939 W 79th St","modifiedDate":"2015-12-14T08:41:28"},{"calendarId":3,"start":"2016-04-07T19:00:00","end":"2016-04-07T20:00:00","title":"30 Sector Beat Meeting (331, 332, 333 & 334)","eventDetails":"30 Sector Beat Meeting (331, 332, 333 & 334)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n\n","location":"ABJ Community Center\n1818 E. 71st St.\nChicago, IL. 60649\n","modifiedDate":"2015-12-29T11:52:05"},{"calendarId":15,"start":"2016-04-07T18:30:50","end":"2016-04-07T19:30:50","title":"Beat Meeting 1512 & 1523","eventDetails":"Residents, other stakeholders and the Poloice meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"PCC Wellness Center\n5425 W Lake St\nChicago, IL","modifiedDate":"2016-01-04T11:53:57"},{"calendarId":19,"start":"2016-04-07T18:30:00","end":"2016-04-07T19:30:00","title":"Beat 1915","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"The Shift\n4101 N. Broadway","modifiedDate":"2016-02-05T13:52:20"},{"calendarId":25,"start":"2016-04-07T18:30:00","end":"2016-04-07T19:30:00","title":"Beat Meeting 2522","eventDetails":"Beat Meeting 2522","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2240 N. Kilbourn","modifiedDate":"2015-12-10T11:16:47"},{"calendarId":11,"start":"2016-04-07T18:00:00","end":"2016-04-07T19:00:00","title":"Beat Meeting: 1112/21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2015-12-14T15:27:18"},{"calendarId":14,"start":"2016-04-07T17:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2015-12-15T14:13:27"},{"calendarId":22,"start":"2016-04-07T14:00:00","end":null,"title":"Diversity and Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:57:03"},{"calendarId":3,"start":"2016-04-07T13:00:00","end":"2016-04-07T14:00:00","title":"003rd District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:08:04"},{"calendarId":2,"start":"2016-04-07T13:00:00","end":"2016-04-07T14:00:00","title":"Faith Based Meeting ","eventDetails":"Faith Based Meeting for citizens to talk about their problems.","eventUrl":null,"contactDetails":"2nd District CAPS Office\n5101 S. Wentworth\n312-747-5109","location":"\nAMC - Center\n4421 S. State","modifiedDate":"2016-03-10T11:56:31"},{"calendarId":5,"start":"2016-04-07T10:00:00","end":"2016-04-07T11:00:00","title":"DOMESTIC VIOLENCE COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:08:48"},{"calendarId":20,"start":"2016-04-06T19:00:17","end":"2016-04-06T20:00:17","title":"20th Dist Beat Meeting Beat 2033","eventDetails":"Beat 2033","eventUrl":null,"contactDetails":"20th Dist CAPS 312-742-8770","location":"Bezazian Library\n1226 W. Anslie","modifiedDate":"2016-02-09T13:43:27"},{"calendarId":19,"start":"2016-04-06T19:00:00","end":"2016-04-06T20:00:00","title":"Beat 1923, 1924 & 1925","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"19th District\n850 W. Addison","modifiedDate":"2016-02-05T13:46:05"},{"calendarId":3,"start":"2016-04-06T19:00:00","end":"2016-04-06T20:00:00","title":"20 Sector Beat Meeting (321, 322, 323 & 324)","eventDetails":"20 Sector Beat Meeting (321, 322, 323 & 324)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Park Manor Church\n600 E. 73rd St.\nChicago, IL. 60619\n","modifiedDate":"2015-12-29T11:53:38"},{"calendarId":8,"start":"2016-04-06T19:00:00","end":"2016-04-06T20:00:00","title":"815/821 Beat Meeting","eventDetails":"St Bruno's Hall","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4839 S Harding","modifiedDate":"2015-12-14T08:42:04"},{"calendarId":4,"start":"2016-04-06T19:00:00","end":"2016-04-06T20:00:00","title":"Beat 414 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office.","location":"New Original Church\n1750 E. 78th St.","modifiedDate":"2016-01-26T14:46:34"},{"calendarId":25,"start":"2016-04-06T18:30:00","end":"2016-04-06T19:30:00","title":"Beat Meeting 2512","eventDetails":"Beat Meeting 2512","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"2211 N. Oak Park","modifiedDate":"2015-12-10T11:25:23"},{"calendarId":14,"start":"2016-04-06T18:30:00","end":null,"title":"Court Advocacy","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2015-12-15T14:13:46"},{"calendarId":15,"start":"2016-04-06T18:00:43","end":"2016-04-06T19:00:43","title":"Beat Meeting 1522 & 1533","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Loretto Hospital\n645 S Central Ave\nChicago, IL","modifiedDate":"2016-01-04T12:26:48"},{"calendarId":10,"start":"2016-04-06T18:00:00","end":"2016-04-06T19:00:00","title":"10 SECTOR BEAT MEETING","eventDetails":"10 SECTOR COMMUNITY BEAT MEETING","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-7511","location":"10TH DISTRICT COMMUNITY ROOM 3315 W. OGDEN AVE","modifiedDate":"2015-12-17T16:09:21"},{"calendarId":9,"start":"2016-04-06T18:00:00","end":"2016-04-06T19:00:00","title":"911, 921 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Davis School Annex\n3050 W 39th St.","modifiedDate":"2015-11-30T21:10:57"},{"calendarId":12,"start":"2016-04-06T18:00:00","end":"2016-04-06T19:00:00","title":"Beat Meeting 1224","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is held at the Chicago Police Academy 1300 W. Jackson on the1st Wednesday of the even months. ","modifiedDate":"2015-11-28T12:50:33"},{"calendarId":2,"start":"2016-04-06T18:00:00","end":"2016-04-06T19:00:00","title":"D.A.C. Meeting","eventDetails":"Monthly D.A.C. Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T14:41:41"},{"calendarId":18,"start":"2016-04-06T15:00:00","end":"2016-04-06T16:00:00","title":"20 Sector Hospitality Meeting","eventDetails":"20 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"She-Nannigans\n16 W. Division\nChicago, Il 60610","modifiedDate":"2016-03-14T15:47:43"},{"calendarId":3,"start":"2016-04-06T14:00:00","end":"2016-04-06T15:00:00","title":"Court Advocate Meeting","eventDetails":"Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:09:46"},{"calendarId":25,"start":"2016-04-06T10:00:00","end":"2016-04-06T11:00:00","title":"Domestic Violence","eventDetails":"Domestic Violence\nSub-committee meeting \n","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave. \nCommunity Room","modifiedDate":"2015-12-10T10:41:43"},{"calendarId":22,"start":"2016-04-05T19:00:00","end":"2016-04-05T20:00:00","title":"Beat 2221 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Christ the King Church\n9225 S Hamilton","modifiedDate":"2015-12-03T11:22:17"},{"calendarId":12,"start":"2016-04-05T19:00:00","end":"2016-04-05T20:00:00","title":"Beat Meeting 1212","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at St. Helen's School Basement, 2345 W. Augusta on the 1st Tuesday of the even months. ","modifiedDate":"2015-11-28T12:49:07"},{"calendarId":5,"start":"2016-04-05T19:00:00","end":"2016-04-05T20:00:00","title":"10 SECTOR MEETING","eventDetails":"AGAPE COMMUNITY CENTER","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"342 W 111TH ST.","modifiedDate":"2016-03-01T14:33:08"},{"calendarId":3,"start":"2016-04-05T19:00:00","end":"2016-04-05T20:00:00","title":"10 Sector Beat Meeting (311,312,313 & 314)","eventDetails":"10 Sector Beat Meeting (311, 312, 312, 313 & 314)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T11:54:15"},{"calendarId":16,"start":"2016-04-05T19:00:00","end":null,"title":"1612 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521.\nCAPS016District@chicagopolice.org","location":"Olympia Park\n6566 N. Avondale","modifiedDate":"2016-01-22T14:22:52"},{"calendarId":4,"start":"2016-04-05T19:00:00","end":"2016-04-05T20:00:00","title":"Beat 433 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office.","location":"St. Columba\n13323 S. Green Bay Ave","modifiedDate":"2016-01-26T14:47:17"},{"calendarId":24,"start":"2016-04-05T19:00:00","end":"2016-04-05T20:00:00","title":"2413 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office. (312) 744-6321","location":"Green Briar Park 2650 W. Peterson","modifiedDate":"2015-12-07T14:53:50"},{"calendarId":8,"start":"2016-04-05T19:00:00","end":"2016-04-05T20:00:00","title":"822/824 Beat Meeting","eventDetails":"Solorio High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5400 S St Louis","modifiedDate":"2015-12-14T08:41:55"},{"calendarId":15,"start":"2016-04-05T18:30:16","end":"2016-04-05T19:30:16","title":"Beat Meeting 1531 & 1532","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"West Branch Library\n4856 W Chicago Ave\nChicago, IL","modifiedDate":"2016-01-04T12:30:20"},{"calendarId":11,"start":"2016-04-05T18:30:00","end":"2016-04-05T19:30:00","title":"Beat Meeting: 1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe.","eventUrl":null,"contactDetails":"011th District CAPS 3151 W. Harrison Street 312-746-9841","location":"Brian Piccolo School 1040 N. Keeler","modifiedDate":"2015-12-14T15:29:40"},{"calendarId":2,"start":"2016-04-05T18:30:00","end":"2016-04-05T19:30:00","title":"Beat 212/214 Beat Meeting","eventDetails":"Beat Meeting for citizens to talk about their problems.","eventUrl":null,"contactDetails":"2nd District CAPS Office\n5101 S. Wentworth\n312-747-5109","location":"Mandrake Park Field House\n3858 S. Cottage Grove","modifiedDate":"2016-03-10T11:54:58"},{"calendarId":9,"start":"2016-04-05T18:00:00","end":"2016-04-05T19:00:00","title":"924, 931, 933 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"New City Supportive Living\nCommunity Room\n4707 S. Marshfield Ave.","modifiedDate":"2016-01-06T20:42:17"},{"calendarId":18,"start":"2016-04-05T18:00:00","end":"2016-04-05T19:00:00","title":"Court Advocacy","eventDetails":"Court Advocacy Subcommittee Meeting","eventUrl":null,"contactDetails":"PO Incaprera","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-03-14T15:48:04"},{"calendarId":3,"start":"2016-04-05T18:00:00","end":"2016-04-05T19:00:00","title":"Positive Loitering","eventDetails":"Positive Loitering","eventUrl":null,"contactDetails":"P.O. Hutchinson\n7040 S. Cottage Grove\nChicago, IL. 60637","location":"6600 S. king Drive\nChicago, IL. 60637","modifiedDate":"2016-01-19T18:50:08"},{"calendarId":3,"start":"2016-04-05T14:00:00","end":"2016-04-05T16:00:00","title":"Child Abuse Awareness","eventDetails":"Setting up a resource table ","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago. ILL. ","location":"WIC Food and Nutrition Center\n1802 E. 71st St.\nChicago, ILL. 60649","modifiedDate":"2016-03-28T11:59:10"},{"calendarId":11,"start":"2016-04-05T11:00:00","end":"2016-04-05T12:00:00","title":"Domestic Violence Subcommittee","eventDetails":"Domestic Violence Meeting ","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312.746.9841\n","location":"011th District (Auditorium)\n3151 W. Harrison\n","modifiedDate":"2016-03-30T11:18:20"},{"calendarId":15,"start":"2016-04-05T10:00:23","end":"2016-04-05T12:00:23","title":"Faith Based Meeting","eventDetails":"Clergy from various denominations and block club leaders come together and discuss chronic crime issues that affects the community.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\nChicago, IL\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\nChicago, IL\n312-743-1495","modifiedDate":"2016-01-05T10:49:36"},{"calendarId":25,"start":"2016-04-05T10:00:00","end":"2016-04-05T11:00:00","title":"Senior Advisory","eventDetails":"Senior Advisory","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room ","modifiedDate":"2015-12-10T10:47:38"},{"calendarId":20,"start":"2016-04-04T19:00:00","end":null,"title":"2011 Beat Community ","eventDetails":"2011 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District \n5400 N. Lincoln","modifiedDate":"2016-01-20T08:59:35"},{"calendarId":3,"start":"2016-04-04T14:00:00","end":"2016-04-04T16:00:00","title":"Child Abuse Awareness","eventDetails":null,"eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage grove\nChicago, ILL. 60637","location":"WIC Food and Nutrition Center\n1802 E. 71st St.\nChicago, ILL. 60649","modifiedDate":"2016-03-28T11:59:25"},{"calendarId":3,"start":"2016-04-02T11:00:00","end":"2016-04-02T12:00:00","title":"Youth/Explorers","eventDetails":"Youth/Explorers","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:00:36"},{"calendarId":11,"start":"2016-04-02T09:00:00","end":"2016-04-02T10:00:00","title":"Peer Jury","eventDetails":"Misdemeanor court cases are presented and sanctioned by their peers.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:03:58"},{"calendarId":25,"start":"2016-04-02T08:30:00","end":"2016-04-02T10:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:44:34"},{"calendarId":6,"start":"2016-04-01T18:00:00","end":"2016-04-01T20:00:00","title":"Free Line Dancing Class","eventDetails":"Enjoy our free Line Dancing Class ","eventUrl":null,"contactDetails":"Contact Ms. Dorothy Leaks at 312-745-3641","location":"7th District \nCommunity Room\n1438 W. 63rd St","modifiedDate":"2016-03-12T10:06:09"},{"calendarId":6,"start":"2016-04-01T17:30:00","end":"2016-04-01T20:00:00","title":"Dancing in the District","eventDetails":"Free Line Dancing Class","eventUrl":null,"contactDetails":"Contact Ms. Dorothy Leaks at 312-745-3641","location":"7th District \nCommunity Room\n1438 W. 63rd St","modifiedDate":"2016-03-12T10:06:01"},{"calendarId":5,"start":"2016-03-31T18:00:00","end":"2016-03-31T19:00:00","title":"DISTRICT ADVISORY COUNCIL","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:21:16"},{"calendarId":20,"start":"2016-03-30T19:00:00","end":"2016-03-30T20:00:00","title":"2032 Beat Comunity Meeting","eventDetails":"Beat 2032 Community Meeting ","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Ravenswood Evangelical Church\n4900 N. Damen","modifiedDate":"2016-03-18T13:46:44"},{"calendarId":17,"start":"2016-03-30T19:00:00","end":"2016-03-30T20:00:00","title":"Hispanic Outreach Meeting ","eventDetails":"Hispanic Beat Meeting.","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Horner Park\n2741 W. Montrose ","modifiedDate":"2016-03-02T10:09:36"},{"calendarId":20,"start":"2016-03-29T19:00:00","end":"2016-03-29T20:00:00","title":"20th Dist Beat Meeting Beat 2031","eventDetails":"Beat 2031","eventUrl":null,"contactDetails":"20th District CAPS","location":"2751 W. Winona St.","modifiedDate":"2016-02-09T13:48:11"},{"calendarId":3,"start":"2016-03-29T18:00:00","end":"2016-03-29T19:00:00","title":"003rd District Positive Loitering Event","eventDetails":"003rd District Positive Loitering Event","eventUrl":null,"contactDetails":"P.O. Hutchinson\n7040 S. Cottage Grove\nChicago. Ill. 60637","location":"7100 S. Jeffery\nChicago. Il, 60649","modifiedDate":"2016-02-26T12:23:59"},{"calendarId":16,"start":"2016-03-29T12:00:00","end":"2016-03-29T12:30:00","title":"1634 Outdoor Roll Call","eventDetails":"We are conducting an outdoor roll call with the purpose of providing a visible police presence. Join us in addressing any citizen issues in the area. You are invited to come meet and interact with the officers.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Portage-Cragin Library\n5108 W. Belmont","modifiedDate":"2016-03-23T19:50:39"},{"calendarId":11,"start":"2016-03-28T18:00:33","end":"2016-03-28T19:00:33","title":"District Advisory Committee ","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 11th District.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"011th District Auditorium ","modifiedDate":"2015-12-28T09:27:37"},{"calendarId":6,"start":"2016-03-28T18:00:00","end":"2016-03-28T19:30:00","title":"Beat Facilitators/DAC Subcommittee Meeting","eventDetails":"Discuss problems and concerns that affects the 006th District","eventUrl":null,"contactDetails":"006th District CAPS Office 312-745-3641","location":"006th District Police District 7808 S Halsted","modifiedDate":"2015-12-17T09:45:56"},{"calendarId":15,"start":"2016-03-28T15:00:00","end":"2016-03-28T16:00:00","title":"District Advisory Committee","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 15th district.","eventUrl":null,"contactDetails":"15th District \nCommunity Policing Office\n312-743-1495","location":"15th District\nCommunity Room\n5701 W Madison Ave","modifiedDate":"2016-03-24T12:36:30"},{"calendarId":20,"start":"2016-03-26T10:00:00","end":"2016-03-26T13:00:00","title":"20th District Easter Egg Hunt","eventDetails":"20th District Easter Egg Hunt Community Event","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"5400 N. Lincoln\nCommunity Room","modifiedDate":"2016-01-19T15:27:38"},{"calendarId":5,"start":"2016-03-26T10:00:00","end":"2016-03-26T12:00:00","title":"YOUTH LAW EXPLORERS","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:20:02"},{"calendarId":8,"start":"2016-03-26T09:00:00","end":null,"title":"Peer Jury","eventDetails":"Branch 34","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"155 W. 51st Street","modifiedDate":"2015-12-28T11:34:56"},{"calendarId":15,"start":"2016-03-26T08:30:14","end":"2016-03-26T13:00:14","title":"Peer Jury Session","eventDetails":"Youths with misdemeanor court cases are presented and sanctioned by their peers","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-13T09:58:22"},{"calendarId":5,"start":"2016-03-26T08:30:00","end":"2016-03-26T11:00:00","title":"PEER JURY","eventDetails":"005TH DISTRICT POLICE STATION ","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:19:46"},{"calendarId":2,"start":"2016-03-26T08:00:00","end":"2016-03-26T11:00:00","title":"Peer Jury","eventDetails":"Monthly Peer Jury","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:25:51"},{"calendarId":16,"start":"2016-03-25T23:00:00","end":"2016-03-25T23:30:00","title":"1623 Outdoor Roll Call","eventDetails":"We are conducting an outdoor roll call with the purpose of proving a visible police presence. Join us in addressing issues in the area. You are invited to come and meet and interact with your officers.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Wilson Park\n4630 N. Milwaukee","modifiedDate":"2016-03-23T19:52:52"},{"calendarId":6,"start":"2016-03-25T18:00:00","end":"2016-03-25T20:00:00","title":"Free Line Dancing Class","eventDetails":"Enjoy our free Line Dancing Class","eventUrl":null,"contactDetails":"Contact Ms. Dorothy Leaks in the CAPS office at 312-745-3641","location":"6th District\nCommunity Room\n7808 S. Halsted St\n","modifiedDate":"2016-03-12T10:06:21"},{"calendarId":3,"start":"2016-03-24T19:00:00","end":"2016-03-24T20:00:00","title":"Beat Meeting (321, 324)","eventDetails":"Beat Meeting (321, 324)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T15:52:52"},{"calendarId":6,"start":"2016-03-24T18:30:00","end":"2016-03-24T19:30:00","title":"Beat 634 Meeting","eventDetails":"Discuss community concerns and problems","eventUrl":null,"contactDetails":"6th District CAPS Office 312-745-3641","location":"New Progressive Baptist Church 9425 S. Perry","modifiedDate":"2015-12-17T09:44:09"},{"calendarId":15,"start":"2016-03-24T18:00:21","end":"2016-03-24T20:00:21","title":"Art Exhibit False Democracy","eventDetails":"Mr. Jesse Howard, born on the west side has returned to record images of the people of Austin. He has exhibited at numerous galleries and colleges throughout the Chicagoland area. Recently his work was awarded first place in the Beloit Vicinity Exhibition and also awarde a solo exhibition in June 2016. His exhibit today is called False Democracy.","eventUrl":null,"contactDetails":"15th District CAPS Office\n5701 W Madison Ave\n312-743-1495","location":"By The Hand Club\n415 N Laramie Ave","modifiedDate":"2016-03-15T17:27:17"},{"calendarId":11,"start":"2016-03-24T18:00:00","end":"2016-03-24T19:00:00","title":"Beat Meeting:1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Eloise Mc Coy Village Apt. 4650 W. Van Buren ","modifiedDate":"2015-12-21T13:43:06"},{"calendarId":20,"start":"2016-03-24T16:00:00","end":"2016-03-24T17:00:00","title":"20th District Youth Explorer","eventDetails":"20th District Youth Explorers","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"5400 N. Lincoln\ncommunity room","modifiedDate":"2016-01-19T15:26:37"},{"calendarId":22,"start":"2016-03-24T10:30:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":"22nd District Community Room, 1900 W. Monterey","eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":null,"modifiedDate":"2015-12-23T08:44:17"},{"calendarId":1,"start":"2016-03-24T10:00:00","end":"2016-03-24T12:00:00","title":"Seniors ","eventDetails":null,"eventUrl":null,"contactDetails":"312-745-4381","location":"1718 S State St\nCommunity Room","modifiedDate":"2016-03-30T15:32:20"},{"calendarId":17,"start":"2016-03-23T19:30:00","end":"2016-03-23T20:30:00","title":"1711 1712 Beat Meeting","eventDetails":"1711 1712 Combined Beat Meeting","eventUrl":null,"contactDetails":"312) 742-4588 CAPS.017district@chicagopolice.org","location":"Mayfair Church 5020 N. Pulaski rd.","modifiedDate":"2016-02-17T16:14:14"},{"calendarId":8,"start":"2016-03-23T19:00:00","end":"2016-03-23T20:00:00","title":"835 Beat Meeting","eventDetails":"Wrightwood Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"8530 S Kedzie","modifiedDate":"2015-12-14T08:42:56"},{"calendarId":9,"start":"2016-03-23T18:30:00","end":"2016-03-23T19:30:00","title":"914 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chinatown Library\n2100 S. Wentworth Ave.","modifiedDate":"2015-11-30T21:11:19"},{"calendarId":6,"start":"2016-03-23T18:30:00","end":"2016-03-23T19:30:00","title":"Beat 624 Meeting ","eventDetails":"Discuss community concerns and problems","eventUrl":null,"contactDetails":"6th District CAPS Office 312-745-3641","location":"St. Dorothy Catholic School 450 E. 78th Street ","modifiedDate":"2015-12-16T16:44:58"},{"calendarId":25,"start":"2016-03-23T18:30:00","end":"2016-03-23T19:30:00","title":"Beat Meeting 2523","eventDetails":"Beat Meeting 2523","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"4021 W. Belmont","modifiedDate":"2015-12-10T10:54:26"},{"calendarId":17,"start":"2016-03-23T18:30:00","end":"2016-03-23T19:30:00","title":"1713 Beat Meeting","eventDetails":"1713 Beat Meeting","eventUrl":null,"contactDetails":"312) 742-4588 CAPS.017district@chicagopolice.org","location":"North Park University 5000 N. Spaulding","modifiedDate":"2016-02-17T16:14:01"},{"calendarId":12,"start":"2016-03-23T18:00:00","end":"2016-03-23T19:00:00","title":"Beat Meeting 1235","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Las Americas 1611 S. Racine on the 4th Wednesday of the odd months. ","modifiedDate":"2015-11-28T09:54:14"},{"calendarId":3,"start":"2016-03-23T18:00:00","end":"2016-03-23T19:00:00","title":"DAC Meeting","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T11:42:58"},{"calendarId":14,"start":"2016-03-23T13:30:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2015-12-09T13:07:44"},{"calendarId":25,"start":"2016-03-23T13:00:00","end":"2016-03-23T14:00:00","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:46:53"},{"calendarId":12,"start":"2016-03-22T19:00:39","end":"2016-03-22T20:00:39","title":"Beat Meeting 1211","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is held at Norwegian Hospital 1044 N. Francisco on the 4th Tuesday of the odd months. ","modifiedDate":"2015-11-28T09:58:44"},{"calendarId":3,"start":"2016-03-22T19:00:00","end":"2016-03-22T20:00:00","title":"Beat Meeting (322, 323)","eventDetails":"Beat Meeting (322, 323)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-03-28T12:00:07"},{"calendarId":24,"start":"2016-03-22T19:00:00","end":"2016-03-22T20:00:00","title":"2422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Willye White Park 1610 W. Howard","modifiedDate":"2015-12-07T14:53:09"},{"calendarId":9,"start":"2016-03-22T19:00:00","end":"2016-03-22T20:00:00","title":"922, 923 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Simon Church Hall\n5157 S. California Ave.","modifiedDate":"2015-11-30T21:11:27"},{"calendarId":24,"start":"2016-03-22T19:00:00","end":"2016-03-22T20:00:00","title":"2433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Edgewater Library 6000 N. Broadway","modifiedDate":"2016-01-08T14:08:21"},{"calendarId":8,"start":"2016-03-22T19:00:00","end":"2016-03-22T20:00:00","title":"813/833 Beat Meeting","eventDetails":"West Lawn Park","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W 65th Street","modifiedDate":"2015-12-14T08:43:59"},{"calendarId":25,"start":"2016-03-22T18:30:00","end":"2016-03-22T19:30:00","title":"Beat Meeting 2513","eventDetails":"Beat Meeting 2513","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"6200 W. Bloomingdale","modifiedDate":"2015-12-10T11:24:27"},{"calendarId":6,"start":"2016-03-22T18:30:00","end":"2016-03-22T19:30:00","title":"Beat 614 Meeting","eventDetails":"Discuss community problems and concerns","eventUrl":null,"contactDetails":"6th District CAPS Office 312-745-3641","location":"Foster Park Field House 1440 W. 84th Street","modifiedDate":"2015-12-16T16:40:47"},{"calendarId":11,"start":"2016-03-22T18:00:00","end":"2016-03-22T19:00:00","title":"Beat Meeting: 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2015-12-22T14:03:17"},{"calendarId":3,"start":"2016-03-22T18:00:00","end":"2016-03-22T19:00:00","title":"003rd District Positive Loitering Event","eventDetails":"003rd District Positive Loitering Event","eventUrl":null,"contactDetails":"P.O. Hutchinson\n7040 S. Cottage Grove\nChicago Ill. 60637","location":"6900 S. Indiana\nChicago, Ill. 60637","modifiedDate":"2016-02-26T12:24:08"},{"calendarId":3,"start":"2016-03-22T14:00:00","end":"2016-03-22T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:52:24"},{"calendarId":1,"start":"2016-03-22T14:00:00","end":"2016-03-22T15:00:00","title":"30 Sector Business Mtg","eventDetails":"Beat meeting with business partners from 30 sect beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"1718 S State\n001 Community Room","modifiedDate":"2016-03-30T15:32:39"},{"calendarId":22,"start":"2016-03-22T10:30:00","end":"2016-03-22T11:30:00","title":"Senior Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:45:52"},{"calendarId":8,"start":"2016-03-22T10:00:00","end":null,"title":"Senior Subcommittee Meeting","eventDetails":"Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W 63rd Street","modifiedDate":"2016-03-16T13:57:22"},{"calendarId":5,"start":"2016-03-22T10:00:00","end":"2016-03-22T11:00:00","title":"COURY ADVOCACY","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:20:56"},{"calendarId":7,"start":"2016-03-21T13:00:00","end":"2016-03-21T15:00:00","title":"Senior Advisory Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"Tolton Manor\n6345 S. Stewart","modifiedDate":"2016-01-20T16:17:12"},{"calendarId":6,"start":"2016-03-19T12:00:00","end":"2016-03-19T13:30:00","title":"Kids & Kops ","eventDetails":"Police and youth interacting ","eventUrl":null,"contactDetails":"006th District CAPS Office 312-745-3641","location":"006th District Police Station 7808 S Halsted","modifiedDate":"2015-12-17T09:46:12"},{"calendarId":18,"start":"2016-03-19T10:00:00","end":"2016-03-19T12:00:00","title":"Explorer Scouts","eventDetails":"Explorer Scouts and Peer Jury","eventUrl":null,"contactDetails":"P.O. Ferguson","location":"18th District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-02-16T17:24:30"},{"calendarId":15,"start":"2016-03-19T10:00:00","end":"2016-03-19T12:00:00","title":"Block Club Training","eventDetails":"Block club training is provided to residents who are concerned and care about their communities, share information, identify concerns and act collectively to address these concerns.","eventUrl":null,"contactDetails":"15th District \nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District\nCommunity Policing Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-07T09:59:54"},{"calendarId":3,"start":"2016-03-19T09:00:00","end":"2016-03-19T10:00:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n\n","location":"51st Wentworth\n\n","modifiedDate":"2016-01-19T18:58:23"},{"calendarId":17,"start":"2016-03-19T09:00:00","end":"2016-03-19T13:30:00","title":"Peer Jury Meeting","eventDetails":"Monthly Peer Jury Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Police Station","modifiedDate":"2016-03-02T10:06:52"},{"calendarId":9,"start":"2016-03-19T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Area Central\n5101 S. Wentworth Ave.","modifiedDate":"2016-01-05T17:26:49"},{"calendarId":3,"start":"2016-03-18T13:00:00","end":"2016-03-18T14:00:00","title":"Senior Safety Seminar","eventDetails":"Senior Safety Seminar","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove \nChicago, Ill. 60637","location":"1351 E. 62ND ST.\nCHICAGO, ILL. 60637","modifiedDate":"2016-02-26T12:23:27"},{"calendarId":14,"start":"2016-03-17T19:00:00","end":null,"title":"1431 & 1432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Haas Park\n2402 N. Washtenaw","modifiedDate":"2015-12-15T14:26:54"},{"calendarId":16,"start":"2016-03-17T19:00:00","end":null,"title":"1611 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521.\nCAPS016District@chicagopolice.org","location":"St.Thecla \n6333 N. Newcastle","modifiedDate":"2016-01-22T14:24:24"},{"calendarId":25,"start":"2016-03-17T18:30:00","end":"2016-03-17T19:30:00","title":"Beat Meeting 2533","eventDetails":"Beat Meeting 2533","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave\nCommunity Room","modifiedDate":"2015-12-10T10:50:10"},{"calendarId":11,"start":"2016-03-17T18:30:00","end":"2016-03-17T19:30:00","title":"Beat Meeting:1113/14/15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"St. Michael MBC 4106 W. Monroe ","modifiedDate":"2015-12-21T14:09:25"},{"calendarId":7,"start":"2016-03-17T18:30:00","end":"2016-03-17T19:30:00","title":"District Advisory Council Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Station\n1438 W. 63RD STREET","modifiedDate":"2016-01-20T16:17:55"},{"calendarId":16,"start":"2016-03-17T18:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"(312) 742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee Ave.","modifiedDate":"2016-02-18T14:18:39"},{"calendarId":20,"start":"2016-03-17T16:00:00","end":"2016-03-17T17:00:00","title":"20th District Peer Jury","eventDetails":"20th District Peer Jury ","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"5400 N. Lincoln\nCommunity Room","modifiedDate":"2016-01-19T15:26:46"},{"calendarId":3,"start":"2016-03-17T14:00:00","end":"2016-03-17T14:00:00","title":"Senior Citizen Meeting","eventDetails":"Senior Citizen Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T18:54:37"},{"calendarId":25,"start":"2016-03-17T13:30:00","end":"2016-03-17T14:30:00","title":"Business Meeting","eventDetails":"Business Meeting","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2016-02-01T15:29:02"},{"calendarId":6,"start":"2016-03-17T10:00:00","end":"2016-03-17T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":"Discuss strategies to avoid domestic abuse","eventUrl":null,"contactDetails":"006th District CAPS Office 312-745-3641 ","location":"006 District Police District 7808 S. Halsted","modifiedDate":"2015-12-17T09:44:45"},{"calendarId":11,"start":"2016-03-17T10:00:00","end":"2016-03-17T11:00:00","title":"Senior Subcommittee Meeting","eventDetails":"Senior Subcommittee monthly meeting. ","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312-746-9841\n","location":"Meeting 011th District Auditorium \n3151 W. Harrison \n","modifiedDate":"2015-12-28T08:40:51"},{"calendarId":17,"start":"2016-03-16T19:30:00","end":"2016-03-16T20:30:00","title":"1722 1723 Beat Meeting","eventDetails":"1722 1723 Combined Beat Meeting","eventUrl":null,"contactDetails":"312) 742-4588 CAPS.017district@chicagopolice.org","location":"017th District Community Room 4650 N. Pulaski ","modifiedDate":"2016-02-17T16:13:45"},{"calendarId":8,"start":"2016-03-16T19:00:00","end":"2016-03-16T20:00:00","title":"823/825 Beat Meeting","eventDetails":"008th District","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W 63rd St","modifiedDate":"2015-12-14T08:43:26"},{"calendarId":12,"start":"2016-03-16T19:00:00","end":"2016-03-16T20:00:00","title":"Beat Meeting 1213 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"The meeting is a Norwest Settlement 1012 N. Noble on the 3rd Wednesday of the odd months. ","location":"12th District CAPS Office 312-746-8306 ","modifiedDate":"2015-11-28T09:49:19"},{"calendarId":22,"start":"2016-03-16T19:00:00","end":"2016-03-16T20:00:00","title":"Beat 2234 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Station\n1900 W Monterey","modifiedDate":"2015-12-03T11:16:38"},{"calendarId":14,"start":"2016-03-16T19:00:00","end":null,"title":"1423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Casa Central\n1343 N. California","modifiedDate":"2015-12-15T14:27:17"},{"calendarId":1,"start":"2016-03-16T19:00:00","end":"2016-03-16T20:00:00","title":"BT 133 Residential Mtg","eventDetails":"Beat meeting for residents from BT 133","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"125 E 26th St\nTrinity Episcopal Church","modifiedDate":"2015-12-08T17:02:25"},{"calendarId":20,"start":"2016-03-16T19:00:00","end":"2016-03-16T20:00:00","title":"20th Dist Beat Meeting Beat 2013","eventDetails":"Beat 2013","eventUrl":null,"contactDetails":"20th Dist CAPS 312-742-8770","location":"Philadelphia Church\n5437 N. Clark","modifiedDate":"2016-02-09T14:25:45"},{"calendarId":16,"start":"2016-03-16T19:00:00","end":null,"title":"1623 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521.\nCAPS016District@chicagopolice.org","location":"16th District Police Station (Community Room)\n5151 N. Milwaukee","modifiedDate":"2016-03-11T20:24:52"},{"calendarId":19,"start":"2016-03-16T19:00:00","end":"2016-03-16T20:00:00","title":"Beat 1921, 1922 & 1931","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Police Auditorium\n2452 W. Belmont","modifiedDate":"2016-02-05T13:46:26"},{"calendarId":3,"start":"2016-03-16T19:00:00","end":"2016-03-16T20:00:00","title":"Beat Meeting (333, 334)","eventDetails":"Beat Meeting (333,334)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"South Shore Cultural Center\n7059 S. South shore Dr.\nChicago, Ill. 60649\n","modifiedDate":"2016-03-28T12:01:19"},{"calendarId":6,"start":"2016-03-16T18:30:00","end":"2016-03-16T19:30:00","title":"Beat 623 Meeting","eventDetails":"Discuss community concerns and problems ","eventUrl":null,"contactDetails":"6th District CAPS Office 312-745-3641","location":"Urban Partnership Bank\n7801 S. State Street ","modifiedDate":"2015-12-17T09:43:54"},{"calendarId":2,"start":"2016-03-16T18:30:00","end":"2016-03-16T19:30:00","title":"Beat Meeting #233/234/235","eventDetails":"Caps Community Meeting","eventUrl":null,"contactDetails":"Community Policing\n312-747-5109","location":"Treasure Island\n1526 E. 53rd Street","modifiedDate":"2016-01-04T14:31:38"},{"calendarId":25,"start":"2016-03-16T18:30:00","end":"2016-03-16T19:30:00","title":"Beat Meeting 2515","eventDetails":"Beat Meeting 2515","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2310 N. Lorel","modifiedDate":"2015-12-10T11:22:28"},{"calendarId":17,"start":"2016-03-16T18:30:00","end":"2016-03-16T19:30:00","title":"1724 Beat Meeting","eventDetails":"1724 Beat Meeting","eventUrl":null,"contactDetails":"312) 742-4588 CAPS.017district@chicagopolice.org","location":"Horner Park 2741 W. Montrose","modifiedDate":"2016-02-17T16:13:31"},{"calendarId":9,"start":"2016-03-16T18:00:00","end":"2016-03-16T19:00:00","title":"925 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Gabriel Church Hall\n4500 S. Wallace St.","modifiedDate":"2015-11-30T21:11:35"},{"calendarId":10,"start":"2016-03-16T18:00:00","end":"2016-03-16T19:00:00","title":"1013 BEAT MEETING","eventDetails":"1013 COMMUNITY BEAT MEETING","eventUrl":null,"contactDetails":"CAPS OFFICE\n312-747-7190","location":"Epiphany Church\n2524 S. Keeler Ave\nChicago Il ","modifiedDate":"2016-02-17T17:07:44"},{"calendarId":18,"start":"2016-03-16T15:00:00","end":"2016-03-16T16:00:00","title":"Near North Security Meeting","eventDetails":"Must register at (312) 742-5778 to participate.","eventUrl":null,"contactDetails":"P.O. Incaprera","location":"18th District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-02-16T17:24:39"},{"calendarId":11,"start":"2016-03-16T13:00:00","end":"2016-03-16T14:00:00","title":"E.A.V.I.","eventDetails":"The Expanded Anti-Violence Initiative is a community policing strategy designed specifically to prevent and reduce the violence associated with gang activity and narcotics sales.","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T10:07:58"},{"calendarId":5,"start":"2016-03-16T13:00:00","end":"2016-03-16T14:00:00","title":"SENIOR COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION ","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:19:29"},{"calendarId":18,"start":"2016-03-16T09:30:00","end":"2016-03-16T10:30:00","title":"Coffee with the Commander","eventDetails":"Have a cup of coffee with Commander Devereux and find out what is going on in the 18th District.","eventUrl":null,"contactDetails":"P.O. Schenk","location":"Eva's Cafe\n1447 N. Sedgwick\nChicago, Il 60610","modifiedDate":"2016-02-16T17:24:03"},{"calendarId":22,"start":"2016-03-15T19:00:00","end":"2016-03-15T20:00:00","title":"Beat 2222 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Brainerd Park\n1246 W 92nd St","modifiedDate":"2015-12-03T11:20:57"},{"calendarId":12,"start":"2016-03-15T19:00:00","end":"2016-03-15T20:00:00","title":"Beat Meeting 1223","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Westhaven Park Community Room 1939 W. Lake St. on the 3rd Tuesday of the odd months","modifiedDate":"2015-11-28T09:51:32"},{"calendarId":5,"start":"2016-03-15T19:00:00","end":"2016-03-15T20:00:00","title":"30 SECTOR MEETING","eventDetails":"HISTORIC PULLMAN CENTER","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"614 E 113TH ST.","modifiedDate":"2016-03-01T14:33:23"},{"calendarId":16,"start":"2016-03-15T19:00:00","end":null,"title":"1633 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office(312)742-4521.\nCAPS016District@chicagopolice.org","location":"Merrimac Park (gym)\n6343 W. Irving Park Rd.","modifiedDate":"2016-03-11T20:25:39"},{"calendarId":19,"start":"2016-03-15T19:00:00","end":"2016-03-15T20:00:00","title":"Beat 1911 & 1912","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Sulzer Library\n4455 N. Lincoln","modifiedDate":"2016-02-05T13:52:40"},{"calendarId":24,"start":"2016-03-15T19:00:00","end":"2016-03-15T20:00:00","title":"2424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Pottawatomie Park 7340 N. Rogers","modifiedDate":"2016-01-08T11:26:49"},{"calendarId":25,"start":"2016-03-15T18:30:00","end":"2016-03-15T19:30:00","title":"Beat Meeting 2525","eventDetails":"Beat Meeting 2525","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2036 N. Avers","modifiedDate":"2015-12-10T10:52:37"},{"calendarId":2,"start":"2016-03-15T18:30:00","end":"2016-03-15T19:30:00","title":"Beat Meeting # 221/223","eventDetails":"Caps Community Meeting","eventUrl":null,"contactDetails":"Community Policing\n312-747-5109","location":"King Center\n4314 S. Cottage Grove","modifiedDate":"2016-01-04T14:34:55"},{"calendarId":25,"start":"2016-03-15T18:30:00","end":"2016-03-15T19:30:00","title":"Beat Meeting 2531","eventDetails":"Beat Meeting 2531","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:51:49"},{"calendarId":6,"start":"2016-03-15T18:30:00","end":"2016-03-15T19:30:00","title":"Beat 613 Meeting","eventDetails":"Discuss community concerns and problems","eventUrl":null,"contactDetails":"6th District CAPS Office 312-745-3641","location":"Walter Q. Gresham Elementary 8524 S. Green Street","modifiedDate":"2015-12-16T16:38:38"},{"calendarId":11,"start":"2016-03-15T18:00:00","end":"2016-03-15T19:00:00","title":"Beat Meeting:1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Homan Square Community Center 3559 W. Arthington","modifiedDate":"2015-12-21T15:04:52"},{"calendarId":3,"start":"2016-03-15T18:00:00","end":"2016-03-15T19:00:00","title":"003rd District Positive Loitering Event","eventDetails":"003rd District Positive Loitering Event","eventUrl":null,"contactDetails":"P.O. Hutchinson\n7040 S. Cottage Grove\n(312) 747-8201","location":"7459 S. Exchange\nChicago Il. 60649","modifiedDate":"2016-02-26T12:24:16"},{"calendarId":16,"start":"2016-03-15T13:00:00","end":null,"title":"Senior Subcommittee Meeting","eventDetails":"Come learn about personal/property safety and crimes that target seniors. Refreshments served and FREE giveaways.","eventUrl":null,"contactDetails":"Officer Whalen\n(312) 742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee\n016th District Community Room","modifiedDate":"2016-03-11T20:29:30"},{"calendarId":9,"start":"2016-03-15T13:00:00","end":"2016-03-15T15:00:00","title":"Seniors Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"009th District Station\n3120 S. Halsted","modifiedDate":"2016-01-05T17:26:37"},{"calendarId":11,"start":"2016-03-15T11:00:12","end":"2016-03-15T12:00:12","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"TBA","modifiedDate":"2016-01-26T14:11:43"},{"calendarId":17,"start":"2016-03-15T11:00:00","end":"2016-03-15T11:45:00","title":"DV Meeting","eventDetails":"Monthly Domestic Violence Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Police Station","modifiedDate":"2016-03-02T10:07:12"},{"calendarId":2,"start":"2016-03-15T10:30:00","end":null,"title":"Senior Meeting","eventDetails":"Senior Monthly Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:38:37"},{"calendarId":19,"start":"2016-03-14T19:00:00","end":"2016-03-14T20:00:00","title":"Beat 1932","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"New Life Church\n1110 W. Lill","modifiedDate":"2016-02-05T13:45:57"},{"calendarId":2,"start":"2016-03-14T18:30:00","end":"2016-03-14T19:30:00","title":"Beat Meeting # 211","eventDetails":"Caps Community Meeting","eventUrl":null,"contactDetails":"Community Policing Office\n312-747-5109","location":"College of Optometry\n3240 S. Indiana","modifiedDate":"2016-01-04T14:36:08"},{"calendarId":18,"start":"2016-03-14T17:30:00","end":"2016-03-14T18:30:00","title":"DAC Meeting","eventDetails":"District Advisory Committee Meeting","eventUrl":null,"contactDetails":"Sgt. Schumann","location":"18th District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-02-16T17:24:47"},{"calendarId":15,"start":"2016-03-14T15:00:16","end":"2016-03-14T16:00:16","title":"Domestic Violence Meeting","eventDetails":"Domestic violence members discuss and plan upcoming events for domestic violence victims / survivors","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-13T09:50:20"},{"calendarId":5,"start":"2016-03-12T10:00:00","end":"2016-03-12T12:00:00","title":"YOUTH LAW EXPLORERS","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:20:22"},{"calendarId":14,"start":"2016-03-12T10:00:00","end":null,"title":"Senior Advisory Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community room","modifiedDate":"2015-12-15T14:21:47"},{"calendarId":16,"start":"2016-03-12T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Dial (312) 742-4521.\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee\n( community Room )","modifiedDate":"2016-02-04T15:28:16"},{"calendarId":6,"start":"2016-03-11T18:00:00","end":"2016-03-11T20:00:00","title":"Free Line Dancing Class","eventDetails":"Come out and enjoy our free Line Dancing Class","eventUrl":null,"contactDetails":"Contact Ms. Dorothy Leaks in the CAPS Office at 312-745-3641","location":"6th District\nCommunity Room\n7808 S. Halsted St","modifiedDate":"2016-03-12T10:05:37"},{"calendarId":3,"start":"2016-03-11T13:00:00","end":"2016-03-11T14:00:00","title":"Senior Safety Seminar","eventDetails":"Senior Safety Seminar","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, Ill 60637","location":"6134 S. Cottage Grove \nChicago, Ill. 60637","modifiedDate":"2016-02-26T12:23:42"},{"calendarId":3,"start":"2016-03-10T19:00:00","end":"2016-03-10T20:00:00","title":"Beat Meeting (331, 332)","eventDetails":"Beat Meeting (331,332)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"ABJ Community Center\n1818 E. 71st St.\nChicago, IL. 60649\n","modifiedDate":"2016-03-28T12:01:37"},{"calendarId":20,"start":"2016-03-10T19:00:00","end":"2016-03-10T20:00:00","title":"Beat 2023 Community Meeting","eventDetails":"Beat 2023 Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"\nKenmore Plaza\n5225 N. Kenmore","modifiedDate":"2016-01-19T15:27:15"},{"calendarId":1,"start":"2016-03-10T19:00:00","end":"2016-03-10T20:00:00","title":"10 Sect Residential Mtg","eventDetails":"Beat meeting for residents from 10 sect beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"400 E Randolph\nCondo Bldg","modifiedDate":"2015-12-08T17:00:14"},{"calendarId":4,"start":"2016-03-10T19:00:00","end":"2016-03-10T20:00:00","title":"Beat 421 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office.","location":"Labor of Love Apostolic church\n2800 E. 79th St.","modifiedDate":"2016-01-26T14:47:39"},{"calendarId":8,"start":"2016-03-10T19:00:00","end":"2016-03-10T20:00:00","title":"814 Beat Meeting","eventDetails":"Vittum Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5010 W 50th Street","modifiedDate":"2015-12-14T08:43:51"},{"calendarId":22,"start":"2016-03-10T19:00:00","end":null,"title":"Beat 2213 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Ridge Park\n9625 S Longwood Dr","modifiedDate":"2015-12-02T10:58:43"},{"calendarId":12,"start":"2016-03-10T19:00:00","end":"2016-03-10T20:00:00","title":"Beat Meeting 1215","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the Goldblatt's Building 1615 W. Chicago Ave. on the 2nd Thursday of the odd months. ","modifiedDate":"2015-11-28T09:50:00"},{"calendarId":15,"start":"2016-03-10T18:30:05","end":"2016-03-10T19:30:05","title":"Beat Meeting 1513S","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"George R Clark School\n1045 S Monitor Ave\nChicago, IL","modifiedDate":"2016-01-04T12:23:10"},{"calendarId":18,"start":"2016-03-10T18:30:00","end":"2016-03-10T19:30:00","title":"10 Sector Beat Meeting","eventDetails":"10 Sector Beat Community Meeting","eventUrl":null,"contactDetails":"P.O. Schenk","location":"St. James Lutheran Church & School\n2101 N. Fremont\nChicago, IL 60614","modifiedDate":"2016-02-16T17:24:56"},{"calendarId":2,"start":"2016-03-10T18:30:00","end":"2016-03-10T19:30:00","title":"Beat Meeting # 225/231/232","eventDetails":"Caps Community Meeting","eventUrl":null,"contactDetails":"Community Policing\n312-747-5109","location":"Coppin A.M.E.Church\n5627 S. Michigan","modifiedDate":"2016-01-04T14:34:21"},{"calendarId":6,"start":"2016-03-10T18:30:00","end":"2016-03-10T19:30:00","title":"Beat 632 Meeting ","eventDetails":"Discuss community concerns and problems","eventUrl":null,"contactDetails":"6th District CAPS Office 312-745-3641","location":"Tuley Park Field House\n501 E. 90th Place","modifiedDate":"2015-12-16T16:39:20"},{"calendarId":6,"start":"2016-03-10T18:30:00","end":"2016-03-10T19:30:00","title":"Beat 633 Meeting","eventDetails":"Discuss community concerns and problems","eventUrl":null,"contactDetails":"6th District CAPS Office 312-745-3641","location":"Tuley Park Field House 501 E. 90th Place","modifiedDate":"2015-12-16T16:36:49"},{"calendarId":14,"start":"2016-03-10T18:30:00","end":null,"title":"1413 & 1414 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Public Library\nLogan square \n3030 W. Fullerton","modifiedDate":"2015-12-15T14:27:39"},{"calendarId":8,"start":"2016-03-10T18:00:00","end":"2016-03-10T19:00:00","title":"Faith Based Subcommittee Meeting","eventDetails":"Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W 63rd Street","modifiedDate":"2016-03-16T13:57:08"},{"calendarId":10,"start":"2016-03-10T18:00:00","end":"2016-03-10T19:00:00","title":"1033 BEAT MEETING","eventDetails":"1033 Community Beat Meeting","eventUrl":null,"contactDetails":"CAPS OFFICE\n312-747-7511","location":"Little Village Library\n2311 S. Kedzie","modifiedDate":"2016-02-17T17:07:23"},{"calendarId":11,"start":"2016-03-10T18:00:00","end":"2016-03-10T19:00:00","title":"Beat Meeting:1122/23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Legler Chicago Public Library 115 S. Pulaski","modifiedDate":"2015-12-21T14:35:23"},{"calendarId":20,"start":"2016-03-10T16:00:00","end":"2016-03-10T17:00:00","title":"20th Peer Jury Training ","eventDetails":"20th District Youth Explorer Training\n\n","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"5400 N. Lincoln\ncommunity room","modifiedDate":"2016-01-19T15:27:06"},{"calendarId":25,"start":"2016-03-10T11:00:00","end":"2016-03-10T17:00:00","title":"Blood Drive","eventDetails":"Blood drive open to officers and community members.","eventUrl":null,"contactDetails":"CAP Office 312-746-5090","location":"25th District","modifiedDate":"2016-02-12T13:07:56"},{"calendarId":5,"start":"2016-03-10T11:00:00","end":"2016-03-10T12:00:00","title":"PASTORIAL COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:10:24"},{"calendarId":9,"start":"2016-03-09T19:00:00","end":"2016-03-09T20:00:00","title":"912 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Maurice Church Hall\n3625 S. Hoyne Ave","modifiedDate":"2015-11-30T21:11:54"},{"calendarId":1,"start":"2016-03-09T19:00:00","end":"2016-03-09T20:00:00","title":"20 Sect Residential Mtg","eventDetails":"Beat meeting for residents from 20 sect beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"525 S State\nUniversity Center","modifiedDate":"2015-12-08T16:49:33"},{"calendarId":22,"start":"2016-03-09T19:00:00","end":"2016-03-09T20:00:00","title":"Beat 2232/2233 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Fernwood Park\n10438 S Wallace","modifiedDate":"2015-12-03T11:18:11"},{"calendarId":17,"start":"2016-03-09T19:00:00","end":"2016-03-09T20:00:00","title":"1732 1733 Beat Meeting","eventDetails":"1732 1733 Combined Beat Meeting","eventUrl":null,"contactDetails":"312) 742-4588 CAPS.017district@chicagopolice.org","location":"Athletic Park Field House 3546 W. Addison","modifiedDate":"2016-02-17T16:13:09"},{"calendarId":4,"start":"2016-03-09T19:00:00","end":"2016-03-09T20:00:00","title":"Beat 411 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office.","location":"1526 E. 84th St.","modifiedDate":"2016-01-26T14:48:28"},{"calendarId":8,"start":"2016-03-09T19:00:00","end":"2016-03-09T20:00:00","title":"812 Beat Meeting","eventDetails":"Clearing Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6423 W 63rd Pl","modifiedDate":"2015-12-14T08:44:08"},{"calendarId":14,"start":"2016-03-09T18:30:00","end":null,"title":"1421 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Humboldt Park Library\n1605 N. Troy","modifiedDate":"2015-12-15T14:28:03"},{"calendarId":2,"start":"2016-03-09T18:30:00","end":"2016-03-09T19:30:00","title":"Beat Meeting # 213/215/224","eventDetails":"Caps Community Meting","eventUrl":null,"contactDetails":"Community Policing\n312-747-5109","location":"St Elizabeth Church\n4058 S. Michigan","modifiedDate":"2016-01-04T14:35:18"},{"calendarId":17,"start":"2016-03-09T18:30:00","end":"2016-03-09T19:30:00","title":"1731 Beat Meeting","eventDetails":"1731 Beat Meeting","eventUrl":null,"contactDetails":"312) 742-4588 CAPS.017district@chicagopolice.org ","location":"Kilbourn Park 3501 N. Kilbourn ","modifiedDate":"2016-02-17T16:12:58"},{"calendarId":11,"start":"2016-03-09T18:00:00","end":"2016-03-09T19:00:00","title":"Court Advocacy ","eventDetails":"Court Advocacy Meeting","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:24:10"},{"calendarId":12,"start":"2016-03-09T18:00:00","end":"2016-03-09T19:00:00","title":"Beat Meeting 1231","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Academy Square, 318 S. Throop on the 2nd Wednesday of the odd months. ","modifiedDate":"2015-11-28T09:53:06"},{"calendarId":18,"start":"2016-03-09T15:30:00","end":"2016-03-09T16:30:00","title":"30 Sector Hospitality Meeting","eventDetails":"30 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"Highline\n169 W. Kinzie\nChicago, Il 60654","modifiedDate":"2016-02-16T17:25:04"},{"calendarId":22,"start":"2016-03-09T13:30:00","end":null,"title":"Court Advocacy Subcommittee ","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:58:35"},{"calendarId":14,"start":"2016-03-09T13:30:00","end":null,"title":"Domestic Violence Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2015-12-09T13:11:02"},{"calendarId":6,"start":"2016-03-09T11:00:00","end":"2016-03-09T12:30:00","title":"Senior Citizen Subcommittee Meeting","eventDetails":"Discuss issues and concerns that effects seniors","eventUrl":null,"contactDetails":"006District CAPS Office 312-745-3641","location":"006th District Police District 7808 S. Halsted","modifiedDate":"2015-12-17T09:44:56"},{"calendarId":7,"start":"2016-03-09T09:30:00","end":"2016-03-09T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Police\nStation\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:14:37"},{"calendarId":16,"start":"2016-03-08T19:00:00","end":null,"title":"1613 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office 9312) 742-4521.\nCAPS016District@chicagopolice.org","location":"Oriole Park\n5430 N. Olcott","modifiedDate":"2016-01-22T14:26:01"},{"calendarId":22,"start":"2016-03-08T19:00:00","end":"2016-03-08T20:00:00","title":"Beat 2223 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Woodson Library\n9525 S Halsted","modifiedDate":"2015-12-03T11:19:41"},{"calendarId":5,"start":"2016-03-08T19:00:00","end":"2016-03-08T20:00:00","title":"20 SECTOR MEETING","eventDetails":"METCALFE ELEMENTARY","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"12339 S NORMAL","modifiedDate":"2016-03-01T14:33:51"},{"calendarId":8,"start":"2016-03-08T19:00:00","end":"2016-03-08T20:00:00","title":"831/832 Beat Meeting","eventDetails":"Marquette Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6734 S Kedzie","modifiedDate":"2015-12-14T08:43:17"},{"calendarId":24,"start":"2016-03-08T19:00:00","end":"2016-03-08T20:00:00","title":"2432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"24th District 6464 N. Clark","modifiedDate":"2016-01-08T11:27:59"},{"calendarId":4,"start":"2016-03-08T19:00:00","end":"2016-03-08T20:00:00","title":"Beat 423 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office.","location":"8930 S. Muskegon Ave","modifiedDate":"2016-01-26T14:51:17"},{"calendarId":15,"start":"2016-03-08T18:30:50","end":"2016-03-08T19:30:50","title":"Beat Meeting 1511 & 1524","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Hope Community Church\n5900 W Iowa St\nChicago, IL","modifiedDate":"2016-01-04T12:13:55"},{"calendarId":2,"start":"2016-03-08T18:30:00","end":"2016-03-08T19:30:00","title":"Beat Meeting # 222","eventDetails":"Caps Community Meeting","eventUrl":null,"contactDetails":"Community Policing\n312-747-5109","location":"Kennicott Park\n4434 S. Lake Park","modifiedDate":"2016-01-04T14:34:31"},{"calendarId":19,"start":"2016-03-08T18:30:00","end":"2016-03-08T19:30:00","title":"Beat 1933","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Illinois Masonic\n836 W. Wellington","modifiedDate":"2016-02-05T13:45:47"},{"calendarId":6,"start":"2016-03-08T18:30:00","end":"2016-03-08T19:30:00","title":"Beat 612 Meeting","eventDetails":"Discuss community problems and concerns ","eventUrl":null,"contactDetails":"6th District CAPS Office","location":"Southside Tabernacle Church 7724 S. Racine","modifiedDate":"2015-12-16T16:41:44"},{"calendarId":11,"start":"2016-03-08T18:30:00","end":"2016-03-08T19:30:00","title":"Beat Meeting: 1124/25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":" JLM Abundant Life Center 2622 W. Jackson","modifiedDate":"2015-12-22T14:10:52"},{"calendarId":9,"start":"2016-03-08T18:30:00","end":"2016-03-08T19:30:00","title":"913, 915 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"McGuane Park\nCommunity Room\n2901 S. Poplar Ave.","modifiedDate":"2016-02-10T16:32:29"},{"calendarId":18,"start":"2016-03-08T18:30:00","end":"2016-03-08T19:30:00","title":"1821,22,23 Beat Meeting","eventDetails":"1821,22,23 Beat Community Meeting","eventUrl":null,"contactDetails":"P.O. Schenk","location":"18th District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-02-16T17:25:21"},{"calendarId":3,"start":"2016-03-08T18:00:00","end":"2016-03-08T19:00:00","title":"003rd District Positive Loitering Event","eventDetails":"003rd District Positive Loitering Event","eventUrl":null,"contactDetails":"P.O. Hutchinson\n(312) 747-7004\n7040 S. Cottage Grove\nChicago, IL. 60637\n","location":"6300 S. Cottage Grove","modifiedDate":"2016-02-26T12:24:27"},{"calendarId":12,"start":"2016-03-08T18:00:00","end":"2016-03-08T19:00:00","title":"Beat Meeting 1233","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting held at 1412 S. Blue Island, 12th District Community Room on the 2nd Tuesday of the odd months","modifiedDate":"2015-11-28T09:53:38"},{"calendarId":10,"start":"2016-03-08T18:00:00","end":"2016-03-08T19:00:00","title":"1021 BEAT MEETING","eventDetails":"1021 Community Beat Meeting","eventUrl":null,"contactDetails":"CAPS Office \n312-747-7511","location":"Carey Tercentenary\n1448 S. Homan Ave\nChicago Il","modifiedDate":"2016-02-17T17:07:33"},{"calendarId":2,"start":"2016-03-08T15:00:00","end":"2016-03-08T16:00:00","title":"Domestic Violence Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:19:39"},{"calendarId":7,"start":"2016-03-08T12:00:00","end":"2016-03-08T13:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Police Station\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:15:47"},{"calendarId":22,"start":"2016-03-08T10:00:00","end":"2016-03-08T11:00:00","title":"Clergy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-22T08:42:29"},{"calendarId":6,"start":"2016-03-08T10:00:00","end":"2016-03-08T11:00:00","title":"Business Subcommittee Meeting","eventDetails":"Discuss issues, and problems concerning community business","eventUrl":null,"contactDetails":"006th District CAPS Office 312-745-3641","location":"006th District Police District 7808 S Halsted","modifiedDate":"2015-12-17T09:45:08"},{"calendarId":6,"start":"2016-03-05T11:00:00","end":"2016-03-05T12:30:00","title":"006 District Explores","eventDetails":"Police and youth discussions and activities","eventUrl":null,"contactDetails":"006th District CAPS Office 312-745-3641","location":"006th District Police Station 7808 S Halsted","modifiedDate":"2015-12-17T09:43:13"},{"calendarId":3,"start":"2016-03-05T11:00:00","end":"2016-03-05T12:00:00","title":"Youth/Explorers","eventDetails":"Youth/Explorers","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:00:46"},{"calendarId":11,"start":"2016-03-05T09:00:00","end":"2016-03-05T10:00:00","title":"Peer Jury","eventDetails":"Misdemeanor court cases are presented and sanctioned by their peers.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:03:20"},{"calendarId":25,"start":"2016-03-05T08:30:00","end":"2016-03-05T10:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave\nCommunity Room","modifiedDate":"2015-12-10T10:44:44"},{"calendarId":7,"start":"2016-03-04T18:00:00","end":"2016-03-04T20:00:00","title":"Dancin' In the District","eventDetails":"Free Line Dance Class!\nStart working off those extra pounds while having fun and meeting new people!","eventUrl":null,"contactDetails":"Call 312-747-6722 for more information.","location":"007th District Community Room 1438 W. 63rd Street","modifiedDate":"2016-02-25T11:14:54"},{"calendarId":22,"start":"2016-03-03T19:00:00","end":"2016-03-03T20:00:00","title":"Beat 2211/2212","eventDetails":"22nd District ","eventUrl":null,"contactDetails":null,"location":"1900 W. Monterey","modifiedDate":"2015-12-02T11:00:00"},{"calendarId":4,"start":"2016-03-03T19:00:00","end":"2016-03-03T20:00:00","title":"Beat 431 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office.","location":"2255 E. 103rd St.","modifiedDate":"2016-01-26T14:51:59"},{"calendarId":3,"start":"2016-03-03T19:00:00","end":"2016-03-03T20:00:00","title":"Beat Meeting (313, 314)","eventDetails":"Beat Meeting (313, 314)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Harris Park Recreation\n6200 S. Drexel\nChicago, IL. 60637\n","modifiedDate":"2015-12-29T15:55:29"},{"calendarId":22,"start":"2016-03-03T19:00:00","end":null,"title":"Beat 2211 and 2212 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-02T10:59:48"},{"calendarId":16,"start":"2016-03-03T19:00:00","end":null,"title":"Beat 1631 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521.\nCAPS016District@chicagopolice.org","location":"Hiawatha Park\n8029 W. Forest Preserve Drive","modifiedDate":"2016-01-22T15:09:36"},{"calendarId":8,"start":"2016-03-03T19:00:00","end":"2016-03-03T20:00:00","title":"834 Beat Meeting","eventDetails":"Bogan High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3939 W 79th St","modifiedDate":"2015-12-14T08:43:04"},{"calendarId":15,"start":"2016-03-03T18:30:18","end":"2016-03-03T19:30:18","title":"Beat Meeting 1512 & 1523","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"PCC Wellness Center\n5425 W Lake St\nChicago, IL","modifiedDate":"2016-01-04T12:04:24"},{"calendarId":18,"start":"2016-03-03T18:30:00","end":"2016-03-03T19:30:00","title":"30 Sector Beat Meeting","eventDetails":"30 Sector Beat Community Meeting","eventUrl":null,"contactDetails":"P.O. Schenk","location":"Access Living\n115 W. Chicago\nChicago, Il 60654","modifiedDate":"2016-02-16T17:25:30"},{"calendarId":25,"start":"2016-03-03T18:30:00","end":"2016-03-03T19:30:00","title":"Beat Meeting 2511","eventDetails":"Beat Meeting 2511","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"2833 N. Nordica","modifiedDate":"2015-12-10T11:26:30"},{"calendarId":6,"start":"2016-03-03T18:30:00","end":"2016-03-03T19:30:00","title":"Beat 631 Meeting","eventDetails":"Discuss community related problems and concerns","eventUrl":null,"contactDetails":"6th District CAPS Office \n312-745-3641","location":"Chatham Fields Lutheran Church 8050 S. St. Lawrence","modifiedDate":"2015-12-16T16:42:21"},{"calendarId":11,"start":"2016-03-03T18:00:00","end":"2016-03-03T19:00:00","title":"Beat Meeting: 1112/21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2015-12-14T15:27:37"},{"calendarId":10,"start":"2016-03-03T18:00:00","end":"2016-03-03T19:00:00","title":"1012 BEAT MEETING","eventDetails":"1012 Community Beat Meeting ","eventUrl":null,"contactDetails":"CAPS OFFICE \n312-747-7190","location":"Clair House\n1350 S. Harding \nChicago IL 60632","modifiedDate":"2016-02-17T17:07:53"},{"calendarId":10,"start":"2016-03-03T18:00:00","end":"2016-03-03T19:00:00","title":"1011 Beat Meeting","eventDetails":"1011 COMMUNITY BEAT MEETING \n","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-7190","location":"1350 S. HARDING","modifiedDate":"2016-02-17T17:08:03"},{"calendarId":14,"start":"2016-03-03T17:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community room","modifiedDate":"2015-12-15T14:22:16"},{"calendarId":20,"start":"2016-03-03T16:00:00","end":"2016-03-03T17:00:00","title":"20th District Youth Explorers","eventDetails":"20th District Youth Explorer","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District \n5400 N. Lincoln\n","modifiedDate":"2016-01-19T15:27:23"},{"calendarId":1,"start":"2016-03-03T14:00:38","end":"2016-03-03T15:00:38","title":"20 Sect Business Mtg","eventDetails":"Beat meeting with business partners from 20 Sect beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"181 W Madison\nNorthern Trust Bank","modifiedDate":"2015-12-08T16:52:09"},{"calendarId":22,"start":"2016-03-03T14:00:00","end":null,"title":"Diversity and Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:57:09"},{"calendarId":3,"start":"2016-03-03T13:00:00","end":"2016-03-03T14:00:00","title":"003rd District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:08:14"},{"calendarId":11,"start":"2016-03-03T11:00:00","end":"2016-03-03T12:00:00","title":"Domestic Violence Subcommittee","eventDetails":"Domestic Violence Meeting ","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312.746.9841\n","location":"011th District (Auditorium)\n3151 W. Harrison\n","modifiedDate":"2015-12-22T15:09:45"},{"calendarId":5,"start":"2016-03-03T10:00:00","end":"2016-03-03T11:00:00","title":"DOMESTIC VIOLENCE COMMITTEE","eventDetails":"005TH DISTRICT POLICE STATION","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"727 E 111TH STREET","modifiedDate":"2016-01-12T09:20:38"},{"calendarId":12,"start":"2016-03-02T19:00:44","end":"2016-03-02T20:00:44","title":"Beat Meeting 1221 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is held at Smith Park 2526 W. Grand Ave. on the 1st Wednesday of the odd months. ","modifiedDate":"2015-11-28T09:50:52"},{"calendarId":8,"start":"2016-03-02T19:00:00","end":"2016-03-02T20:00:00","title":"815/821 Beat Meeting","eventDetails":"St Bruno's Hall","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4839 S Harding","modifiedDate":"2015-12-14T08:43:43"},{"calendarId":3,"start":"2016-03-02T19:00:00","end":"2016-03-02T20:00:00","title":"Beat Meeting (311, 312)","eventDetails":"Beat Meeting (311, 312)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"Bessie Coleman Library \n731 E. 63rd St.\nChicago, IL. 60637\n","modifiedDate":"2015-12-29T15:55:38"},{"calendarId":16,"start":"2016-03-02T19:00:00","end":null,"title":"1621 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521.\nCAPS016District@chicagopolice.org","location":"First Church of Forest Glen. 5400 N. Lawler\n( bsmt). ","modifiedDate":"2016-01-22T14:27:26"},{"calendarId":4,"start":"2016-03-02T19:00:00","end":"2016-03-02T20:00:00","title":"Beat 412 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office.","location":"8455 S. Stony Island Ave.","modifiedDate":"2016-01-26T14:52:22"},{"calendarId":6,"start":"2016-03-02T18:30:00","end":"2016-03-02T19:30:00","title":"Beat 622 Meeting","eventDetails":"Discuss community problems and concerns","eventUrl":null,"contactDetails":"6th District CAPS Office\n312-745-3641","location":"006 District Police Station 7808 S. Halsted","modifiedDate":"2015-12-16T16:40:19"},{"calendarId":6,"start":"2016-03-02T18:30:00","end":"2016-03-02T19:30:00","title":"Beat 621 Meeting","eventDetails":"Discuss Community related problems and concerns","eventUrl":null,"contactDetails":"6th District CAPS Office \n312-745-3641","location":"006TH DISTRICT \n7808 S Halsted","modifiedDate":"2015-12-17T09:43:31"},{"calendarId":14,"start":"2016-03-02T18:30:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2015-12-15T14:23:51"},{"calendarId":15,"start":"2016-03-02T18:00:14","end":"2016-03-02T19:00:14","title":"Beat Meeting 1522 & 1533","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Loretto Hospital\n645 S Central Ave\nChicago, IL","modifiedDate":"2016-01-04T12:10:26"},{"calendarId":9,"start":"2016-03-02T18:00:00","end":"2016-03-02T19:00:00","title":"911, 921 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Davis School Annex\n3050 W. 39th St.","modifiedDate":"2015-11-30T21:12:16"},{"calendarId":2,"start":"2016-03-02T18:00:00","end":"2016-03-02T19:00:00","title":"D.A.C. Meeting","eventDetails":"Monthly D.A.C. Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T14:42:17"},{"calendarId":14,"start":"2016-03-02T18:00:00","end":null,"title":"Beat Facilitator Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District Community Room","modifiedDate":"2015-12-15T14:26:16"},{"calendarId":8,"start":"2016-03-02T16:00:00","end":"2016-03-02T17:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":"008th District Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W. 63rd Street","modifiedDate":"2015-12-28T11:21:46"},{"calendarId":18,"start":"2016-03-02T15:00:00","end":"2016-03-02T16:00:00","title":"20 Sector Hospitality Meeting","eventDetails":"20 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"She-Nannigans\n16 W. Division\nChicago, Il 60610","modifiedDate":"2016-02-16T17:25:39"},{"calendarId":3,"start":"2016-03-02T14:00:00","end":"2016-03-02T15:00:00","title":"Court Advocate Meeting","eventDetails":"Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t\t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n\n","modifiedDate":"2016-01-19T19:09:59"},{"calendarId":25,"start":"2016-03-02T10:00:00","end":"2016-03-02T11:00:00","title":"Domestic Violence","eventDetails":"Domestic Violence\nSub-committee meeting \n","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:41:52"},{"calendarId":24,"start":"2016-03-01T19:00:00","end":"2016-03-01T20:00:00","title":"2412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office. (312) 744-6321","location":"Devon Bank 6445 N. Western","modifiedDate":"2016-02-15T13:18:20"},{"calendarId":4,"start":"2016-03-01T19:00:00","end":"2016-03-01T20:00:00","title":"Beat 432 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office.","location":"10155 S. Ewing Ave.","modifiedDate":"2016-01-26T15:32:52"},{"calendarId":22,"start":"2016-03-01T19:00:00","end":"2016-03-01T20:00:00","title":"Beat 2221 Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Christ the King Church\n9225 S Hamilton","modifiedDate":"2015-12-03T11:22:31"},{"calendarId":8,"start":"2016-03-01T19:00:00","end":"2016-03-01T20:00:00","title":"822/824 Beat Meeting","eventDetails":"Solorio High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5400 S St Louis","modifiedDate":"2015-12-14T08:43:35"},{"calendarId":5,"start":"2016-03-01T19:00:00","end":"2016-03-01T20:00:00","title":"10 SECTOR MEETING","eventDetails":"TEMPLE OF GLORY","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-3100","location":"311 E 95TH ST","modifiedDate":"2016-03-01T14:36:11"},{"calendarId":12,"start":"2016-03-01T19:00:00","end":"2016-03-01T20:00:00","title":"Beat Meeting 1225","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Chicago Hope Academy 2108 W. Ogden on the 1st Tuesday of the odd months. ","modifiedDate":"2015-11-28T09:52:25"},{"calendarId":15,"start":"2016-03-01T18:30:12","end":"2016-03-01T19:30:12","title":"Beat Meeting 1531 & 1532","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"West Branch Library\n4856 W Chicago Ave\nChicago, IL","modifiedDate":"2016-01-04T11:50:16"},{"calendarId":18,"start":"2016-03-01T18:30:00","end":"2016-03-01T19:00:00","title":"1824 Beat Meeting","eventDetails":"1824 Beat Community Meeting","eventUrl":null,"contactDetails":"P.O. Schenk","location":"Latin School\n59 W. North Ave\nChicago, Il 60614","modifiedDate":"2016-02-16T17:25:48"},{"calendarId":11,"start":"2016-03-01T18:30:00","end":"2016-03-01T19:30:00","title":"Beat Meeting: 1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe.","eventUrl":null,"contactDetails":"011th District CAPS 3151 W. Harrison Street 312-746-9841","location":"Brian Piccolo School 1040 N. Keeler","modifiedDate":"2015-12-14T15:29:56"},{"calendarId":2,"start":"2016-03-01T18:30:00","end":"2016-03-01T19:30:00","title":"Beat Meeting # 212/214","eventDetails":"Caps Community Meeting","eventUrl":null,"contactDetails":"Community Policing\n312-747-5109","location":"Mandrake Park\n3858 S. Cottage Grove","modifiedDate":"2016-01-04T14:35:38"},{"calendarId":19,"start":"2016-03-01T18:30:00","end":"2016-03-01T19:30:00","title":"Beat 1913","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Courtenay School\n4420 N. Beacon","modifiedDate":"2016-02-05T13:52:32"},{"calendarId":25,"start":"2016-03-01T18:30:00","end":"2016-03-01T19:30:00","title":"Beat Meeting 2521","eventDetails":"Beat Meeting 2521","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2715 N. Cicero","modifiedDate":"2015-12-10T11:19:46"},{"calendarId":6,"start":"2016-03-01T18:30:00","end":"2016-03-01T19:30:00","title":"Beat 611 Meeting","eventDetails":"Discuss community problems and concerns","eventUrl":null,"contactDetails":"6th District CAPS Office 312-745-3641","location":"2nd Mt. Vernon Annex Church 2101 W. 79th Street","modifiedDate":"2015-12-17T09:44:21"},{"calendarId":25,"start":"2016-03-01T18:30:00","end":"2016-03-01T19:30:00","title":"Beat Meeting 2535","eventDetails":"Beat Meeting 2535","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"3647 W. North","modifiedDate":"2015-12-10T10:48:31"},{"calendarId":10,"start":"2016-03-01T18:00:00","end":"2016-03-01T19:00:00","title":"1014 BEAT MEETING","eventDetails":"1014 Community Beat Meeting ","eventUrl":null,"contactDetails":"CAPS Office 312-747-7511","location":"3839 W. Ogden Ave.\nChicago Il 60632","modifiedDate":"2016-02-17T17:08:12"},{"calendarId":9,"start":"2016-03-01T18:00:00","end":"2016-03-01T19:00:00","title":"924, 931, 933 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"New City Supportive Living\nCommunity Room\n4707 S. Marshfield Ave","modifiedDate":"2016-01-06T20:42:33"},{"calendarId":25,"start":"2016-03-01T14:00:00","end":"2016-03-01T15:00:00","title":"Court Advocacy","eventDetails":"Court Advocacy","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:42:59"},{"calendarId":15,"start":"2016-03-01T10:00:14","end":"2016-03-01T12:00:14","title":"Faith Based Meeting","eventDetails":"Clergy from various denominations and block club leaders come together and discuss chronic crime issues that affects the community.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-05T10:45:21"},{"calendarId":5,"start":"2016-02-27T10:00:00","end":"2016-02-27T12:00:00","title":"Youth Law Explorers ","eventDetails":"005th District Police Station","eventUrl":null,"contactDetails":"CAPS 312-747-3100","location":"727 E 111th Street","modifiedDate":"2016-01-12T09:22:18"},{"calendarId":8,"start":"2016-02-27T09:00:00","end":null,"title":"Peer Jury","eventDetails":"Branch 34","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"155 W. 51st Street","modifiedDate":"2015-12-28T11:35:05"},{"calendarId":5,"start":"2016-02-27T08:30:00","end":"2016-02-27T11:00:00","title":"Peer Jury","eventDetails":"005th District Police Station","eventUrl":null,"contactDetails":"CAPS Office 312-747-3100","location":"727 E 111th Street","modifiedDate":"2016-01-12T09:22:02"},{"calendarId":15,"start":"2016-02-27T08:30:00","end":"2016-02-27T13:00:00","title":"Peer Jury Session","eventDetails":"Youths with misdemeanor court cases are presented and sanctioned by their peers","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-13T11:25:34"},{"calendarId":2,"start":"2016-02-27T08:00:00","end":"2016-02-27T11:00:00","title":"Peer Jury","eventDetails":"Monthly Peer Jury ","eventUrl":null,"contactDetails":"officer Sanders 312-747-5109","location":"5101 S. Wentworth 002nd Dist.","modifiedDate":"2016-01-04T15:26:12"},{"calendarId":20,"start":"2016-02-26T17:30:00","end":"2016-02-26T19:30:00","title":"20th District Movie Night","eventDetails":"20th District and Youth Explorers Movie night\nStar Wars ","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"5400 N. Lincoln \nCommunity Room","modifiedDate":"2016-02-01T11:39:03"},{"calendarId":6,"start":"2016-02-26T17:30:00","end":"2016-02-26T20:00:00","title":"Free Line Dancing","eventDetails":"Free Line Dancing Class","eventUrl":null,"contactDetails":"Contact Ms. Leaks in the CAPS office at \n312-745-3641","location":"7808 S. Halsted Street\nCommunity Room","modifiedDate":"2016-02-06T15:37:18"},{"calendarId":3,"start":"2016-02-25T19:00:00","end":"2016-02-25T20:00:00","title":"Beat Meeting (321, 324)","eventDetails":"Beat Meeting (321, 324)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T15:56:15"},{"calendarId":16,"start":"2016-02-25T19:00:00","end":null,"title":"1634 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521.\nCAPS016District@chicagopolice.org","location":"St. Bartholomew Church\n( Kreuger Hall)\n4910 W. Addison","modifiedDate":"2016-01-25T23:12:37"},{"calendarId":7,"start":"2016-02-25T18:30:21","end":"2016-02-25T19:30:21","title":"BEAT 711 & 712 ","eventDetails":"BEAT COMMUNITY MEETING","eventUrl":null,"contactDetails":"312-747-6722 For more information.","location":"Sherwood Park\n5701 S. Shields","modifiedDate":"2016-02-25T11:14:27"},{"calendarId":25,"start":"2016-02-25T18:30:00","end":"2016-02-25T19:30:00","title":"Beat Meeting 2514","eventDetails":"Beat Meeting 2514","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"3115 N. Mason","modifiedDate":"2015-12-10T11:23:50"},{"calendarId":7,"start":"2016-02-25T18:00:00","end":"2016-02-25T21:00:00","title":"Movie Night","eventDetails":"A Force For Change\nPrayer Sao Paulo's 'God Factor' for Change\nMovie viewing and discussion following.","eventUrl":null,"contactDetails":"Call 312-747-6722","location":"007th District Community Room\n1438 W. 63rd Street","modifiedDate":"2016-02-25T11:20:01"},{"calendarId":11,"start":"2016-02-25T18:00:00","end":"2016-02-25T19:00:00","title":"Beat Meeting:1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Eloise Mc Coy Village Apt. 4650 W. Van Buren ","modifiedDate":"2015-12-21T13:42:46"},{"calendarId":3,"start":"2016-02-25T17:00:00","end":"2016-02-25T18:00:00","title":"Clergy Meeting","eventDetails":"Clergy Meeting","eventUrl":null,"contactDetails":"P.O Hutchinson\n(312)747-7004\nChicago. IL.60637","location":"6930 S. Cottage Grove\nChicago, IL. 60637","modifiedDate":"2016-01-19T18:47:41"},{"calendarId":20,"start":"2016-02-25T16:00:00","end":"2016-02-25T17:00:00","title":"20th District Youth Explorer","eventDetails":"20th District Youth Explorers ","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District \n5400 N. Lincoln\nCommunity room","modifiedDate":"2016-01-19T15:27:46"},{"calendarId":1,"start":"2016-02-25T14:00:00","end":"2016-02-25T14:00:00","title":"10 Sect Business","eventDetails":"Beat meeting with business partners from 10 sect beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"175 N State\nChicago Theatre","modifiedDate":"2015-12-08T16:52:27"},{"calendarId":22,"start":"2016-02-25T14:00:00","end":"2016-02-25T15:00:00","title":"DAC Meeting","eventDetails":"22nd District Community Room 1900 W. Monterey Ave","eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":null,"modifiedDate":"2015-12-23T08:43:54"},{"calendarId":22,"start":"2016-02-25T13:00:00","end":"2016-02-25T14:00:00","title":"Beat Facilitators Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-23T08:44:08"},{"calendarId":22,"start":"2016-02-25T10:30:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":"22nd District Community Room, 1900 W. Monterey","eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":null,"modifiedDate":"2015-12-23T08:45:18"},{"calendarId":17,"start":"2016-02-24T19:30:00","end":"2016-02-24T20:30:00","title":"1711&1712 beat meeting ","eventDetails":"This is a monthly beat meeting for both beats.","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"5020 N. Pulaski\nMayfair Church","modifiedDate":"2015-12-08T13:31:33"},{"calendarId":8,"start":"2016-02-24T19:00:00","end":"2016-02-24T20:00:00","title":"835 Beat Meeting","eventDetails":"Wrightwood Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"8530 S Kedzie","modifiedDate":"2015-12-14T08:44:27"},{"calendarId":16,"start":"2016-02-24T19:00:00","end":null,"title":"1624 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521.\nCAPS016District@chicagopolice.org","location":"Portage Park Senior Center.\n4100 N. Long","modifiedDate":"2016-01-22T14:29:19"},{"calendarId":9,"start":"2016-02-24T18:30:00","end":"2016-02-24T19:30:00","title":"914 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chinatown Library\n2100 S. Wentworth Ave.","modifiedDate":"2015-11-30T21:13:01"},{"calendarId":3,"start":"2016-02-24T18:00:00","end":"2016-02-24T19:00:00","title":"DAC Meeting","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T11:43:07"},{"calendarId":25,"start":"2016-02-24T18:00:00","end":"2016-02-24T19:00:00","title":"Beat Meeting 2534","eventDetails":"Beat Meeting 2534","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"4338 W. Wabansia ","modifiedDate":"2015-12-10T10:49:27"},{"calendarId":8,"start":"2016-02-23T19:00:00","end":"2016-02-23T20:00:00","title":"813/833 Beat Meeting","eventDetails":"West Lawn Park","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W 65th St","modifiedDate":"2015-12-14T08:45:57"},{"calendarId":3,"start":"2016-02-23T19:00:00","end":"2016-02-23T20:00:00","title":"Beat Meeting (322, 323)","eventDetails":"Beat Meeting (322, 323)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Park Manor Church\n600 E. 73rd St.\nChicago, IL. 60619\n","modifiedDate":"2015-12-29T15:56:04"},{"calendarId":24,"start":"2016-02-23T19:00:00","end":"2016-02-23T20:00:00","title":"2431 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"United Church of Rogers Park 1545 W. Morse","modifiedDate":"2016-01-12T15:52:46"},{"calendarId":9,"start":"2016-02-23T19:00:00","end":"2016-02-23T20:00:00","title":"922, 923 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Simon Church Hall\n5157 S. California Ave.","modifiedDate":"2015-11-30T21:13:10"},{"calendarId":16,"start":"2016-02-23T19:00:00","end":null,"title":"1614 Beet Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521.\nCAPS016District@chicagopolice.org","location":"Salvation Army\n8354 W. Foster","modifiedDate":"2016-01-22T14:30:13"},{"calendarId":7,"start":"2016-02-23T18:30:00","end":"2016-02-23T19:30:00","title":"BEAT 713,714 AND 715","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"007TH DISTRICT POLICE STATION\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:28:20"},{"calendarId":25,"start":"2016-02-23T18:30:00","end":"2016-02-23T19:30:00","title":"Beat Meeting 2532","eventDetails":"Beat Meeting 2532","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"1511 N. Long","modifiedDate":"2015-12-10T10:51:06"},{"calendarId":12,"start":"2016-02-23T18:00:00","end":"2016-02-23T19:00:00","title":"Beat Meeting 1232","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at 12th District, 1412 S. Blue Island, on the 4th Tuesday of the even months. ","modifiedDate":"2015-11-28T09:21:16"},{"calendarId":11,"start":"2016-02-23T18:00:00","end":"2016-02-23T19:00:00","title":"Beat Meeting: 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2015-12-22T14:05:46"},{"calendarId":3,"start":"2016-02-23T14:00:00","end":"2016-02-23T15:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:52:35"},{"calendarId":6,"start":"2016-02-23T12:00:00","end":"2016-02-23T12:30:00","title":"Outdoor Roll Call","eventDetails":"Stand with the police and community","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"9500 S. Lasalle Ave","modifiedDate":"2016-02-06T15:44:29"},{"calendarId":6,"start":"2016-02-23T12:00:00","end":"2016-02-23T12:30:00","title":"Outdoor Roll Call","eventDetails":"Stand with the police against crime","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"8000 S. Damen Ave","modifiedDate":"2016-02-13T09:30:14"},{"calendarId":5,"start":"2016-02-23T10:00:00","end":"2016-02-23T11:00:00","title":"Court Advocacy","eventDetails":"005th District Police Station","eventUrl":null,"contactDetails":"CAPS Office 312-747-3100","location":"727 E 111th Street","modifiedDate":"2016-01-12T09:29:07"},{"calendarId":11,"start":"2016-02-22T18:00:11","end":"2016-02-22T19:00:11","title":"District Advisory Committee ","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 11th District.","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841\n","location":"011th District Auditorium ","modifiedDate":"2015-12-28T09:27:15"},{"calendarId":6,"start":"2016-02-20T12:00:00","end":"2016-02-20T14:00:00","title":"Kids n Kops","eventDetails":"Youth program for kids 7-12 years old to empower with positive decision making strategies\n","eventUrl":null,"contactDetails":"Contact Dorothy Leaks at 312-745-3644","location":"Chicago Police Dept\n7808 S. Halsted St\nCommunity Room","modifiedDate":"2016-02-12T14:07:14"},{"calendarId":6,"start":"2016-02-20T11:00:00","end":"2016-02-20T12:00:00","title":"6th District Law Explorers","eventDetails":"A program for young adults to gain leadership experience and participate in community service activities\n","eventUrl":null,"contactDetails":"Contact Officer Mathews or Officer Blanden at 312-745-3641","location":"Chicago Police Dept\n7808 S. Halsted Street\nCommunity Room","modifiedDate":"2016-02-12T09:50:21"},{"calendarId":18,"start":"2016-02-20T10:00:00","end":"2016-02-20T12:00:00","title":"Peer Jury","eventDetails":"Peer Jury and Explorer Scouts","eventUrl":null,"contactDetails":"P.O Ferguson","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-01-14T15:15:20"},{"calendarId":15,"start":"2016-02-20T10:00:00","end":"2016-02-20T12:00:00","title":"Block Club Training","eventDetails":"Block club training is provided to residents who are concerned and care about their communities, share information, identify concerns and act collectively to address these concerns.","eventUrl":null,"contactDetails":"15th District \nCommunity Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District \nCommunity Policing Room\n5701 W Madison Ave\nChicago, IL \n312-743-1495","modifiedDate":"2016-01-07T09:59:00"},{"calendarId":9,"start":"2016-02-20T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Area Central\n5101 S. Wentworth Ave.","modifiedDate":"2016-01-05T17:27:07"},{"calendarId":17,"start":"2016-02-20T09:00:00","end":"2016-02-20T14:00:00","title":"Peer Jury and Youth Beat Meeting","eventDetails":"Monthly Peer Jury and Youth Beat Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room","modifiedDate":"2015-12-08T13:31:45"},{"calendarId":3,"start":"2016-02-20T09:00:00","end":"2016-02-20T10:00:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"51st Wentworth","modifiedDate":"2016-01-19T18:58:32"},{"calendarId":25,"start":"2016-02-19T17:00:00","end":"2016-02-19T20:00:00","title":"Youth Movie Night","eventDetails":"Open to current and perspective youth program members ages 12-18","eventUrl":null,"contactDetails":"CAPS Office","location":"25th District","modifiedDate":"2016-02-12T13:07:33"},{"calendarId":8,"start":"2016-02-18T19:00:00","end":"2016-02-18T20:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":"West Lawn Park","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W. 65th Street","modifiedDate":"2015-12-28T11:23:59"},{"calendarId":20,"start":"2016-02-18T19:00:00","end":"2016-02-18T20:00:00","title":"2024 Beat Meeting","eventDetails":"2024 District Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8700","location":"4921 N Margate","modifiedDate":"2015-12-10T14:26:18"},{"calendarId":7,"start":"2016-02-18T18:30:00","end":"2016-02-18T19:30:00","title":"District Advisory Council Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Station\n1438 W. 63RD STREET","modifiedDate":"2016-01-20T16:18:03"},{"calendarId":11,"start":"2016-02-18T18:30:00","end":"2016-02-18T19:30:00","title":"Beat Meeting:1113/14/15","eventDetails":"Community engagements generating strategies to making neighborhoods safe","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"St. Michael MBC 4106 W. Monroe ","modifiedDate":"2015-12-21T14:08:51"},{"calendarId":7,"start":"2016-02-18T18:30:00","end":"2016-02-18T19:30:00","title":"BEAT 734 & 735","eventDetails":"COMMUNITY ROOM","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"GIFTS FROM GOD MINISTRY\n1818 W. 74TH STREET","modifiedDate":"2016-01-20T16:20:53"},{"calendarId":25,"start":"2016-02-18T18:30:00","end":"2016-02-18T19:30:00","title":"Beat Meeting 2524","eventDetails":"Beat Meeting 2524","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2446 N. Ridgeway","modifiedDate":"2015-12-10T10:53:43"},{"calendarId":14,"start":"2016-02-18T18:30:00","end":null,"title":"1433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Pulaski Park\n1419 W. Blackhawk","modifiedDate":"2015-12-09T12:17:32"},{"calendarId":16,"start":"2016-02-18T18:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS016District@chicagopolice.org","location":"5151 N. Milwaukee\nCommunity Room","modifiedDate":"2016-01-22T14:31:48"},{"calendarId":20,"start":"2016-02-18T16:00:00","end":"2016-02-18T17:00:00","title":"20th District Youth Explorer","eventDetails":"20th District Peer Jury \n\n\n","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District \n5400 N. Lincoln\nCommunity Room","modifiedDate":"2016-01-19T15:27:53"},{"calendarId":11,"start":"2016-02-18T10:00:00","end":"2016-02-18T11:00:00","title":"Senior Subcommittee Meeting","eventDetails":"\nSenior Subcommittee monthly meeting. \n","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312-746-9841\n","location":"Meeting 011th District Auditorium \n3151 W. Harrison \n","modifiedDate":"2015-12-28T08:40:36"},{"calendarId":6,"start":"2016-02-18T10:00:00","end":"2016-02-18T11:00:00","title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"Contact Officer Hughes at 312-745-3641","location":"Chicago Police Dept\n7808 S. Halsted St\nCommunity Room","modifiedDate":"2016-02-12T14:07:28"},{"calendarId":17,"start":"2016-02-17T19:30:00","end":"2016-02-17T20:30:00","title":"1722&1723 beat meeting ","eventDetails":"This is a monthly Beat Meeting for both beats. ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room","modifiedDate":"2015-12-08T13:31:21"},{"calendarId":20,"start":"2016-02-17T19:00:00","end":"2016-02-17T20:00:00","title":"20th Dist Beat Meeting Beat 2013","eventDetails":"Beat 2013 Beat Meeting","eventUrl":null,"contactDetails":"20th Dist CAPS","location":"5437 N. Clark St.\nChicago, Il","modifiedDate":"2016-02-09T13:55:46"},{"calendarId":8,"start":"2016-02-17T19:00:00","end":"2016-02-17T20:00:00","title":"823/825 Beat Meeting","eventDetails":"008th District","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W 63rd St","modifiedDate":"2015-12-14T08:45:20"},{"calendarId":1,"start":"2016-02-17T19:00:00","end":"2016-02-17T19:00:00","title":"BT 133 Residential Mtg","eventDetails":"Beat meeting with residents from BT 133","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"2930 S Dearborn\nDearborn Homes","modifiedDate":"2015-12-08T16:52:53"},{"calendarId":3,"start":"2016-02-17T19:00:00","end":"2016-02-17T20:00:00","title":"Beat Meeting (333, 334)","eventDetails":"Beat Meeting (333, 334)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"South Shore Cultural Center\n7059 S. South shore Dr.\nChicago, Ill. 60649\n","modifiedDate":"2016-01-20T18:24:38"},{"calendarId":14,"start":"2016-02-17T18:30:00","end":null,"title":"1434 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Public Library-Bucktown\n1701 N. Milwaukee","modifiedDate":"2015-12-09T12:17:15"},{"calendarId":2,"start":"2016-02-17T18:30:00","end":"2016-02-17T19:30:00","title":"Beat Meeting # 233/234/235","eventDetails":"Caps Community Meeting","eventUrl":null,"contactDetails":"Community Policing\n312-747-5109","location":"Treasure Island \n1526 E. 55th Street","modifiedDate":"2016-01-04T14:36:34"},{"calendarId":9,"start":"2016-02-17T18:00:00","end":"2016-02-17T19:00:00","title":"925 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Gabriel Church Hall\n4500 S. Wallace St.","modifiedDate":"2015-11-30T21:13:20"},{"calendarId":12,"start":"2016-02-17T18:00:00","end":"2016-02-17T19:00:00","title":"Beat Meeting 1234","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Harrison Park, 1824 S. Wood Street on the 3rd Wednesday of the even months. ","modifiedDate":"2015-11-28T09:24:28"},{"calendarId":10,"start":"2016-02-17T18:00:00","end":"2016-02-17T19:00:00","title":"BEAT 1031 &1032","eventDetails":"BEAT 1031& 1032 \nCOMMUNITY BEAT MEETING ","eventUrl":null,"contactDetails":"CAPS Office 312-747-7190","location":"ST. AGNES CHURCH\n2658 S. Central Park","modifiedDate":"2016-01-19T13:44:43"},{"calendarId":25,"start":"2016-02-17T16:30:00","end":"2016-02-17T17:00:00","title":"Outdoor Roll Call","eventDetails":"Outdoor Roll Call 3rd watch officers along w/ community members","eventUrl":null,"contactDetails":"025 CAPS Office\n312-746-5090\n025CAPS@chicagopolice.org","location":"Lafollette Park\n1333 N Laramie\n","modifiedDate":"2016-02-17T15:13:21"},{"calendarId":18,"start":"2016-02-17T15:00:00","end":"2016-02-17T16:00:00","title":"Near North Security Meeting","eventDetails":"Near North Security Meeting","eventUrl":null,"contactDetails":"P.O Incaprera","location":"18th District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-01-08T17:57:31"},{"calendarId":5,"start":"2016-02-17T13:00:00","end":"2016-02-17T14:00:00","title":"Senior Committee","eventDetails":"005th District Police Station","eventUrl":null,"contactDetails":"CAPS Office 312-747-3100","location":"727 E 111th Street","modifiedDate":"2016-01-12T09:21:31"},{"calendarId":11,"start":"2016-02-17T13:00:00","end":"2016-02-17T14:00:00","title":"E.A.V.I.","eventDetails":"The Expanded Anti-Violence Initiative is a community policing strategy designed specifically to prevent and reduce the violence associated with gang activity and narcotics sales.","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T10:07:26"},{"calendarId":8,"start":"2016-02-16T19:00:00","end":"2016-02-16T20:00:00","title":"811 Beat Meeting","eventDetails":"Good Shepherd Church","eventUrl":null,"contactDetails":"Community Policing\n312 747 -8724","location":"5550 S Merrimac","modifiedDate":"2015-12-14T08:46:15"},{"calendarId":24,"start":"2016-02-16T19:00:00","end":"2016-02-16T20:00:00","title":"2423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Touhy Park 7348 N. Paulina","modifiedDate":"2016-01-08T11:27:29"},{"calendarId":1,"start":"2016-02-16T19:00:00","end":"2016-02-16T20:00:00","title":"BT 131/132 Residential Mtg","eventDetails":"Beat meeting for residents from Bt's 131/132","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"30 W Cermak\nHillard Apts","modifiedDate":"2015-12-08T16:53:31"},{"calendarId":7,"start":"2016-02-16T18:30:00","end":"2016-02-16T19:30:00","title":"BEAT 731,732 AND 733","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"HAMILTON PARK\n513 W. 72ND STREET","modifiedDate":"2016-01-20T16:22:52"},{"calendarId":2,"start":"2016-02-16T18:30:00","end":"2016-02-16T19:30:00","title":"Beat Meeting # 221/223","eventDetails":"Beat Meeting for citizens","eventUrl":null,"contactDetails":"Community Policing\n312-747-5109","location":"King center\n4314 S. Cottage Grove","modifiedDate":"2016-01-04T14:37:48"},{"calendarId":9,"start":"2016-02-16T18:00:00","end":"2016-02-16T19:00:00","title":"932, 934, 935 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Westhaven Senior Apts.\n850 W. Garfield Blvd.","modifiedDate":"2015-11-30T21:13:28"},{"calendarId":11,"start":"2016-02-16T18:00:00","end":"2016-02-16T19:00:00","title":"Beat Meeting:1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Homan Square Community Center 3559 W. Arthington","modifiedDate":"2015-12-21T15:03:46"},{"calendarId":16,"start":"2016-02-16T13:00:00","end":null,"title":"Senior Subcommittee","eventDetails":"Come learn about crimes that target seniors and personal/property safety.\nRefreshments served and\nFREE giveaways!","eventUrl":null,"contactDetails":"Officer Whalen (312) 742-4521. \nCAPS016District@chicagopolice.org","location":"016th District Police Station-5151 N. Milwaukee\n( community room )","modifiedDate":"2016-01-22T14:35:57"},{"calendarId":9,"start":"2016-02-16T13:00:00","end":"2016-02-16T15:00:00","title":"Seniors Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"009th District Station\n3120 S. Halsted","modifiedDate":"2016-01-05T17:26:57"},{"calendarId":7,"start":"2016-02-16T13:00:00","end":"2016-02-16T15:00:00","title":"Senior Advisory Committee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"Tolton Manor\n6345 S. Stewart","modifiedDate":"2016-01-20T16:17:20"},{"calendarId":11,"start":"2016-02-16T11:00:06","end":"2016-02-16T12:00:06","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841\n","location":"TBA","modifiedDate":"2016-01-26T14:08:12"},{"calendarId":17,"start":"2016-02-16T11:00:00","end":"2016-02-16T12:15:00","title":"Senior Subcommittee Meeting ","eventDetails":"Monthly Senior Citizen Subcommittee Meeting ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room","modifiedDate":"2015-12-08T13:31:11"},{"calendarId":2,"start":"2016-02-16T10:30:00","end":null,"title":"Senior Meeting","eventDetails":"Senior Meeting","eventUrl":null,"contactDetails":"0fficer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T14:34:00"},{"calendarId":16,"start":"2016-02-15T13:00:00","end":null,"title":"Senior Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Jennene Whalen\n(312) 742-4521\nCAPS016District@chicagopolice.org","location":"5151 N Milwaukee Ave","modifiedDate":"2016-02-18T13:36:37"},{"calendarId":5,"start":"2016-02-13T10:00:00","end":"2016-02-13T12:00:00","title":"Youth Law Explorers","eventDetails":"005th District Police Station","eventUrl":null,"contactDetails":"CAPS Office 312-747-3100","location":"727 E 111th Street","modifiedDate":"2016-01-12T09:22:54"},{"calendarId":14,"start":"2016-02-13T10:00:00","end":null,"title":"Senior Advisory Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District\nCommunity Room","modifiedDate":"2015-12-09T12:14:24"},{"calendarId":16,"start":"2016-02-13T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Greg Dial\n(312) 742-4521\nCAPS016District@chicagopolice.org","location":"5151 N. Milwaukee","modifiedDate":"2016-01-22T14:33:10"},{"calendarId":25,"start":"2016-02-12T22:30:00","end":"2016-02-12T23:00:00","title":"Beat 2523 Outdoor Roll Call","eventDetails":"Outdoor roll call for 1st watch officers and community members.","eventUrl":null,"contactDetails":"25th District CAPS Office","location":"Springfield/George","modifiedDate":"2016-02-05T13:50:12"},{"calendarId":6,"start":"2016-02-12T17:30:00","end":"2016-02-12T20:00:00","title":"Free Line Dancing","eventDetails":"Free Line Dancing Class ","eventUrl":null,"contactDetails":"Contact Ms. Leaks in the CAPS Office at \n312-745-3641","location":"7808 S. Halsted Street\nCommunity Room","modifiedDate":"2016-02-06T15:37:04"},{"calendarId":14,"start":"2016-02-11T19:00:00","end":null,"title":"1422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Simons Park\n1640 N. Drake","modifiedDate":"2015-12-09T12:18:05"},{"calendarId":3,"start":"2016-02-11T19:00:00","end":"2016-02-11T20:00:00","title":"Beat Meeting (331, 332)","eventDetails":"Beat Meeting (331, 332)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t\t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"ABJ Community Center\n1818 E. 71st St.\nChicago, IL. 60649\n","modifiedDate":"2015-12-29T15:55:55"},{"calendarId":4,"start":"2016-02-11T19:00:00","end":"2016-02-11T20:00:00","title":"Beat 422 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office.","location":"2800 E. 79th St.","modifiedDate":"2016-01-26T15:34:25"},{"calendarId":1,"start":"2016-02-11T19:00:00","end":"2016-02-11T20:00:00","title":"10 Sect Residential Mtg","eventDetails":"Beat meeting for residents of 10 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"130 N Garland \nCondo Bldg\n","modifiedDate":"2015-12-08T16:53:55"},{"calendarId":16,"start":"2016-02-11T19:00:00","end":null,"title":"1632 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"(312)742-4521\nCAPS016District@chicagopolice.org","location":"Schorsch Village Hall\n6940 W. Belmont","modifiedDate":"2016-01-22T14:37:20"},{"calendarId":8,"start":"2016-02-11T19:00:00","end":"2016-02-11T20:00:00","title":"814 Beat Meeting","eventDetails":"Vittum Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5010 W 50th St","modifiedDate":"2015-12-14T08:45:48"},{"calendarId":15,"start":"2016-02-11T18:30:15","end":"2016-02-11T19:30:15","title":"Beat Meeting 1513N","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\nChicago, IL\n312-743-1495","modifiedDate":"2016-01-04T11:46:24"},{"calendarId":7,"start":"2016-02-11T18:30:00","end":"2016-02-11T19:30:00","title":"BEAT 724, 725 AND 726","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"OGDEN PARK\n6500 S. RACINE","modifiedDate":"2016-01-20T16:25:55"},{"calendarId":2,"start":"2016-02-11T18:30:00","end":"2016-02-11T19:30:00","title":"Beat Meeting #225/231/232","eventDetails":"Caps Community Meeting","eventUrl":null,"contactDetails":"Community Policing\n312-747-5109","location":"Coppin A. M. E. Church\n5627 S. Michigan","modifiedDate":"2016-01-04T14:36:50"},{"calendarId":12,"start":"2016-02-11T18:00:59","end":"2016-02-11T19:00:59","title":"Beat Meeting 1214","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Coyne Institute, 330 N. Green Street, on the 2nd Thursday of the even months. ","modifiedDate":"2015-11-28T09:15:04"},{"calendarId":10,"start":"2016-02-11T18:00:00","end":"2016-02-11T19:00:00","title":"BEAT 1023","eventDetails":"1023&1024 Community Beat Meeting ","eventUrl":null,"contactDetails":"CAPS Office 312-747-7190","location":"10th District Community Room 3315 W. Ogden Ave","modifiedDate":"2016-01-19T13:48:56"},{"calendarId":11,"start":"2016-02-11T18:00:00","end":"2016-02-11T19:00:00","title":"Beat Meeting:1122/23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Legler Chicago Public Library 115 S. Pulaski","modifiedDate":"2015-12-21T14:35:08"},{"calendarId":10,"start":"2016-02-11T18:00:00","end":"2016-02-11T19:00:00","title":"BEAT 1024","eventDetails":"BEAT 1024 Community Beat Meeting ","eventUrl":null,"contactDetails":"CAPS 312-747-7190","location":"10th District Community Room 3315 \nW. Ogden Ave","modifiedDate":"2016-01-19T13:45:19"},{"calendarId":6,"start":"2016-02-11T17:00:00","end":"2016-02-11T17:30:00","title":"Outdoor Roll Call","eventDetails":"Stand with the police and the community","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"7800 S. Wabash Ave","modifiedDate":"2016-02-06T15:42:07"},{"calendarId":20,"start":"2016-02-11T16:00:00","end":"2016-02-11T17:00:00","title":"20th District Yourth Explorer","eventDetails":"20th District Peer Jury Training","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District \n5400 n. Lincoln\nCommunity Room","modifiedDate":"2016-01-19T15:28:01"},{"calendarId":20,"start":"2016-02-11T16:00:00","end":"2016-02-11T17:00:00","title":"Peer Jury Training","eventDetails":"20th District Peer Jury Training","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"5400 N. Lincoln","modifiedDate":"2015-12-14T14:46:21"},{"calendarId":5,"start":"2016-02-11T11:00:00","end":"2016-02-11T12:00:00","title":"Pastoral Committee","eventDetails":"005th District police Station","eventUrl":null,"contactDetails":"CAPS Office 312-747-3100","location":"727 E 111th Street","modifiedDate":"2016-01-12T09:21:46"},{"calendarId":6,"start":"2016-02-11T10:00:00","end":null,"title":"Faith Based Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"Contact PO Jones at \n312-745-3641","location":"Chicago Police Dept.\n7808 S. Halsted St\nCommunity Room","modifiedDate":"2015-12-28T10:02:44"},{"calendarId":20,"start":"2016-02-10T19:00:47","end":"2016-02-10T20:00:47","title":"2012 Beat Meeting","eventDetails":"20th District Community Beat Meeting","eventUrl":null,"contactDetails":"CAPS 312-872-8870","location":"1609 W. Gregory","modifiedDate":"2016-02-01T14:20:55"},{"calendarId":19,"start":"2016-02-10T19:00:00","end":"2016-02-10T20:00:00","title":"Beat 1914","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Clarendon Park\n4501 N. Clarendon","modifiedDate":"2015-12-08T15:10:49"},{"calendarId":1,"start":"2016-02-10T19:00:00","end":"2016-02-10T20:00:00","title":"20 Sect Residential Mtg","eventDetails":"Beat meeting for residents of 20 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"525 S State\nUniversity Center","modifiedDate":"2015-12-08T16:56:04"},{"calendarId":4,"start":"2016-02-10T19:00:00","end":"2016-02-10T20:00:00","title":"Beat 413 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office.","location":"9037 S. Harper Ave.","modifiedDate":"2016-01-26T15:37:23"},{"calendarId":14,"start":"2016-02-10T19:00:00","end":null,"title":"1424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Wicker Park\n1425 N. Damen","modifiedDate":"2015-12-09T12:17:49"},{"calendarId":16,"start":"2016-02-10T19:00:00","end":null,"title":"1622 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime related and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521.\nCAPS016District@chicagopolice.org","location":"Dunham Park\n4638 N. Melvina","modifiedDate":"2016-01-25T23:13:29"},{"calendarId":8,"start":"2016-02-10T19:00:00","end":"2016-02-10T20:00:00","title":"812 Beat Meeting","eventDetails":"St Symphorosa","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6135 S Austin","modifiedDate":"2015-12-14T08:46:06"},{"calendarId":17,"start":"2016-02-10T19:00:00","end":"2016-02-10T20:00:00","title":"Beat Meeting for beat 1732&beat 1733","eventDetails":"This is a monthly Beat meeting for both beats.","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Athletic Field Park\n3546 W. Addison","modifiedDate":"2015-12-08T13:31:02"},{"calendarId":2,"start":"2016-02-10T18:30:00","end":"2016-02-10T19:30:00","title":"Beat Meeting # 213/215/224","eventDetails":"Beat meeting for citizens","eventUrl":null,"contactDetails":"Community Policing\n312-747-5109","location":"St Elizabeth Church\n4058 S. Michigan","modifiedDate":"2016-01-04T14:38:29"},{"calendarId":25,"start":"2016-02-10T18:00:00","end":"2016-02-10T19:00:00","title":"DAC Meeting","eventDetails":"DAC Meeting","eventUrl":null,"contactDetails":null,"location":"25th District","modifiedDate":"2016-01-08T12:46:05"},{"calendarId":11,"start":"2016-02-10T18:00:00","end":"2016-02-10T19:00:00","title":"Court Advocacy ","eventDetails":"Court Advocacy Meeting","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:23:02"},{"calendarId":18,"start":"2016-02-10T15:30:00","end":"2016-02-10T16:30:00","title":"30 Sector Hospitality Meeting","eventDetails":"30 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"Highline\n169 W. Kinzie\nChicago, Il 60654","modifiedDate":"2016-01-08T17:57:41"},{"calendarId":22,"start":"2016-02-10T13:30:00","end":null,"title":"Court Advocacy Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave\n","modifiedDate":"2015-12-19T10:58:42"},{"calendarId":6,"start":"2016-02-10T11:00:00","end":null,"title":"Senior Subcommittee","eventDetails":"Discuss personal safety tips and interact with seniors ","eventUrl":null,"contactDetails":"Contact the CAPS Office \n312-745-3641","location":"Chicago Police Dept\n7808 S. Halsted St\nCommunity Room","modifiedDate":"2015-12-28T10:02:53"},{"calendarId":20,"start":"2016-02-10T10:00:00","end":"2016-02-10T11:00:00","title":" Senior Meeting ","eventDetails":"Senior Monthly Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"5400 N. Lincoln","modifiedDate":"2015-12-14T14:46:32"},{"calendarId":18,"start":"2016-02-10T10:00:00","end":"2016-02-10T11:00:00","title":"Senior ID Theft Prevention Seminar","eventDetails":"Senior ID Theft Prevention Seminar","eventUrl":null,"contactDetails":"P.O Ramirez","location":"Maria Diaz Apartments\n2111 N. Halsted\nChicago, Il 60610","modifiedDate":"2016-01-08T17:57:13"},{"calendarId":7,"start":"2016-02-10T09:30:00","end":"2016-02-10T11:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Police Station\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:14:45"},{"calendarId":12,"start":"2016-02-09T19:00:59","end":"2016-02-09T20:00:59","title":"Beat Meeting 1222","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at The Above and Beyond Family Recovery Center 2942 W. Lake St. on the 2nd Tuesday of the even months.","modifiedDate":"2015-11-28T09:17:14"},{"calendarId":24,"start":"2016-02-09T19:00:00","end":"2016-02-09T20:00:00","title":"2411 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Bernard Horwich Center JCC 3003 W. Touhy","modifiedDate":"2016-01-12T15:52:09"},{"calendarId":8,"start":"2016-02-09T19:00:00","end":"2016-02-09T20:00:00","title":"831/832 Beat Meeting","eventDetails":"Marquette Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6734 S Kedzie","modifiedDate":"2015-12-14T08:45:11"},{"calendarId":4,"start":"2016-02-09T19:00:00","end":"2016-02-09T20:00:00","title":"Beat 424 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office.","location":"3200 E. 91st St.","modifiedDate":"2016-01-26T15:40:52"},{"calendarId":15,"start":"2016-02-09T18:30:30","end":"2016-02-09T19:30:30","title":"Beat Meeting 1511 & 1524","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Hope Community Church\n5900 W Iowa St\nChicago, IL","modifiedDate":"2016-01-04T11:37:35"},{"calendarId":9,"start":"2016-02-09T18:30:00","end":"2016-02-09T19:30:00","title":"913, 915 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"9th District Station\n3120 S. Halsted St.","modifiedDate":"2015-11-30T21:14:10"},{"calendarId":2,"start":"2016-02-09T18:30:00","end":"2016-02-09T19:30:00","title":"Beat Meeting # 222","eventDetails":"Caps Community Meeting","eventUrl":null,"contactDetails":"Community Policing\n312-747-5109","location":"Kennicott Park\n4434 S. Lake Park","modifiedDate":"2016-01-04T14:37:06"},{"calendarId":11,"start":"2016-02-09T18:30:00","end":"2016-02-09T19:30:00","title":"Beat Meeting: 1124/25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"JLM Abundant Life Center 2622 W. Jackson","modifiedDate":"2015-12-22T14:11:08"},{"calendarId":7,"start":"2016-02-09T18:30:00","end":"2016-02-09T19:30:00","title":"BEAT 722 & 723","eventDetails":"COMMUNITY MEETING","eventUrl":null,"contactDetails":"CAPS 312-747-6722","location":"KENNEDY-KING COLLEGE\n740 W. 63RD STREET","modifiedDate":"2016-01-20T16:26:29"},{"calendarId":10,"start":"2016-02-09T18:00:00","end":"2016-02-09T19:00:00","title":"BEAT 1034","eventDetails":"BEAT 1034 Community Beat Meeting ","eventUrl":null,"contactDetails":"CAPS Office 312-747-7190","location":"YMCA Rauner\n2700 S. Western Ave.","modifiedDate":"2016-01-19T13:49:54"},{"calendarId":6,"start":"2016-02-09T18:00:00","end":null,"title":"Court Advocacy","eventDetails":null,"eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641 ","location":"Chicago Police Dept.\n7808 S. Halsted St\nCommunity Room","modifiedDate":"2015-12-28T10:02:28"},{"calendarId":2,"start":"2016-02-09T15:00:00","end":"2016-02-09T16:00:00","title":"Domestic Violence Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:20:02"},{"calendarId":7,"start":"2016-02-09T12:00:00","end":"2016-02-09T13:00:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Police Station\n1438 W. 63rd Street","modifiedDate":"2016-01-20T16:15:54"},{"calendarId":6,"start":"2016-02-09T10:00:00","end":null,"title":"Business Subcommittee","eventDetails":"Meeting with stakeholders of the Gresham community","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"Chicago Police Dept.\n7808 S. Halsted St\nCommunity Room","modifiedDate":"2015-12-28T10:02:35"},{"calendarId":20,"start":"2016-02-09T07:00:00","end":"2016-02-09T20:00:00","title":"2022 Beat Meeting ","eventDetails":"2022 Community Beat Meeting","eventUrl":null,"contactDetails":null,"location":"5917 N. Broadway","modifiedDate":"2015-12-10T14:26:32"},{"calendarId":19,"start":"2016-02-08T18:30:00","end":"2016-02-08T19:30:00","title":"Beat 1934 & 1935","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"2nd Unitarian Church\n656 W. Barry","modifiedDate":"2016-02-05T12:18:40"},{"calendarId":2,"start":"2016-02-08T18:30:00","end":"2016-02-08T19:30:00","title":"Beat Meeting # 0211","eventDetails":"Beat Meeting with citizens","eventUrl":null,"contactDetails":"Community Policing\n312-747-5109","location":"College Of Optometry\n32400 S. Indiana","modifiedDate":"2016-01-04T14:39:06"},{"calendarId":20,"start":"2016-02-08T18:00:00","end":"2016-02-08T19:00:00","title":"DAC Meeting","eventDetails":"20th District Advisory\nMeeting.","eventUrl":null,"contactDetails":"CAPS \n312-742-8770","location":"20th District\n5400 N. Lincoln\n","modifiedDate":"2016-01-19T15:28:18"},{"calendarId":15,"start":"2016-02-08T15:00:00","end":"2016-02-08T18:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic violence members discuss and plan upcoming events for domestic violence victims/survivors.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\nChicago, IL\n312-743-1495","location":"15th District Police Community Room\n5701 W Madison Ave\nChicago, IL\n312-743-1495","modifiedDate":"2016-01-13T09:50:58"},{"calendarId":25,"start":"2016-02-08T09:00:00","end":"2016-02-08T09:30:00","title":"2511 Outdoor Roll Call","eventDetails":"Outdoor roll call for 2nd watch officers and community members. ","eventUrl":null,"contactDetails":"25th District CAPS Office","location":"Newland/Oakdale","modifiedDate":"2016-02-05T13:55:46"},{"calendarId":3,"start":"2016-02-06T11:00:00","end":"2016-02-06T12:00:00","title":"Youth/Explorers","eventDetails":"Youth/Explorers","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:00:56"},{"calendarId":11,"start":"2016-02-06T09:00:00","end":"2016-02-06T10:00:00","title":"Peer Jury","eventDetails":"Misdemeanor court cases are presented and sanctioned by their peers.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:03:34"},{"calendarId":25,"start":"2016-02-06T08:30:00","end":"2016-02-06T10:30:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:44:52"},{"calendarId":25,"start":"2016-02-05T16:00:00","end":"2016-02-05T16:30:00","title":"Outdoor Police Roll Call","eventDetails":"025th District Outdoor Roll Call","eventUrl":null,"contactDetails":"025 District CAPS Office\n312-746-5090","location":"Keating / Barry\nBeat 2521","modifiedDate":"2016-02-12T13:17:55"},{"calendarId":19,"start":"2016-02-04T19:00:00","end":"2016-02-04T20:00:00","title":"Beat 1915","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"The Shift\n4101 N. Broadway","modifiedDate":"2015-12-08T15:10:40"},{"calendarId":14,"start":"2016-02-04T19:00:00","end":null,"title":"1411/1412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Nicolai Church\n3000 N. Kedzie","modifiedDate":"2015-12-09T12:18:18"},{"calendarId":8,"start":"2016-02-04T19:00:00","end":"2016-02-04T20:00:00","title":"834 Beat Meeting","eventDetails":"Bogan High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3939 W 79th St","modifiedDate":"2015-12-14T08:44:37"},{"calendarId":4,"start":"2016-02-04T19:00:00","end":"2016-02-04T20:00:00","title":"Beat 434 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office 312-747-1708","location":"10501 S. Torrence Ave.","modifiedDate":"2016-01-26T15:44:38"},{"calendarId":3,"start":"2016-02-04T19:00:00","end":"2016-02-04T20:00:00","title":"Beat Meeting (313, 314)","eventDetails":"Beat Meeting (313, 314)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Harris Park Recreation\n6200 S. Drexel\nChicago, IL. 60637\n","modifiedDate":"2015-12-29T15:56:28"},{"calendarId":15,"start":"2016-02-04T18:30:33","end":"2016-02-04T19:30:33","title":"Beat Meeting 1512 & 1523","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"PCC Wellness Center\n5425 W Lake St\nChicago, IL","modifiedDate":"2016-01-04T11:41:43"},{"calendarId":25,"start":"2016-02-04T18:30:00","end":"2016-02-04T19:30:00","title":"Beat Meeting 2522","eventDetails":"Beat Meeting 2522","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2240 N. Kilbourn","modifiedDate":"2015-12-10T11:17:01"},{"calendarId":11,"start":"2016-02-04T18:00:00","end":"2016-02-04T19:00:00","title":"Beat Meeting: 1112/21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2015-12-14T15:27:57"},{"calendarId":14,"start":"2016-02-04T17:00:00","end":null,"title":"Peer Jury Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District\nCommunity Room","modifiedDate":"2015-12-09T12:15:32"},{"calendarId":20,"start":"2016-02-04T16:00:00","end":"2016-02-04T17:00:00","title":"20th District Youth Explorers","eventDetails":"20th District Youth Explorers ","eventUrl":null,"contactDetails":"CAPS Office\n312-742-8770","location":"20th District Police Station\n5400 N. Lincoln \n","modifiedDate":"2016-01-19T15:28:27"},{"calendarId":22,"start":"2016-02-04T14:00:00","end":null,"title":"Diversity and Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":"22nd District Community Room 1900 W. Monterey Ave","modifiedDate":"2015-12-19T10:57:15"},{"calendarId":3,"start":"2016-02-04T13:00:00","end":"2016-02-04T14:00:00","title":"003rd District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n\n","modifiedDate":"2016-01-19T19:08:22"},{"calendarId":11,"start":"2016-02-04T11:00:00","end":"2016-02-04T12:00:00","title":"Domestic Violence Subcommittee","eventDetails":"Domestic Violence Meeting ","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312.746.9841","location":"011th District (Auditorium)\n3151 W. Harrison ","modifiedDate":"2015-12-22T15:09:53"},{"calendarId":5,"start":"2016-02-04T10:00:00","end":"2016-02-04T11:00:00","title":"Domestic Violence Committee","eventDetails":"005th District Police Station","eventUrl":null,"contactDetails":"CAPS312-747-3100","location":"727 E 111th Street","modifiedDate":"2016-01-12T09:29:48"},{"calendarId":25,"start":"2016-02-03T21:30:00","end":"2016-02-03T22:30:00","title":"Outdoor Roll call","eventDetails":"Outdoor roll call for 1st watch officers and community members","eventUrl":null,"contactDetails":"25th District CAPS Office","location":"Lockwood/Oakdale","modifiedDate":"2016-02-01T15:25:43"},{"calendarId":20,"start":"2016-02-03T19:00:02","end":"2016-02-03T20:00:02","title":"2033 Beat Meeting ","eventDetails":"2033 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"1226 w. Aisnlie","modifiedDate":"2015-12-10T14:26:07"},{"calendarId":19,"start":"2016-02-03T19:00:00","end":"2016-02-03T20:00:00","title":"Beat 19123, 1924, & 1925","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"19th District\n850 W. Addison","modifiedDate":"2015-12-08T15:10:20"},{"calendarId":3,"start":"2016-02-03T19:00:00","end":"2016-02-03T20:00:00","title":"Beat Meeting (311, 312)","eventDetails":"Beat Meeting (312, 312)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"Bessie Coleman Library \n731 E. 63rd St.\nChicago, IL. 60637\n","modifiedDate":"2015-12-29T15:56:36"},{"calendarId":8,"start":"2016-02-03T19:00:00","end":"2016-02-03T20:00:00","title":"815/821 Beat Meeting","eventDetails":"St Bruno's Hall","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4839 S Harding","modifiedDate":"2015-12-14T08:45:39"},{"calendarId":4,"start":"2016-02-03T19:00:00","end":"2016-02-03T20:00:00","title":"Beat 414 Bet Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office 312-747-1708","location":"1750 E. 78th St.","modifiedDate":"2016-01-26T15:51:55"},{"calendarId":14,"start":"2016-02-03T18:30:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District\nCommunity Room","modifiedDate":"2015-12-09T12:15:58"},{"calendarId":25,"start":"2016-02-03T18:30:00","end":"2016-02-03T19:30:00","title":"Beat Meeting 2512","eventDetails":"Beat Meeting 2512","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"2211 N. Oak Park","modifiedDate":"2015-12-10T11:25:31"},{"calendarId":12,"start":"2016-02-03T18:00:21","end":"2016-02-03T19:00:21","title":"Beat Meeting 1224","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is held at the Chicago Police Academy 1300 W. Jackson on the1st Wednesday of the even months. ","modifiedDate":"2015-11-28T09:23:29"},{"calendarId":15,"start":"2016-02-03T18:00:00","end":"2016-02-03T19:00:00","title":"Beat Meeting 1522 & 1533","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":null,"modifiedDate":"2016-01-04T11:14:59"},{"calendarId":9,"start":"2016-02-03T18:00:00","end":"2016-02-03T19:00:00","title":"911, 921 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Davis School Annex\n3050 W. 39th St.","modifiedDate":"2015-11-30T21:14:19"},{"calendarId":2,"start":"2016-02-03T18:00:00","end":"2016-02-03T19:00:00","title":"D.A.C. Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109 ","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T14:42:50"},{"calendarId":8,"start":"2016-02-03T16:00:00","end":"2016-02-03T17:00:00","title":"Domestic Violence Subcommittee Meeting","eventDetails":"008th District Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W. 63rd Street","modifiedDate":"2015-12-28T11:21:58"},{"calendarId":18,"start":"2016-02-03T15:00:00","end":"2016-02-03T16:00:00","title":"20 Sector Hospitality Meeting","eventDetails":"20 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"She-Nannigans\n16 W. Division\nChicago, Il 60610","modifiedDate":"2016-01-08T17:57:53"},{"calendarId":3,"start":"2016-02-03T14:00:00","end":"2016-02-03T15:00:00","title":"Court Advocate Meeting","eventDetails":"Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:10:06"},{"calendarId":6,"start":"2016-02-03T10:00:00","end":"2016-02-03T10:30:00","title":"Outdoor Roll Call","eventDetails":"Stand with the police ","eventUrl":null,"contactDetails":"Contact the CAPS office at 312-745-3641","location":"7700 S. Wabash Ave","modifiedDate":"2016-02-06T15:40:31"},{"calendarId":25,"start":"2016-02-03T10:00:00","end":"2016-02-03T11:00:00","title":"Domestic Violence","eventDetails":"Domestic Violence\nSub-committee meeting \n","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:42:00"},{"calendarId":12,"start":"2016-02-02T19:00:04","end":"2016-02-02T20:00:04","title":"Beat Meeting 1212","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at St. Helen's School Basement, 2345 W. Augusta on the 1st Tuesday of the even months. ","modifiedDate":"2015-11-28T09:14:09"},{"calendarId":16,"start":"2016-02-02T19:00:00","end":null,"title":"1612 Beat Meeting","eventDetails":"Come develop strategies with the police to address crime and quality of life issues.","eventUrl":null,"contactDetails":"CAPS Office (312) 742-4521.\nCAPS016District@chicagopolice.org","location":"Olympia Park\n6566 N. Avondale","modifiedDate":"2016-01-25T23:14:09"},{"calendarId":4,"start":"2016-02-02T19:00:00","end":"2016-02-02T20:00:00","title":"Beat 433 Caps Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"Contact 4th District Caps Office 312-747-1708","location":"13323 S. Green Bay Ave.","modifiedDate":"2016-01-26T15:52:37"},{"calendarId":24,"start":"2016-02-02T19:00:00","end":"2016-02-02T20:00:00","title":"2413 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office. (312) 744-6321","location":"Green Briar Park 2650 W. Peterson","modifiedDate":"2015-12-07T14:53:59"},{"calendarId":8,"start":"2016-02-02T19:00:00","end":"2016-02-02T20:00:00","title":"822/824 Beat Meeting","eventDetails":"Solorio High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5400 S St Louis","modifiedDate":"2015-12-14T08:45:28"},{"calendarId":15,"start":"2016-02-02T18:30:41","end":"2016-02-02T19:30:41","title":"Beat Meeting 1531 & 1532","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"15th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"West Branch Library\n4856 W Chicago Ave\nChicago IL","modifiedDate":"2016-01-04T11:20:47"},{"calendarId":11,"start":"2016-02-02T18:30:00","end":"2016-02-02T19:30:00","title":"Beat Meeting: 1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe.","eventUrl":null,"contactDetails":"011th District CAPS 3151 W. Harrison Street 312-746-9841","location":"Brian Piccolo School 1040 N. Keeler","modifiedDate":"2015-12-14T15:30:11"},{"calendarId":2,"start":"2016-02-02T18:30:00","end":"2016-02-02T19:30:00","title":" Beat Meeting 212/214","eventDetails":"Beat Meeting for Citizens","eventUrl":null,"contactDetails":"Community Policing\n312-747-5109","location":"Mandrake Park\n3858 S. Cottage Grove","modifiedDate":"2016-01-04T14:38:44"},{"calendarId":18,"start":"2016-02-02T18:00:00","end":"2016-02-02T19:00:00","title":"Court Advocacy Meeting","eventDetails":"Court Advocacy Subcommittee Meeting","eventUrl":null,"contactDetails":"P.O Incaprera","location":"18th District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2016-01-08T17:43:12"},{"calendarId":9,"start":"2016-02-02T18:00:00","end":"2016-02-02T19:00:00","title":"924, 931, 933 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"New City Supportive Living\nCommunity Room\n4707 S. Marshfield Ave.","modifiedDate":"2016-01-06T20:42:50"},{"calendarId":10,"start":"2016-02-02T18:00:00","end":"2016-02-02T19:00:00","title":"BEAT 1022","eventDetails":"Beat 1022 Community Beat Meeting ","eventUrl":null,"contactDetails":"CAPS Office 312-747-7190","location":"Albany Terrace\n3030 W. 21st Pl\n","modifiedDate":"2016-01-19T13:50:29"},{"calendarId":15,"start":"2016-02-02T10:00:00","end":"2016-02-02T12:00:00","title":"Faith Based Meeting","eventDetails":"Clergy from various denominations and block club leaders come together and discuss chronic crime issues that affects the community.","eventUrl":null,"contactDetails":"15th District CAPS Office\n5701 W Madison Ave\nChicago, IL\n312-743-1495","location":"15th District Community Room\n5701 W Madison Ave\nChicago, IL\n312-743-1495","modifiedDate":"2016-01-05T10:40:05"},{"calendarId":25,"start":"2016-02-02T10:00:00","end":"2016-02-02T11:00:00","title":"Senior Advisory","eventDetails":"Senior Advisory","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:47:47"},{"calendarId":20,"start":"2016-02-01T19:00:00","end":null,"title":"2011 Beat Meeting","eventDetails":"20th District Community Beat Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"5400 N. Lincoln \n","modifiedDate":"2016-01-19T15:25:51"},{"calendarId":25,"start":"2016-02-01T09:00:00","end":"2016-02-01T09:30:00","title":"Outdoor Roll Call","eventDetails":"Outdoor roll call for 2nd watch officers and community members","eventUrl":null,"contactDetails":"25th District CAPS Office","location":"Wrightwood/Melvina","modifiedDate":"2016-02-01T15:25:59"},{"calendarId":25,"start":"2016-01-29T18:00:00","end":"2016-01-29T19:00:00","title":"Meet & Greet Our New Commander","eventDetails":"Meet & Greet our New District Commander\nAnthony J. Escamilla","eventUrl":null,"contactDetails":"Caps Office\n312-746-5090\nCaps025District@Chicagopolice.org","location":"5555 W. Grand Ave.\nChicago IL, 60639\nCommunity Room","modifiedDate":"2016-01-19T13:04:18"},{"calendarId":7,"start":"2016-01-29T12:00:00","end":"2016-01-29T18:00:00","title":"CPD Recruitment Event","eventDetails":"Apply for the Chicago Police Department.\nBring photo ID. Bring High School Diploma for education preference. Bring DD214 for Veteran preference. Income verification for fee waiver.","eventUrl":null,"contactDetails":"312-747-6722\nCall for more information","location":"007th District Community Room\n1438 W. 63rd Street","modifiedDate":"2016-01-28T13:59:13"},{"calendarId":3,"start":"2016-01-28T19:00:00","end":"2016-01-28T20:00:00","title":"Beat Meeting (321, 324)","eventDetails":"Beat Meeting (321, 324)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T15:58:07"},{"calendarId":8,"start":"2016-01-28T19:00:00","end":null,"title":"DAC Meeting","eventDetails":"008th District","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W 63rd Street","modifiedDate":"2015-12-09T14:35:15"},{"calendarId":6,"start":"2016-01-28T18:30:00","end":null,"title":"Beat 634 Community Meeting","eventDetails":"Meet the residents and police officers in your community","eventUrl":null,"contactDetails":"CAPS Office\n312-745-3641","location":"New Progressive Church\n9425 S. Perry","modifiedDate":"2015-12-16T16:42:40"},{"calendarId":11,"start":"2016-01-28T18:00:08","end":"2016-01-28T19:00:08","title":"Beat 1131/32","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Eloise Mc Coy Village Apt. 4650 W. Van Buren ","modifiedDate":"2015-12-21T13:42:13"},{"calendarId":7,"start":"2016-01-28T18:00:00","end":"2016-01-28T21:00:00","title":"MOVIE NIGHT","eventDetails":"FREE\n\"A Force For Change\"\nAll are welcome to attend","eventUrl":null,"contactDetails":"312-747-6722","location":"007th District Community Room\n1438 W. 63rd Street","modifiedDate":"2016-01-28T13:59:22"},{"calendarId":5,"start":"2016-01-28T18:00:00","end":"2016-01-28T19:00:00","title":"District Advisory Council","eventDetails":"District Advisory Council","eventUrl":null,"contactDetails":"CAPS Office 312-747-3100","location":"727 E 111th Street\n005th District Police Station","modifiedDate":"2016-01-12T09:32:33"},{"calendarId":22,"start":"2016-01-28T10:30:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":"22nd District Community Room, 1900 W. Monterey","eventUrl":null,"contactDetails":"CAPS Office 312-745-0620","location":null,"modifiedDate":"2015-12-23T08:46:05"},{"calendarId":24,"start":"2016-01-28T10:30:00","end":null,"title":"Senior Citizen Event","eventDetails":"Garfield Park Conservatory Trip","eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"300 N. Central Park\nChicago","modifiedDate":"2015-12-30T14:55:12"},{"calendarId":17,"start":"2016-01-27T19:30:00","end":"2016-01-27T20:30:00","title":"1711&1712 Beat Meeting ","eventDetails":"Monthly Beat meeting for both beats.","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"5020 N. Pulaski\nMayfair Church","modifiedDate":"2015-12-08T13:30:15"},{"calendarId":8,"start":"2016-01-27T19:00:00","end":null,"title":"835 Beat Meeting","eventDetails":"Wrightwood Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"8530 S Kedzie","modifiedDate":"2015-12-09T14:35:37"},{"calendarId":20,"start":"2016-01-27T19:00:00","end":null,"title":"2032 Beat Meeting","eventDetails":"2032 Beat Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Amundsen High School\nDoor 1\n5110 N. Damen","modifiedDate":"2016-01-19T15:26:12"},{"calendarId":9,"start":"2016-01-27T18:30:00","end":"2016-01-27T19:30:00","title":"914 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chinatown Library\n2100 S Wentworth Ave.","modifiedDate":"2015-11-30T21:14:56"},{"calendarId":6,"start":"2016-01-27T18:30:00","end":null,"title":"Beat 624 Community Meeting","eventDetails":"Meet the residents and police officers in your community","eventUrl":null,"contactDetails":"CAPS Office\n312-745-3641","location":"St. Dorothy School\n450 E. 78th Street","modifiedDate":"2015-12-16T16:44:44"},{"calendarId":17,"start":"2016-01-27T18:30:00","end":"2016-01-27T19:30:00","title":"1713's Beat Meeting ","eventDetails":"Beat meeting for this beat is on odd months this year.","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"5000 N. Spaulding \nNorth Park University","modifiedDate":"2015-12-08T13:17:31"},{"calendarId":25,"start":"2016-01-27T18:30:00","end":"2016-01-27T19:30:00","title":"Beat Meeting 2523","eventDetails":"Beat Meeting 2523","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"4021 W. Belmont","modifiedDate":"2015-12-10T11:12:42"},{"calendarId":3,"start":"2016-01-27T18:00:00","end":"2016-01-27T19:00:00","title":"DAC Meeting","eventDetails":"003rd District Advisory Committee Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2015-12-29T11:43:29"},{"calendarId":12,"start":"2016-01-27T18:00:00","end":"2016-01-27T19:00:00","title":"Beat Meeting 1235","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Las Americas 1611 S. Racine on the 4th Wednesday of the odd months.","modifiedDate":"2015-11-28T09:54:49"},{"calendarId":14,"start":"2016-01-27T13:30:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2015-12-09T13:08:01"},{"calendarId":25,"start":"2016-01-27T13:00:00","end":"2016-01-27T14:00:00","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:47:00"},{"calendarId":15,"start":"2016-01-27T10:00:00","end":null,"title":"Senior Subcommittee","eventDetails":"Senior related topics w/ guest speakers from various agencies and departments.","eventUrl":null,"contactDetails":"015th District Community Policing Office\n5701 W Madison \n312-743-1495","location":"015th District Community Policing Office\n5701 W Madison\n312-743-1495","modifiedDate":"2015-12-22T13:34:01"},{"calendarId":15,"start":"2016-01-27T08:30:00","end":null,"title":"Business Meeting","eventDetails":"Business subcommittee meeting / Business owners of the 015th district meet to discuss concerns of crime and ways to improve business related issues.","eventUrl":null,"contactDetails":"015th District Community Policing Office\n5701 W Madison\n312-743-1495","location":"MacArthur's\n5412 W Madison","modifiedDate":"2015-12-22T13:19:38"},{"calendarId":12,"start":"2016-01-26T19:00:00","end":"2016-01-26T20:00:00","title":"Beat Meeting 1211","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306.","location":"The meeting is held at Norwegian Hospital 1044 N. Francisco on the 4th Tuesday of the odd months. ","modifiedDate":"2015-11-28T09:59:45"},{"calendarId":20,"start":"2016-01-26T19:00:00","end":null,"title":"2031 Beat Community Meeting","eventDetails":"Beat 2031 Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Swedish Covenant Hospital\n2751 W. Winona St.\n","modifiedDate":"2016-01-19T15:26:02"},{"calendarId":3,"start":"2016-01-26T19:00:00","end":"2016-01-26T20:00:00","title":"Beat Meeting (322, 323)","eventDetails":"Beat Meeting (322, 323)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"Park Manor Church\n600 E. 73rd St.\nChicago, IL. 60619\n","modifiedDate":"2015-12-29T15:57:58"},{"calendarId":9,"start":"2016-01-26T19:00:00","end":"2016-01-26T20:00:00","title":"922, 923 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Simon Church Hall\n5157 S. California Ave.","modifiedDate":"2015-11-30T21:15:08"},{"calendarId":20,"start":"2016-01-26T19:00:00","end":null,"title":"2031 Beat Community Meeting","eventDetails":"Beat 2031 Community Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Swedish Covenant Hospital-Anderson Pavilion \n2751 W. Winona","modifiedDate":"2016-01-19T15:26:21"},{"calendarId":24,"start":"2016-01-26T19:00:00","end":null,"title":"2422 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Willye White Park 1610 W. Howard","modifiedDate":"2015-12-07T14:53:18"},{"calendarId":8,"start":"2016-01-26T19:00:00","end":null,"title":"813/833 Beat Meeting","eventDetails":"West Lawn Park","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4233 W 65th St","modifiedDate":"2015-12-09T14:40:12"},{"calendarId":24,"start":"2016-01-26T19:00:00","end":null,"title":"2433 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Edgewater Library\n6000 N. Broadway","modifiedDate":"2015-12-30T14:46:44"},{"calendarId":25,"start":"2016-01-26T18:30:00","end":"2016-01-26T19:30:00","title":"Beat Meeting 2513","eventDetails":"Beat Meeting 2513","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"6200 W. Bloomingdale","modifiedDate":"2015-12-10T11:24:35"},{"calendarId":6,"start":"2016-01-26T18:30:00","end":null,"title":"Beat 614 Community Meeting","eventDetails":"Meet the residents and police officers in your community","eventUrl":null,"contactDetails":"CAPS Office\n312-745-3641","location":"Foster Park Fieldhouse\n1440 W. 84th Street","modifiedDate":"2015-12-16T16:02:31"},{"calendarId":11,"start":"2016-01-26T18:00:02","end":"2016-01-26T19:00:02","title":"Beat Meeting: 1135","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Altgeld Park 515 S. Washtenaw","modifiedDate":"2015-12-15T16:35:08"},{"calendarId":3,"start":"2016-01-26T14:00:00","end":"2016-01-26T14:00:00","title":"Domestic Violence Meeting","eventDetails":"Domestic Violence Meeting","eventUrl":null,"contactDetails":"P.O. Rivera\n7040 S. Cottage Grove\nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\t\n","modifiedDate":"2016-01-19T18:52:46"},{"calendarId":1,"start":"2016-01-26T14:00:00","end":"2016-01-26T15:00:00","title":"30 Sector Business Mtg","eventDetails":"Beat meeting with business partners from the 30 sector","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"1718 S State\n001st Dist Community RM ","modifiedDate":"2015-12-08T16:58:29"},{"calendarId":5,"start":"2016-01-26T10:00:00","end":"2016-01-26T11:00:00","title":"Court Advocacy","eventDetails":"005th District Police Station","eventUrl":null,"contactDetails":"CAPS Office 312-747-3100","location":"727 E 111th Street","modifiedDate":"2016-01-12T09:32:21"},{"calendarId":8,"start":"2016-01-26T10:00:00","end":null,"title":"Senior Subcommittee Meeting","eventDetails":"008th District Community Room","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W. 63rd Street","modifiedDate":"2015-12-22T10:55:14"},{"calendarId":6,"start":"2016-01-25T19:00:00","end":null,"title":"DAC Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office\n312-745-3641","location":"Chicago Police Dept.\n7808 S. Halsted St\nCommunity Room","modifiedDate":"2015-12-16T15:49:26"},{"calendarId":11,"start":"2016-01-25T18:00:12","end":"2016-01-25T19:00:12","title":"District Advisory Committee ","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 11th District.","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841\n","location":"011th District Auditorium ","modifiedDate":"2015-12-28T09:26:24"},{"calendarId":6,"start":"2016-01-25T18:00:00","end":null,"title":"Beat Facilitators Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office\n312-745-3641","location":"Chicago Police Dept.\n7808 S. Halsted St\nCommunity Room","modifiedDate":"2015-12-16T15:48:19"},{"calendarId":15,"start":"2016-01-25T15:00:00","end":null,"title":"District Advisory Committee","eventDetails":"District Advisory Committee chairpersons of different subcommittees meet to discuss the quality of life issues within the 015th district.","eventUrl":null,"contactDetails":"015th District Community Police Office.\n5701 W Madison\n312-743-1495","location":"015th District Community Police Room\n","modifiedDate":"2015-12-22T13:33:17"},{"calendarId":8,"start":"2016-01-23T12:00:00","end":null,"title":"Cooking With Cops","eventDetails":"Bella Cuisine Kids Cooking Club. Adults Welcome There is fee for meal","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"8130 S. California","modifiedDate":"2016-02-18T11:35:31"},{"calendarId":5,"start":"2016-01-23T10:00:00","end":"2016-01-23T12:00:00","title":"Youth Law Explorers","eventDetails":"005th District Police Station","eventUrl":null,"contactDetails":"CAPS Office 312-747-3100","location":"727 E 111th Street","modifiedDate":"2016-01-12T09:31:25"},{"calendarId":8,"start":"2016-01-23T09:00:00","end":null,"title":"Peer Jury","eventDetails":"Branch 34","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"155 W 51st Street","modifiedDate":"2015-12-09T14:35:01"},{"calendarId":15,"start":"2016-01-23T08:30:46","end":"2016-01-23T13:00:46","title":"Peer Jury Session","eventDetails":"Misdemeanor court cases are presented and sanctioned by their peers.","eventUrl":null,"contactDetails":"015th District Community Policing Office\n5701 W Madison\n312-743-1495","location":"015th District Community Room\n5701 W Madison","modifiedDate":"2016-01-13T11:14:55"},{"calendarId":5,"start":"2016-01-23T08:30:00","end":"2016-01-23T11:00:00","title":"Peer Jury","eventDetails":"005th District Police Station","eventUrl":null,"contactDetails":"CAPS Office 312-747-3100","location":"727 E 111th Street","modifiedDate":"2016-01-12T09:31:02"},{"calendarId":2,"start":"2016-01-23T08:00:00","end":null,"title":"Peer Jury","eventDetails":"Monthly Peer Jury ","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:27:07"},{"calendarId":3,"start":"2016-01-22T13:00:00","end":"2016-01-22T13:00:00","title":" Safety Seminar","eventDetails":"Senior Safety Seminar","eventUrl":null,"contactDetails":"P.O. Hutchinson\n312) 747-7004\n7040 S. Cottage Grove\nChicago, IL. 60637\n","location":"1415 E. 65th st\nChicago, IL. 60637","modifiedDate":"2016-01-19T19:10:37"},{"calendarId":16,"start":"2016-01-21T19:00:00","end":null,"title":"1611 Beat Meeting","eventDetails":"Come join your neighbors at the CAPS meting where you will meet your beat officer(s) and talk about crime related problems on your block and together we can improve our neighborhoods. ","eventUrl":null,"contactDetails":null,"location":"St. Thecla (Queen of Peace) 6333 N. Newcastle","modifiedDate":"2015-12-17T13:28:06"},{"calendarId":14,"start":"2016-01-21T19:00:00","end":null,"title":"1431/1432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Haas Park\n2402 N. Washtenaw","modifiedDate":"2015-12-09T12:18:38"},{"calendarId":25,"start":"2016-01-21T18:30:00","end":"2016-01-21T19:30:00","title":"2524 Beat Meeting","eventDetails":"at Our Lady Of Grace Church","eventUrl":null,"contactDetails":null,"location":"2446 N. Ridgeway","modifiedDate":"2016-01-08T12:46:31"},{"calendarId":25,"start":"2016-01-21T18:30:00","end":"2016-01-21T19:30:00","title":"Beat Meeting 2533","eventDetails":"Beat Meeting 2533","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:50:26"},{"calendarId":25,"start":"2016-01-21T18:30:00","end":"2016-01-21T19:30:00","title":"Beat Meeting 2524","eventDetails":"Beat Meeting 2524\n* Make Up Meeting for December 2015","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2446 N. Ridgeway","modifiedDate":"2015-12-10T10:50:17"},{"calendarId":11,"start":"2016-01-21T18:30:00","end":"2016-01-21T19:30:00","title":"Beat Meeting:1113/14/15","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"St. Michael MBC 4106 W. Monroe ","modifiedDate":"2015-12-15T16:35:47"},{"calendarId":20,"start":"2016-01-21T16:00:00","end":null,"title":"Peer Jury","eventDetails":"20th District Peer Jury Meeting ","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"20th District\n5400 N. Lincoln \ncommunity room","modifiedDate":"2015-12-10T13:38:23"},{"calendarId":25,"start":"2016-01-21T11:30:00","end":"2016-01-21T12:30:00","title":"Business Meeting","eventDetails":"Business Meeting","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:46:00"},{"calendarId":11,"start":"2016-01-21T10:00:00","end":"2016-01-21T11:00:00","title":"Senior Subcommittee","eventDetails":"Senior subcommittee monthly meeting. ","eventUrl":null,"contactDetails":"011th District CAPS\n3151 W. Harrison\n312-746-9841\n","location":"Meeting 011th District Auditorium \n3151 W. Harrison \n","modifiedDate":"2015-12-28T08:40:18"},{"calendarId":6,"start":"2016-01-21T10:00:00","end":null,"title":"Domestic Violence Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office\n312-745-3641","location":"Chicago Police Dept.\n7808 S. Halsted ","modifiedDate":"2015-12-16T16:39:30"},{"calendarId":17,"start":"2016-01-20T19:30:41","end":"2016-01-20T20:30:41","title":"1722&1723's Beat Meeting ","eventDetails":"Monthly Beat Meeting for both beats.","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room","modifiedDate":"2015-12-08T13:16:47"},{"calendarId":20,"start":"2016-01-20T19:00:44","end":null,"title":"2013 Beat Meeting","eventDetails":"2013 Beat Community Meeting ","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Philadelphia Church\n5437 N. Clark","modifiedDate":"2015-12-10T13:38:09"},{"calendarId":12,"start":"2016-01-20T19:00:15","end":"2016-01-20T20:00:15","title":"Beat Meeting 1213 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is a Norwest Settlement 1012 N. Noble on the 3rd Wednesday of the odd months. ","modifiedDate":"2015-11-28T08:17:28"},{"calendarId":8,"start":"2016-01-20T19:00:00","end":null,"title":"823/825 Beat Meeting","eventDetails":"008th District","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W 63rd Street","modifiedDate":"2015-12-09T14:37:29"},{"calendarId":19,"start":"2016-01-20T19:00:00","end":"2016-01-20T20:00:00","title":"Beat 1921, 1922, & 1931","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"019 Police Auditorium\n2452 W. Belmont","modifiedDate":"2015-12-08T14:51:52"},{"calendarId":1,"start":"2016-01-20T19:00:00","end":"2016-01-20T20:00:00","title":"BT 133 Residential Mtg","eventDetails":"Beat meeting for residents from Bt 133","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"125 E 26th st \nTrinity Episcopal Church","modifiedDate":"2015-12-08T16:57:59"},{"calendarId":3,"start":"2016-01-20T19:00:00","end":null,"title":"Beat Meeting (333, 334)","eventDetails":"Beat Meeting","eventUrl":null,"contactDetails":"P.O.Hutchinson\n7040 S. Cottage Grove","location":"South Shore Cultural Center\n7059 S. Shore Drive","modifiedDate":"2016-01-20T18:30:39"},{"calendarId":16,"start":"2016-01-20T19:00:00","end":null,"title":"1623 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"16th District Station\n5151 N. Milwaukee","modifiedDate":"2015-12-17T13:33:22"},{"calendarId":14,"start":"2016-01-20T19:00:00","end":null,"title":"1423 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Casa Central \n1343 N. California","modifiedDate":"2015-12-09T12:18:55"},{"calendarId":17,"start":"2016-01-20T18:30:19","end":"2016-01-20T19:30:19","title":"1724's Beat Meeting","eventDetails":"Beat meeting for this beat will be on odd months during this year.","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Horner Park\n2741 W. Montrose","modifiedDate":"2015-12-08T13:16:24"},{"calendarId":6,"start":"2016-01-20T18:30:00","end":null,"title":"Beat 623 Community Meeting","eventDetails":"Meet the residents and police officers in your community","eventUrl":null,"contactDetails":"CAPS Office\n312-745-3641","location":"Urban Partnership Bank\n7801 S. State","modifiedDate":"2015-12-16T16:45:35"},{"calendarId":25,"start":"2016-01-20T18:30:00","end":"2016-01-20T19:30:00","title":"Beat Meeting 2515","eventDetails":"Beat Meeting 2515","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2310 N. Lorel","modifiedDate":"2015-12-10T11:22:36"},{"calendarId":11,"start":"2016-01-20T18:00:13","end":"2016-01-20T19:00:13","title":"Faith-Based","eventDetails":"Faith-Based","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium\n","modifiedDate":"2015-12-28T09:46:19"},{"calendarId":9,"start":"2016-01-20T18:00:00","end":"2016-01-20T19:00:00","title":"925 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Gabriel Church Hall\n4500 S. Wallace St.","modifiedDate":"2015-11-30T16:49:10"},{"calendarId":18,"start":"2016-01-20T15:00:00","end":"2016-01-20T16:00:00","title":"Near North Security Meeting","eventDetails":"Near North Security Meeting. Must register @ 312-742-5778 to participate.","eventUrl":null,"contactDetails":"P.O Incaprera","location":"018th District \n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2015-12-11T17:19:15"},{"calendarId":15,"start":"2016-01-20T10:00:09","end":"2016-01-20T12:00:09","title":"Austin Power 5K Walk/Run Meeting","eventDetails":"Strategies and planning for upcoming Austin Power 5K Walk/Run.","eventUrl":null,"contactDetails":"015th District Community Policing\n5701 W Madison\n312-743-1495","location":"Sankofa Cultural Center\n5820 W Chicago","modifiedDate":"2016-01-13T11:23:23"},{"calendarId":18,"start":"2016-01-20T10:00:00","end":"2016-01-20T11:00:00","title":"Senior ID Prevention Seminar","eventDetails":"Senior ID Prevention Seminar","eventUrl":null,"contactDetails":"P.O Ramirez","location":"Flannery Senior Building\n1507 N. Clybourn\nChicago, Il 60610","modifiedDate":"2015-12-11T17:19:06"},{"calendarId":10,"start":"2016-01-20T06:00:00","end":"2016-01-20T19:00:00","title":"1013 BEAT MEETING","eventDetails":"1013 BEAT MEETING","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-7190","location":"EPIPHANY CHURCH\n2524 S. KEELER AV","modifiedDate":"2015-12-17T16:07:23"},{"calendarId":12,"start":"2016-01-19T19:00:28","end":"2016-01-19T20:00:28","title":"Beat Meeting 1223","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Westhaven Park Community Room 1939 W. Lake St. on the 3rd Tuesday of the odd months","modifiedDate":"2015-11-28T08:15:44"},{"calendarId":24,"start":"2016-01-19T19:00:00","end":null,"title":"2424 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Pottawatomie Park\n7340 N. Rogers","modifiedDate":"2015-12-30T14:47:10"},{"calendarId":8,"start":"2016-01-19T19:00:00","end":null,"title":"811 Beat Meeting","eventDetails":"Good Shepherd Church","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5550 S Merrimac","modifiedDate":"2015-12-09T14:41:07"},{"calendarId":19,"start":"2016-01-19T19:00:00","end":"2016-01-19T20:00:00","title":"Beat 1911 & 1912","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Sulzer Library\n4455 N. Lincoln","modifiedDate":"2015-12-08T14:52:46"},{"calendarId":1,"start":"2016-01-19T19:00:00","end":"2016-01-19T20:00:00","title":"BT 131/132 Residential Mtg","eventDetails":"Beat meeting for residents of beats 131/132","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"1718 S State\n001st Dist community room","modifiedDate":"2015-12-08T16:57:34"},{"calendarId":16,"start":"2016-01-19T19:00:00","end":null,"title":"1633 Beat Meeting","eventDetails":"Come join your neighbors at the CAPS meeting where you will meet your beat officer(s) and talk about crime related problems on your block and together we can improve our nieghborhoods","eventUrl":null,"contactDetails":null,"location":"Merrimac Park 6343 W. Irving Park Rd.","modifiedDate":"2015-12-17T13:38:37"},{"calendarId":6,"start":"2016-01-19T18:30:00","end":null,"title":"Beat 613 Community Meeting","eventDetails":"Meet the residents and police officers in your community","eventUrl":null,"contactDetails":"CAPS Office\n312-745-3641","location":"Gresham Elementary School\n8524 S. Green","modifiedDate":"2015-12-16T16:01:16"},{"calendarId":25,"start":"2016-01-19T18:30:00","end":"2016-01-19T19:30:00","title":"Beat Meeting 2525","eventDetails":"Beat Meeting 2525","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2036 N. Avers","modifiedDate":"2015-12-10T10:52:47"},{"calendarId":25,"start":"2016-01-19T18:30:00","end":"2016-01-19T19:30:00","title":"Beat Meeting 2531","eventDetails":"Beat Meeting 2531","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:51:57"},{"calendarId":9,"start":"2016-01-19T18:00:00","end":"2016-01-19T19:00:00","title":"932, 934, 935 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Westhaven Senior Apts.\n850 W. Garfield Blvd","modifiedDate":"2015-11-30T21:15:40"},{"calendarId":11,"start":"2016-01-19T18:00:00","end":"2016-01-19T19:00:00","title":"Beat Meeting:1133/34","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Homan Square Community Center 3559 W. Arthington","modifiedDate":"2015-12-15T16:36:34"},{"calendarId":9,"start":"2016-01-19T13:00:00","end":null,"title":"Seniors Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"009th District station\n3120 S. Halsted","modifiedDate":"2016-01-05T17:27:30"},{"calendarId":17,"start":"2016-01-19T11:00:00","end":"2016-01-19T12:15:00","title":"Senior Subcommittee Meeting","eventDetails":"Monthly Senior Citizen Subcommittee Meeting","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room","modifiedDate":"2015-12-08T13:17:02"},{"calendarId":2,"start":"2016-01-19T10:30:00","end":null,"title":"Senior Meeting","eventDetails":"senior monthly meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"5101 S. Wentworth","modifiedDate":"2016-01-04T14:33:14"},{"calendarId":6,"start":"2016-01-16T12:00:00","end":null,"title":"Kids n Kops Kickoff Meeting","eventDetails":"Youth program for kids \n7-12 years old to empower with positive decision making strategies","eventUrl":null,"contactDetails":"Contact Dorothy Leaks\n312-745-3644","location":"Chicago Police Dept.\n7808 S. Halsted St Community Room","modifiedDate":"2015-12-16T16:41:24"},{"calendarId":6,"start":"2016-01-16T11:00:00","end":null,"title":"6th District Police Explorers","eventDetails":"A program for young adults to gain leadership experience and participate in community service activities","eventUrl":null,"contactDetails":"Contact Officer Mathews or Officer Blanden\n312-745-3641","location":"Chicago Police Dept.\n7808 S. Halsted St\nCommunity Room","modifiedDate":"2015-12-28T10:03:01"},{"calendarId":18,"start":"2016-01-16T10:00:00","end":"2016-01-16T12:00:00","title":"Explorer Scouts","eventDetails":"Explorer Scouts and Peer Jury","eventUrl":null,"contactDetails":"P.O Ferguson","location":"18th District\n1160 N. Larrabee\n10:00am","modifiedDate":"2015-12-11T17:19:23"},{"calendarId":15,"start":"2016-01-16T10:00:00","end":null,"title":"Block Club Training","eventDetails":"Block Club Training is provided to residents who are concerned and care about their communities and share information, identify concerns and act collectively to address these concerns.","eventUrl":null,"contactDetails":"015th District Community Policing Office\n5701 W Madison\n312-493-5514","location":"015th District Community Room\n5701 W Madison ","modifiedDate":"2015-12-22T13:34:51"},{"calendarId":12,"start":"2016-01-16T09:00:30","end":"2016-01-16T10:00:30","title":"Police Explorer Meeting ","eventDetails":"The Chicago Police Explorer Program was established to assist any youth who is interested in law enforcement. Anyone who is from the age of 12 to 20 will be able to join the Explorer program. The explorer will receive community service hours for their participation. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting held at 1412 S. Blue Island, 12th District Community Room on the 3rd Saturday of the month. New members always welcomed. ","modifiedDate":"2015-11-28T09:13:36"},{"calendarId":9,"start":"2016-01-16T09:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Area Central\n5101 S. Wentworth Ave.","modifiedDate":"2016-01-05T17:27:46"},{"calendarId":17,"start":"2016-01-16T09:00:00","end":"2016-01-16T14:00:00","title":"Peer Jury and Youth Beat Meeting","eventDetails":"Monthly Peer Jury and Youth Beat Meeting ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room ","modifiedDate":"2015-12-08T13:17:15"},{"calendarId":3,"start":"2016-01-16T09:00:00","end":"2016-01-16T10:00:00","title":"Peer Jury","eventDetails":"Peer Jury","eventUrl":null,"contactDetails":"P.O. Howell\n7040 S. Cottage Grove \nChicago, IL. 60637\n(312) 747-7004\n","location":"5100 S. Wentworth\nChicago, IL. 60609\n\n","modifiedDate":"2016-01-19T18:58:41"},{"calendarId":7,"start":"2016-01-16T09:00:00","end":"2016-01-16T12:00:00","title":"Peer Jury","eventDetails":"7th Grade - High School students","eventUrl":null,"contactDetails":"Please call 312-747-6722 for application","location":"5101 S. Wentworth","modifiedDate":"2016-01-20T16:12:53"},{"calendarId":12,"start":"2016-01-14T19:00:39","end":"2016-01-14T20:00:39","title":"Beat Meeting 1215","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the Goldblatt's Building 1615 W. Chicago Ave. on the 2nd Thursday of the odd months. ","modifiedDate":"2015-11-28T08:16:45"},{"calendarId":1,"start":"2016-01-14T19:00:35","end":"2016-01-14T20:00:35","title":"10 Sect Residential Mtg","eventDetails":"Beat meeting with residents from 10 sector beats","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"400 E Randolph\nCondo Bldg","modifiedDate":"2015-12-08T16:56:46"},{"calendarId":20,"start":"2016-01-14T19:00:34","end":null,"title":"2023 Beat Meeting","eventDetails":"2023 Beat Meeting","eventUrl":null,"contactDetails":"CAPS 312-742-8770","location":"Kenmore Plaza\n5225 N. Kenmore","modifiedDate":"2015-12-10T13:38:38"},{"calendarId":8,"start":"2016-01-14T19:00:00","end":null,"title":"814 Beat Meeting","eventDetails":"Vittum Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5010 W 50th St","modifiedDate":"2015-12-09T14:39:22"},{"calendarId":3,"start":"2016-01-14T19:00:00","end":"2016-01-14T20:00:00","title":"Beat Meeting (331, 332)","eventDetails":"Beat Meeting (331, 332)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"ABJ Community Center\n1818 E. 71st St.\nChicago, IL. 60649\n\n","modifiedDate":"2015-12-29T15:57:49"},{"calendarId":6,"start":"2016-01-14T18:30:00","end":null,"title":"Beat 633 Community Meeting","eventDetails":"Meet the residents and police officers in your community","eventUrl":null,"contactDetails":"CAPS Office\n312-745-3641","location":"Tuley Park Fieldhouse\n501 E. 90th Place","modifiedDate":"2015-12-16T16:43:20"},{"calendarId":6,"start":"2016-01-14T18:30:00","end":null,"title":"Beat 632 Community Meeting","eventDetails":"Meet the residents and police officers in your community","eventUrl":null,"contactDetails":"CAPS Office\n312-745-3641","location":"Tuley Park Fieldhouse\n501 E. 90th Place","modifiedDate":"2015-12-16T16:43:36"},{"calendarId":18,"start":"2016-01-14T18:30:00","end":"2016-01-14T19:30:00","title":"10 Sector Beat Meeting","eventDetails":"10 Sector Beat Community Meeting","eventUrl":null,"contactDetails":"P.O Schenk","location":"Old Town Triangle\n1763 N. North Park\nChicago, Il 60614","modifiedDate":"2015-12-11T17:19:32"},{"calendarId":14,"start":"2016-01-14T18:30:00","end":null,"title":"1413/1414 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Public Library-Logan Square\n3030 W. Fullerton","modifiedDate":"2015-12-09T12:19:25"},{"calendarId":15,"start":"2016-01-14T18:30:00","end":"2016-01-14T19:30:00","title":"Beat Meeting 1513 S","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"015th District Community Policing Office\n5701 W Madison\n312-743-1495","location":"George R. Clark School\n1045 S Monitor","modifiedDate":"2015-12-22T13:35:08"},{"calendarId":11,"start":"2016-01-14T18:00:00","end":"2016-01-14T19:00:00","title":"Beat Meeting:1122/23","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841","location":"Legler Chicago Public Library 115 S. Pulaski","modifiedDate":"2015-12-15T16:36:07"},{"calendarId":10,"start":"2016-01-14T18:00:00","end":"2016-01-14T19:00:00","title":"1033 BEAT MEETING","eventDetails":"1033 COMMUNITY BEAT MEETING","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-7190","location":"LITTLE VILLAGE LIBRARY\n2311 S. KEDZIE AVE","modifiedDate":"2015-12-17T16:06:53"},{"calendarId":5,"start":"2016-01-14T11:00:00","end":"2016-01-14T12:00:00","title":"Pastoral Committee","eventDetails":"005th District Police Station","eventUrl":null,"contactDetails":"CAPS Office 312-747-3100","location":"727 E 111th Street","modifiedDate":"2016-01-12T09:30:26"},{"calendarId":6,"start":"2016-01-14T10:00:00","end":null,"title":"Faith Based Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Police Dept.\n7808 S. Halsted St\nCommunity Room","modifiedDate":"2015-12-16T15:55:32"},{"calendarId":17,"start":"2016-01-13T19:00:54","end":"2016-01-13T20:00:54","title":"1732&1733 Beat Meeting","eventDetails":"Monthly Beat meeting for both beats. ","eventUrl":null,"contactDetails":"312) 742-4588 CAPS.017district@chicagopolice.org","location":"Athletic Park\n3546 W. Addison","modifiedDate":"2015-12-08T13:15:53"},{"calendarId":8,"start":"2016-01-13T19:00:00","end":null,"title":"812 Beat Meeting","eventDetails":"Clearing Library","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6423 W 63rd Pl","modifiedDate":"2015-12-09T14:40:36"},{"calendarId":9,"start":"2016-01-13T19:00:00","end":"2016-01-13T20:00:00","title":"912 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"St. Maurice Church Hall\n3625 S. Hoyne Ave.","modifiedDate":"2015-11-30T21:15:50"},{"calendarId":1,"start":"2016-01-13T19:00:00","end":"2016-01-13T20:00:00","title":"20 sect residential Mtg","eventDetails":"beat meeting with 20 sector residents ","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"525 S State 1900hrs\nuniversity center \n","modifiedDate":"2015-12-08T11:47:15"},{"calendarId":17,"start":"2016-01-13T18:30:21","end":"2016-01-13T19:00:21","title":"1731's Beat Meeting ","eventDetails":"Beat meeting for this beat is on odd months of this year.","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"Kilbourn Park\n3501 N. Kilbourn","modifiedDate":"2015-12-08T13:14:26"},{"calendarId":14,"start":"2016-01-13T18:30:00","end":null,"title":"1421 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Public Library- Humboldt Park\n1605 N. Troy","modifiedDate":"2015-12-09T12:19:09"},{"calendarId":12,"start":"2016-01-13T18:00:59","end":"2016-01-13T19:00:59","title":"Beat Meeting 1231","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Academy Square, 318 S. Throop on the 2nd Wednesday of the odd months. ","modifiedDate":"2015-11-28T08:14:05"},{"calendarId":11,"start":"2016-01-13T18:00:52","end":"2016-01-13T19:00:52","title":"Court Advocacy ","eventDetails":"Court Advocacy Meeting","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:23:58"},{"calendarId":18,"start":"2016-01-13T15:30:00","end":"2016-01-13T16:30:00","title":"30 Sector Hospitality Meeting","eventDetails":"30 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"Highline\n169 W. kinzie\nChicago, Il 60654","modifiedDate":"2015-12-11T17:18:47"},{"calendarId":14,"start":"2016-01-13T13:30:00","end":null,"title":"Domestic Violence Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"2150 N. California","modifiedDate":"2015-12-09T13:11:28"},{"calendarId":22,"start":"2016-01-13T13:30:00","end":"2016-01-13T14:30:00","title":"Court Advocacy Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Station\n1900 W Monterey","modifiedDate":"2015-12-07T10:44:49"},{"calendarId":6,"start":"2016-01-13T11:00:00","end":null,"title":"Senior Subcommittee Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Chicago Police Dept.\n7808 S. Halsted St\nCommunity Room","modifiedDate":"2015-12-16T15:56:36"},{"calendarId":20,"start":"2016-01-13T10:00:00","end":null,"title":"Senior Meeting","eventDetails":"20th District Senior Monthly Meeting","eventUrl":null,"contactDetails":"Caps 312-742-8770","location":"5400 N. Lincoln\nCommunity Room","modifiedDate":"2015-12-10T14:27:03"},{"calendarId":19,"start":"2016-01-12T19:00:00","end":"2016-01-12T20:00:00","title":"Beat 1933","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Illinois Masonic\n836 W. Wellington","modifiedDate":"2015-12-08T14:49:42"},{"calendarId":16,"start":"2016-01-12T19:00:00","end":null,"title":"1613 Beat Meeting","eventDetails":"Come join your neighbors at the CAPS meeting where you will meet your beat officer(s) and talk about crime related problems on your block and together we can improve our neighborhoods.","eventUrl":null,"contactDetails":null,"location":"Oriole Park ,5430 N.Olcott","modifiedDate":"2015-12-17T13:39:20"},{"calendarId":24,"start":"2016-01-12T19:00:00","end":null,"title":"2432 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community \nPolicing Office (312) 744-6321","location":"24th District\n6464 N. Clark","modifiedDate":"2015-12-30T14:47:21"},{"calendarId":8,"start":"2016-01-12T19:00:00","end":null,"title":"831/832 Beat Meeting","eventDetails":"Marquette Park Fieldhouse","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"6734 S Kedzie","modifiedDate":"2015-12-09T14:36:47"},{"calendarId":6,"start":"2016-01-12T18:30:00","end":null,"title":"Beat 612 Community Meeting","eventDetails":"Meet the residents and police officers in your community","eventUrl":null,"contactDetails":"CAPS Office \n312-745-3641","location":"Southside Tabernacle \n7724 S. Racine","modifiedDate":"2015-12-16T15:59:19"},{"calendarId":11,"start":"2016-01-12T18:30:00","end":"2016-01-12T19:30:00","title":"Beat Meeting: 1124/25","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"JLM Abundant Life Center 2622 W. Jackson","modifiedDate":"2015-12-15T16:37:13"},{"calendarId":15,"start":"2016-01-12T18:30:00","end":"2016-01-12T19:30:00","title":"Beat Meeting 1511 & 1524","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"015th District Community Policing Office\n5701 W Madison Ave\n312-743-1495","location":"Hope Community Church\n5900 W Iowa","modifiedDate":"2015-12-22T13:36:56"},{"calendarId":18,"start":"2016-01-12T18:30:00","end":"2016-01-12T19:30:00","title":"1821, 22, 23 Beat Meeting","eventDetails":"1821, 22, 23 Beat Community Meeting","eventUrl":null,"contactDetails":"P.O Schenk","location":"018 District\n1160 N. Larrabee\nChicago, Il 60610","modifiedDate":"2015-12-11T17:19:41"},{"calendarId":9,"start":"2016-01-12T18:30:00","end":"2016-01-12T19:30:00","title":"913, 915 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"9th District Station\n3120 S. Halsted St.","modifiedDate":"2015-11-30T21:15:59"},{"calendarId":12,"start":"2016-01-12T18:00:32","end":"2016-01-12T19:00:32","title":"Beat Meeting 1233","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting held at 1412 S. Blue Island, 12th District Community Room on the 2nd Tuesday of the odd months","modifiedDate":"2015-11-28T08:12:47"},{"calendarId":10,"start":"2016-01-12T18:00:00","end":"2016-01-12T19:00:00","title":"BEAT 1021","eventDetails":"BEAT 1021 COMMUNITY BEAT MEETING ","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-7190","location":"CAREY TERCENTENARY\n1448 S. HOMAN AVE","modifiedDate":"2015-12-17T16:07:06"},{"calendarId":2,"start":"2016-01-12T15:00:00","end":null,"title":"Domestic Violence Meeting","eventDetails":"Monthly Meeting","eventUrl":null,"contactDetails":"Officer Sanders 312-747-5109","location":"002nd Dist. 5101 S. Wentworth","modifiedDate":"2016-01-04T15:20:51"},{"calendarId":6,"start":"2016-01-12T10:00:00","end":null,"title":"Business Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office\n312-745-3641","location":"TBD","modifiedDate":"2015-12-16T15:50:36"},{"calendarId":17,"start":"2016-01-11T19:00:00","end":"2016-01-11T20:00:00","title":"District Advisory Committee Meeting ","eventDetails":"This meeting is for established members only ( beat facilitators and subcommittee members).","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room","modifiedDate":"2015-12-08T13:17:55"},{"calendarId":19,"start":"2016-01-11T19:00:00","end":"2016-01-11T20:00:00","title":"Beat 1932","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"New Life Church\n1110 W. Lill","modifiedDate":"2015-12-08T14:50:19"},{"calendarId":17,"start":"2016-01-11T18:00:00","end":"2016-01-11T19:00:00","title":"Court Advocacy Meeting ","eventDetails":"This meeting is for established members only. If you are interested in attending please contact the CAPS office for details. ","eventUrl":null,"contactDetails":"(312) 742-4588 CAPS.017district@chicagopolice.org","location":"4650 N. Pulaski\n17th District Community Room","modifiedDate":"2015-12-08T13:30:27"},{"calendarId":15,"start":"2016-01-11T15:00:05","end":"2016-01-11T16:00:05","title":"Domestic Violence Meeting","eventDetails":"Domestic violence members discuss and plan upcoming events for domestic violence victims/survivors.","eventUrl":null,"contactDetails":"15th District CAPS Office\n5701 W Madison Ave\nChicago, IL\n312-743-1495","location":"15th District \nCommunity Policing Room\n5701 W Madison Ave\n312-743-1495","modifiedDate":"2016-01-13T09:53:12"},{"calendarId":24,"start":"2016-01-11T13:00:00","end":null,"title":"Roosevelt University Basketball Event","eventDetails":"Not Open To Public","eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Rogers School","modifiedDate":"2015-12-30T14:55:24"},{"calendarId":5,"start":"2016-01-09T10:00:00","end":"2016-01-09T12:00:00","title":"Youth Law Explorers","eventDetails":"005th District Police Station","eventUrl":null,"contactDetails":"CAPS Office 312-747-3100 ","location":"727 E 111th Street","modifiedDate":"2016-01-12T09:31:40"},{"calendarId":14,"start":"2016-01-09T10:00:00","end":null,"title":"Senior Advisory Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District\nCommunity Room","modifiedDate":"2015-12-09T12:16:12"},{"calendarId":6,"start":"2016-01-08T18:00:00","end":null,"title":"Line Dancing in the District","eventDetails":"Come out and enjoy the \"free\" line dancing class","eventUrl":null,"contactDetails":"Contact Dorothy Leaks\n312-745-3644","location":"Chicago Police Dept.\n5101 S. Wentworth\nCommunity Room","modifiedDate":"2015-12-16T16:39:59"},{"calendarId":3,"start":"2016-01-07T19:00:00","end":"2016-01-07T20:00:00","title":"Beat Meeting (313, 314)","eventDetails":"Beat Meeting (313, 314)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove \t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Harris Park Recreation\n6200 S. Drexel\nChicago, IL. 60637\n","modifiedDate":"2015-12-29T15:58:54"},{"calendarId":8,"start":"2016-01-07T19:00:00","end":null,"title":"834 Beat Meeting","eventDetails":"Bogan High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3939 W 79th Street","modifiedDate":"2015-12-09T14:36:01"},{"calendarId":16,"start":"2016-01-07T19:00:00","end":null,"title":"1631 Beat Meeting","eventDetails":"Come join your neighbors at the CAPS meeting where you will meet your beat officer(s) and talk about crime related problems on your block and together we can improve our neighborhoods","eventUrl":null,"contactDetails":"16th District Caps Office 312-742-4521","location":"Hiawatha Park 8029 W Forest Preserve Dr.","modifiedDate":"2015-12-17T13:40:30"},{"calendarId":18,"start":"2016-01-07T18:30:00","end":"2016-01-07T19:30:00","title":"30 Sector Beat Meeting","eventDetails":"30 Sector Beat Community Meeting","eventUrl":null,"contactDetails":"P.O Schenk","location":"Access Living\n115 W. Chicago Ave\nChicago, Il 60610","modifiedDate":"2015-12-11T17:19:48"},{"calendarId":15,"start":"2016-01-07T18:30:00","end":"2016-01-07T19:30:00","title":"Beat Meeting 1512 & 1523","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"015th District Community Policing Office\n5701 W Madison\n312-743-1495","location":"PCC Wellness Center\n5425 W Lake St","modifiedDate":"2015-12-22T13:35:23"},{"calendarId":25,"start":"2016-01-07T18:30:00","end":"2016-01-07T19:30:00","title":"Beat Meeting 2511","eventDetails":"Beat Meeting 2511","eventUrl":null,"contactDetails":"For Information Contact the 25th District Caps Office 312-746-5090","location":"2833 N. Nordica","modifiedDate":"2015-12-10T11:26:42"},{"calendarId":6,"start":"2016-01-07T18:30:00","end":null,"title":"Beat 631 Community Meeting","eventDetails":"Meet the residents and police officers in your community","eventUrl":null,"contactDetails":"CAPS Office\n312-745-3641","location":"Chatham Fields Church\n8050 S. St Lawrence","modifiedDate":"2015-12-16T16:44:08"},{"calendarId":11,"start":"2016-01-07T18:00:00","end":"2016-01-07T19:00:00","title":"Beat Meeting: 1112/21","eventDetails":"Community engagements generating strategies to making neighborhoods safe. ","eventUrl":null,"contactDetails":"CAPS 011th District 3151 West Harrison St 312-746-9841 ","location":"Sanctuary Place 642 N. Kedzie","modifiedDate":"2015-12-14T15:23:53"},{"calendarId":10,"start":"2016-01-07T18:00:00","end":"2016-01-07T19:00:00","title":"1011 BEAT MEETING","eventDetails":"1011 COMMUNITY BEAT MEETING","eventUrl":null,"contactDetails":"CAPS OFFICE 312-747-7190","location":"CLAIR HOUSE\n1350 S. HARDING\n","modifiedDate":"2015-12-17T16:10:01"},{"calendarId":14,"start":"2016-01-07T17:00:00","end":null,"title":"Peer Jury","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District\nCommunity Room","modifiedDate":"2015-12-09T12:16:27"},{"calendarId":20,"start":"2016-01-07T16:00:00","end":null,"title":"Peer Jury Training","eventDetails":"20th District Youth Explorers","eventUrl":null,"contactDetails":"CAPS Office \n312-742-8770","location":"5400 N Lincoln\ncommunity room","modifiedDate":"2016-01-19T15:28:10"},{"calendarId":1,"start":"2016-01-07T14:00:00","end":"2016-01-07T15:00:00","title":"20 Sect Business Mtg","eventDetails":"Beat meeting with business partners from the 20 Sect","eventUrl":null,"contactDetails":"001st Dist CAPS office\n1718 S State\n312-745-4381","location":"181 W Madison\nNorthern Trust Bank","modifiedDate":"2015-12-08T11:47:31"},{"calendarId":22,"start":"2016-01-07T14:00:00","end":"2016-01-07T15:00:00","title":"Diversity and Inclusion Subcommittee","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"22nd District Community Room\n1900 W. Monterey Ave","modifiedDate":"2015-12-22T08:34:48"},{"calendarId":3,"start":"2016-01-07T13:00:00","end":"2016-01-07T14:00:00","title":"003rd District Clergy Meeting","eventDetails":"003rd District Clergy Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:08:30"},{"calendarId":5,"start":"2016-01-07T10:00:00","end":"2016-01-07T11:00:00","title":"Domestic Violence Committee","eventDetails":"005th District Police Station","eventUrl":null,"contactDetails":"CAPS Office 312-747-3100","location":"727 E 111th Street","modifiedDate":"2016-01-12T09:31:55"},{"calendarId":12,"start":"2016-01-06T19:00:05","end":"2016-01-06T20:00:05","title":"Beat Meeting 1221 ","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community.","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at the Smith Park 2526 W. Grand Ave. on the1st Wednesday of the odd months. ","modifiedDate":"2015-11-28T08:16:09"},{"calendarId":16,"start":"2016-01-06T19:00:00","end":null,"title":"1621 Beat Meeting","eventDetails":"Come join your neighbors at the CAPS meeting where you will meet your beat officer(s) and talk about crime related problems on your block and together we can improve our neighborhoods","eventUrl":null,"contactDetails":"16th District CAPS Office 312-742-4521","location":"First Congregational Church of Forest Glen 5400 N. Lawler","modifiedDate":"2015-12-17T13:41:14"},{"calendarId":3,"start":"2016-01-06T19:00:00","end":"2016-01-06T20:00:00","title":"Beat Meeting (311, 312)","eventDetails":"Beat Meeting (311, 312)","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"Bessie Coleman Library \n731 E. 63rd St.\nChicago, IL. 60637\n","modifiedDate":"2015-12-29T11:30:43"},{"calendarId":8,"start":"2016-01-06T19:00:00","end":null,"title":"815/821 Beat Meeting","eventDetails":"St Bruno's","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"4839 S Harding","modifiedDate":"2015-12-09T14:38:34"},{"calendarId":15,"start":"2016-01-06T18:30:00","end":null,"title":"Beat Meeting 1522 & 1533","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"015th District Community Policing Office\n5701 W Madison\n312-743-1495","location":"Loretto Hospital\n645 S Central","modifiedDate":"2015-12-22T13:36:15"},{"calendarId":6,"start":"2016-01-06T18:30:00","end":null,"title":"Beat 621 Community Meeting","eventDetails":"Meet the residents and police officers in your community","eventUrl":null,"contactDetails":"CAPS Office\n312-745-3641","location":"Chicago Police Dept.\n6th District\n7808 S. Halsted St","modifiedDate":"2015-12-16T16:04:22"},{"calendarId":14,"start":"2016-01-06T18:30:00","end":null,"title":"Court Advocacy Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District\nCommunity Room","modifiedDate":"2015-12-09T12:16:46"},{"calendarId":6,"start":"2016-01-06T18:30:00","end":null,"title":"Beat 622 Community Meeting","eventDetails":"Meet the residents and police officers in your community","eventUrl":null,"contactDetails":"CAPS Office\n312-745-3641","location":"Chicago Police Dept.\n6th District\n7808 S. Halsted St","modifiedDate":"2015-12-16T16:30:21"},{"calendarId":14,"start":"2016-01-06T18:00:00","end":null,"title":"Beat Facilitator Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"014th District\nCommunity Room","modifiedDate":"2015-12-09T12:16:59"},{"calendarId":9,"start":"2016-01-06T18:00:00","end":"2016-01-06T19:00:00","title":"911 and 921 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":null,"location":"Davis School Annex\n3050 W. 39th St.","modifiedDate":"2015-11-30T21:16:08"},{"calendarId":8,"start":"2016-01-06T16:00:00","end":null,"title":"Domestic Subcommittee Mtg","eventDetails":"008th District","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"3420 W 63rd Street","modifiedDate":"2015-12-09T14:34:47"},{"calendarId":18,"start":"2016-01-06T15:00:00","end":"2016-01-06T16:00:00","title":"20 Sector Hospitality Meeting","eventDetails":"20 Sector Hospitality Subcommittee Meeting","eventUrl":null,"contactDetails":"Sgt. Vanek","location":"She-Nannigans\n16 W. Division\nChicago, Il 60610","modifiedDate":"2015-12-11T17:18:58"},{"calendarId":3,"start":"2016-01-06T14:00:00","end":"2016-01-06T15:00:00","title":"Court Advocate Meeting","eventDetails":"Court Advocate Meeting","eventUrl":null,"contactDetails":"P.O. Hutchinson\t \t\n7040 S. Cottage Grove\t \nChicago, IL. 60637\n(312) 747-7004\n","location":"003rd District Police Station (Auditorium)\n7040 S. Cottage Grove \nChicago IL. 60637\n","modifiedDate":"2016-01-19T19:10:13"},{"calendarId":25,"start":"2016-01-06T10:00:00","end":"2016-01-06T11:00:00","title":"Domestic Violence","eventDetails":"Domestic Violence \nSub-Committee Meeting","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5060","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:42:08"},{"calendarId":12,"start":"2016-01-05T19:00:46","end":"2016-01-05T20:00:46","title":"Beat Meeting 1225","eventDetails":"The beat meeting is a chance to meet your neighbors and come up with strategies that affect the community. ","eventUrl":null,"contactDetails":"12th District CAPS Office 312-746-8306 ","location":"The meeting is at Chicago Hope Academy 2108 W. Ogden on the 1st Tuesday of the odd months. ","modifiedDate":"2015-11-28T08:14:51"},{"calendarId":19,"start":"2016-01-05T19:00:00","end":"2016-01-05T20:00:00","title":"Beat 1913","eventDetails":null,"eventUrl":null,"contactDetails":"019 Community Policing\n312-744-0064","location":"Courtenay School\n4420 N. Beacon","modifiedDate":"2015-12-08T14:52:25"},{"calendarId":8,"start":"2016-01-05T19:00:00","end":null,"title":"822/824 Beat Meeting","eventDetails":"Solorio High School","eventUrl":null,"contactDetails":"Community Policing\n312 747-8724","location":"5400 S St. Louis","modifiedDate":"2015-12-09T14:38:11"},{"calendarId":24,"start":"2016-01-05T19:00:00","end":null,"title":"2412 Beat Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"24th District Community Policing Office (312) 744-6321","location":"Boone School\n6710 N. Washtenaw","modifiedDate":"2015-12-30T14:47:32"},{"calendarId":11,"start":"2016-01-05T18:30:32","end":null,"title":"Beat Meeting ; 1111","eventDetails":"Community engagements generating strategies to making neighborhoods safe.","eventUrl":null,"contactDetails":"011th District CAPS 3151 W. Harrison Street 312-746-9841","location":"Brian Piccolo School 1040 N. Keeler","modifiedDate":"2015-12-14T15:22:16"},{"calendarId":25,"start":"2016-01-05T18:30:00","end":"2016-01-05T19:30:00","title":"Beat Meeting 2535","eventDetails":"Beat Meeting 2535","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"3647 W. North","modifiedDate":"2015-12-10T10:48:39"},{"calendarId":15,"start":"2016-01-05T18:30:00","end":"2016-01-05T19:30:00","title":"Beat Meeting 1531 & 1532","eventDetails":"Residents, other stakeholders and the Police meet to discuss community concerns on the beat and engage in problem solving. The meetings help to identify crime and disorder problems and develop strategies to combat those problems with the assistance and support from other agencies.","eventUrl":null,"contactDetails":"015th District Community Policing Office\n5701 W Madison\n312-743-1495","location":"West Branch Library\n4856 W Chicago Ave","modifiedDate":"2015-12-22T13:39:36"},{"calendarId":25,"start":"2016-01-05T18:30:00","end":"2016-01-05T19:30:00","title":"Beat Meeting 2521","eventDetails":"Beat Meeting 2521","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"2715 N. Cicero","modifiedDate":"2015-12-10T11:20:00"},{"calendarId":18,"start":"2016-01-05T18:30:00","end":"2016-01-05T19:30:00","title":"1824 Beat Meeting","eventDetails":"1824 Beat Community Meeting ","eventUrl":null,"contactDetails":"P.O Schenk","location":"Latin School\n59 W. North Ave\nChicago, Il 60614","modifiedDate":"2015-12-11T17:20:01"},{"calendarId":6,"start":"2016-01-05T18:30:00","end":null,"title":"Beat 611 Community Meeting","eventDetails":null,"eventUrl":null,"contactDetails":"CAPS Office\n312-745-3641","location":"2nd Mt.Vernon Annex \n2101 W. 79th Street\n","modifiedDate":"2015-12-16T15:54:49"},{"calendarId":25,"start":"2016-01-05T14:00:00","end":"2016-01-05T15:00:00","title":"Court Advocacy","eventDetails":"Court Advocacy","eventUrl":null,"contactDetails":"For Information Contact 25th District Caps Office 312-746-5090","location":"5555 W. Grand Ave.\nCommunity Room","modifiedDate":"2015-12-10T10:43:07"},{"calendarId":11,"start":"2016-01-02T09:00:00","end":"2016-01-02T10:00:00","title":"Peer Jury","eventDetails":"Misdemeanor court cases are presented and sanctioned by their peers.","eventUrl":null,"contactDetails":"CAPS 11th District 3151 West Harrison St 312-746-9841","location":"11th District Auditorium","modifiedDate":"2015-12-28T11:03:47"}] diff --git a/tests/files/chi_policeboard.html b/tests/files/chi_policeboard.html deleted file mode 100644 index 2dddc4d5c..000000000 --- a/tests/files/chi_policeboard.html +++ /dev/null @@ -1,1633 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - City of Chicago :: Public Meetings of the Police Board - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
- -
-
- - -
-
-
- - - - - - - - - -
-
-
- - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -

Public Meetings of the Police Board

-
-
- - - -
- - - - - - - -
-
-
-
-

The Police Board holds a regular public meeting once a month. Members of the public are invited to attend and are welcome to address questions or comments to the Board. The Superintendent of Police (or his designee) and the Chief Administrator of the Civilian Office of Police Accountability (or her designee) will be at the meetings. Prior sign-up is required of those wishing to address the Board; contact the Board's office by 4:30 p.m. of the day before the meeting to add your name to the list of speakers.

-

See below for the dates of the regular monthly meetings. Unless otherwise noted, the meetings are on the third Thursday of the month, are scheduled to begin at 7:30 p.m., and take place at Chicago Public Safety Headquarters, 3510 South Michigan Avenue.

-

Also appearing below are links to the transcripts of the meetings and the material made available at the meeting--the "Blue Book" that includes the meeting agenda, minutes, statistics on disciplinary matters, and a list of CPD directives issued by the Superintendent. 

-

2017 Regular Meetings

-

Thursday, January 19: Blue Book, Transcript

-

Thursday, February 16: Blue Book, Transcript

-

Thursday, March 16: Blue Book, Transcript

-

Thursday, April 20: Blue Book, Transcript

-

Thursday, May 18: Blue Book, Transcript

-

Thursday, June 15: Blue Book, Transcript

-

Thursday, July 20: Blue Book, Transcript

-

Thursday, August 10: Blue Book, Transcript

-

Thursday, September 18: Blue Book, Transcript

-

Thursday, October 19

-

Thursday, November 16

-

Thursday, December 14 (second Thursday)

-

See the Archives section (click on the link above left) for Blue Books and transcripts from prior meetings. 

-

  

-

Policy

-

Policy Regarding Attendance of and Participation by the Public at Police Board Meetings

-
-
-
- - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - -
-
-
-
-
-

 Facts

-
-
- - - - - - -

Department:

- - - -

Resources:

- - - - -
-
-
-
-
- - - - - - - - - - - -
- - -
- - - - - - - - - - - - - - - -
-
-
-
-
-

- -  Department Main Office - -

-
-
- - - - - -

Chicago Police Board

- - -
    -
  • - - Phone: 312.742.4194
    - - - - - -
  • - -
  • - - 30 North LaSalle Street -
    - - - Suite 1220
    - - Chicago, IL 60602 (Business Hours 8:30 am to 4:30 pm Monday - Friday)   
    Get Directions -
  • - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- - - - -
-
-
- - - -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- - - - -
-
-
- - - - - -
- - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tests/test_chi_police.py b/tests/test_chi_police.py deleted file mode 100644 index 786275d89..000000000 --- a/tests/test_chi_police.py +++ /dev/null @@ -1,77 +0,0 @@ -from datetime import datetime -from os.path import dirname, join - -from city_scrapers_core.constants import PASSED, POLICE_BEAT -from city_scrapers_core.utils import file_response -from freezegun import freeze_time -from scrapy.settings import Settings - -from city_scrapers.spiders.chi_police import ChiPoliceSpider - -test_response = file_response(join(dirname(__file__), "files", "chi_police.json")) -spider = ChiPoliceSpider() -spider.settings = Settings(values={"CITY_SCRAPERS_ARCHIVE": False}) - -freezer = freeze_time("2018-01-01") -freezer.start() - -parsed_items = [item for item in spider.parse(test_response)] - -freezer.stop() - - -def test_count(): - assert len(parsed_items) == 234 - - -def test_title(): - assert parsed_items[0]["title"] == "CAPS District 25, Beat 14" - - -def test_description(): - assert parsed_items[0]["description"] == "" - - -def test_start(): - assert parsed_items[0]["start"] == datetime(2017, 12, 28, 18, 30) - - -def test_end_time(): - assert parsed_items[0]["end"] == datetime(2017, 12, 28, 19, 30) - - -def test_id(): - assert ( - parsed_items[0]["id"] == "chi_police/201712281830/25/caps_district_25_beat_14" - ) - - -def test_all_day(): - assert parsed_items[0]["all_day"] is False - - -def test_status(): - assert parsed_items[0]["status"] == PASSED - - -def test_classification(): - assert parsed_items[0]["classification"] == POLICE_BEAT - - -def test_links(): - assert parsed_items[0]["links"] == [] - - -def test_location(): - EXPECTED_LOCATION = { - "address": "St. Ferdinand's3115 N. Mason Chicago, IL", - "name": "", - } - assert parsed_items[0]["location"] == EXPECTED_LOCATION - - -def test_source(): - assert ( - parsed_items[0]["source"] - == "https://home.chicagopolice.org/office-of-community-policing/community-event-calendars/" # noqa - ) diff --git a/tests/test_chi_police_district_councils.py b/tests/test_chi_police_district_councils.py deleted file mode 100644 index 185950458..000000000 --- a/tests/test_chi_police_district_councils.py +++ /dev/null @@ -1,130 +0,0 @@ -from datetime import datetime -from os.path import dirname, join - -import pytest -from city_scrapers_core.constants import COMMISSION -from city_scrapers_core.utils import file_response -from freezegun import freeze_time - -from city_scrapers.spiders.chi_police_district_councils import ( - ChiPoliceDistrictCouncilsSpider, -) - -test_response = file_response( - join(dirname(__file__), "files", "chi_police_district_councils", "DC001.html"), - url="https://www.chicago.gov/city/en/depts/ccpsa/supp_info/district-council-pages/DC001.html", # noqa -) - -meeting_response = file_response( - join( - dirname(__file__), - "files", - "chi_police_district_councils", - "Notice-and-Agenda-001-2023-06-06.pdf", - ), - url="https://www.chicago.gov/content/dam/city/depts/ccpsa/district-council-agendas/dc-001/notices-and-agendas/Notice-and-Agenda-001-2023-06-06.pdf", # noqa - mode="rb", -) - -meeting_response_closed = file_response( - join( - dirname(__file__), - "files", - "chi_police_district_councils", - "Notice-and-Agenda-001-2023.06.01-closed.pdf", - ), - url="https://www.chicago.gov/content/dam/city/depts/ccpsa/district-council-agendas/dc-001/notices-and-agendas/Notice-and-Agenda-001-2023.06.01-closed.pdf", # noqa - mode="rb", -) - - -spider = ChiPoliceDistrictCouncilsSpider() - -freezer = freeze_time("2023-06-16") -freezer.start() - -requests = [item for item in spider.parse(test_response)] -parsed_items = [] -for request in requests: - if request.url == meeting_response.url: - meeting_response.request = request - parsed_items += [item for item in spider._parse_meeting(meeting_response)] - elif request.url == meeting_response_closed.url: - meeting_response_closed.request = request - parsed_items += [ - item for item in spider._parse_meeting(meeting_response_closed) - ] - -freezer.stop() - - -def test_title(): - assert ( - parsed_items[0]["title"] - == "Chicago Police District Council 001 Regular Meeting" - ) - assert parsed_items[1]["title"] == "Chicago Police District Council 001 Meeting" - - -def test_start(): - assert parsed_items[0]["start"] == datetime(2023, 6, 6, 17, 30) - assert parsed_items[1]["start"] == datetime(2023, 6, 1, 0, 0) - - -def test_id(): - assert ( - parsed_items[0]["id"] - == "chi_police_district_councils/202306061730/x/chicago_police_district_council_001_regular_meeting" # noqa - ) - assert ( - parsed_items[1]["id"] - == "chi_police_district_councils/202306010000/x/chicago_police_district_council_001_meeting" # noqa - ) - - -def test_status(): - assert parsed_items[0]["status"] == "passed" - assert parsed_items[1]["status"] == "passed" - - -def test_location(): - assert parsed_items[0]["location"] == { - "name": "Maggie Daley Fieldhouse, ", - "address": "", - } - assert parsed_items[1]["location"] == {} - - -def test_source(): - assert ( - parsed_items[0]["source"] - == "https://www.chicago.gov/city/en/depts/ccpsa/supp_info/district-council-pages/DC001.html" # noqa - ) - assert ( - parsed_items[1]["source"] - == "https://www.chicago.gov/city/en/depts/ccpsa/supp_info/district-council-pages/DC001.html" # noqa - ) - - -def test_links(): - assert parsed_items[0]["links"] == [ - { - "href": "https://www.chicago.gov/content/dam/city/depts/ccpsa/district-council-agendas/dc-001/notices-and-agendas/Notice-and-Agenda-001-2023-06-06.pdf", # noqa - "title": "agenda", - } - ] - assert parsed_items[1]["links"] == [ - { - "href": "https://www.chicago.gov/content/dam/city/depts/ccpsa/district-council-agendas/dc-001/notices-and-agendas/Notice-and-Agenda-001-2023.06.01-closed.pdf", # noqa - "title": "agenda", - } - ] - - -def test_classification(): - assert parsed_items[0]["classification"] == COMMISSION - - -@pytest.mark.parametrize("item", parsed_items) -def test_all_day(item): - assert item["all_day"] is False diff --git a/tests/test_chi_policeboard.py b/tests/test_chi_policeboard.py deleted file mode 100644 index dd4f5ebf3..000000000 --- a/tests/test_chi_policeboard.py +++ /dev/null @@ -1,80 +0,0 @@ -from datetime import datetime -from os.path import dirname, join - -import pytest -from city_scrapers_core.constants import BOARD, PASSED -from city_scrapers_core.utils import file_response - -from city_scrapers.spiders.chi_policeboard import ChiPoliceBoardSpider - -test_response = file_response( - join(dirname(__file__), "files", "chi_policeboard.html"), - url="https://chicago.gov/city/en/depts/cpb/provdrs/public_meetings.html", -) -spider = ChiPoliceBoardSpider() -parsed_items = [item for item in spider.parse(test_response)] - - -def test_title(): - assert parsed_items[0]["title"] == "Police Board" - - -@pytest.mark.parametrize("item", parsed_items) -def test_description(item): - assert item["description"] == "" - - -def test_start(): - assert parsed_items[8]["start"] == datetime(2017, 9, 18, 19, 30) - - -def test_links(): - assert parsed_items[8]["links"] == [ - { - "href": "https://chicago.gov/content/dam/city/depts/cpb/PubMtgMinutes/BlueBook09182017.pdf", # noqa - "title": "Blue Book", - }, - { - "href": "https://chicago.gov/content/dam/city/depts/cpb/PubMtgMinutes/PubMtgTranscript09182017.pdf", # noqa - "title": "Transcript", - }, - ] - - -@pytest.mark.parametrize("item", parsed_items) -def test_end(item): - assert item["end"] is None - - -def test_id(): - assert parsed_items[8]["id"] == "chi_policeboard/201709181930/x/police_board" - - -@pytest.mark.parametrize("item", parsed_items) -def test_all_day(item): - assert item["all_day"] is False - - -@pytest.mark.parametrize("item", parsed_items) -def test_classification(item): - assert item["classification"] == BOARD - - -def test_status(): - assert parsed_items[8]["status"] == PASSED - - -@pytest.mark.parametrize("item", parsed_items) -def test_location(item): - assert item["location"] == { - "address": "3510 S Michigan Ave, Chicago IL 60653", - "name": "Chicago Public Safety Headquarters", - } - - -@pytest.mark.parametrize("item", parsed_items) -def test_source(item): - assert ( - item["source"] - == "https://chicago.gov/city/en/depts/cpb/provdrs/public_meetings.html" - )