From 517cad7e8d2e5081016f1a9da508ee654f4e61c0 Mon Sep 17 00:00:00 2001 From: Daniel Simmons-Ritchie <37225902+SimmonsRitchie@users.noreply.github.com> Date: Tue, 16 Jul 2024 14:37:05 -0500 Subject: [PATCH] Fix spider: icjia --- .../il_criminal_justice_information.py | 336 +- .../il_criminal_justice_information.html | 6147 ------------ .../il_criminal_justice_information.json | 8279 +++++++++++++++++ tests/test_il_criminal_justice_information.py | 73 +- 4 files changed, 8439 insertions(+), 6396 deletions(-) delete mode 100644 tests/files/il_criminal_justice_information.html create mode 100644 tests/files/il_criminal_justice_information.json diff --git a/city_scrapers/spiders/il_criminal_justice_information.py b/city_scrapers/spiders/il_criminal_justice_information.py index 279724eed..98c7f3fdb 100644 --- a/city_scrapers/spiders/il_criminal_justice_information.py +++ b/city_scrapers/spiders/il_criminal_justice_information.py @@ -1,235 +1,163 @@ -import re -from datetime import datetime -from itertools import chain +import json +from datetime import datetime, timedelta +from urllib.parse import urljoin +import scrapy from city_scrapers_core.constants import ( ADVISORY_COMMITTEE, BOARD, - CANCELLED, COMMISSION, COMMITTEE, - NOT_CLASSIFIED, ) from city_scrapers_core.items import Meeting from city_scrapers_core.spiders import CityScrapersSpider +from dateutil import parser +from dateutil.tz import gettz class IlCriminalJusticeInformationSpider(CityScrapersSpider): name = "il_criminal_justice_information" agency = "Illinois Criminal Justice Information Authority" timezone = "America/Chicago" - start_urls = ["http://www.icjia.state.il.us/about/overview"] - location = { - "name": "Illinois Criminal Justice Information Authority", - "address": "300 W Adams St, Suite 200, Chicago, IL 60606", - } + attachments_base_url = "https://agency.icjia-api.cloud" - def parse(self, response): - """. - `parse` should always `yield` Meeting items. - - Change the `_parse_title`, `_parse_start`, etc methods to fit your scraping - needs. + def start_requests(self): + """ + Request agency's GraphQL endpoint to get all meetings. + """ + query = """ + query allMeetings { + meetings(sort: "start:desc") { + id + title + slug + summary + created_at + updated_at + published_at + isCancelled + start + end + category + body + posts { + title + slug + __typename + } + events { + title: name + slug + __typename + } + tags { + title + slug + __typename + } + attachments { + id + formats + size + name + ext + url + updated_at + created_at + hash + __typename + } + external { + title + url + __typename + } + __typename + } + } """ - last_year = datetime.today().replace(year=datetime.today().year - 1) - for item in response.css(".panel"): - desc = self._parse_description(item) - title = self._parse_title(item) - classification = self._parse_classification(title) - location = self._parse_location(desc) - start_str, end_str = self._parse_time_str(desc) - exceptions = self._parse_exceptions(item) - - for row in item.css("tbody tr"): - # Ignore expand/collapse rows - if len(row.css("td.hiddenRow")) > 0: - continue - row_loc = location - row_end_str = end_str - start, asterisks = self._parse_start(row, start_str) - if not start: - continue - # Check if asterisks exist and strikethrough not present - if ( - asterisks - and asterisks in exceptions - and len(row.css("strike, s")) < 1 - ): - exception = exceptions[asterisks] - row_start_str, ex_end_str = self._parse_time_str(exception) - if ex_end_str: - row_end_str = ex_end_str - start = self._parse_start_exception( - exception, row_start_str or start_str - ) - row_loc = self._parse_location(exception, default=location) - - if start < last_year and not self.settings.getbool( - "CITY_SCRAPERS_ARCHIVE" - ): - continue - links = self._parse_links(row, response) - meeting = Meeting( - title=title, - description="", - classification=classification, - start=start, - end=self._parse_end(start, row_end_str), - all_day=False, - time_notes="", - location=row_loc, - links=links, - source=response.url, - ) - # Cancelled if there is a strikethrough and no links present - if len(row.css("strike, s")) > 0 and len(links) == 0: - meeting["status"] = CANCELLED - else: - meeting["status"] = self._get_status(meeting) - meeting["id"] = self._get_id(meeting) - yield meeting - - def _parse_title(self, item): - """Parse or generate meeting title.""" - title_str = " ".join(item.css(".panel-heading *::text").extract()) - clean_title = re.sub(r"\s+", " ", title_str).strip() - return re.search(r"(?<=\d{4}\s).*(?=Meetings)", clean_title).group().strip() - - def _parse_description(self, item): - """Parse or generate meeting description. Not used in output.""" - desc = item.css(".panel-body > p::text").extract_first() - if desc: - return re.sub(r"\s+", " ", desc).strip() - - def _parse_classification(self, title): - """Parse or generate classification from allowed options.""" - if "advisory" in title.lower(): - return ADVISORY_COMMITTEE - if "board" in title.lower(): - return BOARD - if "committee" in title.lower(): - return COMMITTEE - if "task force" in title.lower(): - return COMMISSION - return NOT_CLASSIFIED - def _parse_start(self, item, time_str): - """Parse start datetime as a naive datetime object.""" - raw_date_str = " ".join(item.css("td:first-of-type *::text").extract()) - date_str = re.sub(r"\s+", " ", raw_date_str).strip() - if "rescheduled" in date_str.lower(): - date_str = re.split(r"Rescheduled (to )?", date_str, flags=re.IGNORECASE)[ - -1 - ] - date_str = date_str.replace("Rescheduled", "").strip() + # Prepare the payload + payload = {"operationName": "allMeetings", "variables": {}, "query": query} - asterisks = re.search(r"\*+", date_str) - if asterisks: - asterisks = asterisks.group() - date_str = date_str.replace(asterisks, "") - if not date_str.strip(): - return None, None - start = self._parse_dt_str(date_str, time_str) - return start, asterisks + # Convert the payload to a JSON string + body = json.dumps(payload) - def _parse_end(self, start, time_str): - """Parse end time if provided""" - if time_str: - date_str = start.strftime("%B %d, %Y") - return self._parse_dt_str(date_str, time_str) + # Send the POST request + yield scrapy.Request( + "https://agency.icjia-api.cloud/graphql", + method="POST", + body=body, + headers={"Content-Type": "application/json"}, + callback=self.parse, + ) - def _parse_time_str(self, desc): - """Parse start time from description if available""" - if desc is None: - return None, None - time_match = [ - m - for m in re.findall(r"\d{1,2}(?:\:\d{1,2})?\s*[apAP][\.mM]{1,3}", desc) - if m - ] - start_str = None - end_str = None - if len(time_match) == 1: - start_str = time_match[0] - elif len(time_match) == 2: - start_str, end_str = time_match - elif len(time_match) == 4: - start_str = time_match[2] - end_str = time_match[3] - # Remove spaces to make parsing more uniform - if start_str: - start_str = re.sub(r"[\. ]", "", start_str) - if end_str: - end_str = re.sub(r"[\. ]", "", end_str) - return start_str, end_str + def parse(self, response): + data = json.loads(response.text) + # save to tests dir + + for item in data["data"]["meetings"]: + title = item["title"] + title_with_status = f"{title} (Cancelled)" if item["isCancelled"] else title + start = self.parse_datetime(item["start"]) + # skip meetings older than 90 days + ninety_days_ago = datetime.now() - timedelta(days=90) + if start < ninety_days_ago: + continue + meeting = Meeting( + title=title_with_status, + description=item["summary"], + classification=self._parse_classification(item["title"]), + start=start, + end=self.parse_datetime(item["end"]), + all_day=False, + time_notes="", + location={ + "name": "TBD", + "address": "", + }, + links=self._parse_links(item), + source=response.url, + ) + meeting["status"] = self._get_status(meeting) + meeting["id"] = self._get_id(meeting) + yield meeting - def _parse_dt_str(self, date_str, time_str): - # Remove everything after the year - dt_str = re.search(r".*\d{4}", date_str).group() - date_fmt = "%B %d, %Y" - if time_str: - dt_str = "{} {}".format(dt_str, time_str) - if ":" in time_str: - date_fmt += " %I:%M%p" - else: - date_fmt += " %I%p" - return datetime.strptime(dt_str, date_fmt) + def parse_datetime(self, dt_str): + """ + Parse ISO string into datetime, convert to local timezone, + then create timezone naive datetime object. + """ + dt = parser.parse(dt_str) + local_tz = gettz(self.timezone) + local_dt = dt.astimezone(local_tz) + naive_dt = local_dt.replace(tzinfo=None) + return naive_dt - def _parse_location(self, desc, default=location): - """Parse or generate location.""" - # Split on string used before the location and time - if not desc or not any(w in desc for w in ["Chicago", "IL", "Illinois"]): - return default - split_str = "location: " if "location: " in desc else " at " - desc_split = desc.split(split_str) - loc_split = desc_split[-1].split(", ") - if len(loc_split) < 4: - name = "" - address = desc_split[-1].replace(".", "") - else: - name = re.sub(r"^the ", "", loc_split[0]) - address = ", ".join(loc_split[1:]).replace(".", "") - return { - "address": address, - "name": name, + def _parse_classification(self, title): + """ + Classifies the meeting based on the meeting title. + If no specific keywords match, defaults to COMMISSION. + """ + category_map = { + "Board": BOARD, + "Committee": COMMITTEE, + "Advisory Committee": ADVISORY_COMMITTEE, } + return category_map.get(title, COMMISSION) - def _parse_links(self, item, response): - """Parse or generate links.""" + def _parse_links(self, meeting): + # Extracting links from attachments and external links = [] - for link in chain( - item.css("a"), - item.xpath( - "following-sibling::tr[position()=1]//td[contains(@class, 'hiddenRow')]//a" # noqa - ), - ): + attachments = meeting.get("attachments", []) + for attachment in attachments: links.append( { - "title": re.sub( - r"\s+", " ", " ".join(link.css("*::text").extract()) - ).strip(), - "href": response.urljoin(link.attrib["href"]), + "href": urljoin(self.attachments_base_url, attachment["url"]), + "title": attachment["name"], } ) + external = meeting.get("external", {}) + if external: + links.append({"href": external["url"], "title": external["title"]}) return links - - def _parse_exceptions(self, item): - """ - Parse any exception with an asterisk, return dictionary of asterisks and text - """ - exception_map = {} - desc_items = item.css(".panel-body > p::text").extract() - if len(desc_items) < 2: - return exception_map - for desc in desc_items[1:]: - clean_desc = re.sub(r"\s+", " ", desc).strip() - asterisks = re.search(r"^\*+", clean_desc) - if asterisks: - asterisk_str = asterisks.group() - exception_map[asterisk_str] = clean_desc[len(asterisk_str) :].strip() - return exception_map - - def _parse_start_exception(self, exception, start_str): - """Parse meeting start time from exception text""" - date_match = re.findall(r"\w{3,10} \d{1,2}, \d{4}", exception) - return self._parse_dt_str(date_match[-1], start_str) diff --git a/tests/files/il_criminal_justice_information.html b/tests/files/il_criminal_justice_information.html deleted file mode 100644 index 0cbc69d3c..000000000 --- a/tests/files/il_criminal_justice_information.html +++ /dev/null @@ -1,6147 +0,0 @@ - - - - - - - - ICJIA | Overview - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - -
- - - - - - - - - - - -
- -
-
-

About the Authority

-

John Maki, Executive Director

-
-
-

Created in 1983, the Illinois Criminal Justice Information Authority is a state agency dedicated to improving the administration of criminal justice. -

-

The Authority brings together key leaders from the justice system and the public to identify critical issues facing the criminal justice system in Illinois, and to propose and evaluate policies, programs, and legislation that address those issues. The agency also works to ensure the criminal justice system in Illinois is efficient and effective. The Authority’s specific powers and duties are detailed in the Illinois Criminal Justice Information Act [ 20 ILCS 3930 et. seq. ]. -

-

The statutory responsibilities of the Authority fall under the categories of grants administration, research and analysis, policy and planning, and information systems and technology. To display the Authority organization chart, click here. -

-

For information about contacting the Authority, please see this page. -

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

Elizabeth Robb, Chair

- - -

Former Chief Circuit Judge (11th Circuit) Elizabeth Robb was named chairman of the Illinois Criminal Justice Information Authority in March 2015. Ms. Robb brings more than 30 years of legal experience to ICJIA. She served as a trial judge for 22 years on the 11th Judicial Circuit Court of Illinois, and was the chief judge from 2004 to 2014. In that role, in addition to presiding over trials, she had administrative responsibility for the 20 judges in the court, oversaw court reporters, probation officers, and other court staff. Prior to becoming a judge, Ms. Robb was an attorney at Reynard & Robb Law Offices (1982-1987) and the Robb Law Office (1987-1993). Ms. Robb earned her bachelor’s degree from Illinois Wesleyan University and her law degree from Loyola University of Chicago. -

- - -
- - - - -
-

Patrick Delfino, Vice Chair

- - -

Patrick Delfino was appointed director of the Office of the State’s Attorneys Appellate Prosecutor in December 2008. Mr. Delfino is a graduate of the University of Notre Dame Law School and is an experienced trial and appellate attorney. Before joining the appellate prosecutor’s office as assistant director, Mr. Delfino served as a drug attorney and court specialist with the Illinois Law Enforcement Commission and as the Cook County State’s Attorney’s Office Director of Planning and Special Projects.

-

Mr. Delfino has taught both at college and law school, and he is a member of the Sex Offender Management Board and the Children’s Justice Task Force of the Department of Children and Family Services. Mr. Delfino also serves as executive director of the Illinois State’s Attorneys Association. He also serves on the Illinois Sex Offender Management Board and on the Children’s Justice Task Force of the Department of Children and Family Services. He is a past president of the Illinois Academy of Criminology and a member of the Chicago Bar Association, Illinois State Bar Association, and the National District Attorneys Association. -

- - -
- - - - -
-

Dwight Baird  

- - -

Dwight Baird was elected Kendall County Sheriff in 2014. Mr. Baird began his law enforcement career with the Kendall County Sheriff’s Office in 1990. He later transferred to the Oswego Police Department, where he rose through the ranks to become Oswego Police Chief, a role he filled from 2003 to 2014. -

-

Mr. Baird is a member of the Illinois Sheriffs Association, National Sheriffs Association, International Association of Chiefs of Police, and Illinois Association of Chiefs of Police.He is president of the Northern Illinois Zone of Sheriffs, past President of the North East Multi-Regional Training Board, and current vice chairman of the Federal High Intensity Drug Trafficking Agency. -

-

Mr. Baird earned a bachelor’s of science degree in professional studies and criminal justice management form Aurora University and a master’s degree with police executive certification from Western Illinois University.He also is a graduate of the FBI National Academy and the National Sheriff’s Institute. -

-

He has been recognized for his achievements throughout his career, which receiving a Life Saving award by the Illinois Police Association and a Medal of Valor award by the Illinois Association of Chiefs of Police and being named 2014 Illinois Crime Commission Police Chief of the Year. -

- - -
- - - - -
-

John R. Baldwin  

- - -

John R. Baldwin was named director of the Illinois Department of Corrections in August 2015. Mr. Baldwin is the former director of the Iowa Department of Corrections and brings more than 35 years of corrections experience to the state. He led the Iowa Department of Corrections from January 2007 until his retirement in January 2015. As the director, he oversaw a staff of nearly 4,000 officers who supervised 38,000 offenders. During his tenure, he worked with the Pew-MacArthur Results First Initiative to build a state-specific cost-benefit analysis on the state’s corrections department. The data was used to make more informed policy and budget decisions in an effort to reduce recidivism. Mr. Baldwin began working for the Iowa Department of Corrections in 1983. Before serving in the role of director, Mr. Baldwin was the deputy director of Administration where he oversaw the budget, personnel, and use of evidence-based practices. Prior to that, he supervised the business office for a forensic psychiatric hospital that was under the control of the Iowa Department of Corrections. Mr. Baldwin holds a master’s degree in political science from Iowa State University and a bachelor’s degree in economics from the University of Iowa.

- - -
- - - - -
-

Carla E. Barnes  

- - -

Carla E. Barnes was appointed McLean County Chief Public Defender in fall 2014. Ms. Barnes is the first African American to lead the office, as well as the first African-American McLean County administrator. -

-

Ms. Barnes joined the McLean County Public Defender’s Office in 2001 as an assistant public defender in the Traffic Division. She was later promoted to supervise the Misdemeanor Division while maintaining a felony caseload. Her case assignments ranged from felony traffic to murder charges. -

-

Prior to joining the McLean County Public Defender’s Office, Ms. Barnes was employed in private practice. She later served in the Cook County State’s Attorney’s Office Child Support Division. She also served in the McLean County State’s Attorney’s Office. While Ms. Barnes flourished as a prosecutor, she felt that she could affect more change as a public defender. -

-

Ms. Barnes holds a bachelor’s degree in criminal justice from Illinois State University and a juris doctorate from The John Marshall Law School. -

- - -
- - - - -
-

Dorothy Brown  

- - -

Dorothy Brown was first elected Cook County Circuit Clerk in 2000, becoming the first African American to hold the position. She was re-elected in 2004 and again in 2008. Ms. Brown holds a master’s in business administration, a juris doctorate, and is a certified public accountant. As the official keeper of records for all judicial matters brought into one of the largest unified court systems in the world, Ms. Brown manages an annual operating budget of more than $100 million and a workforce of more than 2,300 employees.

- - -
- - - - -
-

Amy P. Campanelli  

- - -

Amy P. Campanelli was sworn in as the 10th Cook County Public Defender in April 2015. Ms. Campanelli’s appointment was the culmination of 27 years of service representing the indigent accused. She started as an assistant public defender in the office’s Juvenile Division in 1987, after three years she moved to the Felony Trial Division, where she remained until 1998. Her caseload included felonies of every stripe, from low level drug cases to capital murder.

-

From 1998 until 2003, Ms. Campanelli managed criminal cases in private practice. She returned to the Cook County Public Defender’s Office in 2003 as an attorney supervisor assigned to the Felony Trial Division. She became chief of the Bridgeview Courthouse in 2008 and then transitioned to capital case coordinator in 2010.

-

After the death penalty was abolished in Illinois, Ms. Campanelli served as deputy chief of the Homicide Task Force and deputy chief of the Felony Trial Division. In 2012, she was promoted to deputy public defender in charge of Cook County’s five suburban districts, a position she held until her appointment as the Cook County Public Defender. -

-

Over the years, Ms. Campanelli has been a frequent lecturer and trainer on mental health issues, trial advocacy, trial preparation, and therapeutic courts. She received a bachelor’s degree from the University of Illinois and a juris doctorate from Chicago-Kent College of Law. Ms. Campanelli is a lifelong member of the Delta Delta Delta Sorority and a past president of the Southwest Suburban Alumni Association.
-

- - -
- - - - -
-

James E. Chadd  

- - -

James E. Chadd was appointed director of the Office of the State Appellate Defender in January 2018. Mr. Chadd has spent his entire legal career with the Office of the State Appellate Defender, beginning as an assistant appellate defender in Springfield in 1984. He moved to the Chicago office in 1989, became a supervisor in 2002, an assistant deputy in 2010, and the deputy state appellate defender in 2014. In 2011, Mr. Chadd received the James B. Haddad Award in recognition of a career marked by extraordinary legal work and dedication to representing indigent clients. Mr. Chadd holds a bachelor’s degree in history and English literature from the University of Oregon and a juris doctor degree from the University of Illinois College of Law.

- - -
- - - - -
-

Tom Dart  

- - -

Tom Dart was first sworn in as the 52nd Cook County sheriff in 2006. Mr. Dart began his career in public service as an assistant state’s attorney in Cook County. In 1992, Mr. Dart won a seat in the Illinois House, where he sponsored Mayor Daley’s Safe Neighborhoods Act and authored several state laws designed to crack down on child sex offenders, including a statute that targeted child predators that use the Internet to lure young victims. Mr. Dart also wrote the Sexually Violent Predators Commitment Act, enabling judges to detain sexual predators in state mental health facilities if they believe the offender is likely to commit new sex crimes. Mr. Dart joined the Cook County Sheriff’s Office in 2003, where he served as chief of staff to former Cook County Sheriff Michael F. Sheahan. -

- - -
- - - - -
-

Debra Dyer-Webster  

- - -

Debra Dyer-Webster is interim director of the Illinois Department of Children and Family Services. She has worked for DCFS for more than 25 years, serving in numerous capacities that included chief deputy director, guardianship administrator, affirmative action deputy director, chief deputy general counsel, deputy director of external affairs, child protective services supervisor, investigator, and child welfare specialist. Ms. Dyer-Webster also is a former Cook County assistant state’s attorney.

Ms. Dyer-Webster holds a juris doctorate from the Chicago Kent College of Law at the Illinois Institute of Technology, a master’s degree from the University of Chicago School of Social Service Administration, and a master’s degree in education and a bachelor’s degree in social science from Jackson State University.

- - -
- - - - -
-

Dr. Ngozi Ezike  

- - -

Dr. Ngozi Ezike is acting director of the Illinois Department of Public Health (IDPH). Dr. Ezike is a board-certified internist and pediatrician who comes to IDPH from the Cook County Department of Public Health (CCDPH), where she served for more than 15 years, and is medical director at the Cook County Juvenile Temporary Detention Center. Prior to joining CCDPH, Dr. Ezike served as Austin Health Center medical director where she actively engaged with the community on a variety of health initiatives. She also has delivered inpatient care at Stroger Hospital and primary and preventive care in community and school-based clinics.

Dr. Ezike is a national policy advisor on juvenile correctional health topics who has presented at numerous local and national conferences for medical professionals and youth audiences alike. She received a medical degree from University of California at San Diego and a bachelor’s degree in chemistry from Harvard University. Dr. Ezike also holds a management certificate from Harvard Business School and is an assistant professor in the Department of Pediatrics at Rush University.

- - -
- - - - -
-

Brent Fischer  

- - -

Brent Fischer was appointed executive director of the Illinois Law Enforcement Training and Standards Board in December 2015. Prior to his appointment, Mr. Fischer served for 17 years as Adams County Sheriff. He began his career at the Adam County Sheriff’s Office as a court security officer in 1991 and was hired as a deputy sheriff in 1994. Mr. Fischer served 10 years as a board member of the Illinois Law Enforcement Training and Standards Board, including two years as the board’s chairman, and he is a past president Illinois Sheriff’s Association. -

- - -
- - - - -
-

Kimberly M. Foxx  

- - -

Kimberly M. Foxx was elected Cook County State’s Attorney in 2016 and is the first African-American woman to lead the office. Prior to being elected state’s attorney, Ms. Foxx served as chief of staff or Cook County Board President Toni Preckwinkle. As President Preckwinkle’s senior advisor and lead strategist, she oversaw a $4 billion annual budget. She also was the lead architect of the county’s criminal justice reform agenda to address racial disparities in the criminal and juvenile justice systems. Her efforts contributed to a significant drop in the Cook County jail population while promoting public safety. -

-

A veteran prosecutor, Ms. Foxx served as an assistant state’s attorney in the Cook County State’s Attorney’s Office for 12 years. She has also served as a guardian ad litem in the Cook County Public Guardian’s Office. -

-

Ms. Foxx is a board member at Adler University and Free Spirit Media, where she also served as board president. Ms. Foxx is a former board chair of Planned Parenthood of Illinois and a past president of the National Black Prosecutors Association-Chicago Chapter. She is a member of Leadership Greater Chicago and the Chicago Council of Lawyers. -

-

Born and raised on Chicago’s Near North Side in Cabrini Green, Ms. Foxx earned a bachelor’s degree in political science from Southern Illinois University (SIU) and a juris doctorate from the SIU School of Law. -

- - -
- - - - -
-

Eddie Johnson  

- - -

Eddie Johnson was appointed Chicago Police Department Superintendent in April 2016. Since his appointment, Mr. Johnson has set out to implement systemic reforms around police accountability and transparency and build a culture within the department to strengthen public trust and reduce gun violence.
-

-

As superintendent, Mr. Johnson has developed a comprehensive violence reduction strategy which will add nearly 1,000 police officers to the streets of Chicago, invested in technology so officers can police smarter and more effectively, and initiated a comprehensive policy agenda to create a culture of accountability in the criminal justice system for repeat gun offenders that drive the majority of Chicago violence. -

-

Mr. Johnson joined the Chicago Police Department in 1988, serving for the majority of his career within the Detective Division and Gang/Tactical units and Patrol Bureau, where he rose to the rank of chief. He is a Chicago native who grew up in Cabrini Green and on the city’s South Side. He is a member of the Executive Board of NOBLE’s Chicago Chapter, the St. Jude Board of Directors, and the Chicago Police Memorial Foundation Assistance Committee. -

-

Mr. Johnson is a recipient of the Chicago Defender Men of Excellence Award and has a received several department commendations. He received a bachelor’s degree from Governors State University and is expecting his master’s degree in public policy and administration with a specialization in public safety and national security from Northwestern University in 2017. -

- - -
- - - - -
-

Maureen Josh  

- - -

Maureen Josh is the DeKalb County Circuit Court Clerk, a position she has held for more than 30 years. As keeper of the records, Ms. Josh manages a team of 40 clerks, while working with members and agencies of the court system and the general public. Ms. Josh has served as president of the Northeast Illinois Circuit Clerk’s Association since 1989 and is a member of the Illinois Association of Circuit Court Clerks Executive Board and Legislative Committee. -

-

In addition to her current service as an Authority Member, Ms. Josh served on the Authority from 2000 to 2006. She also currently serves as a Supreme Court appointee on the Statutory Court Fee Task Force and the e-Business Policy Advisory Board Technical Committee. -

-

She has received numerous honors and awards for her work, including the 2013 NIU College of Law Alumni Council’s Public Service Award and Circuit Clerk of the Year in 1999, 2002, 2004 and 2015. Ms. Josh earned her bachelor’s degree in education from the University of Wisconsin, Platteville. -

- - -
- - - - -
-

Brendan Kelly  

- - -

Brendan Kelly is acting director of the Illinois State Police. Mr. Kelly also serves St. Clair County State’s Attorney, a post he’s held since 2010. He previously served as an assistant state’s attorney and has had a wide range of experience with law enforcement. During his military service as an officer in the United States Navy, Mr. Kelly conducted research on Israeli-Palestinian joint police patrols in the Middle East. As an assistant state’s attorney, he served on the Illinois State Bar Association Criminal Justice Section Council. He was a member of the Illinois Juvenile Justice Commission, the Illinois Criminal Justice and Sentencing Reform Commission, and the Attorney General’s Sexual Assault Task Force.

Mr. Kelly received a juris doctor from the St. Louis University School of Law and a bachelor’s degree in government and international relations from the University of Notre Dame.

- - -
- - - - -
-

Bryan Kibler  

- - -

Bryan Kibler is the Effingham County State’s Attorney. Mr. Kibler’s office prosecutes 250 felonies and 500 misdemeanors a year, as well as advises the county on civil issues. Previously, Mr. Kibler owned his own practice where he concentrated on criminal defense and family law. Mr. Kibler earned his bachelor’s degree from Northern Illinois University and his law degree from Southern Illinois University.

- - -
- - - - -
-

David Olson  

- - -

David Olson, Ph.D., is a professor and graduate program director in the at Loyola University Chicago Criminal Justice and Criminology Department and co-director of Loyola’s interdisciplinary Center for Criminal Justice Research, Policy and Practice. Dr. Olson also is a 20-year veteran of ICJIA, where he served as director of Illinois’ Statewide Drug and Violent Crime Control Strategy Impact Evaluation Program and was responsible for overseeing the evaluation and monitoring of federally funded drug control efforts in Illinois. With more than 30 years of experience in criminal justice, Dr. Olson has worked with a variety of federal, state, and local agencies to develop and evaluate programs and policies, particularly in community and institutional corrections. Dr. Olson received a bachelor’s of science degree in criminal justice from Loyola University Chicago, a master’s degree in criminal justice from the University of Illinois at Chicago, and a doctorate in political science/public policy analysis from the University of Illinois at Chicago, where he also was the recipient of the Assistant United States Attorney General’s Graduate Research Fellowship.

- - -
- - - - -
-

Joseph M. Perez  

- - -

Joseph M. Perez was appointed chief of the Metra Police Department in 2014. A 28-year veteran of the Illinois State Police Department (ISP) with a diverse service record, Mr. Perez was hired to lead the Metra Police transformation into a modern, efficient and effective force. -

Mr. Perez started his law enforcement career with ISP as a trooper in 1986 and steadily rose through the ranks on a variety of assignments. As an ISP Major, he oversaw all department law enforcement activities and more than 800 sworn officers and civilian staff across northern Illinois. A command officer for more than 14 years, he supervised patrol, investigative and specialty units, served as a police academy instructor, was responsible for the protection of Illinois Constitutional Officers, and planned the safety and security for several significant events, including the 2012 NATO Summit in Chicago.

-

Mr. Perez is a member of the Chicago FBI Joint Terrorism Task Force Executive Board, the American Public Transportation Association Security Peer Advisory Group, and the Association of American Railroads Rail Security Working Committee. He was recipient of the 2014 Hector Jordan Lifetime Achievement Award from the Hispanic Illinois State Law Enforcement Association. -

- - -
- - - - -
-

Toni Preckwinkle  

- - -

Toni Preckwinkle was elected Cook County Board President in November 2010. Ms. Preckwinkle has been a dedicated community leader for more than two decades, providing independent and progressive leadership founded on experience, coalition building, and a commitment to practical results. Prior to joining the Cook County Board, Ms. Preckwinkle served as alderman of Chicago’s 4th Ward for 19 years. In that time, Ms. Preckwinkle built a professional and responsive ward organization and worked tirelessly to meet the diverse needs of her constituents. She fought for greater funding for education and affordable housing in her ward. She also sponsored the living wage and affordable housing ordinances, and was a lead plaintiff in a lawsuit to institute a more racially equitable map of Chicago’s ward boundaries. -

-

Prior to joining Chicago City Council, Ms. Preckwinkle taught high school history in Chicago for 10 years. During that time, she ran a non-profit organization aimed at neighborhood improvement. Ms. Preckwinkle was recipient of the IVI-IPO Best Alderman Award in 1993, 1995, 1997, 1999, 2005 and 2008, and the 1997 and 2009 Leon Despres Awards. She holds a bachelor’s degree and a master’s degree from the University of Chicago. -

- - -
- - - - -
-

Kwame Raoul  

- - -

Kwame Raoul was sworn in as the 42nd Attorney General of Illinois in January 2019. He began his legal career as a prosecutor in the Cook County State’s Attorney’s Office, handling matters at the trial and appellate level in the criminal, civil and juvenile divisions of the office. He subsequently served as a senior staff attorney for the City Colleges of Chicago, handling primarily labor and employment matters. Mr. Raoul has also been a partner at two national law firms, serving in the health care and labor and employment practice groups.

In 2004, Mr. Raoul was appointed to serve as the state senator representing the 13th Legislative District, where he was subsequently re-elected on multiple occasions to represent the district. As a senator, Raoul led negotiations and sponsored legislation that eliminated the death penalty, required background checks on private gun transfers, and promoted law enforcement and criminal justice reform.

Mr. Raoul has been recognized for his work on behalf of survivors of sexual assault and domestic violence, which includes passage of the Safe Homes Act and the Sexual Assault Survivors’ Bill of Rights. He earned a bachelor’s degree from DePaul University and his juris doctorate from Chicago-Kent College of Law.

- - -
- - - - -
-

Kathryn Saltmarsh  

- - -

Kathryn Saltmarsh is the executive director of the Sentencing Policy Advisory Council (SPAC), a position she has held since 2010. Prior to joining SPAC, Ms. Saltmarsh was legislative affairs director for the Office of the Illinois Attorney General. She also served as a legislative and appellate policy advisory with the Office of the State Appellate Defender, where she was actively involved in the negotiation and passage of death penalty reform legislation. Ms. Saltmarsh chose a public service career focusing on criminal justice as a member of the post-conviction legal team for Randy Steidl, a wrongfully convicted death row inmate who was released after 17 years in prison. Ms. Saltmarsh is former co-director of the Criminal Law Edit, Alignment and Reform (CLEAR) Commission, which drafted the statute that created SPAC and sponsored multiple bills to simplify and modernize the Illinois Criminal Code and Code of Corrections. She serves on the Budgeting for Results Commission, Adult Redeploy Illinois Oversight Board, and Center for State Policy and Leadership Board at the University of Illinois Springfield. Ms. Saltmarsh graduated magna cum laude from the University of Illinois College of Law.

- - -
- - - - -
-

Jennifer Vollen-Katz  

- - -

Jennifer Vollen-Katz is executive director of the John Howard Association. In this role, she monitors conditions and programming in Illinois correction and detention facilities and helps create and implement system-wide operational and policy reform. JMs. Vollen-Katz serves as chairwoman of the State Advisory Board to the Illinois Department of Juvenile Justice. Prior to joining the John Howard Association, Ms. Vollen-Katz was a lecturer in law and a clinical supervisor at the University of Chicago Law School Mandel Legal Aid Clinic Federal Criminal Justice Clinic. She also was a staff attorney with the Federal Defender Program of Northern Illinois, where she represented indigent defendants in federal criminal cases in the Northern District. -

-

Ms. Vollen-Katz earned her bachelor’s degree from St. Lawrence University, her juris doctorate from the Georgetown University Law Center, and her master’s degree in criminal justice policy from the London School of Economics in London, England. -

- - -
- - - - -
-

Paula Wolff  

- - -

Paula Wolff is director of the Illinois Justice Project, a civic organization that works to reform the criminal justice system. Ms. Wolff has focused much of her career on justice policy. From 2000 to 2014, she led the Justice and Violence Group of Metropolis Strategies, the predecessor to the Illinois Justice Project. -

-

From 1992 to 2000, Ms. Wolff served as president of Governors State University. She was responsible for the management of the university, oversaw faculty, students, the budget and strategic direction. During her tenure, enrollment grew by 22 percent to more than 9,000 students. Ms. Wolff also served as the director of policy and planning for former Gov. James Thompson. In that role, she directed development and implemented policy at all levels of state government. She also worked for former Governor Richard Ogilvie. -

-

Ms. Wolff earned her bachelor’s degree from Smith College and has her master’s degree and doctorate in political science from the University of Chicago. -

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

- - Sharyn Adams -  |  Research Analyst - -

- - - -

- - Research and Analysis - - - - - -   |    - (312) 793-8550   |  - -

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

- - Junaid Afeef -  |  Director of the Targeted Violence Program - -

- - - -

- - Office of the Executive Director - - - - - -   |    - (312) 793-8550   |  - -

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

- - Jamila Akil -  |  Criminal Justice Specialist Trainee - -

- - - -

- - Federal and State Grants - - - - - -   |    - 312-793-5148   |  - -

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

- - Megan Alderden -  |  Acting Executive Director - -

- - - -

- - Office of the Executive Director - - - - - -   |    - (312) 793-8550   |  - -

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

- - Paola Baldo -  |  Research Analyst - -

- - - -

- - Research and Analysis - - - - - -   |    - 312-793-8550   |  - -

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

- - Shamsideen Balogun -  |  Grant Specialist - -

- - - -

- - Federal and State Grants - - - - - -   |    - (312) 793-8550   |  - -

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

- - Wanda Block -  |  Grant Specialist - -

- - - -

- - Federal and State Grants - - - - - -   |    - (312) 793‐4203   |  - -

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

- - Maureen Brennan -  |  Grant Specialist - -

- - - -

- - Federal and State Grants - - - - - -   |    - (312) 793-8403   |  - -

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

- - Craig Cady -  |  Grant Specialist - -

- - - -

- - Federal and State Grants - - - - - -   |    - 312-793-8550   |  - -

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

- - John Caporale -  |  Advanced Grantee Auditor - -

- - - -

- - Office of Fiscal Management - - - - - -   |    - 312-793-8550   |  - -

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

- - Malea Conro -  |  Grant Specialist - -

- - - -

- - Federal and State Grants - - - - - -   |    - (312) 793‐8404   |  - -

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

- - Karen Crawford -  |  Grantee Auditor - -

- - - -

- - Office of Fiscal Management - - - - - -   |    - 312-793-8550   |  - -

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

- - Reshma Desai -  |  Strategic Policy Advisor - -

- - - -

- - Office of the Executive Director - - - - - -   |    - (312) 793-8550   |  - -

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

- - Nancy Determann -  |  Accountant Advanced - -

- - - -

- - Office of Fiscal Management - - - - - -   |    - (312) 793-8550   |  - -

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

- - Mary Ann Dyar -  |  Program Director - -

- - - -

- - - - Adult Redeploy - - - - -   |    - (312) 793-8550   |  - -

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

- - Dawn English -  |  Human Resources Professional - -

- - - -

- - Human Resources - - - - - -   |    - (312) 793-8550   |  - -

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

- - Justin Escamilla -  |  Research Analyst - -

- - - -

- - Research and Analysis - - - - - -   |    - 312-793-8550   |  - -

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

- - Cristin Evans -  |  Public Information Officer - -

- - - -

- - Office of Public Information - - - - - -   |    - (312) 793-8550   |  - -

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

- - Rise Evans -  |  Grant Specialist - -

- - - -

- - Federal and State Grants - - - - - -   |    - (312) 793‐8910   |  - -

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

- - Jin Fong -  |  Programmer Analyst - -

- - - -

- - Information Systems - - - - - -   |    - (312) 793-8550   |  - -

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

- - Alysson Gatens -  |  Research Analyst - -

- - - -

- - Research and Analysis - - - - - -   |    - 312-793-8550   |  - -

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

- - Lily Gleicher -  |  Research Analyst - -

- - - -

- - Research and Analysis - - - - - -   |    - 312-793-8550   |  - -

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

- - Karl Gruschow -  |  Research Analyst - -

- - - -

- - Research and Analysis - - - - - -   |    - 312-793-8550   |  - -

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

- - Tracy Hahn -  |  Manager of the Center for Sponsored Research & Program Development - -

- - - -

- - Research and Analysis - - - - - -   |    - (312) 793-8550   |  - -

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

- - Shataun Hailey -  |  Victim Services Manager - -

- - - -

- - Federal and State Grants - - - - - -   |    - (312) 814‐8100   |  - -

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

- - Jennifer Hiselman -  |  Infonet Manager - -

- - - -

- - Research and Analysis - - - - - -   |    - (312) 793-8550   |  - -

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

- - Shai Hoffman -  |  Grant Manager for Violence Prevention Grants - -

- - - -

- - Federal and State Grants - - - - - -   |    - (312) 814‐0706   |  - -

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

- - Jaclyn Houston Kolnik -  |  Manager and Victimologist for the Center for Victim Studies - -

- - - -

- - Research and Analysis - - - - - -   |    - 312-793-8550   |  - -

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

- - Marilyn D. Jackson -  |  Administrative Specialist - -

- - - -

- - Office of Administrative Services - - - - - -   |    - (312) 793-8550   |  - -

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

- - Bryant Jackson-Green -  |  Strategic Policy Advisor - -

- - - -

- - Office of the Executive Director - - - - - -   |    - (312) 793-8550   |  - -

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

- - Anthony Jenkins -  |  Associate Director of Information Systems - -

- - - -

- - Information Systems - - - - - -   |    - 312-793-8550   |  - -

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

- - Bobae Kang -  |  Research Analyst - -

- - - -

- - Research and Analysis - - - - - -   |    - (312) 793-8550   |  - -

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

- - Simeon Kim -  |  Associate General Counsel - -

- - - -

- - Office of General Counsel - - - - - -   |    - (312) 793-8550   |  - -

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

- - Barbara King -  |  Grantee Auditor - -

- - - -

- - Office of Fiscal Management - - - - - -   |    - (312) 793-8550   |  - -

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

- - John Klaer -  |  Business Manager - -

- - - -

- - Office of Administrative Services - - - - - -   |    - (312) 793-8550   |  - -

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

- - Jude Lemrow -  |  Administrative Assistant - -

- - - -

- - Federal and State Grants - - - - - -   |    - (312) 793‐0893   |  - -

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

- - Christina Lorenzo -  |  Intern - -

- - - -

- - - - Adult Redeploy - - - - -   |    - (312) 793-8550   |  - -

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

- - John Maki -  |  Executive Director - -

- - - -

- - Office of the Executive Director - - - - - -   |    - (312) 793-8550   |  - -

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

- - Norman Mason -  |  Technical Support Specialist - -

- - - -

- - Information Systems - - - - - -   |    - (312) 793-8550   |  - -

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

- - Ieva Massengill -  |  Financial and Budget Manager - -

- - - -

- - Office of Fiscal Management - - - - - -   |    - (312) 793-8550   |  - -

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

- - Bharat Mehta -  |  Accountant Advanced - -

- - - -

- - Office of Fiscal Management - - - - - -   |    - (312) 793-8550   |  - -

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

- - Ernst Melchior -  |  Computer Support Specialist - -

- - - -

- - Research and Analysis - - - - - -   |    - (312) 793-8550   |  - -

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

- - Lynne Mock -  |  Research Manager - -

- - - -

- - Research and Analysis - - Adult Redeploy - - - - -   |    - (312) 793-8550   |  - -

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

- - Vanessa Morris -  |  Administrative Assistant - -

- - - -

- - Office of the Executive Director - - - - - -   |    - 312-793-793-1306   |  - -

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

- - Yolanda Mosley -  |  IT Systems Administrator - -

- - - -

- - Information Systems - - - - - -   |    - (312) 793-8550   |  - -

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

- - Lajuana Murphy -  |  Grant Specialist - -

- - - -

- - Federal and State Grants - - - - - -   |    - (312) 793‐1303   |  - -

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

- - Robin Murphy -  |  Deputy General Counsel - -

- - - -

- - Office of General Counsel - - - - - -   |    - (312) 793-8550   |  - -

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

- - Wanda Painter -  |  IT Systems Administrator - -

- - - -

- - Information Systems - - - - - -   |    - (312) 793-8550   |  - -

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

- - Kelly Pasholk -  |  Associate General Council - -

- - - -

- - Office of General Counsel - - - - - -   |    - 312-793-8550   |  - -

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

- - Adriana Perez -  |  GATA Chief Accountability Officer - -

- - - -

- - Federal and State Grants - - - - - -   |    - (312) 793‐8406   |  - -

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

- - Idetta Phillips -  |  Research Analyst - -

- - - -

- - Research and Analysis - - - - - -   |    - (312) 793-8550   |  - -

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

- - Lacey Pollock -  |  Grant Specialist - Illinois Family Violence Coordinating Council - -

- - - -

- - Federal and State Grants - - - - - -   |    - 217-524-1917   |  - -

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

- - James Radcliffe -  |  Technical Assistance Provider - -

- - - -

- - Federal and State Grants - - - - - -   |    - 312-793-8550   |  - -

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

- - Trevor W. Ramsey -  |  Grant Specialist Trainee - -

- - - -

- - Federal and State Grants - - - - - -   |    - (312) 793-8550   |  - -

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

- - Mary Ratliff -  |  Program Director of the Illinois Family Violence Coordinating Council - -

- - - -

- - Federal and State Grants - - - - - -   |    - (217) 524‐4745   |  - -

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

- - Jessica Reichert -  |  Manager of the Center for Justice Research and Evaluation - -

- - - -

- - Research and Analysis - - - - - -   |    - (312) 793-8550   |  - -

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

- - Ronnie Reichgelt -  |  Victim Services Program Administrator - -

- - - -

- - Federal and State Grants - - - - - -   |    - (312) 793‐7058   |  - -

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

- - Scott Risolute -  |  Associate General Counsel - -

- - - -

- - Office of General Counsel - - - - - -   |    - 312-793-8550   |  - -

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

- - Zina Smith -  |  Associate Director of Human Resources - -

- - - -

- - Human Resources - - - - - -   |    - (312) 793-8550   |  - -

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

- - Luisa Salazar -  |  Grant Specialist - -

- - - -

- - Federal and State Grants - - - - - -   |    - (312) 814-0707   |  - -

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

- - Kyle Schlegel -  |  Grant Specialist - -

- - - -

- - Federal and State Grants - - - - - -   |    - 312-793-8550   |  - -

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

- - Christopher Schweda -  |  Web Developer - -

- - - -

- - Information Systems - - - - - -   |    - (312) 793-8674   |  - -

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

- - Tierra Scott -  |  Grant Specialist - -

- - - -

- - Federal and State Grants - - - - - -   |    - 312-793-8550   |  - -

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

- - Dennis Shaw -  |  Accountant - -

- - - -

- - Office of Fiscal Management - - - - - -   |    - (312) 793-8550   |  - -

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

- - Lauren Simmons -  |  Grant Specialist - -

- - - -

- - - - - - - -   |    - 312-793-8552   |  - -

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

- - Gail Smith -  |  Policy and Project Coordinator - -

- - - -

- - - - Adult Redeploy - - - - -   |    - (312) 793-8550   |  - -

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

- - Gregory Stevens -  |  Acting Associate Director of the Federal State Grants Unit - -

- - - -

- - Federal and State Grants - - - - - -   |    - (312) 793‐0890   |  - -

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

- - Thomas Sumner -  |  Technical Assistance Provider - -

- - - -

- - Federal and State Grants - - Adult Redeploy - - - - -   |    - 312-793-8550   |  - -

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

- - Jesse Tapia -  |  Accounting Manager - -

- - - -

- - Office of Fiscal Management - - - - - -   |    - (312) 793-8550   |  - -

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

- - Linda Taylor -  |  Award Specialist - -

- - - -

- - Federal and State Grants - - - - - -   |    - (312) 793‐0898   |  - -

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

- - Amanda L. Vasquez -  |  Research Analyst - -

- - - -

- - Research and Analysis - - - - - -   |    - (312) 793-8550   |  - -

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

- - Angie Weis -  |  Deputy Director & Chief Financial Officer - -

- - - -

- - Office of the Executive Director - - - - - -   |    - (312) 793-8550   |  - -

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

- - Lauren Weisner -  |  Research Analyst - -

- - - -

- - Research and Analysis - - - - - -   |    - 312-793-8550   |  - -

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

- - Christine Devitt Westley -  |  Manager of the Center for Criminal Justice Data and Analytics - -

- - - -

- - Research and Analysis - - - - - -   |    - (312) 793-8550   |  - -

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

- - Carrie Wiekerson -  |  Grant Specialist - -

- - - -

- - Federal and State Grants - - - - - -   |    - 312-793-8550   |  - -

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

- - Stacey Woods -  |  Grant Specialist - -

- - - -

- - Federal and State Grants - - - - - -   |    - 312-793-8550   |  - -

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

- - Ming Xie -  |  Programmer Analyst - -

- - - -

- - Information Systems - - - - - -   |    - (312) 793-8550   |  - -

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

- - James Yuan -  |  Programmer Analyst - -

- - - -

- - Information Systems - - - - - -   |    - (312) 793-8550   |  - -

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

2019 Authority Board Meetings begin at 10 - a.m. at Illinois Criminal Justice Information Authority, 300 W. Adams St., Suite 200,Chicago, IL - 60606, 2nd Floor Building Conference Room.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
December 19, 2019 - - - -
September 19, 2019 - - -
June 27, 2019 - - - -
April 24, 2019 - - Materials - -
March 21, 2019 - - - -
- -

These are proposed scheduled dates and are - subject to change.

-
-
-
- -
- -
-
-

2018 Authority Board Meetings begin at 10 - a.m. at Bilandic Building, 160 North LaSalle Street, Room N505, Chicago.

- - - - - - - - - - - - - - - - - - - - - - - - - - -
-
November 29, 2018 Rescheduled to December 11, - 2018** - - Materials -    - Minutes -
August 30, 2018 Rescheduled to August 22, 2018* - - -    - Minutes -
May 31, 2018 - - Materials -    - -
February 15, 2018 - - Materials -    - -
- -

* Authority Quarterly Board meeting has been - rescheduled from Thursday, August 30, 2018 to Wednesday, August 22, 2018. At the June Board meeting - it was discussed that the August Board Meeting is moving to Springfield for the VOCA All-Sites - Conference. The ICJIA Board Meeting at VOCA All-Sites Conference it is scheduled for Wednesday, - August 22, 2018 at 10:45 AM to 12 PM at the Crowne Plaza Springfield, 3000 South Dirksen Parkway, - Springfield, IL 62703.

-

** Authority Quarterly Board meeting has - been rescheduled from Thursday, November 29, 2018 to Tuesday, December 11, 2018 at 1 PM at ICJIA 300 - W. Adams St., Suite 200, 2nd Floor Building Conference Chicago, IL 60606.

-
-
-
- - -
- -
-
-

2017 Authority Board Meetings begin at 9 - a.m. to 11:30 a.m. at Bilandic Building, 160 North LaSalle Street, Room N505, Chicago.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
December 1, 2017** - - -    - -
November 30, 2017** - - Materials -    - -
September 8, 2017 - - Materials -    - Minutes - - -
- -
June 2, 2017 - - Materials -    - Minutes -
March 3, 2017 - - Materials -    - Minutes
January 27, 2017* - - Materials    - Minutes
- -

* Authority Quarterly Board meeting has been - rescheduled from Friday, December 2, 2016 to Friday, January 27, 2017 at 9 a.m. to 11:30 a.m. at the - Michael A. Bilandic Building, 160 North LaSalle Street, Room N505, Chicago, Illinois.

-

** Authority Quarterly Board meeting has - been rescheduled from Friday, December 1, 2017 to Thursday, November 30, 2017.

-
-
-
- - -
- -
-
-

2016 Authority Board Meetings begin at 9 - a.m., at ICJIA, 300 West Adams Street, 2nd Floor, Chicago, Illinois, 60606. -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
December 2, 2016*** - -    - -
September 16, 2016** - - Materials -    -
June 3, 2016 - - Materials -    - - Minutes -
March 11, 2016* - - Materials    - Minutes - - - - -
- -
- - -

*** Authority Quarterly Board meeting has - been rescheduled from Friday, December 2, 2016 to Friday, January 27, 2017 at 9 a.m. to 11:30 a.m. - at the Michael A. Bilandic Building, 160 North LaSalle Street, Room N505, Chicago, Illinois.

-

** This is a rescheduled date, the - original scheduled meeting was Friday, September 9, 2016 and has been changed to Friday, - September 16, 2016 at 9 AM. There is a Time Change for the Friday, September 16, Board - Meeting to 2:00 PM to 4:30 PM at the following location: Michael A. Bilandic - Building, 160 North LaSalle Street, Room N505, Chicago

-

* This is a rescheduled date, the - original scheduled meeting was March 4, 2016 and has been changed to March 11, 2016 at 9 AM at - the following location: Michael A. Bilandic Building, 160 North LaSalle Street, Room N505, - Chicago

-
-
-
- - -
- -
-
- - - - - - - - - - - - - - - - - - - - -
-
December 16, 2015 - - Materials -    - Minutes -
September 11, 2015 - - Materials -    - Minutes -
June 5, 2015 - - Materials -    - Minutes -
-
-
-
- - - - - -
- -
-
-

The 2018 Authority AD HOC Board Committee is - a newly formed committee, which will evaluate the infrastructure of our Board and guide the content - of quarterly meetings.

- - - - - - - - - - - - - - - - - - - - - - - - - - -
-
November 13, 2018 - - Materials -    - -
September 18, 2018 - - Materials -    - Minutes -
July 12, 2018 - - Materials -    - Minutes -
-
-
-
- - - - -
- -
-
-

2019 Authority Budget Committee Meetings - begin at 10 a.m., at ICJIA, 300 West Adams Street, 2nd Floor, Large Conference Room, Chicago, - Illinois, 60606.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
December 12, 2019 - - - -
October 17, 2019 - -
August 15, 2019 - - - -
June 20, 2019 - - - -
April 18, 2019 - - Materials - -
February 28, 2019 - Materials    - Summary    - - Updated Agenda -
- -
-
-
- - - - -
- -
-
-

2018 Authority Budget Committee Meetings - begin at 10 a.m., at ICJIA, 300 West Adams Street, 2nd Floor, Large Conference Room, Chicago, - Illinois, 60606.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
December 13, 2018 - - Materials -    - -    - Action - Taken - -
October 18, 2018 - - Materials -    - Minutes -    - Action - Taken - -
September 4, 2018 - - Materials -    - Minutes -    - Action - Taken - -
August 14, 2018 - - Materials -    - Minutes -    - Action Taken
June 21, 2018 - - Materials    - Minutes -    - Action Taken -
April 19, 2018
- Rescheduled*
-    -    - Action Taken -
February 28, 2018 - - Materials -    - Minutes -    - Action Taken
-

* The ICJIA Budget Committee Meeting for - April 19, 2018 has been Rescheduled to June 21, 2018.

-
-
-
- - - -
- -
-
-

2017 Authority Budget Committee Meetings - begin at 10 a.m., at ICJIA, 300 West Adams Street, 2nd Floor, Chicago, Illinois, 60606.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
December 13, 2017 - - Materials -    - Minutes -    - Action Taken - -
November 16, 2017 - - Materials -    - Minutes -    - Action Taken - -
October 25, 2017 - - Materials -    - Minutes -    - Action Taken - -
September 28, 2017 - - Materials    - Minutes -    - Action Taken -
July 27, 2017 - - Materials    - Minutes    - Action Taken - - -
-
-
-

» Item - #1

-

» Item - #2

-
-
-
May 25, 2017 - - Materials -    - Minutes -    - Action Taken
March 30, 2017 CANCELLED - -    - -    - Action Taken -
February 24, 2017* - - Materials    - Minutes -    - Action Taken
- -

* The ICJIA Budget Committee Meeting - scheduled for Friday, February 24, 2017 at 10 a.m. at 300 West Adams Street, Suite 200, Chicago.

-
-
-
- - -
- -
-
- -

2016 Authority Budget Committee Meetings - begin at 9 a.m., at ICJIA, 300 West Adams Street, 2nd Floor, Chicago, Illinois, 60606.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
November 17, 2016 - - Materials -    - Minutes -    - Action Taken - -
September 16, 2016 - - Materials -    - Minutes -    - Action Taken
August 18, 2016 - - Materials -    - Minutes    - Action Taken - -
-
-
-

» Video Presentation -

-
-
-
May 12, 2016 - - Materials    - Minutes    - Action - Taken
January 19, 2016 - - Materials -    - Minutes    - Action - Taken
-
-
-
- - -
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
December 4, 2015 - - - - -    - - - -    - - - -
October 20, 2015 - - - Materials - -    - - Minutes - -    - - Actions Taken - -
September 24, 2015 - - - Materials -    - - Minutes - -    - - Actions - Taken - -
September 11, 2015 - - - - -    - - - -    - - - -
August 6, 2015 - - Materials -    - - Minutes - -    - Actions - Taken -
June 19, 2015 - - Materials    - - Minutes - -    - Actions - Taken -
January 30, 2015 - - Materials    - - Minutes - -    - Actions Taken -
-
-
-
- - - -
- -
-
- -

2019 Coordinating Council Advisory Committee - Meetings at 1pm, at ICJIA, 300 West Adams Street, 2nd Floor, Large Conference Room, Chicago, - Illinois, 60606.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
December 12, 2019 - - -    - -    - -
October 17, 2019 - - -    - -    - -
August 15, 2019 - - -    - -    - -
June 20, 2019 - - -    - -    - -
April 18, 2019 - - -    - -    - -
February 28, 2019 - - -    - -    - -
-
-
-
- - - -
- -
-
- -

2018 Coordinating Council Advisory Committee - Meetings at 1pm, at ICJIA, 300 West Adams Street, 2nd Floor, Chicago, Illinois, 60606.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
December 13, 2018 - - Agenda -    - -    - - -
October 18, 2018 - - Agenda -    - Materials -    - Minutes -
August 9, 2018 - - Agenda -    - -    - Minutes -
June 14, 2018 - - Agenda -    - -    - Minutes -
April 19, 2018 - - Agenda -    - Materials -    - Minutes - -
February 28, 2018 - - Agenda -    - Materials -    - -
-
-
-
- - - - -
- -
-
- - -

2019 Authority Institutional Review Board - meetings at 1pm, at ICJIA, 300 West Adams Street, 2nd Floor, Chicago, Illinois, 60606.

- - - - - - - - - - - - - - - - - - - - -
-
April 26, 2019 - - Agenda -    - - -
-
-
-
- - -
- -
-
- - -

2018 Authority Institutional Review Board - meetings at 1pm, at ICJIA, 300 West Adams Street, 2nd Floor, Chicago, Illinois, 60606.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
November 1, 2018 - - -    - - -
October 22, 2018 - - Materials -    - - -
August 2, 2018 RESCHEDULED to August 15, - 2018 - Materials -    - - -
June 27, 2018 RESCHEDULED to July 7, 2018 - - Materials -    -
May 3, 2018 - - Materials -    - Minutes - -
March 29, 2018 - - Materials -    - Minutes
February 1, 2018 - - Materials -    - Minutes
-
-
-
- - - -
- -
-
- - -

2017 Authority Institutional Review Board - meetings are the third Thursday of the month at 1pm, at ICJIA, 300 West Adams Street, 2nd Floor, - Chicago, Illinois, 60606.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
December 7, 2017 - - - Materials - -    - Minutes - -
October 19, 2017 - - - Materials - -    - Minutes - -
July 7, 2017 - - - Materials - -    - Minutes - -
June 1, 2017 - - - Materials - -    - Minutes - -
February 16, 2017 - - - Materials - -    - Minutes - -
-
-
-
- - -
- -
-
- -

2016 Authority Institutional Review Board - meetings are the third Thursday of the month at 1pm, at ICJIA, 300 West Adams Street, 2nd Floor, - Chicago, Illinois, 60606.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
November 17, 2016 - - - - -    - - - - -
August 18, 2016 - - Materials -    - Minutes - -
May 19, 2016 - - - - Materials - -    - - - - - -
February 18, 2016 - - - Materials - -    - - Minutes - - -
-
-
-
- - - - -
- -
-
- -
- - - - - - - - - - - - - -
-
October 21, 2016 - - - Materials - -    - - - - -
-
-
-
- - - -
- -
-
- -

2018 Strategic Opportunities Committee - Meetings at 1pm, at ICJIA, 300 West Adams Street, 2nd Floor, Chicago, Illinois, 60606.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
December 13, 2018 - - -    - -    - - -
October 11, 2018 - - -    - -    - -
August 9, 2018 - - -    - -    - -
June 14, 2018 - - -    - -    - -
April 19, 2018 - Agenda -    - Materials -    - - -
February 28, 2018 - - Agenda -    - -    - -
-
-
-
-
- - - -
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
December 13, 2017 - - Agenda -    - - Materials - -    - - Minutes - - -
October 25, 2017 - - - Agenda - -    - - Materials - -    - - Minutes - - - -
-
-
-

» Presentation -

-
-
- -
August 29, 2017 - - Agenda -    - Materials -    - - Minutes - - - -
-
-
-

» Presentation

-
-
- -
June 27, 2017 - - Agenda -    - Materials -    - - Minutes - -
April 27, 2017 - - - Agenda -    - - Materials -    - Minutes - -
February 27, 2017 - - - Agenda - -    - - Materials - -    - Minutes - -
-
-
-
- - - -
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
October 27, 2016 - - Agenda -    - - - -    - Minutes -
July 18, 2016 - - Agenda -    - - - -    - Minutes -
May 25, 2016 - - Agenda -    - Materials -    - Minutes -
April 27, 2016 - - - Agenda - -    - -    - - Minutes - - -
March 29, 2016 - - - Agenda and Materials - -    - - Minutes - - -
February 25, 2016 - - - Agenda - -    - - Materials - -    - - Minutes - -
-
-
-
- - - -
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
October 19, 2015 - - - Materials - -    - - Minutes - - -
September 16, 2015 - - - Materials - -    - - Minutes - - -
August 27, 2015 - - - Materials - -    - - Minutes - - - - - - -
- -
-
-
-
- - - - - -
- -
-
- - - - - - - - - - - - - - - - - - - - - - -
-
December 7, 2016
VOCA Rules & Allowability Webinar -
- Recording - - - - - - - - -
September 27, 2016 - - Agenda -    - - - -    - - - - -
-
-
-
- - - - - -
- -
-
- - - - - - - - - - - - - - - - - - - - - -
-
June 15, 2017 - - Agenda -    - - - -    - - - - - - - - -
-
-
-

On June 15, 2017, ICJIA welcomed Dr. Alicia Boccellari to discuss the - University of California at San Francisco Trauma Recovery Center program. -

-

Click here to listen - to her presentation >>

-
-
-
-
-
-
- - -
-
-

For meeting material prior to January, 2015, please see our meeting - archive. -

-
-
- -
- - -
- -
- -
- -
- -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tests/files/il_criminal_justice_information.json b/tests/files/il_criminal_justice_information.json new file mode 100644 index 000000000..08ee7fd20 --- /dev/null +++ b/tests/files/il_criminal_justice_information.json @@ -0,0 +1,8279 @@ +{ + "data": { + "meetings": [ + { + "id": "194", + "title": "TRAFFIC & PEDESTRIAN STOP STATISTICAL STUDY TASK FORCE: July 25, 2024", + "slug": "traffic-and-pedestrian-stop-statistical-study-task-force-july-25-2024", + "summary": "Thursday, July 25, 2024\n11:30pm \u2013 12:30pm\nLocation\nVia WebEx Video Conference/Teleconference", + "created_at": "2024-06-28T12:57:30.046Z", + "updated_at": "2024-06-28T13:35:25.861Z", + "published_at": "2024-06-28T12:57:31.771Z", + "isCancelled": false, + "start": "2024-07-25T16:30:00.000Z", + "end": "2024-07-25T17:30:00.000Z", + "category": "special", + "body": "Thursday, July 25, 2024\n11:30pm \u2013 12:30pm\nLocation\nVia WebEx Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1422", + "formats": null, + "size": 68.02, + "name": "Traffic Data Stop Task Force Agenda 07-24-24 KA TL.pdf", + "ext": ".pdf", + "url": "/uploads/Traffic_Data_Stop_Task_Force_Agenda_07_24_24_KA_TL_df57bde328.pdf", + "updated_at": "2024-06-28T15:39:28.338Z", + "created_at": "2024-06-28T12:56:08.702Z", + "hash": "Traffic_Data_Stop_Task_Force_Agenda_07_24_24_KA_TL_df57bde328", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "195", + "title": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE: July 22, 2024", + "slug": "missing-and-murdered-chicago-women-task-force-july-22-2024", + "summary": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE\nMonday, July 22, 2024, 12:30pm \u2013 2:00pm\n\nLocation:\nVia WebEx Video Conference/Teleconference", + "created_at": "2024-07-09T13:19:53.442Z", + "updated_at": "2024-07-09T13:30:14.609Z", + "published_at": "2024-07-09T13:29:39.611Z", + "isCancelled": false, + "start": "2024-07-22T17:30:00.000Z", + "end": "2024-07-22T19:00:00.000Z", + "category": "special", + "body": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE\nMonday, July 22, 2024, 12:30pm \u2013 2:00pm\n\nLocation:\nVia WebEx Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1429", + "formats": null, + "size": 55.27, + "name": "Missing and Murdered Task Force Agenda 07-22-24.pdf", + "ext": ".pdf", + "url": "/uploads/Missing_and_Murdered_Task_Force_Agenda_07_22_24_00143ec50d.pdf", + "updated_at": "2024-07-09T13:30:11.449Z", + "created_at": "2024-07-09T13:30:11.422Z", + "hash": "Missing_and_Murdered_Task_Force_Agenda_07_22_24_00143ec50d", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "196", + "title": "Budget Committee Meeting July 18, 2024", + "slug": "budget-committee-meeting-july-18-2024", + "summary": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, June 20, 2024 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. Michael A. Bilandic Building\n160 N. LaSalle Street\nRoom N-502\nChicago, Illinois, 60661 \n\n2. ICJIA Offices\n524 South 2nd Street, Suite 220\nSpringfield, Illinois 62706", + "created_at": "2024-07-15T14:31:38.152Z", + "updated_at": "2024-07-15T14:31:49.045Z", + "published_at": "2024-07-15T14:31:48.977Z", + "isCancelled": false, + "start": "2024-07-18T15:00:00.000Z", + "end": "2024-07-18T17:00:00.000Z", + "category": "budget", + "body": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, June 20, 2024 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. Michael A. Bilandic Building\n160 N. LaSalle Street\nRoom N-502\nChicago, Illinois, 60661 \n\n2. ICJIA Offices\n524 South 2nd Street, Suite 220\nSpringfield, Illinois 62706", + "posts": [], + "events": [], + "tags": [ + { + "title": "Funding", + "slug": "funding", + "__typename": "Tag" + }, + { + "title": "Community", + "slug": "community", + "__typename": "Tag" + }, + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + }, + { + "title": "Violence Prevention", + "slug": "violence-prevention", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "1438", + "formats": null, + "size": 179.09, + "name": "ICJIA Agenda 071824.pdf", + "ext": ".pdf", + "url": "/uploads/ICJIA_Agenda_071824_1301267ddb.pdf", + "updated_at": "2024-07-15T14:29:16.387Z", + "created_at": "2024-07-15T14:29:16.332Z", + "hash": "ICJIA_Agenda_071824_1301267ddb", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "191", + "title": "Firearm Prohibitors and Records Improvement Task Force Meeting: June 20, 2024", + "slug": "firearm-prohibitors-and-records-improvement-task-force-meeting-june-20-2024", + "summary": "Firearm Prohibitors and Records Improvement Task Force Meeting:\n\n20 ILCS 3930/7.9\n\nThursday, June 20, 2024, 2:00 pm \u2013 3:00 pm\n\nAccessible via WebEx Video Conference/Teleconference:", + "created_at": "2024-06-11T16:23:37.051Z", + "updated_at": "2024-07-10T13:36:36.807Z", + "published_at": "2024-06-11T16:23:38.873Z", + "isCancelled": false, + "start": "2024-06-20T19:00:00.000Z", + "end": "2024-06-20T20:00:00.000Z", + "category": "special", + "body": "Firearm Prohibitors and Records Improvement Task Force Meeting:\n\n20 ILCS 3930/7.9\n\nThursday, June 20, 2024, 2:00 pm \u2013 3:00 pm\n\nAccessible via WebEx Video Conference/Teleconference:", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1382", + "formats": null, + "size": 68.11, + "name": "Firearm Prohibitors Records Improvement TF Agenda June 20 2024 .pdf", + "ext": ".pdf", + "url": "/uploads/Firearm_Prohibitors_Records_Improvement_TF_Agenda_June_20_2024_3982263a28.pdf", + "updated_at": "2024-06-11T16:23:28.496Z", + "created_at": "2024-06-11T16:23:28.405Z", + "hash": "Firearm_Prohibitors_Records_Improvement_TF_Agenda_June_20_2024_3982263a28", + "__typename": "UploadFile" + }, + { + "id": "1431", + "formats": null, + "size": 75.21, + "name": "Firearm Prohibitor And Records Improvement Minutes June 20, 2024 KA SH.pdf", + "ext": ".pdf", + "url": "/uploads/Firearm_Prohibitor_And_Records_Improvement_Minutes_June_20_2024_KA_SH_a0d3a2324d.pdf", + "updated_at": "2024-07-10T13:36:32.932Z", + "created_at": "2024-07-10T13:36:32.897Z", + "hash": "Firearm_Prohibitor_And_Records_Improvement_Minutes_June_20_2024_KA_SH_a0d3a2324d", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "193", + "title": "Budget Committee Meeting June 20, 2024", + "slug": "budget-committee-meeting-june-20-2024", + "summary": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, June 20, 2024 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. 555 W. Monroe\nLincoln Room - 4th Floor\nChicago, Illinois 60661\n\n2. ICJIA Offices\n524 South 2nd Street, Suite 220\nSpringfield, Illinois 62706", + "created_at": "2024-06-13T16:30:12.338Z", + "updated_at": "2024-06-27T16:34:56.729Z", + "published_at": "2024-06-13T16:30:16.768Z", + "isCancelled": false, + "start": "2024-06-20T15:00:00.000Z", + "end": "2024-06-20T17:00:00.000Z", + "category": "budget", + "body": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, June 20, 2024 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. 555 W. Monroe\nLincoln Room - 4th Floor\nChicago, Illinois 60661\n\n2. ICJIA Offices\n524 South 2nd Street, Suite 220\nSpringfield, Illinois 62706", + "posts": [], + "events": [], + "tags": [ + { + "title": "Funding", + "slug": "funding", + "__typename": "Tag" + }, + { + "title": "Community", + "slug": "community", + "__typename": "Tag" + }, + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "1390", + "formats": null, + "size": 185.46, + "name": "Budget Committee Agenda 062024.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Agenda_062024_1ff8099b98.pdf", + "updated_at": "2024-06-13T16:29:23.345Z", + "created_at": "2024-06-13T16:29:23.318Z", + "hash": "Budget_Committee_Agenda_062024_1ff8099b98", + "__typename": "UploadFile" + }, + { + "id": "1395", + "formats": null, + "size": 8075.14, + "name": "Budget Committee Materials 062024.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_062024_62ac4a2d7a.pdf", + "updated_at": "2024-06-24T14:27:23.006Z", + "created_at": "2024-06-24T14:27:22.975Z", + "hash": "Budget_Committee_Materials_062024_62ac4a2d7a", + "__typename": "UploadFile" + }, + { + "id": "1418", + "formats": null, + "size": 172.65, + "name": "Budget Committee Summary 062024.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_062024_1b87f980c5.pdf", + "updated_at": "2024-06-27T20:41:37.190Z", + "created_at": "2024-06-27T16:34:54.040Z", + "hash": "Budget_Committee_Summary_062024_1b87f980c5", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "190", + "title": "DOMESTIC VIOLENCE PRETRIAL PRACTICES WORKING GROUP: June 14, 2024", + "slug": "domestic-violence-pretrial-practices-working-group-june-14-2024", + "summary": "DOMESTIC VIOLENCE PRETRIAL PRACTICES\nWORKING GROUP", + "created_at": "2024-05-31T17:45:08.745Z", + "updated_at": "2024-07-11T13:44:11.010Z", + "published_at": "2024-05-31T17:45:10.546Z", + "isCancelled": false, + "start": "2024-06-14T14:00:00.000Z", + "end": "2024-06-14T15:00:00.000Z", + "category": "special", + "body": "DOMESTIC VIOLENCE PRETRIAL PRACTICES\nWORKING GROUP June 14, 2024,\n9:00 AM-10:00 AM\nLocation:\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1371", + "formats": null, + "size": 83.68, + "name": "DVPT Agenda June 14 2024.pdf", + "ext": ".pdf", + "url": "/uploads/DVPT_Agenda_June_14_2024_0f132c6066.pdf", + "updated_at": "2024-05-31T17:44:52.062Z", + "created_at": "2024-05-31T17:44:52.037Z", + "hash": "DVPT_Agenda_June_14_2024_0f132c6066", + "__typename": "UploadFile" + }, + { + "id": "1433", + "formats": null, + "size": 78.52, + "name": "DOMESTIC VIOLENCE PRETRIAL WORKING GROUP Meeting MINUTES v.2 KA 6.14.24.pdf", + "ext": ".pdf", + "url": "/uploads/DOMESTIC_VIOLENCE_PRETRIAL_WORKING_GROUP_Meeting_MINUTES_v_2_KA_6_14_24_c2c9ac12e4.pdf", + "updated_at": "2024-07-11T13:44:07.236Z", + "created_at": "2024-07-11T13:44:07.203Z", + "hash": "DOMESTIC_VIOLENCE_PRETRIAL_WORKING_GROUP_Meeting_MINUTES_v_2_KA_6_14_24_c2c9ac12e4", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "192", + "title": "Authority Board Meeting: June 13, 2024", + "slug": "authority-board-meeting-june-13-2024", + "summary": "**Authority Board Meeting**\n\nThursday, June 13, 2024\n\n10:00 a.m. to 12:00 p.m.\n\nIllinois Criminal Justice Information Authority\n\n\n**Location:**\n\nVia Webex Video Conference/Teleconference\n\nChicago: 160 N La Salle St Room: N505\n\nSpringfield: 524 S. 2nd Street, Suite 220", + "created_at": "2024-06-11T16:49:03.228Z", + "updated_at": "2024-06-11T16:51:16.722Z", + "published_at": "2024-06-11T16:49:07.172Z", + "isCancelled": false, + "start": "2024-06-13T15:00:00.000Z", + "end": "2024-06-13T17:00:00.000Z", + "category": "board", + "body": "**Authority Board Meeting**\n\nThursday, June 13, 2024\n\n10:00 a.m. to 12:00 p.m.\n\nIllinois Criminal Justice Information Authority\n\n\n**Location:**\n\nVia Webex Video Conference/Teleconference\n\nChicago: 160 N La Salle St Room: N505\n\nSpringfield: 524 S. 2nd Street, Suite 220", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1383", + "formats": null, + "size": 284.5, + "name": "Authority Board Agenda 6.13.2024 ddw.pdf", + "ext": ".pdf", + "url": "/uploads/Authority_Board_Agenda_6_13_2024_ddw_786cbe4944.pdf", + "updated_at": "2024-06-11T16:48:58.516Z", + "created_at": "2024-06-11T16:48:58.489Z", + "hash": "Authority_Board_Agenda_6_13_2024_ddw_786cbe4944", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "188", + "title": "CRIME REDUCTION TASK FORCE MEETING AGENDA : June 6,2024", + "slug": "crime-reduction-task-force-meeting-agenda-june-6-2024", + "summary": "CRIME REDUCTION TASK FORCE MEETING AGENDA Thursday June 6,2024,\n11:00 AM- 12:30 PM\n\nLocation:\nVia Webex Video Conference/Teleconference", + "created_at": "2024-05-30T20:15:42.187Z", + "updated_at": "2024-07-10T13:33:35.552Z", + "published_at": "2024-05-30T20:15:46.563Z", + "isCancelled": false, + "start": "2024-06-06T16:00:00.000Z", + "end": "2024-06-06T17:30:00.000Z", + "category": "special", + "body": "CRIME REDUCTION TASK FORCE MEETING AGENDA Thursday June 6,2024,\n11:00 AM- 12:30 PM\n\nLocation:\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1369", + "formats": null, + "size": 83.41, + "name": "Crime Reduction Task Force June 6 2024 KA Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/Crime_Reduction_Task_Force_June_6_2024_KA_Agenda_2ab26641ee.pdf", + "updated_at": "2024-05-30T20:15:38.665Z", + "created_at": "2024-05-30T20:15:38.637Z", + "hash": "Crime_Reduction_Task_Force_June_6_2024_KA_Agenda_2ab26641ee", + "__typename": "UploadFile" + }, + { + "id": "1430", + "formats": null, + "size": 124.25, + "name": "Crime Reduction Task Force Minutes June 6, 2024 KA SR.doc.pdf", + "ext": ".pdf", + "url": "/uploads/Crime_Reduction_Task_Force_Minutes_June_6_2024_KA_SR_doc_b21c0e14a6.pdf", + "updated_at": "2024-07-10T13:33:32.356Z", + "created_at": "2024-07-10T13:33:32.331Z", + "hash": "Crime_Reduction_Task_Force_Minutes_June_6_2024_KA_SR_doc_b21c0e14a6", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "189", + "title": "COLTON\u2019S TASK FORCE COMMITTEE MEETING: June 5, 2024", + "slug": "colton-s-task-force-committee-meeting-june-5-2024", + "summary": "COLTON\u2019S TASK FORCE COMMITTEE MEETING: June 5, 2024", + "created_at": "2024-05-31T17:43:30.814Z", + "updated_at": "2024-07-15T13:50:10.647Z", + "published_at": "2024-05-31T17:43:33.289Z", + "isCancelled": false, + "start": "2024-06-05T17:00:00.000Z", + "end": "2024-06-05T18:30:00.000Z", + "category": "special", + "body": "COLTON\u2019S TASK FORCE COMMITTEE MEETING\nJune 5, 2024\n12:00 PM-1:30 PM\nLocation:\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1370", + "formats": null, + "size": 50.9, + "name": "Colton's Task Force June 5 2024 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/Colton_s_Task_Force_June_5_2024_Agenda_ea62d0e560.pdf", + "updated_at": "2024-05-31T17:43:27.319Z", + "created_at": "2024-05-31T17:43:27.289Z", + "hash": "Colton_s_Task_Force_June_5_2024_Agenda_ea62d0e560", + "__typename": "UploadFile" + }, + { + "id": "1436", + "formats": null, + "size": 79.28, + "name": "Colton's Task Force June 5 2024 Minutes KA PY.pdf", + "ext": ".pdf", + "url": "/uploads/Colton_s_Task_Force_June_5_2024_Minutes_KA_PY_fc015f4c9e.pdf", + "updated_at": "2024-07-15T13:50:03.209Z", + "created_at": "2024-07-15T13:50:03.152Z", + "hash": "Colton_s_Task_Force_June_5_2024_Minutes_KA_PY_fc015f4c9e", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "187", + "title": "DOMESTIC VIOLENCE PRETRIAL PRACTICES WORKING GROUP: May 31, 2024", + "slug": "domestic-violence-pretrial-practices-working-group-may-31-2024", + "summary": "DOMESTIC VIOLENCE PRETRIAL PRACTICES WORKING GROUP May 31, 2024,\n10:00 AM-11:00 AM\n\nLocation:\nVia Webex Video Conference/Teleconference\n", + "created_at": "2024-05-24T20:17:41.510Z", + "updated_at": "2024-06-17T13:09:43.869Z", + "published_at": "2024-05-24T20:17:44.015Z", + "isCancelled": false, + "start": "2024-05-31T15:00:00.000Z", + "end": "2024-05-31T16:00:00.000Z", + "category": "special", + "body": "DOMESTIC VIOLENCE PRETRIAL PRACTICES WORKING GROUP May 31, 2024,\n10:00 AM-11:00 AM\n\nLocation:\nVia Webex Video Conference/Teleconference\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1365", + "formats": null, + "size": 83.61, + "name": "DVPT Agenda May 31 2024.pdf", + "ext": ".pdf", + "url": "/uploads/DVPT_Agenda_May_31_2024_898f77d63a.pdf", + "updated_at": "2024-05-24T20:17:27.640Z", + "created_at": "2024-05-24T20:17:27.609Z", + "hash": "DVPT_Agenda_May_31_2024_898f77d63a", + "__typename": "UploadFile" + }, + { + "id": "1392", + "formats": null, + "size": 66.31, + "name": "DOMESTIC VIOLENCE PRETRIAL WORKING GROUP Meeting MINUTES 5.31.24 KP.pdf", + "ext": ".pdf", + "url": "/uploads/DOMESTIC_VIOLENCE_PRETRIAL_WORKING_GROUP_Meeting_MINUTES_5_31_24_KP_7b7b5c65cf.pdf", + "updated_at": "2024-06-17T13:09:37.449Z", + "created_at": "2024-06-17T13:09:37.417Z", + "hash": "DOMESTIC_VIOLENCE_PRETRIAL_WORKING_GROUP_Meeting_MINUTES_5_31_24_KP_7b7b5c65cf", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "186", + "title": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE: May 29, 2024", + "slug": "missing-and-murdered-chicago-women-task-force-may-29-2024", + "summary": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE\nMay 29, 2024, 2:00 \u2013 3:30 p.m.\n\nLocation: Virtual through WebEx\n", + "created_at": "2024-05-22T13:32:00.685Z", + "updated_at": "2024-07-15T13:54:44.692Z", + "published_at": "2024-05-22T13:32:05.409Z", + "isCancelled": false, + "start": "2024-05-29T19:00:00.000Z", + "end": "2024-05-29T20:30:00.000Z", + "category": "special", + "body": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE\nMay 29, 2024, 2:00 \u2013 3:30 p.m.\n\nLocation: Virtual through WebEx\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1364", + "formats": null, + "size": 108.81, + "name": "Missing and Murdered Task Force Agenda Meeting May 29 2024 (003).pdf", + "ext": ".pdf", + "url": "/uploads/Missing_and_Murdered_Task_Force_Agenda_Meeting_May_29_2024_003_5755d3bb1e.pdf", + "updated_at": "2024-05-24T13:24:54.288Z", + "created_at": "2024-05-24T13:24:54.257Z", + "hash": "Missing_and_Murdered_Task_Force_Agenda_Meeting_May_29_2024_003_5755d3bb1e", + "__typename": "UploadFile" + }, + { + "id": "1432", + "formats": null, + "size": 194.46, + "name": "MISSING and MURDERED CHICAGO WOMEN TF Minutes May 29 2024 v.1 KA DE.pdf", + "ext": ".pdf", + "url": "/uploads/MISSING_and_MURDERED_CHICAGO_WOMEN_TF_Minutes_May_29_2024_v_1_KA_DE_478259227f.pdf", + "updated_at": "2024-07-10T19:12:58.183Z", + "created_at": "2024-07-10T19:12:58.146Z", + "hash": "MISSING_and_MURDERED_CHICAGO_WOMEN_TF_Minutes_May_29_2024_v_1_KA_DE_478259227f", + "__typename": "UploadFile" + }, + { + "id": "1437", + "formats": null, + "size": 243.1, + "name": "Missing Murdered internal-closed meeting June 6 2024_.pdf", + "ext": ".pdf", + "url": "/uploads/Missing_Murdered_internal_closed_meeting_June_6_2024_aa313b7878.pdf", + "updated_at": "2024-07-15T13:54:41.171Z", + "created_at": "2024-07-15T13:54:41.136Z", + "hash": "Missing_Murdered_internal_closed_meeting_June_6_2024_aa313b7878", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "185", + "title": "CRIME REDUCTION TASK FORCE MEETING AGENDA: May 29 , 2024", + "slug": "crime-reduction-task-force-meeting-agenda-may-29-2024", + "summary": "CRIME REDUCTION TASK FORCE MEETING AGENDA \nWednesday May 29 , 2024, 12:30 PM- 2:00 PM\n\nLocation:\nVia Webex Video Conference/Teleconference\n", + "created_at": "2024-05-20T14:38:46.509Z", + "updated_at": "2024-05-30T20:11:28.771Z", + "published_at": "2024-05-20T14:40:53.200Z", + "isCancelled": false, + "start": "2024-05-29T17:30:00.000Z", + "end": "2024-05-29T19:00:00.000Z", + "category": "special", + "body": "**Rescheduled**\n\nCRIME REDUCTION TASK FORCE MEETING AGENDA \nWednesday May 29 , 2024, 12:30 PM- 2:00 PM\n\nLocation:\nVia Webex Video Conference/Teleconference\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1357", + "formats": null, + "size": 83.38, + "name": "Crime Reduction Task Force May 29 2024 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/Crime_Reduction_Task_Force_May_29_2024_Agenda_08914f1e0f.pdf", + "updated_at": "2024-05-20T14:38:42.841Z", + "created_at": "2024-05-20T14:38:42.809Z", + "hash": "Crime_Reduction_Task_Force_May_29_2024_Agenda_08914f1e0f", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "183", + "title": "Justice Assistance Grant Ad Hoc Committee: May 21, 2024", + "slug": "justice-assistance-grant-ad-hoc-committee-may-21-2024", + "summary": "Justice Assistance Grant Ad Hoc Committee\n\nMay 21, 2024\n2:00 p.m. \u2013 3:00 p.m.\nIllinois Criminal Justice Information Authority \n \nLocation: \nVia Webex Video Conference/Teleconference \n", + "created_at": "2024-05-14T19:44:04.354Z", + "updated_at": "2024-05-14T19:46:11.594Z", + "published_at": "2024-05-14T19:44:06.862Z", + "isCancelled": false, + "start": "2024-05-21T19:00:00.000Z", + "end": "2024-05-21T20:00:00.000Z", + "category": "special", + "body": "Justice Assistance Grant Ad Hoc Committee\n\nMay 21, 2024\n2:00 p.m. \u2013 3:00 p.m.\nIllinois Criminal Justice Information Authority \n \nLocation: \nVia Webex Video Conference/Teleconference \n\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1344", + "formats": null, + "size": 86.78, + "name": "Agenda JAG Ad Hoc 5-21-24.docx", + "ext": ".docx", + "url": "/uploads/Agenda_JAG_Ad_Hoc_5_21_24_92bb13b204.docx", + "updated_at": "2024-05-14T19:44:00.660Z", + "created_at": "2024-05-14T19:44:00.633Z", + "hash": "Agenda_JAG_Ad_Hoc_5_21_24_92bb13b204", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "184", + "title": "ILLINOIS DOMESTIC VIOLENCE FATALITY REVIEW COMMITTEE: May 21, 2024", + "slug": "illinois-domestic-violence-fatality-review-committee-may-21-2024", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review\nCommittee will conduct a public meeting on 5/21/2024, at 1:00 pm by Teams. All\ninterested parties are invited to attend and will be given the opportunity for public\ncomment.", + "created_at": "2024-05-16T14:56:23.950Z", + "updated_at": "2024-05-16T14:56:26.056Z", + "published_at": "2024-05-16T14:56:25.975Z", + "isCancelled": false, + "start": "2024-05-21T18:00:00.000Z", + "end": "2024-05-21T19:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review\nCommittee will conduct a public meeting on 5/21/2024, at 1:00 pm by Teams. All\ninterested parties are invited to attend and will be given the opportunity for public\ncomment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1347", + "formats": null, + "size": 113.17, + "name": "DVFRC Agenda 5.21.2024_FINAL.pdf", + "ext": ".pdf", + "url": "/uploads/DVFRC_Agenda_5_21_2024_FINAL_33b5cf9658.pdf", + "updated_at": "2024-05-16T14:56:20.945Z", + "created_at": "2024-05-16T14:56:20.911Z", + "hash": "DVFRC_Agenda_5_21_2024_FINAL_33b5cf9658", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "181", + "title": "Firearm Prohibitors and Records Improvement Task Force Meeting: May 16, 2024", + "slug": "firearm-prohibitors-and-records-improvement-task-force-meeting-may-16-2024", + "summary": "Firearm Prohibitors and Records Improvement Task Force Meeting:\n20 ILCS 3930/7.9\nThursday, May 16, 2024, 2:00 pm \u2013 3:00 pm", + "created_at": "2024-05-03T12:39:43.951Z", + "updated_at": "2024-06-20T19:31:47.320Z", + "published_at": "2024-05-03T12:39:46.301Z", + "isCancelled": false, + "start": "2024-05-16T19:00:00.000Z", + "end": "2024-05-16T20:00:00.000Z", + "category": "special", + "body": "Firearm Prohibitors and Records Improvement Task Force Meeting:\n\n20 ILCS 3930/7.9\n \nThursday, May 16, 2024, 2:00 pm \u2013 3:00 pm\n\nAccessible via WebEx Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1338", + "formats": null, + "size": 68.96, + "name": "Firearm Prohibitors Records Improvement TF Agenda May 16 2024 .pdf", + "ext": ".pdf", + "url": "/uploads/Firearm_Prohibitors_Records_Improvement_TF_Agenda_May_16_2024_ab6f355da9.pdf", + "updated_at": "2024-05-03T12:39:37.653Z", + "created_at": "2024-05-03T12:39:37.606Z", + "hash": "Firearm_Prohibitors_Records_Improvement_TF_Agenda_May_16_2024_ab6f355da9", + "__typename": "UploadFile" + }, + { + "id": "1394", + "formats": null, + "size": 68.91, + "name": "Firearm Prohibitor And Records Improvement Minutes May 16 2024 KA SH.pdf", + "ext": ".pdf", + "url": "/uploads/Firearm_Prohibitor_And_Records_Improvement_Minutes_May_16_2024_KA_SH_7b27ad52a3.pdf", + "updated_at": "2024-06-20T19:31:43.053Z", + "created_at": "2024-06-20T19:31:43.026Z", + "hash": "Firearm_Prohibitor_And_Records_Improvement_Minutes_May_16_2024_KA_SH_7b27ad52a3", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "182", + "title": "Violence Prevention Ad Hoc Committee: May 9, 2024", + "slug": "violence-prevention-ad-hoc-committee-may-9-2024", + "summary": "Public notice is hereby given that the ICJIA Violence Prevention Ad Hoc Committee will conduct a public meeting on May 9, 2024, at 10:00 A.M. Call-in information is available on the agenda. All interested parties are invited to attend and will be given the opportunity for public comment. ", + "created_at": "2024-05-03T18:35:08.724Z", + "updated_at": "2024-05-03T18:35:10.432Z", + "published_at": "2024-05-03T18:35:10.371Z", + "isCancelled": false, + "start": "2024-05-09T15:00:00.000Z", + "end": "2024-05-09T17:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the ICJIA Violence Prevention Ad Hoc Committee will conduct a public meeting on May 9, 2024, at 10:00 A.M. \n\nCall-in information is available on the agenda. All interested parties are invited to attend and will be given the opportunity for public comment. ", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1340", + "formats": null, + "size": 143.77, + "name": "ICJIA Violence Prevention Ad Hoc Committee Meeting 5-9-24.pdf", + "ext": ".pdf", + "url": "/uploads/ICJIA_Violence_Prevention_Ad_Hoc_Committee_Meeting_5_9_24_ef4cb3fe51.pdf", + "updated_at": "2024-05-03T18:35:00.657Z", + "created_at": "2024-05-03T18:35:00.622Z", + "hash": "ICJIA_Violence_Prevention_Ad_Hoc_Committee_Meeting_5_9_24_ef4cb3fe51", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "178", + "title": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE: April 22, 2024", + "slug": "missing-and-murdered-chicago-women-task-force-april-22-2024", + "summary": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE\nMonday, April 22, 2024, 12:30pm \u2013 2:00pm\n\nLocation: Cook County Medical Examiner\u2019s Office, 2121 W. Harrison, Chicago, IL \n\nAlso, via WebEx Video Conference/Teleconference\n", + "created_at": "2024-04-10T19:46:19.810Z", + "updated_at": "2024-05-29T20:29:03.527Z", + "published_at": "2024-04-10T19:46:26.890Z", + "isCancelled": false, + "start": "2024-04-22T17:30:00.000Z", + "end": "2024-04-22T19:00:00.000Z", + "category": "special", + "body": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE\nMonday, April 22, 2024, 12:30pm \u2013 2:00pm\n\nLocation: Cook County Medical Examiner\u2019s Office, 2121 W. Harrison, Chicago, IL \n\nAlso, via WebEx Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1299", + "formats": null, + "size": 58.79, + "name": "Missing and Murdered Task Force Agenda April 22 2024.pdf", + "ext": ".pdf", + "url": "/uploads/Missing_and_Murdered_Task_Force_Agenda_April_22_2024_bb3f724964.pdf", + "updated_at": "2024-04-10T19:46:15.237Z", + "created_at": "2024-04-10T19:46:15.208Z", + "hash": "Missing_and_Murdered_Task_Force_Agenda_April_22_2024_bb3f724964", + "__typename": "UploadFile" + }, + { + "id": "1367", + "formats": null, + "size": 143.4, + "name": "MISSING and MURDERED CHICAGO WOMEN TF Minutes APRIL 22 2024 KA DE.pdf", + "ext": ".pdf", + "url": "/uploads/MISSING_and_MURDERED_CHICAGO_WOMEN_TF_Minutes_APRIL_22_2024_KA_DE_dc9db4417c.pdf", + "updated_at": "2024-05-29T20:29:00.424Z", + "created_at": "2024-05-29T20:29:00.403Z", + "hash": "MISSING_and_MURDERED_CHICAGO_WOMEN_TF_Minutes_APRIL_22_2024_KA_DE_dc9db4417c", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "180", + "title": "Firearm Prohibitors and Records Improvement Task Force Meeting: April 18, 2024", + "slug": "firearm-prohibitors-and-records-improvement-task-force-meeting-april-18-2024", + "summary": "Firearm Prohibitors and Records Improvement Task Force Meeting:\n20 ILCS 3930/7.9\nThursday, April 18, 2024, 2:00 pm \u2013 3:00 pm\n\nAccessible via WebEx Video Conference/Teleconference\n", + "created_at": "2024-04-15T13:04:16.568Z", + "updated_at": "2024-05-16T21:19:29.540Z", + "published_at": "2024-04-15T13:04:18.212Z", + "isCancelled": false, + "start": "2024-04-18T19:00:00.000Z", + "end": "2024-04-18T20:00:00.000Z", + "category": "special", + "body": "Firearm Prohibitors and Records Improvement Task Force Meeting:\n20 ILCS 3930/7.9\nThursday, April 18, 2024, 2:00 pm \u2013 3:00 pm\n\nAccessible via WebEx Video Conference/Teleconference\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1302", + "formats": null, + "size": 68.56, + "name": "Firearm Prohibitors Records Improvement TF Agenda April 18 2024 .pdf", + "ext": ".pdf", + "url": "/uploads/Firearm_Prohibitors_Records_Improvement_TF_Agenda_April_18_2024_411695f9bb.pdf", + "updated_at": "2024-04-15T13:05:31.728Z", + "created_at": "2024-04-15T13:05:31.706Z", + "hash": "Firearm_Prohibitors_Records_Improvement_TF_Agenda_April_18_2024_411695f9bb", + "__typename": "UploadFile" + }, + { + "id": "1349", + "formats": null, + "size": 74.72, + "name": "Firearm Prohibitor And Records Improvement Minutes APRIL 18_ 2024 KA SH.pdf", + "ext": ".pdf", + "url": "/uploads/Firearm_Prohibitor_And_Records_Improvement_Minutes_APRIL_18_2024_KA_SH_b525d820ed.pdf", + "updated_at": "2024-05-16T21:19:12.111Z", + "created_at": "2024-05-16T21:19:12.088Z", + "hash": "Firearm_Prohibitor_And_Records_Improvement_Minutes_APRIL_18_2024_KA_SH_b525d820ed", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "179", + "title": "Budget Committee Meeting April 18, 2024", + "slug": "budget-committee-meeting-april-18-2024", + "summary": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, April 18, 2024 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. 555 W. Monroe, Lincoln Room - 4th Floor Chicago, Illinois 60661\n\n2. ICJIA Offices\n524 South 2nd Street, Suite 220\nSpringfield, Illinois 62706", + "created_at": "2024-04-11T22:07:56.964Z", + "updated_at": "2024-06-27T16:36:51.928Z", + "published_at": "2024-04-11T22:08:01.834Z", + "isCancelled": false, + "start": "2024-04-18T15:00:00.000Z", + "end": "2024-04-18T17:00:00.000Z", + "category": "budget", + "body": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, April 18, 2024 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. 555 W. Monroe, Lincoln Room - 4th Floor Chicago, Illinois 60661\n\n2. ICJIA Offices\n524 South 2nd Street, Suite 220\nSpringfield, Illinois 62706", + "posts": [], + "events": [], + "tags": [ + { + "title": "Funding", + "slug": "funding", + "__typename": "Tag" + }, + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "1301", + "formats": null, + "size": 179.15, + "name": "Budget Committee Agenda 041824.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Agenda_041824_f9b57f837e.pdf", + "updated_at": "2024-04-11T22:06:50.394Z", + "created_at": "2024-04-11T22:06:50.369Z", + "hash": "Budget_Committee_Agenda_041824_f9b57f837e", + "__typename": "UploadFile" + }, + { + "id": "1308", + "formats": null, + "size": 2904.11, + "name": "Budget Committee Materials 041824.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_041824_f8df98d730.pdf", + "updated_at": "2024-04-22T14:02:43.992Z", + "created_at": "2024-04-22T14:02:43.964Z", + "hash": "Budget_Committee_Materials_041824_f8df98d730", + "__typename": "UploadFile" + }, + { + "id": "1336", + "formats": null, + "size": 190.44, + "name": "Budget Committee Summary 041824.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_041824_973a8945ef.pdf", + "updated_at": "2024-05-01T14:42:09.472Z", + "created_at": "2024-05-01T14:42:09.436Z", + "hash": "Budget_Committee_Summary_041824_973a8945ef", + "__typename": "UploadFile" + }, + { + "id": "1419", + "formats": null, + "size": 200.46, + "name": "Budget Committee Meeting Minutes 041824.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Meeting_Minutes_041824_be634e90ac.pdf", + "updated_at": "2024-06-27T20:41:13.294Z", + "created_at": "2024-06-27T16:36:49.103Z", + "hash": "Budget_Committee_Meeting_Minutes_041824_be634e90ac", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "177", + "title": "Authority Board Meeting: April 11, 2024", + "slug": "authority-board-meeting-april-11-2024", + "summary": "Authority Board Meeting \nThursday, April 11, 2024\n 10:00 a.m. to 12:00 p.m. \nIllinois Criminal Justice Information Authority \n \nLocation: \nVia Webex Video Conference/Teleconference \n\nChicago: 555 W. Monroe Room: Lincoln Room 4th floor\nSpringfield: 524 S. 2nd Street, Suite 220\n", + "created_at": "2024-04-09T15:34:03.125Z", + "updated_at": "2024-04-09T15:35:22.278Z", + "published_at": "2024-04-09T15:34:06.830Z", + "isCancelled": false, + "start": "2024-04-11T15:00:00.000Z", + "end": "2024-04-11T17:00:00.000Z", + "category": "board", + "body": "Authority Board Meeting \nThursday, April 11, 2024\n 10:00 a.m. to 12:00 p.m. \nIllinois Criminal Justice Information Authority \n \nLocation: \nVia Webex Video Conference/Teleconference \n\nChicago: 555 W. Monroe Room: Lincoln Room 4th floor\nSpringfield: 524 S. 2nd Street, Suite 220\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1298", + "formats": null, + "size": 85.21, + "name": "Authority Board Agenda 4.11.2024 ddw.docx", + "ext": ".docx", + "url": "/uploads/Authority_Board_Agenda_4_11_2024_ddw_3a5d015284.docx", + "updated_at": "2024-04-09T15:33:59.244Z", + "created_at": "2024-04-09T15:33:59.193Z", + "hash": "Authority_Board_Agenda_4_11_2024_ddw_3a5d015284", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "175", + "title": "DOMESTIC VIOLENCE PRETRIAL PRACTICES WORKING GROUP: APRIL 5, 2024", + "slug": "domestic-violence-pretrial-practices-working-group-april-5-2024", + "summary": "DOMESTIC VIOLENCE PRETRIAL PRACTICES WORKING GROUP APRIL 5, 2024,\n10:00 AM-11:00 AM\n\nLocation:\nVia Webex Video Conference/Teleconference\n", + "created_at": "2024-03-25T16:43:18.670Z", + "updated_at": "2024-05-31T17:52:50.309Z", + "published_at": "2024-03-25T16:43:31.079Z", + "isCancelled": false, + "start": "2024-04-05T15:00:00.000Z", + "end": "2024-04-05T16:00:00.000Z", + "category": "special", + "body": "DOMESTIC VIOLENCE PRETRIAL PRACTICES WORKING GROUP APRIL 5, 2024,\n10:00 AM-11:00 AM\n\nLocation:\nVia Webex Video Conference/Teleconference\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1285", + "formats": null, + "size": 83.67, + "name": "DVPT Agenda April 5 2024.pdf", + "ext": ".pdf", + "url": "/uploads/DVPT_Agenda_April_5_2024_e9d541bb12.pdf", + "updated_at": "2024-03-26T19:49:44.461Z", + "created_at": "2024-03-26T19:49:44.443Z", + "hash": "DVPT_Agenda_April_5_2024_e9d541bb12", + "__typename": "UploadFile" + }, + { + "id": "1372", + "formats": null, + "size": 67.1, + "name": "DOMESTIC VIOLENCE PRETRIAL WORKING GROUP Meeting MINUTES 4.5.24 KA KP (1).pdf", + "ext": ".pdf", + "url": "/uploads/DOMESTIC_VIOLENCE_PRETRIAL_WORKING_GROUP_Meeting_MINUTES_4_5_24_KA_KP_1_6105cf66f6.pdf", + "updated_at": "2024-05-31T17:52:46.495Z", + "created_at": "2024-05-31T17:52:46.468Z", + "hash": "DOMESTIC_VIOLENCE_PRETRIAL_WORKING_GROUP_Meeting_MINUTES_4_5_24_KA_KP_1_6105cf66f6", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "176", + "title": "COLTON\u2019S TASK FORCE COMMITTEE MEETING: April 3, 2024", + "slug": "colton-s-task-force-committee-meeting-april-3-2024", + "summary": "COLTON\u2019S TASK FORCE COMMITTEE MEETING\nApril 3, 2024\n12:00 PM-1:30 PM\n\nLocation:\nVia Webex Video Conference/Teleconference", + "created_at": "2024-03-26T20:26:04.758Z", + "updated_at": "2024-06-06T12:54:31.610Z", + "published_at": "2024-03-26T20:48:29.125Z", + "isCancelled": false, + "start": "2024-04-03T17:00:00.000Z", + "end": "2024-04-03T18:30:00.000Z", + "category": "special", + "body": "COLTON\u2019S TASK FORCE COMMITTEE MEETING\nApril 3, 2024\n12:00 PM-1:30 PM\n\nLocation:\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1286", + "formats": null, + "size": 50.77, + "name": "Colton's Task Force April 3 2024 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/Colton_s_Task_Force_April_3_2024_Agenda_d957d733ee.pdf", + "updated_at": "2024-03-26T20:26:01.527Z", + "created_at": "2024-03-26T20:26:01.503Z", + "hash": "Colton_s_Task_Force_April_3_2024_Agenda_d957d733ee", + "__typename": "UploadFile" + }, + { + "id": "1378", + "formats": null, + "size": 83.65, + "name": "Colton's Task Force April 3 2024 Minutes v2 KA .pdf", + "ext": ".pdf", + "url": "/uploads/Colton_s_Task_Force_April_3_2024_Minutes_v2_KA_56c376f637.pdf", + "updated_at": "2024-06-06T12:54:28.120Z", + "created_at": "2024-06-06T12:54:28.090Z", + "hash": "Colton_s_Task_Force_April_3_2024_Minutes_v2_KA_56c376f637", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "174", + "title": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE: March 25, 2024", + "slug": "missing-and-murdered-chicago-women-task-force-march-25-2024", + "summary": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE\n\nMonday, March 25, 2024, 2:30pm \u2013 4:00pm\n\nLocation: Cook County Medical Examiner\u2019s Office, 2121 W. Harrison, Chicago, IL \n\nAlso, via WebEx Video Conference/Teleconference", + "created_at": "2024-03-18T17:39:34.484Z", + "updated_at": "2024-05-29T20:27:21.477Z", + "published_at": "2024-03-18T17:39:36.752Z", + "isCancelled": false, + "start": "2024-03-25T19:30:00.000Z", + "end": "2024-03-25T21:00:00.000Z", + "category": "special", + "body": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE\n\nMonday, March 25, 2024, 2:30pm \u2013 4:00pm\n\nLocation: Cook County Medical Examiner\u2019s Office, 2121 W. Harrison, Chicago, IL \n\nAlso, via WebEx Video Conference/Teleconference\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1278", + "formats": null, + "size": 54.89, + "name": "Missing and Murdered Task Force Agenda 03-25-24.pdf", + "ext": ".pdf", + "url": "/uploads/Missing_and_Murdered_Task_Force_Agenda_03_25_24_0c6afad899.pdf", + "updated_at": "2024-03-18T17:38:47.704Z", + "created_at": "2024-03-18T17:38:47.671Z", + "hash": "Missing_and_Murdered_Task_Force_Agenda_03_25_24_0c6afad899", + "__typename": "UploadFile" + }, + { + "id": "1366", + "formats": null, + "size": 149.1, + "name": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE Minutes March 25 2024 KA DE.pdf", + "ext": ".pdf", + "url": "/uploads/MISSING_AND_MURDERED_CHICAGO_WOMEN_TASK_FORCE_Minutes_March_25_2024_KA_DE_e15274f6c1.pdf", + "updated_at": "2024-05-29T20:27:15.882Z", + "created_at": "2024-05-29T20:27:15.846Z", + "hash": "MISSING_AND_MURDERED_CHICAGO_WOMEN_TASK_FORCE_Minutes_March_25_2024_KA_DE_e15274f6c1", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "173", + "title": "Firearm Prohibitors and Records Improvement Task Force Meeting: March 21, 2024", + "slug": "firearm-prohibitors-and-records-improvement-task-force-meeting-march-21-2024", + "summary": "Firearm Prohibitors and Records Improvement Task Force Meeting:\n20 ILCS 3930/7.9\nThursday, March 21, 2024, 2:00 pm \u2013 3:00 pm\n\nAccessible via WebEx Video Conference/Teleconference:\n", + "created_at": "2024-03-01T14:01:26.607Z", + "updated_at": "2024-05-03T13:14:52.115Z", + "published_at": "2024-03-01T14:01:31.771Z", + "isCancelled": false, + "start": "2024-03-21T19:00:00.000Z", + "end": "2024-03-21T20:00:00.000Z", + "category": "special", + "body": "Firearm Prohibitors and Records Improvement Task Force Meeting:\n20 ILCS 3930/7.9\nThursday, March 21, 2024, 2:00 pm \u2013 3:00 pm\n\nAccessible via WebEx Video Conference/Teleconference:\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1262", + "formats": null, + "size": 68.35, + "name": "Firearm Prohibitors Records Improvement TF Agenda March 21, 2024 .pdf", + "ext": ".pdf", + "url": "/uploads/Firearm_Prohibitors_Records_Improvement_TF_Agenda_March_21_2024_c08bc77afb.pdf", + "updated_at": "2024-03-01T14:01:23.298Z", + "created_at": "2024-03-01T14:01:23.273Z", + "hash": "Firearm_Prohibitors_Records_Improvement_TF_Agenda_March_21_2024_c08bc77afb", + "__typename": "UploadFile" + }, + { + "id": "1339", + "formats": null, + "size": 75.61, + "name": "Firearm Prohibitor And Records Improvement Minutes March 21_ 2024 KA SH final (002).pdf", + "ext": ".pdf", + "url": "/uploads/Firearm_Prohibitor_And_Records_Improvement_Minutes_March_21_2024_KA_SH_final_002_f6839abf4d.pdf", + "updated_at": "2024-05-03T13:14:45.949Z", + "created_at": "2024-05-03T13:14:45.923Z", + "hash": "Firearm_Prohibitor_And_Records_Improvement_Minutes_March_21_2024_KA_SH_final_002_f6839abf4d", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "172", + "title": "Firearm Prohibitors and Records Improvement Task Force Meeting: March 4, 2024", + "slug": "firearm-prohibitors-and-records-improvement-task-force-meeting-march-4-2024", + "summary": "Illinois Criminal Justice Information Authority\nFirearm Prohibitors and Records Improvement Task Force Meeting:\n20 ILCS 3930/7.9\nThursday, March 4, 2024, 2:00 pm \u2013 3:00 pm\n\nAccessible via WebEx Video Conference/Teleconference:", + "created_at": "2024-02-29T21:36:46.448Z", + "updated_at": "2024-03-06T20:28:57.409Z", + "published_at": "2024-02-29T21:36:50.603Z", + "isCancelled": false, + "start": "2024-03-04T20:00:00.000Z", + "end": "2024-03-04T21:00:00.000Z", + "category": "special", + "body": "Illinois Criminal Justice Information Authority\nFirearm Prohibitors and Records Improvement Task Force Meeting:\n20 ILCS 3930/7.9\nThursday, March 4, 2024, 2:00 pm \u2013 3:00 pm\n\nAccessible via WebEx Video Conference/Teleconference:", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1261", + "formats": null, + "size": 68.39, + "name": "Firearm Prohibitors Records Improvement TF Agenda V3 March 4, 2024 .pdf", + "ext": ".pdf", + "url": "/uploads/Firearm_Prohibitors_Records_Improvement_TF_Agenda_V3_March_4_2024_b63f389c61.pdf", + "updated_at": "2024-02-29T21:36:38.926Z", + "created_at": "2024-02-29T21:36:38.900Z", + "hash": "Firearm_Prohibitors_Records_Improvement_TF_Agenda_V3_March_4_2024_b63f389c61", + "__typename": "UploadFile" + }, + { + "id": "1272", + "formats": null, + "size": 59.2, + "name": "Firearms Prohibitors Taskforce Internal Planning Meeting Minutes March 4 2024.pdf", + "ext": ".pdf", + "url": "/uploads/Firearms_Prohibitors_Taskforce_Internal_Planning_Meeting_Minutes_March_4_2024_271fa79677.pdf", + "updated_at": "2024-03-06T20:28:43.576Z", + "created_at": "2024-03-06T20:28:43.548Z", + "hash": "Firearms_Prohibitors_Taskforce_Internal_Planning_Meeting_Minutes_March_4_2024_271fa79677", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "171", + "title": "DOMESTIC VIOLENCE PRE-TRIAL PRACTICES: Mar 1, 2024", + "slug": "domestic-violence-pre-trial-practices-mar-1-2024", + "summary": "DOMESTIC VIOLENCE PRE-TRIAL PRACTICES\nWORKING GROUP March 1, 2024,\n10:00 AM-11:00 AM\nLocation:\nVia Webex Video Conference/Teleconference", + "created_at": "2024-02-26T22:50:00.030Z", + "updated_at": "2024-02-26T22:50:02.217Z", + "published_at": "2024-02-26T22:50:02.174Z", + "isCancelled": false, + "start": "2024-03-01T16:00:00.000Z", + "end": "2024-03-01T17:00:00.000Z", + "category": "special", + "body": "DOMESTIC VIOLENCE PRE-TRIAL PRACTICES\nWORKING GROUP March 1, 2024,\n10:00 AM-11:00 AM\nLocation:\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1248", + "formats": null, + "size": 83.54, + "name": "DVPT Agenda March 1 2024.pdf", + "ext": ".pdf", + "url": "/uploads/DVPT_Agenda_March_1_2024_103b7c2e59.pdf", + "updated_at": "2024-02-26T22:49:53.972Z", + "created_at": "2024-02-26T22:49:53.948Z", + "hash": "DVPT_Agenda_March_1_2024_103b7c2e59", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "169", + "title": "COLTON\u2019S TASK FORCE WRITING GROUP MEETING: February 29, 2023", + "slug": "colton-s-task-force-writing-group-meeting-february-29-2023", + "summary": "COLTON\u2019S TASK FORCE WRITING GROUP MEETING\nFebruary 29, 2023\n12:00 PM-1:30 PM\n\nLocation:\nVia Webex Video Conference/Teleconference\n", + "created_at": "2024-02-26T15:50:37.238Z", + "updated_at": "2024-02-26T15:53:15.100Z", + "published_at": "2024-02-26T15:53:15.047Z", + "isCancelled": false, + "start": "2024-02-29T18:00:00.000Z", + "end": "2024-02-29T19:30:00.000Z", + "category": "special", + "body": "COLTON\u2019S TASK FORCE WRITING GROUP MEETING\nFebruary 29, 2023\n12:00 PM-1:30 PM\n\nLocation:\nVia Webex Video Conference/Teleconference\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1243", + "formats": null, + "size": 146.36, + "name": "Colton's Task Force Writing Group February 29 2024 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/Colton_s_Task_Force_Writing_Group_February_29_2024_Agenda_32f4401624.pdf", + "updated_at": "2024-02-26T15:49:34.882Z", + "created_at": "2024-02-26T15:49:34.856Z", + "hash": "Colton_s_Task_Force_Writing_Group_February_29_2024_Agenda_32f4401624", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "170", + "title": "Authority Board Meeting: February 29, 2024", + "slug": "authority-board-meeting-february-29-2024", + "summary": "Authority Board Meeting \nThursday, February 29, 2024\n 10:00 a.m. to 12:00 p.m. \nIllinois Criminal Justice Information Authority \n \nLocation: \nVia Webex Video Conference/Teleconference \nChicago: Bilandic Building; 160 N. LaSalle Street Room N505\nSpringfield: 524 S. 2nd Street, 6th floor\n\n", + "created_at": "2024-02-26T20:55:15.563Z", + "updated_at": "2024-02-28T19:10:15.289Z", + "published_at": "2024-02-26T20:55:22.116Z", + "isCancelled": false, + "start": "2024-02-29T16:00:00.000Z", + "end": "2024-02-29T18:00:00.000Z", + "category": "board", + "body": "Authority Board Meeting \nThursday, February 29, 2024\n 10:00 a.m. to 12:00 p.m. \nIllinois Criminal Justice Information Authority \n \nLocation: \nVia Webex Video Conference/Teleconference \nChicago: Bilandic Building; 160 N. LaSalle Street Room N505\nSpringfield: 524 S. 2nd Street, 6th floor\n\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1253", + "formats": null, + "size": 49.42, + "name": "Authority Board Agenda 2.29.2024DW.docx", + "ext": ".docx", + "url": "/uploads/Authority_Board_Agenda_2_29_2024_DW_2e0e10c69d.docx", + "updated_at": "2024-02-28T19:07:46.196Z", + "created_at": "2024-02-28T19:07:46.132Z", + "hash": "Authority_Board_Agenda_2_29_2024_DW_2e0e10c69d", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "167", + "title": "CRIME REDUCTION TASK FORCE: Feb 26, 2024", + "slug": "crime-reduction-task-force-feb-26-2024", + "summary": "CRIME REDUCTION TASK FORCE MEETING\nAGENDA MONDAY February 26, 2024,\n12:30 PM- 2:30 PM\nLocation:\nVia Webex Video Conference/Teleconference", + "created_at": "2024-02-21T14:33:42.463Z", + "updated_at": "2024-06-06T16:29:42.174Z", + "published_at": "2024-02-21T14:33:43.697Z", + "isCancelled": false, + "start": "2024-02-26T18:30:00.000Z", + "end": "2024-02-26T20:30:00.000Z", + "category": "special", + "body": "CRIME REDUCTION TASK FORCE MEETING\nAGENDA MONDAY February 26, 2024,\n12:30 PM- 2:30 PM\nLocation:\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1235", + "formats": null, + "size": 83.78, + "name": "Crime Reduction Task Force Feburary 26 2024 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/Crime_Reduction_Task_Force_Feburary_26_2024_Agenda_132682183c.pdf", + "updated_at": "2024-02-21T14:33:36.326Z", + "created_at": "2024-02-21T14:33:12.878Z", + "hash": "Crime_Reduction_Task_Force_Feburary_26_2024_Agenda_132682183c", + "__typename": "UploadFile" + }, + { + "id": "1379", + "formats": null, + "size": 172.32, + "name": "Crime Reduction Task Force Minutes Feburary 26 2024 Edited KA__SR (002).pdf", + "ext": ".pdf", + "url": "/uploads/Crime_Reduction_Task_Force_Minutes_Feburary_26_2024_Edited_KA_SR_002_25be0898a6.pdf", + "updated_at": "2024-06-06T16:29:38.099Z", + "created_at": "2024-06-06T16:29:38.049Z", + "hash": "Crime_Reduction_Task_Force_Minutes_Feburary_26_2024_Edited_KA_SR_002_25be0898a6", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "168", + "title": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE: Feb 23, 2024", + "slug": "missing-and-murdered-chicago-women-task-force-feb-23-2024", + "summary": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE\nFriday, February 23, 2024, 2:30pm \u2013 4:00pm\nLocation: Via WebEx Video Conference/Teleconference:\nONLY VIRTUAL \u2013 NO IN-PERSON OPTION", + "created_at": "2024-02-21T14:44:11.170Z", + "updated_at": "2024-03-27T14:53:51.973Z", + "published_at": "2024-02-21T14:44:12.835Z", + "isCancelled": false, + "start": "2024-02-23T20:30:00.000Z", + "end": "2024-02-23T22:00:00.000Z", + "category": "special", + "body": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE\nFriday, February 23, 2024, 2:30pm \u2013 4:00pm\nLocation: Via WebEx Video Conference/Teleconference:\nONLY VIRTUAL \u2013 NO IN-PERSON OPTION", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1236", + "formats": null, + "size": 151.27, + "name": "Missing and Murdered Task Force Agenda_ 02-23-24 v4.pdf", + "ext": ".pdf", + "url": "/uploads/Missing_and_Murdered_Task_Force_Agenda_02_23_24_v4_c0696e761d.pdf", + "updated_at": "2024-02-21T14:44:05.808Z", + "created_at": "2024-02-21T14:44:05.786Z", + "hash": "Missing_and_Murdered_Task_Force_Agenda_02_23_24_v4_c0696e761d", + "__typename": "UploadFile" + }, + { + "id": "1289", + "formats": null, + "size": 146.16, + "name": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE Feb 23 2024 MR KA DE approved_.pdf", + "ext": ".pdf", + "url": "/uploads/MISSING_AND_MURDERED_CHICAGO_WOMEN_TASK_FORCE_Feb_23_2024_MR_KA_DE_approved_22766268a3.pdf", + "updated_at": "2024-03-27T14:53:48.358Z", + "created_at": "2024-03-27T14:53:48.332Z", + "hash": "MISSING_AND_MURDERED_CHICAGO_WOMEN_TASK_FORCE_Feb_23_2024_MR_KA_DE_approved_22766268a3", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "166", + "title": "Budget Committee Meeting February 22, 2024", + "slug": "budget-committee-meeting-february-22-2024", + "summary": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, December 14, 2023 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. Michael A. Bilandic Building\n160 N. LaSalle St., Room N505\nChicago, Illinois 60601\n\n2. Lincoln Tower Building\n524 S. 2nd Street, 6th Floor \n(Illinois Department of Public Health)\nSpringfield, Illinois 62701", + "created_at": "2024-02-16T21:56:41.721Z", + "updated_at": "2024-04-22T22:14:08.204Z", + "published_at": "2024-02-16T21:56:46.045Z", + "isCancelled": false, + "start": "2024-02-22T16:00:00.000Z", + "end": "2024-02-22T18:00:00.000Z", + "category": "budget", + "body": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, December 14, 2023 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. Michael A. Bilandic Building\n160 N. LaSalle St., Room N505\nChicago, Illinois 60601\n\n2. Lincoln Tower Building\n524 S. 2nd Street, 6th Floor \n(Illinois Department of Public Health)\nSpringfield, Illinois 62701", + "posts": [], + "events": [], + "tags": [ + { + "title": "Funding", + "slug": "funding", + "__typename": "Tag" + }, + { + "title": "Community", + "slug": "community", + "__typename": "Tag" + }, + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + }, + { + "title": "Restore, Reinvest, Renew (R3)", + "slug": "restore-reinvest-renew-r3", + "__typename": "Tag" + }, + { + "title": "Victim Services", + "slug": "victim-services", + "__typename": "Tag" + }, + { + "title": "i2i", + "slug": "i2i", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "1234", + "formats": null, + "size": 139.59, + "name": "DRAFT Agenda 022224.pdf", + "ext": ".pdf", + "url": "/uploads/DRAFT_Agenda_022224_d5daeb948d.pdf", + "updated_at": "2024-02-16T21:56:26.101Z", + "created_at": "2024-02-16T21:56:26.080Z", + "hash": "DRAFT_Agenda_022224_d5daeb948d", + "__typename": "UploadFile" + }, + { + "id": "1244", + "formats": null, + "size": 1752.84, + "name": "Budget Committee Materials 022224.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_022224_e6ad0dddcf.pdf", + "updated_at": "2024-02-26T17:04:14.399Z", + "created_at": "2024-02-26T17:04:14.367Z", + "hash": "Budget_Committee_Materials_022224_e6ad0dddcf", + "__typename": "UploadFile" + }, + { + "id": "1245", + "formats": null, + "size": 750.94, + "name": "Supplemental Budget Committee Materials 022224.pdf", + "ext": ".pdf", + "url": "/uploads/Supplemental_Budget_Committee_Materials_022224_eaa3f516a6.pdf", + "updated_at": "2024-02-26T17:04:48.349Z", + "created_at": "2024-02-26T17:04:48.326Z", + "hash": "Supplemental_Budget_Committee_Materials_022224_eaa3f516a6", + "__typename": "UploadFile" + }, + { + "id": "1282", + "formats": null, + "size": 200.37, + "name": "Budget Committee Summary 022224.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_022224_1f519908ec.pdf", + "updated_at": "2024-03-18T21:46:46.070Z", + "created_at": "2024-03-18T21:46:46.045Z", + "hash": "Budget_Committee_Summary_022224_1f519908ec", + "__typename": "UploadFile" + }, + { + "id": "1328", + "formats": null, + "size": 206.9, + "name": "Budget Committee Minutes 022224.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_022224_9f2c5c03d9.pdf", + "updated_at": "2024-04-22T22:14:05.301Z", + "created_at": "2024-04-22T22:14:05.281Z", + "hash": "Budget_Committee_Minutes_022224_9f2c5c03d9", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "165", + "title": "ILLINOIS DOMESTIC VIOLENCE FATALITY REVIEW COMMITTEE: Feb 20, 2024", + "slug": "illinois-domestic-violence-fatality-review-committee-feb-20-2024", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review\nCommittee will conduct a public meeting on 2/20/2024, at 1:00 pm by Microsoft\nTeams. All interested parties are invited to attend and will be given the opportunity for\npublic comment", + "created_at": "2024-02-14T20:23:25.026Z", + "updated_at": "2024-05-22T20:55:21.585Z", + "published_at": "2024-02-14T20:23:26.940Z", + "isCancelled": false, + "start": "2024-02-20T19:00:00.000Z", + "end": "2024-02-20T19:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review\nCommittee will conduct a public meeting on 2/20/2024, at 1:00 pm by Microsoft\nTeams. All interested parties are invited to attend and will be given the opportunity for\npublic comment", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1230", + "formats": null, + "size": 26.54, + "name": "DVFRC Agenda 2.20.2024.pdf", + "ext": ".pdf", + "url": "/uploads/DVFRC_Agenda_2_20_2024_1b64454cb1.pdf", + "updated_at": "2024-02-14T20:23:18.816Z", + "created_at": "2024-02-14T20:23:18.794Z", + "hash": "DVFRC_Agenda_2_20_2024_1b64454cb1", + "__typename": "UploadFile" + }, + { + "id": "1363", + "formats": null, + "size": 198.12, + "name": "DVFR minutes.022024.pdf", + "ext": ".pdf", + "url": "/uploads/DVFR_minutes_022024_7d27e842c0.pdf", + "updated_at": "2024-05-22T20:55:18.122Z", + "created_at": "2024-05-22T20:55:18.096Z", + "hash": "DVFR_minutes_022024_7d27e842c0", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "164", + "title": "VIOLENCE PREVENTION AD HOC COMMITTEE MEETING AGENDA: February 8, 2024", + "slug": "violence-prevention-ad-hoc-committee-meeting-agenda-february-8-2024", + "summary": "This serves as Public Notice of the Violence Prevention Ad Hoc Committee Regular Meeting to be held at the date, time and\nlocation set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.\n\nDate and Time\nThursday, February 8th, 2024\n10:00 AM\u201312:00 PM\n\nVideoconference Teleconference: \nVideoconference Link Emailed", + "created_at": "2024-02-05T19:23:02.531Z", + "updated_at": "2024-02-05T19:24:30.445Z", + "published_at": "2024-02-05T19:23:06.097Z", + "isCancelled": false, + "start": "2024-02-08T16:00:00.000Z", + "end": "2024-02-08T18:00:00.000Z", + "category": "special", + "body": "This serves as Public Notice of the Violence Prevention Ad Hoc Committee Regular Meeting to be held at the date, time and\nlocation set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.\n\nDate and Time\nThursday, February 8th, 2024\n10:00 AM\u201312:00 PM\n\nVideoconference Teleconference: \nVideoconference Link Emailed", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1227", + "formats": null, + "size": 147.7, + "name": "Workgroups for Violence State Prevention Plan.pdf", + "ext": ".pdf", + "url": "/uploads/Workgroups_for_Violence_State_Prevention_Plan_5816af5b81.pdf", + "updated_at": "2024-02-05T19:22:56.093Z", + "created_at": "2024-02-05T19:22:56.067Z", + "hash": "Workgroups_for_Violence_State_Prevention_Plan_5816af5b81", + "__typename": "UploadFile" + }, + { + "id": "1228", + "formats": null, + "size": 592.73, + "name": "Violence Prevention Ad Hoc Committee Agenda 2-8-24.pdf", + "ext": ".pdf", + "url": "/uploads/Violence_Prevention_Ad_Hoc_Committee_Agenda_2_8_24_54ad58b805.pdf", + "updated_at": "2024-02-05T19:22:56.314Z", + "created_at": "2024-02-05T19:22:56.298Z", + "hash": "Violence_Prevention_Ad_Hoc_Committee_Agenda_2_8_24_54ad58b805", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "162", + "title": "COLTON\u2019S TASK FORCE COMMITTEE MEETING: Feb 7, 2023", + "slug": "colton-s-task-force-committee-meeting-feb-7-2023", + "summary": "COLTON\u2019S TASK FORCE COMMITTEE MEETING\nFebruary 7, 2023\n12:00 PM-1:30 PM\nLocation:\nVia Webex Video Conference/Teleconference", + "created_at": "2024-02-02T22:21:59.240Z", + "updated_at": "2024-06-05T19:48:31.273Z", + "published_at": "2024-02-02T22:22:00.484Z", + "isCancelled": false, + "start": "2024-02-07T18:00:00.000Z", + "end": "2024-02-07T19:30:00.000Z", + "category": "special", + "body": "COLTON\u2019S TASK FORCE COMMITTEE MEETING\nFebruary 7, 2023\n12:00 PM-1:30 PM\nLocation:\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1225", + "formats": null, + "size": 145.85, + "name": "Colton's Task Force February 7 2024 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/Colton_s_Task_Force_February_7_2024_Agenda_593cd056a8.pdf", + "updated_at": "2024-02-02T22:21:55.331Z", + "created_at": "2024-02-02T22:21:55.318Z", + "hash": "Colton_s_Task_Force_February_7_2024_Agenda_593cd056a8", + "__typename": "UploadFile" + }, + { + "id": "1377", + "formats": null, + "size": 712.76, + "name": "Colton's Task Force Feb 7 2024 Minutes FINAL w attachments.pdf", + "ext": ".pdf", + "url": "/uploads/Colton_s_Task_Force_Feb_7_2024_Minutes_FINAL_w_attachments_ade549ee15.pdf", + "updated_at": "2024-06-05T19:48:28.098Z", + "created_at": "2024-06-05T19:48:28.067Z", + "hash": "Colton_s_Task_Force_Feb_7_2024_Minutes_FINAL_w_attachments_ade549ee15", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "161", + "title": "DOMESTIC VIOLENCE PRE-TRIAL PRACTICES TASK FORCE COMMITTEE MEETING: Jan 26, 2024", + "slug": "domestic-violence-pre-trial-practices-task-force-committee-meeting-jan-26-2024", + "summary": "DOMESTIC VIOLENCE PRE-TRIAL PRACTICES\nTASK FORCE COMMITTEE MEETING\nAGENDA JANUARY 26, 2024,\n10:00 AM-11:00 AM\nLocation:\nVia Webex Video Conference/Teleconference", + "created_at": "2024-01-23T15:46:48.411Z", + "updated_at": "2024-03-01T19:16:26.949Z", + "published_at": "2024-01-23T15:46:50.569Z", + "isCancelled": false, + "start": "2024-01-26T16:00:00.000Z", + "end": "2024-01-26T17:00:00.000Z", + "category": "special", + "body": "DOMESTIC VIOLENCE PRE-TRIAL PRACTICES\nTASK FORCE COMMITTEE MEETING\nAGENDA JANUARY 26, 2024,\n10:00 AM-11:00 AM\nLocation:\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1210", + "formats": null, + "size": 84.27, + "name": "DVPT January 26 2024 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/DVPT_January_26_2024_Agenda_5a4763577c.pdf", + "updated_at": "2024-01-23T15:46:44.192Z", + "created_at": "2024-01-23T15:46:44.167Z", + "hash": "DVPT_January_26_2024_Agenda_5a4763577c", + "__typename": "UploadFile" + }, + { + "id": "1271", + "formats": null, + "size": 58.95, + "name": "DOMESTIC VIOLENCE PRETRIAL WORKING GROUP MINUTES KP 012624.pdf", + "ext": ".pdf", + "url": "/uploads/DOMESTIC_VIOLENCE_PRETRIAL_WORKING_GROUP_MINUTES_KP_012624_334a119c3e.pdf", + "updated_at": "2024-03-01T19:16:22.453Z", + "created_at": "2024-03-01T19:16:22.435Z", + "hash": "DOMESTIC_VIOLENCE_PRETRIAL_WORKING_GROUP_MINUTES_KP_012624_334a119c3e", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "160", + "title": "Firearm Prohibitors and Records Improvement Task Force: Jan 25, 2024", + "slug": "firearm-prohibitors-and-records-improvement-task-force-jan-25-2024", + "summary": "Firearm Prohibitors and Records Improvement Task Force Meeting:\n20 ILCS 3930/7.9\nThursday, January 25, 2024, 2:00 pm \u2013 3:00 pm", + "created_at": "2024-01-18T20:52:27.076Z", + "updated_at": "2024-05-15T22:08:38.460Z", + "published_at": "2024-01-18T20:52:28.975Z", + "isCancelled": false, + "start": "2024-01-25T20:00:00.000Z", + "end": "2024-01-25T21:00:00.000Z", + "category": "special", + "body": "Firearm Prohibitors and Records Improvement Task Force Meeting:\n20 ILCS 3930/7.9\nThursday, January 25, 2024, 2:00 pm \u2013 3:00 pm", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1205", + "formats": null, + "size": 68.32, + "name": "Firearm Prohibitors Records Improvement TF Agenda January 25 2024 KA KP V.2.pdf", + "ext": ".pdf", + "url": "/uploads/Firearm_Prohibitors_Records_Improvement_TF_Agenda_January_25_2024_KA_KP_V_2_eda45075b0.pdf", + "updated_at": "2024-01-18T20:52:14.337Z", + "created_at": "2024-01-18T20:52:14.296Z", + "hash": "Firearm_Prohibitors_Records_Improvement_TF_Agenda_January_25_2024_KA_KP_V_2_eda45075b0", + "__typename": "UploadFile" + }, + { + "id": "1346", + "formats": null, + "size": 93.2, + "name": "Firearm Prohibitor And Records Improvement Minutes January 25, 2024 KA V.1 FINAL.pdf", + "ext": ".pdf", + "url": "/uploads/Firearm_Prohibitor_And_Records_Improvement_Minutes_January_25_2024_KA_V_1_FINAL_6ecb72d4dc.pdf", + "updated_at": "2024-05-15T22:08:35.008Z", + "created_at": "2024-05-15T22:08:34.973Z", + "hash": "Firearm_Prohibitor_And_Records_Improvement_Minutes_January_25_2024_KA_V_1_FINAL_6ecb72d4dc", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "159", + "title": "CRIME REDUCTION TASK FORCE MEETING: Jan 22, 2024", + "slug": "crime-reduction-task-force-meeting-jan-22-2024", + "summary": "CRIME REDUCTION TASK FORCE MEETING\nAGENDA MONDAY JANUARY 22, 2024,\n12:30 PM- 2:30 PM\nLocation:\nVia Webex Video Conference/Teleconference", + "created_at": "2024-01-17T12:47:33.116Z", + "updated_at": "2024-01-17T12:47:35.667Z", + "published_at": "2024-01-17T12:47:35.632Z", + "isCancelled": false, + "start": "2024-01-22T18:30:00.000Z", + "end": "2024-01-22T20:30:00.000Z", + "category": "special", + "body": "CRIME REDUCTION TASK FORCE MEETING\nAGENDA MONDAY JANUARY 22, 2024,\n12:30 PM- 2:30 PM\nLocation:\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1204", + "formats": null, + "size": 83.64, + "name": "Crime Reduction Task Force January 22 2024 Agenda.KA SR FINAL pdf.pdf", + "ext": ".pdf", + "url": "/uploads/Crime_Reduction_Task_Force_January_22_2024_Agenda_KA_SR_FINAL_pdf_00b44de064.pdf", + "updated_at": "2024-01-17T12:46:26.860Z", + "created_at": "2024-01-17T12:46:26.842Z", + "hash": "Crime_Reduction_Task_Force_January_22_2024_Agenda_KA_SR_FINAL_pdf_00b44de064", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "158", + "title": "DOMESTIC VIOLENCE PRE-TRIAL PRACTICES TASK FORCE COMMITTEE: Dec 15, 2023", + "slug": "domestic-violence-pre-trial-practices-task-force-committee-dec-15-2023", + "summary": "DOMESTIC VIOLENCE PRE-TRIAL PRACTICES\nTASK FORCE COMMITTEE MEETING\nAGENDA DECEMBER 15, 2023,\n10:00 AM-11:00 AM\n", + "created_at": "2023-12-12T18:43:29.250Z", + "updated_at": "2023-12-12T18:43:32.412Z", + "published_at": "2023-12-12T18:43:32.382Z", + "isCancelled": false, + "start": "2023-12-15T16:00:00.000Z", + "end": "2023-12-15T17:00:00.000Z", + "category": "special", + "body": "DOMESTIC VIOLENCE PRE-TRIAL PRACTICES TASK FORCE COMMITTEE MEETING AGENDA DECEMBER 15, 2023\n\n10:00 AM-11:00 AM\n\n**Location:**\n\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1169", + "formats": null, + "size": 84.28, + "name": "DVPT December 15 2023 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/DVPT_December_15_2023_Agenda_6972b0228b.pdf", + "updated_at": "2023-12-12T18:43:20.727Z", + "created_at": "2023-12-12T18:43:20.700Z", + "hash": "DVPT_December_15_2023_Agenda_6972b0228b", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "157", + "title": "Budget Committee Meeting December 14, 2023", + "slug": "budget-committee-meeting-december-14-2023", + "summary": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, December 14, 2023 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. Michael A. Bilandic Building\n160 N. LaSalle St., Room N502\nChicago, Illinois 60601\n\n2. ICJIA Offices\n524 S. 2nd Street, Suite 220\nSpringfield, Illinois 62701", + "created_at": "2023-12-11T15:23:22.400Z", + "updated_at": "2024-04-22T22:11:22.030Z", + "published_at": "2023-12-11T15:23:59.114Z", + "isCancelled": false, + "start": "2023-12-14T16:00:00.000Z", + "end": "2023-12-14T18:00:00.000Z", + "category": "budget", + "body": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, December 14, 2023 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. Michael A. Bilandic Building\n160 N. LaSalle St., Room N502\nChicago, Illinois 60601\n\n2. ICJIA Offices\n524 S. 2nd Street, Suite 220\nSpringfield, Illinois 62701", + "posts": [], + "events": [], + "tags": [ + { + "title": "Funding", + "slug": "funding", + "__typename": "Tag" + }, + { + "title": "Community", + "slug": "community", + "__typename": "Tag" + }, + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + }, + { + "title": "Violence Prevention", + "slug": "violence-prevention", + "__typename": "Tag" + }, + { + "title": "Trauma-Informed Care", + "slug": "trauma-informed-care", + "__typename": "Tag" + }, + { + "title": "Victim Services", + "slug": "victim-services", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "1170", + "formats": null, + "size": 2484.58, + "name": "ICJIA Supplemental (VOCA) Budget Committee Materials 121423.pdf", + "ext": ".pdf", + "url": "/uploads/ICJIA_Supplemental_VOCA_Budget_Committee_Materials_121423_31ad84a9b2.pdf", + "updated_at": "2023-12-12T21:04:42.433Z", + "created_at": "2023-12-12T21:04:42.413Z", + "hash": "ICJIA_Supplemental_VOCA_Budget_Committee_Materials_121423_31ad84a9b2", + "__typename": "UploadFile" + }, + { + "id": "1171", + "formats": null, + "size": 905.37, + "name": "ICJIA Supplemental (ARPA TRC) Budget Committee Materials 121423.pdf", + "ext": ".pdf", + "url": "/uploads/ICJIA_Supplemental_ARPA_TRC_Budget_Committee_Materials_121423_85d7e00bb3.pdf", + "updated_at": "2023-12-14T03:01:51.345Z", + "created_at": "2023-12-14T03:01:51.326Z", + "hash": "ICJIA_Supplemental_ARPA_TRC_Budget_Committee_Materials_121423_85d7e00bb3", + "__typename": "UploadFile" + }, + { + "id": "1172", + "formats": null, + "size": 3503.61, + "name": "Budget Committee Materials 121423.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_121423_42ef5aa75c.pdf", + "updated_at": "2023-12-14T20:26:02.409Z", + "created_at": "2023-12-14T20:26:02.385Z", + "hash": "Budget_Committee_Materials_121423_42ef5aa75c", + "__typename": "UploadFile" + }, + { + "id": "1173", + "formats": null, + "size": 5325.96, + "name": "Budget Committee Materials 121423 Revised.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_121423_Revised_be00cd39a8.pdf", + "updated_at": "2023-12-14T20:29:56.709Z", + "created_at": "2023-12-14T20:29:56.694Z", + "hash": "Budget_Committee_Materials_121423_Revised_be00cd39a8", + "__typename": "UploadFile" + }, + { + "id": "1193", + "formats": null, + "size": 242.81, + "name": "Budget Committee Summary 121423.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_121423_93c52eb1ba.pdf", + "updated_at": "2023-12-21T20:37:48.200Z", + "created_at": "2023-12-21T20:37:48.188Z", + "hash": "Budget_Committee_Summary_121423_93c52eb1ba", + "__typename": "UploadFile" + }, + { + "id": "1327", + "formats": null, + "size": 822.24, + "name": "Budget Committee Minutes 121423.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_121423_e2197c9e52.pdf", + "updated_at": "2024-04-22T22:11:19.661Z", + "created_at": "2024-04-22T22:11:19.640Z", + "hash": "Budget_Committee_Minutes_121423_e2197c9e52", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "156", + "title": " Illinois Domestic Violence Fatality Review Committee: Dec 12, 2023", + "slug": "illinois-domestic-violence-fatality-review-committee-dec-12-2023", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review\nCommittee will conduct a public meeting on 12/12/2023, at 1:00 pm by Teams. All\ninterested parties are invited to attend and will be given the opportunity for public\ncomment.", + "created_at": "2023-12-07T13:19:11.562Z", + "updated_at": "2023-12-11T15:35:57.715Z", + "published_at": "2023-12-07T13:19:13.181Z", + "isCancelled": true, + "start": "2023-12-12T19:00:00.000Z", + "end": "2023-12-12T20:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review\nCommittee will conduct a public meeting on 12/12/2023, at 1:00 pm by Teams. All\ninterested parties are invited to attend and will be given the opportunity for public\ncomment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1168", + "formats": null, + "size": 34.33, + "name": "DVFRC Agenda 12.12.23_CANCELLED.pdf", + "ext": ".pdf", + "url": "/uploads/DVFRC_Agenda_12_12_23_CANCELLED_6c313f6e09.pdf", + "updated_at": "2023-12-11T15:35:54.631Z", + "created_at": "2023-12-11T15:35:54.613Z", + "hash": "DVFRC_Agenda_12_12_23_CANCELLED_6c313f6e09", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "155", + "title": "Justice Assistance Grant Ad Hoc Committee: Dec 5, 2023", + "slug": "justice-assistance-grant-ad-hoc-committee-dec-5-2023", + "summary": "Public notice is hereby given that the Justice Assistance Grant (JAG) Ad Hoc Committee will conduct a public meeting on 12/5/2023, at 10 a.m. by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-12-01T16:43:31.270Z", + "updated_at": "2023-12-01T16:50:43.985Z", + "published_at": "2023-12-01T16:43:32.291Z", + "isCancelled": false, + "start": "2023-12-05T16:00:00.000Z", + "end": "2023-12-05T18:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Justice Assistance Grant (JAG) Ad Hoc Committee will conduct a public meeting on 12/5/2023, at 10 a.m. by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [ + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "1161", + "formats": null, + "size": 86.96, + "name": "Agenda 12-5.docx", + "ext": ".docx", + "url": "/uploads/Agenda_12_5_870f197cca.docx", + "updated_at": "2023-12-01T16:42:09.484Z", + "created_at": "2023-12-01T16:42:09.468Z", + "hash": "Agenda_12_5_870f197cca", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "154", + "title": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE: November 15, 2023", + "slug": "missing-and-murdered-chicago-women-task-force-november-15-2023", + "summary": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE\n\nWednesday, November 15, 2023, 2:30pm \u2013 4:00pm\n\nLocation: Cook County Medical Examiner\u2019s Office, 2121 W. Harrison, Chicago, IL \n\nAlso via WebEx Video Conference/Teleconference:", + "created_at": "2023-11-08T22:43:20.676Z", + "updated_at": "2024-02-27T16:08:04.727Z", + "published_at": "2023-11-08T22:43:44.432Z", + "isCancelled": false, + "start": "2023-11-15T20:30:00.000Z", + "end": "2023-11-15T22:00:00.000Z", + "category": "special", + "body": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE\n\nWednesday, November 15, 2023, 2:30pm \u2013 4:00pm\n\nLocation: Cook County Medical Examiner\u2019s Office, 2121 W. Harrison, Chicago, IL \n\nAlso via WebEx Video Conference/Teleconference:\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1152", + "formats": null, + "size": 90.45, + "name": "Missing and Murdered Task Force Agenda_Final 11-15-23.pdf", + "ext": ".pdf", + "url": "/uploads/Missing_and_Murdered_Task_Force_Agenda_Final_11_15_23_335e65e38a.pdf", + "updated_at": "2023-11-08T22:43:14.352Z", + "created_at": "2023-11-08T22:43:14.335Z", + "hash": "Missing_and_Murdered_Task_Force_Agenda_Final_11_15_23_335e65e38a", + "__typename": "UploadFile" + }, + { + "id": "1240", + "formats": null, + "size": 191.8, + "name": "November 2023 MM Task Force Minutes.pdf", + "ext": ".pdf", + "url": "/uploads/November_2023_MM_Task_Force_Minutes_2e62b4838a.pdf", + "updated_at": "2024-02-24T13:06:13.739Z", + "created_at": "2024-02-24T13:06:13.718Z", + "hash": "November_2023_MM_Task_Force_Minutes_2e62b4838a", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "153", + "title": "VIOLENCE PREVENTION AD HOC COMMITTEE MEETING AGENDA: November 9th, 2023 ", + "slug": "violence-prevention-ad-hoc-committee-meeting-agenda-november-9th-2023", + "summary": "This serves as Public Notice of the Violence Prevention Ad Hoc Committee Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-11-06T20:40:55.134Z", + "updated_at": "2023-11-06T20:41:19.880Z", + "published_at": "2023-11-06T20:41:19.835Z", + "isCancelled": false, + "start": "2023-11-09T16:00:00.000Z", + "end": "2023-11-09T18:00:00.000Z", + "category": "special", + "body": "This serves as Public Notice of the Violence Prevention Ad Hoc Committee Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1150", + "formats": null, + "size": 25.41, + "name": "ICJIA Violence Prevention Ad Hoc Committee Meeting 11-9-23.pdf", + "ext": ".pdf", + "url": "/uploads/ICJIA_Violence_Prevention_Ad_Hoc_Committee_Meeting_11_9_23_a63d6cc24a.pdf", + "updated_at": "2023-11-06T20:40:51.264Z", + "created_at": "2023-11-06T20:40:51.246Z", + "hash": "ICJIA_Violence_Prevention_Ad_Hoc_Committee_Meeting_11_9_23_a63d6cc24a", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "152", + "title": "DOMESTIC VIOLENCE PRE-TRIAL PRACTICES TASK FORCE COMMITTEE MEETING: OCTOBER 27, 2023", + "slug": "domestic-violence-pre-trial-practices-task-force-committee-meeting-october-27-2023", + "summary": "DOMESTIC VIOLENCE PRE-TRIAL PRACTICES TASK FORCE COMMITTEE MEETING\nAGENDA \n\nOCTOBER 27, 2023, 10:00 AM-11:00 AM\n\nLocation:\nVia Webex Video Conference/Teleconference\n", + "created_at": "2023-10-18T13:17:12.190Z", + "updated_at": "2023-10-18T13:24:25.345Z", + "published_at": "2023-10-18T13:24:25.308Z", + "isCancelled": false, + "start": "2023-10-27T15:00:00.000Z", + "end": "2023-10-27T16:00:00.000Z", + "category": "special", + "body": "DOMESTIC VIOLENCE PRE-TRIAL PRACTICES TASK FORCE COMMITTEE MEETING\nAGENDA \n\nOCTOBER 27, 2023, 10:00 AM-11:00 AM\n\nLocation:\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1122", + "formats": null, + "size": 154.1, + "name": "DVPT October 27 2023 Agenda v.2.pdf", + "ext": ".pdf", + "url": "/uploads/DVPT_October_27_2023_Agenda_v_2_19782f75d8.pdf", + "updated_at": "2023-10-18T13:16:56.943Z", + "created_at": "2023-10-18T13:16:56.925Z", + "hash": "DVPT_October_27_2023_Agenda_v_2_19782f75d8", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "151", + "title": "Budget Committee Meeting October 19, 2023", + "slug": "budget-committee-meeting-october-19-2023", + "summary": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, October 19, 2023 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. Michael A. Bilandic Building\n160 N. LaSalle St., Room N505\nChicago, Illinois 60601\n\n\n2. ICJIA Offices\n524 S. 2nd Street, Suite 220\nSpringfield, Illinois 62701", + "created_at": "2023-10-13T18:27:37.546Z", + "updated_at": "2024-04-22T22:05:49.569Z", + "published_at": "2023-10-13T18:27:41.878Z", + "isCancelled": false, + "start": "2023-10-19T15:00:00.000Z", + "end": "2023-10-19T17:00:00.000Z", + "category": "budget", + "body": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, October 19, 2023 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. Michael A. Bilandic Building\n160 N. LaSalle St., Room N505\nChicago, Illinois 60601\n\n2. ICJIA Offices\n524 S. 2nd Street, Suite 220\nSpringfield, Illinois 62701", + "posts": [], + "events": [], + "tags": [ + { + "title": "Community", + "slug": "community", + "__typename": "Tag" + }, + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + }, + { + "title": "Violence Prevention", + "slug": "violence-prevention", + "__typename": "Tag" + }, + { + "title": "Victim Services", + "slug": "victim-services", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "1121", + "formats": null, + "size": 168.79, + "name": "Agenda_101923.pdf", + "ext": ".pdf", + "url": "/uploads/Agenda_101923_c9a0fa3486.pdf", + "updated_at": "2023-10-13T18:25:42.824Z", + "created_at": "2023-10-13T18:25:42.810Z", + "hash": "Agenda_101923_c9a0fa3486", + "__typename": "UploadFile" + }, + { + "id": "1126", + "formats": null, + "size": 4022.69, + "name": "Budget_Committee_Materials_101923.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_101923_ac801f5184.pdf", + "updated_at": "2023-10-24T22:33:44.902Z", + "created_at": "2023-10-24T22:33:44.884Z", + "hash": "Budget_Committee_Materials_101923_ac801f5184", + "__typename": "UploadFile" + }, + { + "id": "1127", + "formats": null, + "size": 264.4, + "name": "Budget_Committee_Materials_Revised_ARPA_101923.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_Revised_ARPA_101923_4b71d8e64e.pdf", + "updated_at": "2023-10-24T22:33:58.240Z", + "created_at": "2023-10-24T22:33:58.227Z", + "hash": "Budget_Committee_Materials_Revised_ARPA_101923_4b71d8e64e", + "__typename": "UploadFile" + }, + { + "id": "1151", + "formats": null, + "size": 213.25, + "name": "Budget Committee Summary 101923.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_101923_7f6726fd58.pdf", + "updated_at": "2023-11-08T20:28:06.729Z", + "created_at": "2023-11-08T20:28:06.713Z", + "hash": "Budget_Committee_Summary_101923_7f6726fd58", + "__typename": "UploadFile" + }, + { + "id": "1326", + "formats": null, + "size": 280.79, + "name": "Budget Committee Minutes 101923.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_101923_0a2e1c21cf.pdf", + "updated_at": "2024-04-22T22:05:46.955Z", + "created_at": "2024-04-22T22:05:46.933Z", + "hash": "Budget_Committee_Minutes_101923_0a2e1c21cf", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "150", + "title": "COLTON\u2019S TASK FORCE COMMITTEE MEETING: OCTOBER 17, 2023", + "slug": "colton-s-task-force-committee-meeting-october-17-2023", + "summary": "COLTON\u2019S TASK FORCE COMMITTEE MEETING OCTOBER 17, 2023\n12:00 PM-1:30 PM\nLocation:\nVia Webex Video Conference/Teleconference", + "created_at": "2023-10-12T13:25:50.167Z", + "updated_at": "2024-06-05T19:46:44.936Z", + "published_at": "2023-10-12T13:25:51.857Z", + "isCancelled": false, + "start": "2023-10-17T17:00:00.000Z", + "end": "2023-10-17T18:30:00.000Z", + "category": "special", + "body": "COLTON\u2019S TASK FORCE COMMITTEE MEETING OCTOBER 17, 2023\n\n12:00 PM-1:30 PM\n\nLocation:\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1117", + "formats": null, + "size": 148.57, + "name": "Colton's Task Force October 17 2023 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/Colton_s_Task_Force_October_17_2023_Agenda_608857497a.pdf", + "updated_at": "2023-10-12T13:25:43.276Z", + "created_at": "2023-10-12T13:25:43.259Z", + "hash": "Colton_s_Task_Force_October_17_2023_Agenda_608857497a", + "__typename": "UploadFile" + }, + { + "id": "1224", + "formats": null, + "size": 182.8, + "name": "Colton's Task Force Meeting Minutes 10.17.2023 FINAL.pdf", + "ext": ".pdf", + "url": "/uploads/Colton_s_Task_Force_Meeting_Minutes_10_17_2023_FINAL_92689f4302.pdf", + "updated_at": "2024-02-02T22:20:47.340Z", + "created_at": "2024-02-02T22:20:47.319Z", + "hash": "Colton_s_Task_Force_Meeting_Minutes_10_17_2023_FINAL_92689f4302", + "__typename": "UploadFile" + }, + { + "id": "1376", + "formats": null, + "size": 182.77, + "name": "Colton's Task Force Meeting Minutes 10.17.2023 MR PY CLEAN.pdf", + "ext": ".pdf", + "url": "/uploads/Colton_s_Task_Force_Meeting_Minutes_10_17_2023_MR_PY_CLEAN_be222bd540.pdf", + "updated_at": "2024-06-05T19:46:41.141Z", + "created_at": "2024-06-05T19:46:41.114Z", + "hash": "Colton_s_Task_Force_Meeting_Minutes_10_17_2023_MR_PY_CLEAN_be222bd540", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "149", + "title": "Authority Board Meeting: October 12, 2023", + "slug": "authority-board-meeting-october-12-2023", + "summary": "Authority Board Meeting \nThursday, October 12, 2023\n 10:00 a.m. to 12:00 p.m. \nIllinois Criminal Justice Information Authority \n\n", + "created_at": "2023-10-11T13:32:18.747Z", + "updated_at": "2023-10-11T13:35:11.452Z", + "published_at": "2023-10-11T13:32:23.393Z", + "isCancelled": false, + "start": "2023-10-12T15:00:00.000Z", + "end": "2023-10-12T17:00:00.000Z", + "category": "board", + "body": "Authority Board Meeting \n\nThursday, October 12, 2023\n\n 10:00 a.m. to 12:00 p.m. \nIllinois Criminal Justice Information Authority \n \n\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1112", + "formats": null, + "size": 84.41, + "name": "Authority Board Agenda 10.12.2023 ddw.docx", + "ext": ".docx", + "url": "/uploads/Authority_Board_Agenda_10_12_2023_ddw_af5d5a54e1.docx", + "updated_at": "2023-10-11T13:32:07.734Z", + "created_at": "2023-10-11T13:32:07.719Z", + "hash": "Authority_Board_Agenda_10_12_2023_ddw_af5d5a54e1", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "148", + "title": "STATE CRISIS INTERVENTION PROGRAM ADVISORY COMMITTEE: Oct 5, 2023", + "slug": "state-crisis-intervention-program-advisory-committee-oct-5-2023", + "summary": "STATE CRISIS INTERVENTION PROGRAM ADVISORY COMMITTEE\nOctober 5, 2023\n3:30 p.m. \u2013 4:00 p.m.\nVia WebEx", + "created_at": "2023-09-29T17:51:24.556Z", + "updated_at": "2023-09-29T17:51:50.677Z", + "published_at": "2023-09-29T17:51:26.061Z", + "isCancelled": false, + "start": "2023-10-05T20:30:00.000Z", + "end": "2023-10-05T21:00:00.000Z", + "category": "special", + "body": "STATE CRISIS INTERVENTION PROGRAM ADVISORY COMMITTEE\n\nOctober 5, 2023\n\n3:30 p.m. \u2013 4:00 p.m.\n\nVia WebEx", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1094", + "formats": null, + "size": 51.39, + "name": "SCIP Advisory Committee Meeting Agenda 10.05.23.pdf", + "ext": ".pdf", + "url": "/uploads/SCIP_Advisory_Committee_Meeting_Agenda_10_05_23_7a29da2b8e.pdf", + "updated_at": "2023-09-29T17:51:20.598Z", + "created_at": "2023-09-29T17:51:20.582Z", + "hash": "SCIP_Advisory_Committee_Meeting_Agenda_10_05_23_7a29da2b8e", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "146", + "title": "STATE CRISIS INTERVENTION PROGRAM ADVISORY COMMITTEE: Sep 28, 2023", + "slug": "state-crisis-intervention-program-advisory-committee-sep-28-2023", + "summary": "STATE CRISIS INTERVENTION PROGRAM ADVISORY COMMITTEE\nSeptember 28, 2023\n2:00 \u2013 3:00 p.m.\nVia WebEx", + "created_at": "2023-09-21T20:12:00.611Z", + "updated_at": "2023-09-28T20:35:41.037Z", + "published_at": "2023-09-21T20:12:06.896Z", + "isCancelled": false, + "start": "2023-09-28T19:00:00.000Z", + "end": "2023-09-28T20:00:00.000Z", + "category": "special", + "body": "\nSeptember 28, 2023\n\n2:00 \u2013 3:00 p.m.\n\nVia WebEx", + "posts": [], + "events": [], + "tags": [ + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "1087", + "formats": null, + "size": 51.83, + "name": "SCIP Advisory Committee Meeting Agenda 9.28.23.pdf", + "ext": ".pdf", + "url": "/uploads/SCIP_Advisory_Committee_Meeting_Agenda_9_28_23_fcd202f67b.pdf", + "updated_at": "2023-09-21T20:11:50.941Z", + "created_at": "2023-09-21T20:11:50.927Z", + "hash": "SCIP_Advisory_Committee_Meeting_Agenda_9_28_23_fcd202f67b", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "144", + "title": "ILLINOIS DOMESTIC VIOLENCE FATALITY REVIEW COMMITTEE: Sep 19, 2023", + "slug": "illinois-domestic-violence-fatality-review-committee-sep-19-2023", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review\nCommittee will conduct a public meeting on 9/19/2023, at 1:00 pm by Zoom. All\ninterested parties are invited to attend and will be given the opportunity for public\ncomment.", + "created_at": "2023-09-08T16:19:59.205Z", + "updated_at": "2024-05-22T20:53:08.621Z", + "published_at": "2023-09-08T16:20:01.591Z", + "isCancelled": false, + "start": "2023-09-19T18:00:00.000Z", + "end": "2023-09-19T19:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review\nCommittee will conduct a public meeting on 9/19/2023, at 1:00 pm by Zoom. All\ninterested parties are invited to attend and will be given the opportunity for public\ncomment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1072", + "formats": null, + "size": 251.69, + "name": "Agenda_DVFRC_September 2023_For Posting_Updated.pdf", + "ext": ".pdf", + "url": "/uploads/Agenda_DVFRC_September_2023_For_Posting_Updated_2b60b68b12.pdf", + "updated_at": "2023-09-18T12:41:32.897Z", + "created_at": "2023-09-18T12:41:32.871Z", + "hash": "Agenda_DVFRC_September_2023_For_Posting_Updated_2b60b68b12", + "__typename": "UploadFile" + }, + { + "id": "1362", + "formats": null, + "size": 64.15, + "name": "DVFR minutes.091923final.pdf", + "ext": ".pdf", + "url": "/uploads/DVFR_minutes_091923final_2af068e2d2.pdf", + "updated_at": "2024-05-22T20:53:04.702Z", + "created_at": "2024-05-22T20:53:04.676Z", + "hash": "DVFR_minutes_091923final_2af068e2d2", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "145", + "title": "Budget Committee September 14, 2023", + "slug": "budget-committee-meeting-september-14-2023-1", + "summary": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, August 17, 2023 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. The Illinois Room at 555 W. Monroe, \nChicago, Illinois 60661\n\n\n2. ICJIA Offices\n524 S. 2nd Street, Suite 220\nSpringfield, Illinois 62701", + "created_at": "2023-09-11T18:53:39.957Z", + "updated_at": "2024-04-22T21:59:09.583Z", + "published_at": "2023-09-11T18:57:18.950Z", + "isCancelled": false, + "start": "2023-09-14T15:00:00.000Z", + "end": "2023-09-14T17:00:00.000Z", + "category": "budget", + "body": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, August 17, 2023 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. The Illinois Room at 555 W. Monroe, \nChicago, Illinois 60661\n\n\n2. ICJIA Offices\n524 S. 2nd Street, Suite 220\nSpringfield, Illinois 62701", + "posts": [ + { + "title": "ICJIA Budget Committee Funding Actions taken September 14, 2023", + "slug": "icjia-budget-committee-funding-actions-taken-september-14-2023", + "__typename": "Post" + } + ], + "events": [], + "tags": [ + { + "title": "Funding", + "slug": "funding", + "__typename": "Tag" + }, + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "1069", + "formats": null, + "size": 166.44, + "name": "Agenda 091423.pdf", + "ext": ".pdf", + "url": "/uploads/Agenda_091423_338a11ae5f.pdf", + "updated_at": "2023-09-11T18:57:05.304Z", + "created_at": "2023-09-11T18:57:05.280Z", + "hash": "Agenda_091423_338a11ae5f", + "__typename": "UploadFile" + }, + { + "id": "1085", + "formats": null, + "size": 5119.41, + "name": "Budget Committee Materials 091423.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_091423_8efcac490c.pdf", + "updated_at": "2023-09-18T18:20:38.021Z", + "created_at": "2023-09-18T18:20:38.004Z", + "hash": "Budget_Committee_Materials_091423_8efcac490c", + "__typename": "UploadFile" + }, + { + "id": "1115", + "formats": null, + "size": 213.18, + "name": "Budget Committee Summary 091423.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_091423_0ad5a53d35.pdf", + "updated_at": "2023-10-11T18:42:17.816Z", + "created_at": "2023-10-11T18:42:17.800Z", + "hash": "Budget_Committee_Summary_091423_0ad5a53d35", + "__typename": "UploadFile" + }, + { + "id": "1325", + "formats": null, + "size": 229.3, + "name": "Budget Committee Minutes 091423.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_091423_f8878d95ee.pdf", + "updated_at": "2024-04-22T21:59:07.093Z", + "created_at": "2024-04-22T21:59:07.043Z", + "hash": "Budget_Committee_Minutes_091423_f8878d95ee", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "143", + "title": "ILLINOIS CRIME REDUCTION TASK FORCE: August 31, 2023", + "slug": "illinois-crime-reduction-task-force-august-31-2023", + "summary": "Public notice is hereby given that the Illinois Crime Reduction Task Force will conduct a public meeting on 8/31/2023, at 10:00 am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-08-28T18:42:47.773Z", + "updated_at": "2024-02-27T15:21:49.783Z", + "published_at": "2023-08-28T18:42:52.506Z", + "isCancelled": false, + "start": "2023-08-31T15:00:00.000Z", + "end": "2023-08-31T17:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Crime Reduction Task Force will conduct a public meeting on 8/31/2023, at 10:00 am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1052", + "formats": null, + "size": 615.94, + "name": "Crime Reduction Task Force - Agenda - 8.31.23.docx", + "ext": ".docx", + "url": "/uploads/Crime_Reduction_Task_Force_Agenda_8_31_23_6670bf6bb6.docx", + "updated_at": "2023-08-28T18:42:40.438Z", + "created_at": "2023-08-28T18:42:40.404Z", + "hash": "Crime_Reduction_Task_Force_Agenda_8_31_23_6670bf6bb6", + "__typename": "UploadFile" + }, + { + "id": "1249", + "formats": null, + "size": 103.31, + "name": "Crime Reduction Task Force Minutes August 31 2023 edited KA SR V.3.1.Final pdf (003).pdf", + "ext": ".pdf", + "url": "/uploads/Crime_Reduction_Task_Force_Minutes_August_31_2023_edited_KA_SR_V_3_1_Final_pdf_003_e7530fbdb3.pdf", + "updated_at": "2024-02-27T15:21:45.086Z", + "created_at": "2024-02-27T15:21:45.063Z", + "hash": "Crime_Reduction_Task_Force_Minutes_August_31_2023_edited_KA_SR_V_3_1_Final_pdf_003_e7530fbdb3", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "142", + "title": "DOMESTIC VIOLENCE PRETRIAL PRACTICES WORKING GROUP: August 25, 2023", + "slug": "domestic-violence-pretrial-practices-working-group-august-25-2023", + "summary": "Public notice is hereby given that the Domestic Violence Pretrial Practices Working Group will conduct a public meeting on 8/25/23, at 10:00 am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-08-23T19:27:58.612Z", + "updated_at": "2023-08-23T19:28:05.651Z", + "published_at": "2023-08-23T19:28:05.617Z", + "isCancelled": false, + "start": "2023-08-25T15:00:00.000Z", + "end": "2023-08-25T16:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Domestic Violence Pretrial Practices Working Group will conduct a public meeting on 8/25/23, at 10:00 am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1035", + "formats": null, + "size": 103.09, + "name": "August 2023 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/August_2023_Agenda_ef45b7316e.pdf", + "updated_at": "2023-08-23T19:27:51.347Z", + "created_at": "2023-08-23T19:27:51.330Z", + "hash": "August_2023_Agenda_ef45b7316e", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "141", + "title": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE: August 23, 2023", + "slug": "missing-and-murdered-chicago-women-task-force-august-23-2023", + "summary": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE\n\nWednesday, August 23, 2023, 2:30pm \u2013 4:00pm\n\nLocation: Cook County Medical Examiner\u2019s Office, 2121 W. Harrison, Chicago, IL\t\nAlso via WebEx Video Conference/Teleconference: \n", + "created_at": "2023-08-17T13:32:14.247Z", + "updated_at": "2024-05-30T15:46:43.595Z", + "published_at": "2023-08-17T13:32:21.074Z", + "isCancelled": false, + "start": "2023-08-23T19:30:00.000Z", + "end": "2023-08-23T21:00:00.000Z", + "category": "special", + "body": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE\n\nWednesday, August 23, 2023, 2:30pm \u2013 4:00pm\n\nLocation: Cook County Medical Examiner\u2019s Office, 2121 W. Harrison, Chicago, IL\t\nAlso via WebEx Video Conference/Teleconference: ", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1034", + "formats": null, + "size": 615.42, + "name": "Missing and Murdered Task Force Agenda 08-23-23.docx", + "ext": ".docx", + "url": "/uploads/Missing_and_Murdered_Task_Force_Agenda_08_23_23_71d4f287f5.docx", + "updated_at": "2023-08-17T13:32:07.310Z", + "created_at": "2023-08-17T13:32:07.286Z", + "hash": "Missing_and_Murdered_Task_Force_Agenda_08_23_23_71d4f287f5", + "__typename": "UploadFile" + }, + { + "id": "1368", + "formats": null, + "size": 182.82, + "name": "Minutes Missing and Murdered Chicago Women Task Force Meeting 2023-08-23.pdf", + "ext": ".pdf", + "url": "/uploads/Minutes_Missing_and_Murdered_Chicago_Women_Task_Force_Meeting_2023_08_23_61ea9bd19a.pdf", + "updated_at": "2024-05-30T15:46:40.058Z", + "created_at": "2024-05-30T15:46:40.027Z", + "hash": "Minutes_Missing_and_Murdered_Chicago_Women_Task_Force_Meeting_2023_08_23_61ea9bd19a", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "140", + "title": "Budget Committee Meeting August 17, 2023", + "slug": "budget-committee-meeting-august-17-2023", + "summary": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, August 17, 2023 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. The Michael A. Bilandic Building\n160 N. LaSalle St., Room N505\nChicago, Illinois 60661\n\n\n2. ICJIA Offices\n524 S. 2nd Street, Suite 220\nSpringfield, Illinois 62701\n", + "created_at": "2023-08-10T22:26:29.889Z", + "updated_at": "2024-04-22T21:56:42.029Z", + "published_at": "2023-08-10T22:26:36.659Z", + "isCancelled": false, + "start": "2023-08-17T15:00:00.000Z", + "end": "2023-08-17T17:00:00.000Z", + "category": "budget", + "body": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, August 17, 2023 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. The Michael A. Bilandic Building\n160 N. LaSalle St., Room N505\nChicago, Illinois 60661\n\n\n2. ICJIA Offices\n524 S. 2nd Street, Suite 220\nSpringfield, Illinois 62701\n", + "posts": [], + "events": [], + "tags": [ + { + "title": "Funding", + "slug": "funding", + "__typename": "Tag" + }, + { + "title": "Community", + "slug": "community", + "__typename": "Tag" + }, + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "1031", + "formats": null, + "size": 166.9, + "name": "Agenda 081723.pdf", + "ext": ".pdf", + "url": "/uploads/Agenda_081723_d460695efc.pdf", + "updated_at": "2023-08-10T22:26:21.764Z", + "created_at": "2023-08-10T22:26:21.742Z", + "hash": "Agenda_081723_d460695efc", + "__typename": "UploadFile" + }, + { + "id": "1053", + "formats": null, + "size": 1767.97, + "name": "Budget Committee Materials 081723.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_081723_83dd012307.pdf", + "updated_at": "2023-08-28T22:34:45.461Z", + "created_at": "2023-08-28T22:34:45.432Z", + "hash": "Budget_Committee_Materials_081723_83dd012307", + "__typename": "UploadFile" + }, + { + "id": "1054", + "formats": null, + "size": 108.58, + "name": "American Rescue Plan Act 081723 Budget Committee Supplemental Item #2.pdf", + "ext": ".pdf", + "url": "/uploads/American_Rescue_Plan_Act_081723_Budget_Committee_Supplemental_Item_2_9c676d4a82.pdf", + "updated_at": "2023-08-28T22:36:40.566Z", + "created_at": "2023-08-28T22:36:40.547Z", + "hash": "American_Rescue_Plan_Act_081723_Budget_Committee_Supplemental_Item_2_9c676d4a82", + "__typename": "UploadFile" + }, + { + "id": "1055", + "formats": null, + "size": 68.38, + "name": "Violence Against Women Act 081723 Budget Committee Supplemental Item #9.pdf", + "ext": ".pdf", + "url": "/uploads/Violence_Against_Women_Act_081723_Budget_Committee_Supplemental_Item_9_6013e58156.pdf", + "updated_at": "2023-08-28T22:36:40.998Z", + "created_at": "2023-08-28T22:36:40.985Z", + "hash": "Violence_Against_Women_Act_081723_Budget_Committee_Supplemental_Item_9_6013e58156", + "__typename": "UploadFile" + }, + { + "id": "1056", + "formats": null, + "size": 129.72, + "name": "Less Lethal Alternatives for Law Enforcement 081723 Budget Committee Supplemental #4.pdf", + "ext": ".pdf", + "url": "/uploads/Less_Lethal_Alternatives_for_Law_Enforcement_081723_Budget_Committee_Supplemental_4_c10f7283c8.pdf", + "updated_at": "2023-08-28T22:36:41.072Z", + "created_at": "2023-08-28T22:36:41.048Z", + "hash": "Less_Lethal_Alternatives_for_Law_Enforcement_081723_Budget_Committee_Supplemental_4_c10f7283c8", + "__typename": "UploadFile" + }, + { + "id": "1057", + "formats": null, + "size": 113.68, + "name": "National Criminal History Improvement Program 081723 Budget Committee Supplemental Item #5.pdf", + "ext": ".pdf", + "url": "/uploads/National_Criminal_History_Improvement_Program_081723_Budget_Committee_Supplemental_Item_5_4374ffa7c5.pdf", + "updated_at": "2023-08-28T22:36:41.129Z", + "created_at": "2023-08-28T22:36:41.116Z", + "hash": "National_Criminal_History_Improvement_Program_081723_Budget_Committee_Supplemental_Item_5_4374ffa7c5", + "__typename": "UploadFile" + }, + { + "id": "1058", + "formats": null, + "size": 105.99, + "name": "Communnity Based Violence Intervention & Prevention 081723 Budget Committee Supplemental Item #12.pdf", + "ext": ".pdf", + "url": "/uploads/Communnity_Based_Violence_Intervention_and_Prevention_081723_Budget_Committee_Supplemental_Item_12_314dfd02e7.pdf", + "updated_at": "2023-08-28T22:36:41.172Z", + "created_at": "2023-08-28T22:36:41.156Z", + "hash": "Communnity_Based_Violence_Intervention_and_Prevention_081723_Budget_Committee_Supplemental_Item_12_314dfd02e7", + "__typename": "UploadFile" + }, + { + "id": "1059", + "formats": null, + "size": 179.59, + "name": "Violence Prevention and Reduction 081723 Budget Committee Supplemental #13.pdf", + "ext": ".pdf", + "url": "/uploads/Violence_Prevention_and_Reduction_081723_Budget_Committee_Supplemental_13_fd72ee6999.pdf", + "updated_at": "2023-08-28T22:36:41.324Z", + "created_at": "2023-08-28T22:36:41.305Z", + "hash": "Violence_Prevention_and_Reduction_081723_Budget_Committee_Supplemental_13_fd72ee6999", + "__typename": "UploadFile" + }, + { + "id": "1060", + "formats": null, + "size": 255.99, + "name": "State Violence Prevention 081723 Budget Committee Supplemental Item #3.pdf", + "ext": ".pdf", + "url": "/uploads/State_Violence_Prevention_081723_Budget_Committee_Supplemental_Item_3_f8a2fc07a7.pdf", + "updated_at": "2023-08-28T22:36:41.391Z", + "created_at": "2023-08-28T22:36:41.376Z", + "hash": "State_Violence_Prevention_081723_Budget_Committee_Supplemental_Item_3_f8a2fc07a7", + "__typename": "UploadFile" + }, + { + "id": "1061", + "formats": null, + "size": 316.65, + "name": "Victims of Crime Act 081723 Budget Committee Supplemental #10.pdf", + "ext": ".pdf", + "url": "/uploads/Victims_of_Crime_Act_081723_Budget_Committee_Supplemental_10_73e009d91b.pdf", + "updated_at": "2023-08-28T22:36:41.442Z", + "created_at": "2023-08-28T22:36:41.419Z", + "hash": "Victims_of_Crime_Act_081723_Budget_Committee_Supplemental_10_73e009d91b", + "__typename": "UploadFile" + }, + { + "id": "1062", + "formats": null, + "size": 263.4, + "name": "Budget Committee Summary 081723.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_081723_e5e5ae085f.pdf", + "updated_at": "2023-08-28T22:36:59.750Z", + "created_at": "2023-08-28T22:36:59.734Z", + "hash": "Budget_Committee_Summary_081723_e5e5ae085f", + "__typename": "UploadFile" + }, + { + "id": "1324", + "formats": null, + "size": 282.84, + "name": "Budet Committee Minutes 081723.pdf", + "ext": ".pdf", + "url": "/uploads/Budet_Committee_Minutes_081723_b5d4f5dcd7.pdf", + "updated_at": "2024-04-22T21:56:39.243Z", + "created_at": "2024-04-22T21:56:39.219Z", + "hash": "Budet_Committee_Minutes_081723_b5d4f5dcd7", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "139", + "title": "Violence Prevention Ad Hoc Committee: Aug 10, 2023", + "slug": "violence-prevention-ad-hoc-committee-aug-10-2023", + "summary": "Public notice is hereby given that the Violence Prevention Ad Hoc Committee will conduct a public meeting on 8/10/23, at 10:00 am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-08-03T14:39:30.494Z", + "updated_at": "2023-08-03T14:39:32.172Z", + "published_at": "2023-08-03T14:39:32.132Z", + "isCancelled": false, + "start": "2023-08-10T15:00:00.000Z", + "end": "2023-08-10T17:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Violence Prevention Ad Hoc Committee will conduct a public meeting on 8/10/23, at 10:00 am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1021", + "formats": null, + "size": 33.94, + "name": "ICJIA Violence Prevention Ad Hoc Committee Meeting 8-10-23.docx", + "ext": ".docx", + "url": "/uploads/ICJIA_Violence_Prevention_Ad_Hoc_Committee_Meeting_8_10_23_36d6cf62da.docx", + "updated_at": "2023-08-03T14:39:22.058Z", + "created_at": "2023-08-03T14:39:22.035Z", + "hash": "ICJIA_Violence_Prevention_Ad_Hoc_Committee_Meeting_8_10_23_36d6cf62da", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "138", + "title": "COLTON\u2019S TASK FORCE COMMITTEE MEETING", + "slug": "colton-s-task-force-committee-meeting", + "summary": "Location:\n\nVia Webex Video Conference/Teleconference", + "created_at": "2023-07-26T22:37:17.702Z", + "updated_at": "2023-07-26T22:37:39.896Z", + "published_at": "2023-07-26T22:37:39.857Z", + "isCancelled": false, + "start": "2023-08-03T19:00:00.000Z", + "end": "2023-08-03T20:30:00.000Z", + "category": "special", + "body": "**Location**:\n\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1015", + "formats": null, + "size": 127.59, + "name": "Colton's Agenda 8.3.23.pdf", + "ext": ".pdf", + "url": "/uploads/Colton_s_Agenda_8_3_23_d8faa6e654.pdf", + "updated_at": "2023-07-26T22:37:06.840Z", + "created_at": "2023-07-26T22:37:06.799Z", + "hash": "Colton_s_Agenda_8_3_23_d8faa6e654", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "137", + "title": "DOMESTIC VIOLENCE PRETRIAL PRACTICES WORKING GROUP: July 28, 2023", + "slug": "domestic-violence-pretrial-practices-working-group-july-28-2023", + "summary": "Public notice is hereby given that the Domestic Violence Pretrial Practices Working\nGroup will conduct a public meeting on 7/28/23, at 10:00 am by WebEx. All interested\nparties are invited to attend and will be given the opportunity for public comment.\n", + "created_at": "2023-07-26T16:46:55.595Z", + "updated_at": "2023-07-26T16:46:58.226Z", + "published_at": "2023-07-26T16:46:58.180Z", + "isCancelled": false, + "start": "2023-07-28T15:00:00.000Z", + "end": "2023-07-28T16:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Domestic Violence Pretrial Practices Working\nGroup will conduct a public meeting on 7/28/23, at 10:00 am by WebEx. All interested\nparties are invited to attend and will be given the opportunity for public comment.\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1014", + "formats": null, + "size": 103.07, + "name": "July 2023 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/July_2023_Agenda_434ebfa79c.pdf", + "updated_at": "2023-07-24T21:11:12.666Z", + "created_at": "2023-07-24T21:11:12.639Z", + "hash": "July_2023_Agenda_434ebfa79c", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "135", + "title": "THE FIREARM PROHIBITORS AND RECORDS IMPROVEMENT TASK FORCE: July 20, 2023", + "slug": "the-firearm-prohibitors-and-records-improvement-task-force-july-20-2023", + "summary": "Public notice is hereby given that the Illinois Firearm Task Force will conduct a public\nmeeting on July 20, 2023, at 2:00 pm by WebEx. All interested parties are invited to\nattend and will be given the opportunity for public comment.", + "created_at": "2023-07-18T19:25:11.862Z", + "updated_at": "2024-03-01T15:11:38.379Z", + "published_at": "2023-07-18T19:25:13.255Z", + "isCancelled": false, + "start": "2023-07-20T19:00:00.000Z", + "end": "2023-07-20T20:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Firearm Task Force will conduct a public\nmeeting on July 20, 2023, at 2:00 pm by WebEx. All interested parties are invited to\nattend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1013", + "formats": null, + "size": 76.79, + "name": "July 2023 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/July_2023_Agenda_8862ef7c61.pdf", + "updated_at": "2023-07-18T19:25:06.251Z", + "created_at": "2023-07-18T19:25:06.226Z", + "hash": "July_2023_Agenda_8862ef7c61", + "__typename": "UploadFile" + }, + { + "id": "1263", + "formats": null, + "size": 86.72, + "name": "Firearm Prohibitor and Records Improvement July 20 2023 Minutes edited KA KP.pdf", + "ext": ".pdf", + "url": "/uploads/Firearm_Prohibitor_and_Records_Improvement_July_20_2023_Minutes_edited_KA_KP_d2b03d61d9.pdf", + "updated_at": "2024-03-01T15:11:32.318Z", + "created_at": "2024-03-01T15:11:32.282Z", + "hash": "Firearm_Prohibitor_and_Records_Improvement_July_20_2023_Minutes_edited_KA_KP_d2b03d61d9", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "134", + "title": " Regular Board Meeting: July 20, 2023", + "slug": "regular-board-meeting-july-20-2023", + "summary": "\nRegular Board Meeting \nThursday, July 20, 2023\n 10:00 a.m. to 12:00 p.m. \nIllinois Criminal Justice Information Authority \n", + "created_at": "2023-07-18T14:16:46.117Z", + "updated_at": "2023-07-18T15:47:00.916Z", + "published_at": "2023-07-18T14:17:05.212Z", + "isCancelled": false, + "start": "2023-07-20T15:00:00.000Z", + "end": "2023-07-20T17:00:00.000Z", + "category": "board", + "body": "\nRegular Board Meeting \n\nThursday, July 20, 2023\n\n 10:00 a.m. to 12:00 p.m. \n\nIllinois Criminal Justice Information Authority \n\n", + "posts": [], + "events": [], + "tags": [ + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "1007", + "formats": null, + "size": 84.29, + "name": "1 Board Agenda 7.20.2023 ddw_f.docx", + "ext": ".docx", + "url": "/uploads/1_Board_Agenda_7_20_2023_ddw_f_9dffbd1338.docx", + "updated_at": "2023-07-18T14:16:58.122Z", + "created_at": "2023-07-18T14:16:58.102Z", + "hash": "1_Board_Agenda_7_20_2023_ddw_f_9dffbd1338", + "__typename": "UploadFile" + }, + { + "id": "1011", + "formats": null, + "size": 242.09, + "name": "Authority Board Meeting 4.20.23 DDW_ DA Final.pdf", + "ext": ".pdf", + "url": "/uploads/Authority_Board_Meeting_4_20_23_DDW_DA_Final_2f47ab7455.pdf", + "updated_at": "2023-07-18T15:46:57.726Z", + "created_at": "2023-07-18T15:46:57.708Z", + "hash": "Authority_Board_Meeting_4_20_23_DDW_DA_Final_2f47ab7455", + "__typename": "UploadFile" + }, + { + "id": "1012", + "formats": null, + "size": 245.79, + "name": "2_Authority_Board_Meeting_Minutes_3_17_22_6_14_22_mdj_ce_f006e78a49.pdf", + "ext": ".pdf", + "url": "/uploads/2_Authority_Board_Meeting_Minutes_3_17_22_6_14_22_mdj_ce_f006e78a49_6723c91612.pdf", + "updated_at": "2023-07-18T15:46:57.799Z", + "created_at": "2023-07-18T15:46:57.787Z", + "hash": "2_Authority_Board_Meeting_Minutes_3_17_22_6_14_22_mdj_ce_f006e78a49_6723c91612", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "133", + "title": "Budget Committee Meeting July 13, 2023", + "slug": "budget-committee-meeting-july-13-2023", + "summary": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, July 13, 2023 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. The Springfield Room at 555 W. Monroe, Chicago, Illinois 60661\n\n2. ICJIA Offices, 524 S. 2nd Street, Suite 220, Springfield, Illinois 62701\n", + "created_at": "2023-07-06T23:02:55.951Z", + "updated_at": "2024-04-22T21:51:38.828Z", + "published_at": "2023-07-06T23:03:01.935Z", + "isCancelled": false, + "start": "2023-07-13T15:00:00.000Z", + "end": "2023-07-13T17:00:00.000Z", + "category": "budget", + "body": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, July 13, 2023 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. The Springfield Room at 555 W. Monroe, Chicago, Illinois 60661\n\n2. ICJIA Offices, 524 S. 2nd Street, Suite 220, Springfield, Illinois 62701\n", + "posts": [], + "events": [], + "tags": [ + { + "title": "Funding", + "slug": "funding", + "__typename": "Tag" + }, + { + "title": "Community", + "slug": "community", + "__typename": "Tag" + }, + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "984", + "formats": null, + "size": 134.36, + "name": "Agenda 071323 Revised.pdf", + "ext": ".pdf", + "url": "/uploads/Agenda_071323_Revised_a8ef155d75.pdf", + "updated_at": "2023-07-10T22:42:13.978Z", + "created_at": "2023-07-10T22:42:13.950Z", + "hash": "Agenda_071323_Revised_a8ef155d75", + "__typename": "UploadFile" + }, + { + "id": "1024", + "formats": null, + "size": 129.19, + "name": "Budget Committee Summary 071323.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_071323_bd8ddab67e.pdf", + "updated_at": "2023-08-03T15:37:58.835Z", + "created_at": "2023-08-03T15:37:58.817Z", + "hash": "Budget_Committee_Summary_071323_bd8ddab67e", + "__typename": "UploadFile" + }, + { + "id": "1026", + "formats": null, + "size": 223.82, + "name": "Supplemental_Budget_Committee_Item_#10_ 071323.pdf", + "ext": ".pdf", + "url": "/uploads/Supplemental_Budget_Committee_Item_10_071323_d9b520ceaa.pdf", + "updated_at": "2023-08-03T15:40:20.174Z", + "created_at": "2023-08-03T15:40:20.155Z", + "hash": "Supplemental_Budget_Committee_Item_10_071323_d9b520ceaa", + "__typename": "UploadFile" + }, + { + "id": "1027", + "formats": null, + "size": 274.1, + "name": "Supplemental_Budget_Committee_Item_#8_071323.pdf", + "ext": ".pdf", + "url": "/uploads/Supplemental_Budget_Committee_Item_8_071323_769cb5824c.pdf", + "updated_at": "2023-08-03T15:41:18.880Z", + "created_at": "2023-08-03T15:41:18.860Z", + "hash": "Supplemental_Budget_Committee_Item_8_071323_769cb5824c", + "__typename": "UploadFile" + }, + { + "id": "1028", + "formats": null, + "size": 504.6, + "name": "Budget_Committee_Supplemental_Item_#9_071323.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Supplemental_Item_9_071323_66dd6a9261.pdf", + "updated_at": "2023-08-03T15:43:00.720Z", + "created_at": "2023-08-03T15:43:00.707Z", + "hash": "Budget_Committee_Supplemental_Item_9_071323_66dd6a9261", + "__typename": "UploadFile" + }, + { + "id": "1322", + "formats": null, + "size": 2245.39, + "name": "Budget Committee Materials 071323.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_071323_d2cf9b1a29.pdf", + "updated_at": "2024-04-22T21:49:41.821Z", + "created_at": "2024-04-22T21:49:41.792Z", + "hash": "Budget_Committee_Materials_071323_d2cf9b1a29", + "__typename": "UploadFile" + }, + { + "id": "1323", + "formats": null, + "size": 131.15, + "name": "Budget Committee Minutes 071323.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_071323_ea530a5f53.pdf", + "updated_at": "2024-04-22T21:51:36.213Z", + "created_at": "2024-04-22T21:51:36.188Z", + "hash": "Budget_Committee_Minutes_071323_ea530a5f53", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "132", + "title": "DOMESTIC VIOLENCE PRETRIAL PRACTICES WORKING GROUP: June 30, 2023", + "slug": "domestic-violence-pretrial-practices-working-group-june-30-2023", + "summary": "Public notice is hereby given that the Domestic Violence Pretrial Practices Working Group will conduct a public meeting on 6/30/23, at 10:00 am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-06-28T19:17:25.927Z", + "updated_at": "2023-06-28T19:17:47.254Z", + "published_at": "2023-06-28T19:17:27.847Z", + "isCancelled": false, + "start": "2023-06-30T15:00:00.000Z", + "end": "2023-06-30T16:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Domestic Violence Pretrial Practices Working Group will conduct a public meeting on 6/30/23, at 10:00 am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "976", + "formats": null, + "size": 103.24, + "name": "June 2023 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/June_2023_Agenda_9a163de938.pdf", + "updated_at": "2023-06-28T19:17:21.666Z", + "created_at": "2023-06-28T19:17:21.641Z", + "hash": "June_2023_Agenda_9a163de938", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "131", + "title": "THE FIREARM PROHIBITORS AND RECORDS IMPROVEMENT TASK FORCE: June 22, 2023", + "slug": "the-firearm-prohibitors-and-records-improvement-task-force-june-22-2023", + "summary": "Public notice is hereby given that the Illinois Firearm Task Force will conduct a public meeting on June 22, 2023, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-06-20T14:46:42.868Z", + "updated_at": "2023-06-20T14:46:44.740Z", + "published_at": "2023-06-20T14:46:44.696Z", + "isCancelled": false, + "start": "2023-06-22T19:00:00.000Z", + "end": "2023-06-22T20:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Firearm Task Force will conduct a public meeting on June 22, 2023, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "955", + "formats": null, + "size": 78.14, + "name": "June 2023 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/June_2023_Agenda_08e87b2f98.pdf", + "updated_at": "2023-06-20T14:46:31.736Z", + "created_at": "2023-06-20T14:46:31.716Z", + "hash": "June_2023_Agenda_08e87b2f98", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "130", + "title": "Budget Committee Meeting June 22, 2023", + "slug": "budget-committee-meeting-june-22-2023", + "summary": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, June 22, 2023 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. The Illinois Room at 555 W. Monroe, Chicago, Illinois 60661\n\n2. State Capitol, 301 S. 2nd Street, Room 100, Springfield, Illinois 62706\n", + "created_at": "2023-06-16T17:54:37.941Z", + "updated_at": "2024-04-22T21:49:00.478Z", + "published_at": "2023-06-16T17:54:43.153Z", + "isCancelled": false, + "start": "2023-06-22T15:00:00.000Z", + "end": "2023-06-22T17:00:00.000Z", + "category": "budget", + "body": "Illinois Criminal Justice Information Authority Budget Committee Meeting\n\nThursday, June 22, 2023 \n10:00 a.m. to 12:00 p.m.\n\nTwo Locations:\n\n1. The Illinois Room at 555 W. Monroe, Chicago, Illinois 60661\n\n2. State Capitol, 301 S. 2nd Street, Room 100, Springfield, Illinois 62706\n", + "posts": [], + "events": [], + "tags": [ + { + "title": "Funding", + "slug": "funding", + "__typename": "Tag" + }, + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "952", + "formats": null, + "size": 134.24, + "name": "Budget Committee Agenda 062223.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Agenda_062223_c221784c5b.pdf", + "updated_at": "2023-06-16T17:53:54.138Z", + "created_at": "2023-06-16T17:53:54.114Z", + "hash": "Budget_Committee_Agenda_062223_c221784c5b", + "__typename": "UploadFile" + }, + { + "id": "975", + "formats": null, + "size": 1987.54, + "name": "Budget_Committee_Materials_062223.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_062223_098d2347e1.pdf", + "updated_at": "2023-06-27T21:11:51.384Z", + "created_at": "2023-06-27T21:11:51.361Z", + "hash": "Budget_Committee_Materials_062223_098d2347e1", + "__typename": "UploadFile" + }, + { + "id": "985", + "formats": null, + "size": 142.51, + "name": "Budget Committee Summary 062223.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_062223_87fc746401.pdf", + "updated_at": "2023-07-12T14:41:26.300Z", + "created_at": "2023-07-12T14:41:26.278Z", + "hash": "Budget_Committee_Summary_062223_87fc746401", + "__typename": "UploadFile" + }, + { + "id": "1321", + "formats": null, + "size": 156.63, + "name": "Budget Committee Minutes 062223.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_062223_43ea20ce6d.pdf", + "updated_at": "2024-04-22T21:48:58.131Z", + "created_at": "2024-04-22T21:48:58.097Z", + "hash": "Budget_Committee_Minutes_062223_43ea20ce6d", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "129", + "title": "STATE CRISIS INTERVENTION PROGRAM ADVISORY COMMITTEE", + "slug": "state-crisis-intervention-program-advisory-committee", + "summary": "Tuesday, June 20, 2023, 9:00 a.m. \u2013 1:00 p.m.\nLocation: 555 W. Monroe, Illinois Room", + "created_at": "2023-06-16T16:32:07.289Z", + "updated_at": "2023-06-16T16:32:08.590Z", + "published_at": "2023-06-16T16:32:08.543Z", + "isCancelled": false, + "start": "2023-06-20T14:00:00.000Z", + "end": "2023-06-20T18:00:00.000Z", + "category": "special", + "body": "Tuesday, June 20, 2023, 9:00 a.m. \u2013 1:00 p.m.\n\n**Location**\n\n555 W. Monroe \n \nIllinois Room", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "950", + "formats": null, + "size": 95.8, + "name": "SCIP Meeting Agenda 06 20 23.pdf", + "ext": ".pdf", + "url": "/uploads/SCIP_Meeting_Agenda_06_20_23_1452e92416.pdf", + "updated_at": "2023-06-16T16:32:01.363Z", + "created_at": "2023-06-16T16:32:01.331Z", + "hash": "SCIP_Meeting_Agenda_06_20_23_1452e92416", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "128", + "title": "THE FIREARM PROHIBITORS AND RECORDS IMPROVEMENT TASK FORCE: May 25, 2023", + "slug": "the-firearm-prohibitors-and-records-improvement-task-force-may-25-2023", + "summary": "Public notice is hereby given that the Illinois Firearm Task Force will conduct a public meeting on May 25, 2023, at 11:30 am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-05-22T18:52:47.055Z", + "updated_at": "2023-05-22T18:52:49.113Z", + "published_at": "2023-05-22T18:52:49.065Z", + "isCancelled": false, + "start": "2023-05-25T16:30:00.000Z", + "end": "2023-05-25T17:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Firearm Task Force will conduct a public meeting on May 25, 2023, at 11:30 am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "941", + "formats": null, + "size": 75.65, + "name": "May 2023 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/May_2023_Agenda_d22eec2cb3.pdf", + "updated_at": "2023-05-22T18:52:39.236Z", + "created_at": "2023-05-22T18:52:39.216Z", + "hash": "May_2023_Agenda_d22eec2cb3", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "127", + "title": "MISSING AND MURDERED CHICAGO WOMEN TASK FORCE: May 24, 2023", + "slug": "missing-and-murdered-chicago-women-task-force-may-24-2023", + "summary": "20 ILCS 4119 Task Force on Missing and Murdered Chicago Women Act.\n\nWednesday, May 24, 2023\n2:00pm \u2013 3:30pm\nLocation\nVia WebEx Video Conference/Teleconference\n", + "created_at": "2023-05-22T14:39:40.742Z", + "updated_at": "2023-08-25T12:35:51.407Z", + "published_at": "2023-05-22T14:39:44.508Z", + "isCancelled": false, + "start": "2023-05-24T19:00:00.000Z", + "end": "2023-05-24T20:30:00.000Z", + "category": "special", + "body": "20 ILCS 4119 Task Force on Missing and Murdered Chicago Women Act.\n\nWednesday, May 24, 2023\n2:00pm \u2013 3:30pm\nLocation\nVia WebEx Video Conference/Teleconference\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "940", + "formats": null, + "size": 616.39, + "name": "Missing and Murdered Task Force Agenda 05-24-23.docx", + "ext": ".docx", + "url": "/uploads/Missing_and_Murdered_Task_Force_Agenda_05_24_23_7777e75347.docx", + "updated_at": "2023-05-22T14:39:36.724Z", + "created_at": "2023-05-22T14:39:36.699Z", + "hash": "Missing_and_Murdered_Task_Force_Agenda_05_24_23_7777e75347", + "__typename": "UploadFile" + }, + { + "id": "1051", + "formats": null, + "size": 45.62, + "name": "Missing and Murdered Chicago Women Task Force Meeting Minutes 05242023.pdf", + "ext": ".pdf", + "url": "/uploads/Missing_and_Murdered_Chicago_Women_Task_Force_Meeting_Minutes_05242023_d1f8ca7359.pdf", + "updated_at": "2023-08-25T12:35:48.195Z", + "created_at": "2023-08-25T12:35:48.181Z", + "hash": "Missing_and_Murdered_Chicago_Women_Task_Force_Meeting_Minutes_05242023_d1f8ca7359", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "126", + "title": "ILLINOIS DOMESTIC VIOLENCE FATALITY REVIEW COMMITTEE: May 16, 2023", + "slug": "illinois-domestic-violence-fatality-review-committee-may-16-2023", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review Committee will conduct\na public meeting on 5/16/2023, at 1:00 pm by Zoom. All interested parties are invited to attend and will\nbe given the opportunity for public comment.", + "created_at": "2023-05-09T14:36:02.131Z", + "updated_at": "2023-05-11T16:40:21.511Z", + "published_at": "2023-05-09T14:36:03.674Z", + "isCancelled": false, + "start": "2023-05-16T18:00:00.000Z", + "end": "2023-05-16T19:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review Committee will conduct\na public meeting on 5/16/2023, at 1:00 pm by Zoom. All interested parties are invited to attend and will\nbe given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "935", + "formats": null, + "size": 654.56, + "name": "DVFRC Agenda 5.16.23.pdf", + "ext": ".pdf", + "url": "/uploads/DVFRC_Agenda_5_16_23_f56c1fc5cf.pdf", + "updated_at": "2023-05-11T16:37:20.561Z", + "created_at": "2023-05-11T16:37:20.521Z", + "hash": "DVFRC_Agenda_5_16_23_f56c1fc5cf", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "125", + "title": "VIOLENCE PREVENTION AD HOC COMMITTEE MEETING AGENDA: May 11, 2023", + "slug": "violence-prevention-ad-hoc-committee-meeting-agenda-may-11-2023", + "summary": "This serves as Public Notice of the Violence Prevention Ad Hoc Committee Regular Meeting to be held at the date, time and\nlocation set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-05-04T19:39:14.388Z", + "updated_at": "2023-05-04T19:39:17.835Z", + "published_at": "2023-05-04T19:39:17.798Z", + "isCancelled": false, + "start": "2023-05-11T15:00:00.000Z", + "end": "2023-05-11T17:00:00.000Z", + "category": "special", + "body": "This serves as Public Notice of the Violence Prevention Ad Hoc Committee Regular Meeting to be held at the date, time and\nlocation set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "929", + "formats": null, + "size": 141.02, + "name": "ICJIA Violence Prevention Ad Hoc Committee Meeting 5-11-23.pdf", + "ext": ".pdf", + "url": "/uploads/ICJIA_Violence_Prevention_Ad_Hoc_Committee_Meeting_5_11_23_084dc22c9f.pdf", + "updated_at": "2023-05-04T19:39:11.164Z", + "created_at": "2023-05-04T19:39:11.149Z", + "hash": "ICJIA_Violence_Prevention_Ad_Hoc_Committee_Meeting_5_11_23_084dc22c9f", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "124", + "title": "THE FIREARM PROHIBITORS AND RECORDS IMPROVEMENT TASK FORCE: May 4, 2023", + "slug": "the-firearm-prohibitors-and-records-improvement-task-force-may-4-2023", + "summary": "Public notice is hereby given that the Illinois Firearm Task Force will conduct a public meeting on May 4, 2023, at 3:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-05-01T20:09:05.596Z", + "updated_at": "2023-06-08T21:13:39.383Z", + "published_at": "2023-05-01T20:09:10.787Z", + "isCancelled": false, + "start": "2023-05-04T20:00:00.000Z", + "end": "2023-05-04T21:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Firearm Task Force will conduct a public meeting on May 4, 2023, at 3:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "927", + "formats": null, + "size": 76.44, + "name": "May 2023 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/May_2023_Agenda_bc840912f3.pdf", + "updated_at": "2023-05-01T20:11:28.044Z", + "created_at": "2023-05-01T20:11:28.020Z", + "hash": "May_2023_Agenda_bc840912f3", + "__typename": "UploadFile" + }, + { + "id": "948", + "formats": null, + "size": 202.46, + "name": "Firearm Prohibitor And Records Improvement 5.4.23 Task Force Meeting Minutes.pdf", + "ext": ".pdf", + "url": "/uploads/Firearm_Prohibitor_And_Records_Improvement_5_4_23_Task_Force_Meeting_Minutes_b68edc4db8.pdf", + "updated_at": "2023-06-08T21:13:33.292Z", + "created_at": "2023-06-08T21:13:33.277Z", + "hash": "Firearm_Prohibitor_And_Records_Improvement_5_4_23_Task_Force_Meeting_Minutes_b68edc4db8", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "123", + "title": "Illinois Crime Reduction Task Force: Apr 24, 2023 ", + "slug": "illinois-crime-reduction-task-force-apr-24-2023", + "summary": "Public notice is hereby given that the Illinois Crime Reduction Task Force will conduct a public meeting on 4/24/2023, at 12:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-04-21T14:36:00.813Z", + "updated_at": "2023-04-21T14:38:37.057Z", + "published_at": "2023-04-21T14:36:02.222Z", + "isCancelled": false, + "start": "2023-04-24T17:00:00.000Z", + "end": "2023-04-24T19:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Crime Reduction Task Force will conduct a public meeting on 4/24/2023, at 12:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "903", + "formats": null, + "size": 616.8, + "name": "Crime Reduction Task Force - Agenda - 4.24.23.docx", + "ext": ".docx", + "url": "/uploads/Crime_Reduction_Task_Force_Agenda_4_24_23_8ec6eb09b9.docx", + "updated_at": "2023-04-21T14:34:39.220Z", + "created_at": "2023-04-21T14:34:39.202Z", + "hash": "Crime_Reduction_Task_Force_Agenda_4_24_23_8ec6eb09b9", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "121", + "title": "Regular Board Meeting: Apr 20, 2023", + "slug": "regular-board-meeting-apr-20-2023", + "summary": "\nRegular Board Meeting \nThursday, April 20, 2023\n", + "created_at": "2023-04-17T22:15:29.970Z", + "updated_at": "2023-07-18T15:46:31.729Z", + "published_at": "2023-04-17T22:15:31.868Z", + "isCancelled": false, + "start": "2023-04-20T15:00:00.000Z", + "end": "2023-04-20T17:00:00.000Z", + "category": "board", + "body": "\nRegular Board Meeting \n\nThursday, April 20, 2023\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "879", + "formats": null, + "size": 84.07, + "name": "1 Board Agenda 4.20.2023 ddw (003).docx", + "ext": ".docx", + "url": "/uploads/1_Board_Agenda_4_20_2023_ddw_003_c5f384725f.docx", + "updated_at": "2023-04-17T22:06:56.717Z", + "created_at": "2023-04-17T22:06:56.703Z", + "hash": "1_Board_Agenda_4_20_2023_ddw_003_c5f384725f", + "__typename": "UploadFile" + }, + { + "id": "1008", + "formats": null, + "size": 242.09, + "name": "Authority Board Meeting 4.20.23 DDW_ DA Final.pdf", + "ext": ".pdf", + "url": "/uploads/Authority_Board_Meeting_4_20_23_DDW_DA_Final_38af5bdab3.pdf", + "updated_at": "2023-07-18T15:42:04.303Z", + "created_at": "2023-07-18T15:42:04.268Z", + "hash": "Authority_Board_Meeting_4_20_23_DDW_DA_Final_38af5bdab3", + "__typename": "UploadFile" + }, + { + "id": "1010", + "formats": null, + "size": 242.09, + "name": "Authority Board Meeting 4.20.23 DDW_ DA Final.pdf", + "ext": ".pdf", + "url": "/uploads/Authority_Board_Meeting_4_20_23_DDW_DA_Final_6fe985e4fc.pdf", + "updated_at": "2023-07-18T15:46:29.038Z", + "created_at": "2023-07-18T15:46:29.019Z", + "hash": "Authority_Board_Meeting_4_20_23_DDW_DA_Final_6fe985e4fc", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "119", + "title": "Justice Assistance Grant Ad Hoc Committee Listening Session #3: April 19, 2023", + "slug": "justice-assistance-grant-ad-hoc-committee-listening-session-3-april-19-2023", + "summary": "Public notice is hereby given that the Justice Assistance Grant (JAG) Ad Hoc Committee will conduct a public meeting on 4/19/2023, at 10am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-04-11T20:15:27.723Z", + "updated_at": "2023-04-11T20:15:37.321Z", + "published_at": "2023-04-11T20:15:29.529Z", + "isCancelled": false, + "start": "2023-04-19T15:00:00.000Z", + "end": "2023-04-19T16:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Justice Assistance Grant (JAG) Ad Hoc Committee will conduct a public meeting on 4/19/2023, at 10am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "873", + "formats": null, + "size": 85.39, + "name": "Listening Session 3 Agenda 4.19.2023 ddw.docx", + "ext": ".docx", + "url": "/uploads/Listening_Session_3_Agenda_4_19_2023_ddw_607a833ba0.docx", + "updated_at": "2023-04-11T20:15:24.195Z", + "created_at": "2023-04-11T20:15:24.183Z", + "hash": "Listening_Session_3_Agenda_4_19_2023_ddw_607a833ba0", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "120", + "title": " RESTORE, REINVEST, AND RENEW PROGRAM BOARD: Apr 19, 2023", + "slug": "restore-reinvest-and-renew-program-board-apr-19-2023", + "summary": "RESTORE, REINVEST, AND RENEW PROGRAM BOARD\nRegular Meeting\nPursuant to \u00a7 10-40 of the Cannabis Regulation and Tax Act (410 ILCS 705/)\n\n", + "created_at": "2023-04-14T17:02:06.245Z", + "updated_at": "2023-04-17T22:17:59.611Z", + "published_at": "2023-04-14T17:02:10.347Z", + "isCancelled": false, + "start": "2023-04-19T14:00:00.000Z", + "end": "2023-04-19T15:30:00.000Z", + "category": "special", + "body": "**Regular Meeting**\n\nPursuant to \u00a7 10-40 of the Cannabis Regulation and Tax Act (410 ILCS 705/)\n\n**Date and Time**\n\nWednesday, April 19, 2023\n\n9:00 AM - 10:30 AM\n\n**Location**\n\nVideoconference/Teleconference\n\n", + "posts": [], + "events": [], + "tags": [ + { + "title": "Restore, Reinvest, Renew (R3)", + "slug": "restore-reinvest-renew-r3", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "874", + "formats": null, + "size": 39.35, + "name": "R3 Agenda 4.19.docx", + "ext": ".docx", + "url": "/uploads/R3_Agenda_4_19_6cc71fc129.docx", + "updated_at": "2023-04-14T17:01:51.040Z", + "created_at": "2023-04-14T17:01:51.020Z", + "hash": "R3_Agenda_4_19_6cc71fc129", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "118", + "title": "Justice Assistance Grant Ad Hoc Committee Listening Session #2: April 18, 2023", + "slug": "justice-assistance-grant-ad-hoc-committee-listening-session-2-april-18-2023", + "summary": "Public notice is hereby given that the Justice Assistance Grant (JAG) Ad Hoc Committee will conduct a public meeting on 4/18/2023, at 10am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-04-11T20:14:06.453Z", + "updated_at": "2023-04-11T20:14:08.563Z", + "published_at": "2023-04-11T20:14:08.537Z", + "isCancelled": false, + "start": "2023-04-18T15:00:00.000Z", + "end": "2023-04-18T16:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Justice Assistance Grant (JAG) Ad Hoc Committee will conduct a public meeting on 4/18/2023, at 10am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "872", + "formats": null, + "size": 85.42, + "name": "Listening Session 2 Agenda 4.18.2023 ddw.docx", + "ext": ".docx", + "url": "/uploads/Listening_Session_2_Agenda_4_18_2023_ddw_4d9eec884d.docx", + "updated_at": "2023-04-11T20:13:56.608Z", + "created_at": "2023-04-11T20:13:56.587Z", + "hash": "Listening_Session_2_Agenda_4_18_2023_ddw_4d9eec884d", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "117", + "title": "Justice Assistance Grant Ad Hoc Committee Listening Session #1: April 17, 2023", + "slug": "justice-assistance-grant-ad-hoc-committee-listening-session-1-april-17-2023", + "summary": "Public notice is hereby given that the Justice Assistance Grant (JAG) Ad Hoc Committee will conduct a public meeting on 4/17/2023, at 10am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-04-11T20:12:26.921Z", + "updated_at": "2023-04-11T20:12:29.584Z", + "published_at": "2023-04-11T20:12:29.541Z", + "isCancelled": false, + "start": "2023-04-17T15:00:00.000Z", + "end": "2023-04-17T16:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Justice Assistance Grant (JAG) Ad Hoc Committee will conduct a public meeting on 4/17/2023, at 10am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "871", + "formats": null, + "size": 85.57, + "name": "Listening Session 1 Agenda 4.17.2023 ddw.docx", + "ext": ".docx", + "url": "/uploads/Listening_Session_1_Agenda_4_17_2023_ddw_f43ffd6a1c.docx", + "updated_at": "2023-04-11T20:12:21.488Z", + "created_at": "2023-04-11T20:12:21.470Z", + "hash": "Listening_Session_1_Agenda_4_17_2023_ddw_f43ffd6a1c", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "116", + "title": "Budget Committee Meeting April 13 2023", + "slug": "budget-committee-meeting-april-13-2023", + "summary": "ICJIA Budget Committee Meeting\nThursday, April 13, 2023\n10:00 a.m. to 12:00 p.m.\nLocation:\nVia WebEx Video Conference/Teleconference", + "created_at": "2023-04-10T13:56:28.813Z", + "updated_at": "2024-04-22T21:44:31.125Z", + "published_at": "2023-04-10T13:56:33.055Z", + "isCancelled": false, + "start": "2023-04-13T15:00:00.000Z", + "end": "2023-04-13T17:00:00.000Z", + "category": "budget", + "body": "ICJIA Budget Committee Meeting\nThursday, April 13, 2023\n10:00 a.m. to 12:00 p.m.\nLocation:\nWebEx Video Conference / Teleconference", + "posts": [], + "events": [], + "tags": [ + { + "title": "Funding", + "slug": "funding", + "__typename": "Tag" + }, + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "870", + "formats": null, + "size": 134.48, + "name": "Agenda 041323.pdf", + "ext": ".pdf", + "url": "/uploads/Agenda_041323_cfe734139c.pdf", + "updated_at": "2023-04-10T13:53:35.974Z", + "created_at": "2023-04-10T13:53:35.956Z", + "hash": "Agenda_041323_cfe734139c", + "__typename": "UploadFile" + }, + { + "id": "905", + "formats": null, + "size": 1509.89, + "name": "Budget Committee Materials 041323.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_041323_635bccb971.pdf", + "updated_at": "2023-04-24T21:30:31.782Z", + "created_at": "2023-04-24T21:30:31.752Z", + "hash": "Budget_Committee_Materials_041323_635bccb971", + "__typename": "UploadFile" + }, + { + "id": "906", + "formats": null, + "size": 267.62, + "name": "Budget Committee Summary 041323.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_041323_570aee3daf.pdf", + "updated_at": "2023-04-24T21:30:44.196Z", + "created_at": "2023-04-24T21:30:44.179Z", + "hash": "Budget_Committee_Summary_041323_570aee3daf", + "__typename": "UploadFile" + }, + { + "id": "1320", + "formats": null, + "size": 981.9, + "name": "Budget_Committee_Minutes_041323.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_041323_5ae7be6547.pdf", + "updated_at": "2024-04-22T21:44:28.443Z", + "created_at": "2024-04-22T21:44:28.416Z", + "hash": "Budget_Committee_Minutes_041323_5ae7be6547", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "115", + "title": "DOMESTIC VIOLENCE PRETRIAL PRACTICES WORKING GROUP: Apr 10, 2023", + "slug": "domestic-violence-pretrial-practices-working-group-apr-10-2023", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group\nwill conduct a public meeting on 4/10/2023, at 9:00 am by WebEx. All interested parties\nare invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-04-07T17:12:00.133Z", + "updated_at": "2023-04-07T17:12:02.315Z", + "published_at": "2023-04-07T17:12:02.283Z", + "isCancelled": false, + "start": "2023-04-10T14:00:00.000Z", + "end": "2023-04-10T15:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 4/10/2023, at 9:00 am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "862", + "formats": null, + "size": 121.88, + "name": "April 2023 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/April_2023_Agenda_f4345975ef.pdf", + "updated_at": "2023-04-07T17:10:09.590Z", + "created_at": "2023-04-07T17:10:09.571Z", + "hash": "April_2023_Agenda_f4345975ef", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "114", + "title": "ILLINOIS DOMESTIC VIOLENCE FATALITY REVIEW COMMITTEE: Mar 21, 2023", + "slug": "illinois-domestic-violence-fatality-review-committee-mar-21-2023", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review Committee will conduct\na public meeting on 3/21/2023, at 1:00 pm by Zoom. All interested parties are invited to attend and will\nbe given the opportunity for public comment.", + "created_at": "2023-03-17T23:15:24.716Z", + "updated_at": "2023-03-17T23:15:27.269Z", + "published_at": "2023-03-17T23:15:27.219Z", + "isCancelled": false, + "start": "2023-03-21T18:00:00.000Z", + "end": "2023-03-21T19:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review Committee will conduct\na public meeting on 3/21/2023, at 1:00 pm by Zoom. All interested parties are invited to attend and will\nbe given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "855", + "formats": null, + "size": 101.86, + "name": "DVFR_Agenda_3-21-23 draft.pdf", + "ext": ".pdf", + "url": "/uploads/DVFR_Agenda_3_21_23_draft_87bd03ce86.pdf", + "updated_at": "2023-03-17T23:15:11.403Z", + "created_at": "2023-03-17T23:15:11.343Z", + "hash": "DVFR_Agenda_3_21_23_draft_87bd03ce86", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "122", + "title": "Authority Board Meeting: Mar 17, 2022", + "slug": "authority-board-meeting-mar-17-2022", + "summary": "Regular Board Meeting\nThursday, March 17, 2022\n10 a.m. to 12:00 p.m.", + "created_at": "2023-04-19T16:34:35.075Z", + "updated_at": "2023-07-18T15:44:18.266Z", + "published_at": "2023-04-19T16:34:36.487Z", + "isCancelled": false, + "start": "2023-03-17T15:00:00.000Z", + "end": "2023-03-17T17:00:00.000Z", + "category": "board", + "body": "Regular Board Meeting\n\nThursday, March 17, 2022\n\n10 a.m. to 12:00 p.m.\n\n**Location:**\n\nVia WebEx Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "1009", + "formats": null, + "size": 245.79, + "name": "2_Authority_Board_Meeting_Minutes_3_17_22_6_14_22_mdj_ce_f006e78a49.pdf", + "ext": ".pdf", + "url": "/uploads/2_Authority_Board_Meeting_Minutes_3_17_22_6_14_22_mdj_ce_f006e78a49_f1283be978.pdf", + "updated_at": "2023-07-18T15:43:11.236Z", + "created_at": "2023-07-18T15:43:11.210Z", + "hash": "2_Authority_Board_Meeting_Minutes_3_17_22_6_14_22_mdj_ce_f006e78a49_f1283be978", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "113", + "title": "ILLINOIS DOMESTIC VIOLENCE PRETRIAL WORKING GROUP: March 14, 2023", + "slug": "illinois-domestic-violence-pretrial-working-group-march-14-2023", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 3/14/2023, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-03-09T18:37:18.807Z", + "updated_at": "2023-03-09T18:37:44.470Z", + "published_at": "2023-03-09T18:37:44.422Z", + "isCancelled": false, + "start": "2023-03-14T19:00:00.000Z", + "end": "2023-03-14T20:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 3/14/2023, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "852", + "formats": null, + "size": 103.2, + "name": "Domestic Violence Pretrial Working Group Agenda 3.14.23.pdf", + "ext": ".pdf", + "url": "/uploads/Domestic_Violence_Pretrial_Working_Group_Agenda_3_14_23_20f01cd4c2.pdf", + "updated_at": "2023-03-09T18:37:12.974Z", + "created_at": "2023-03-09T18:37:12.949Z", + "hash": "Domestic_Violence_Pretrial_Working_Group_Agenda_3_14_23_20f01cd4c2", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "112", + "title": "THE FIREARM PROHIBITORS AND RECORDS IMPROVEMENT TASK FORCE: February 23, 2023", + "slug": "the-firearm-prohibitors-and-records-improvement-task-force-february-23-2023", + "summary": "Public notice is hereby given that the Illinois Firearm Task Force will conduct a public meeting on February 23, 2023, at 3:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-02-23T15:45:32.465Z", + "updated_at": "2023-05-04T21:47:29.918Z", + "published_at": "2023-02-23T15:45:35.674Z", + "isCancelled": false, + "start": "2023-02-23T21:00:00.000Z", + "end": "2023-02-23T22:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Firearm Task Force will conduct a public meeting on February 23, 2023, at 3:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "843", + "formats": null, + "size": 77.8, + "name": "Firearm Prohibitors Task Force Agenda 2.23.23.pdf", + "ext": ".pdf", + "url": "/uploads/Firearm_Prohibitors_Task_Force_Agenda_2_23_23_16ccf1c097.pdf", + "updated_at": "2023-02-23T15:45:29.178Z", + "created_at": "2023-02-23T15:45:29.152Z", + "hash": "Firearm_Prohibitors_Task_Force_Agenda_2_23_23_16ccf1c097", + "__typename": "UploadFile" + }, + { + "id": "930", + "formats": null, + "size": 245.7, + "name": "Firearm Prohibitor And Records Improvement February 2023 Task Force Meeting Minutes.pdf", + "ext": ".pdf", + "url": "/uploads/Firearm_Prohibitor_And_Records_Improvement_February_2023_Task_Force_Meeting_Minutes_344a686c6e.pdf", + "updated_at": "2023-05-04T21:46:33.872Z", + "created_at": "2023-05-04T21:46:33.853Z", + "hash": "Firearm_Prohibitor_And_Records_Improvement_February_2023_Task_Force_Meeting_Minutes_344a686c6e", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "108", + "title": "Violence Prevention Ad Hoc Committee: Feb 23, 2023", + "slug": "violence-prevention-ad-hoc-committee-feb-23-2023", + "summary": "Public notice is hereby given that the ICJIA Violence Prevention Ad Hoc Committee will conduct a public meeting on February 23rd at 10:00 am. via WebEx. All interested parties are invited to attend and will be given the opportunity for public comment. ", + "created_at": "2023-02-17T21:41:18.387Z", + "updated_at": "2023-05-11T12:50:39.937Z", + "published_at": "2023-02-17T21:41:20.844Z", + "isCancelled": false, + "start": "2023-02-23T16:00:00.000Z", + "end": "2023-02-23T18:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the ICJIA Violence Prevention Ad Hoc Committee will conduct a public meeting on February 23rd at 10:00 am. via WebEx. All interested parties are invited to attend and will be given the opportunity for public comment. ", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "934", + "formats": null, + "size": 38.79, + "name": "Violence Prevention Ad Hoc Committee Meeting Minutes 2-23-23.pdf", + "ext": ".pdf", + "url": "/uploads/Violence_Prevention_Ad_Hoc_Committee_Meeting_Minutes_2_23_23_7e6aacc466.pdf", + "updated_at": "2023-05-11T12:50:16.703Z", + "created_at": "2023-05-11T12:50:16.678Z", + "hash": "Violence_Prevention_Ad_Hoc_Committee_Meeting_Minutes_2_23_23_7e6aacc466", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "106", + "title": "THE FIREARM PROHIBITORS AND RECORDS IMPROVEMENT TASK FORCE: Feb 22, 2023", + "slug": "the-firearm-prohibitors-and-records-improvement-task-force-feb-22-2023", + "summary": "Public notice is hereby given that the Illinois Firearm Task Force will conduct a public meeting on\nFebruary 22, 2023 at 2:00 pm by WebEx. All interested parties are invited to attend and will be given\nthe opportunity for public comment.", + "created_at": "2023-02-11T00:57:46.717Z", + "updated_at": "2023-02-17T22:46:08.029Z", + "published_at": "2023-02-11T00:57:48.171Z", + "isCancelled": false, + "start": "2023-02-22T21:00:00.000Z", + "end": "2023-02-22T22:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Firearm Task Force will conduct a public meeting on\nFebruary 22, 2023 at 2:00 pm by WebEx. All interested parties are invited to attend and will be given\nthe opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "840", + "formats": null, + "size": 617.52, + "name": "Firearm Prohibitors Task Force Agenda 2.22.23.docx", + "ext": ".docx", + "url": "/uploads/Firearm_Prohibitors_Task_Force_Agenda_2_22_23_a586ffc32b.docx", + "updated_at": "2023-02-17T22:46:03.013Z", + "created_at": "2023-02-17T22:46:02.982Z", + "hash": "Firearm_Prohibitors_Task_Force_Agenda_2_22_23_a586ffc32b", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "107", + "title": "Illinois Crime Reduction Task Force: Feb 17, 2023", + "slug": "illinois-crime-reduction-task-force-feb-17-2023", + "summary": "Public notice is hereby given that the Illinois Crime Reduction Task Force will conduct a public meeting on 2/17/2023, at 9am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-02-14T14:31:50.075Z", + "updated_at": "2023-02-14T14:31:51.830Z", + "published_at": "2023-02-14T14:31:51.779Z", + "isCancelled": false, + "start": "2023-02-17T15:00:00.000Z", + "end": "2023-02-17T17:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Crime Reduction Task Force will conduct a public meeting on 2/17/2023, at 9am by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "822", + "formats": null, + "size": 619.05, + "name": "Crime_Reduction_Task_Force_February_17_2023_Agenda.docx", + "ext": ".docx", + "url": "/uploads/Crime_Reduction_Task_Force_February_17_2023_Agenda_1ee61c58a7.docx", + "updated_at": "2023-02-14T14:31:44.946Z", + "created_at": "2023-02-14T14:31:44.922Z", + "hash": "Crime_Reduction_Task_Force_February_17_2023_Agenda_1ee61c58a7", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "105", + "title": "Budget Committee Meeting February 16 2023", + "slug": "budget-committee-meeting-february-16-2023", + "summary": "ICJIA Budget Committee Meeting\nThursday, December 15, 2022\n10:00 a.m. to 12:00 p.m.\nLocation:\nVia WebEx Video Conference/Teleconference", + "created_at": "2023-02-10T16:35:34.636Z", + "updated_at": "2024-04-22T21:33:05.332Z", + "published_at": "2023-02-10T16:35:39.262Z", + "isCancelled": false, + "start": "2023-02-16T16:00:00.000Z", + "end": "2023-02-16T18:00:00.000Z", + "category": "budget", + "body": "ICJIA Budget Committee Meeting\nThursday, December 15, 2022\n10:00 a.m. to 12:00 p.m.\nLocation:\nVia WebEx Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [ + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "823", + "formats": null, + "size": 1565.91, + "name": "REVISED_Budget_Committee_Materials_021623.pdf", + "ext": ".pdf", + "url": "/uploads/REVISED_Budget_Committee_Materials_021623_8f6f29479c.pdf", + "updated_at": "2023-02-14T15:41:10.166Z", + "created_at": "2023-02-14T15:41:10.143Z", + "hash": "REVISED_Budget_Committee_Materials_021623_8f6f29479c", + "__typename": "UploadFile" + }, + { + "id": "845", + "formats": null, + "size": 117.07, + "name": "Budget_Committee_Summary_021623.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_021623_674fc5cf25.pdf", + "updated_at": "2023-02-23T23:00:12.433Z", + "created_at": "2023-02-23T23:00:12.396Z", + "hash": "Budget_Committee_Summary_021623_674fc5cf25", + "__typename": "UploadFile" + }, + { + "id": "1318", + "formats": null, + "size": 730.94, + "name": "Budget Committee Minutes 021623.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_021623_17086840ea.pdf", + "updated_at": "2024-04-22T21:33:02.103Z", + "created_at": "2024-04-22T21:33:02.072Z", + "hash": "Budget_Committee_Minutes_021623_17086840ea", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "104", + "title": "Illinois Crime Reduction Task Force: Feb 6, 2023", + "slug": "illinois-crime-reduction-task-force-feb-6-2023", + "summary": "This meeting is canceled.", + "created_at": "2023-02-03T12:34:50.814Z", + "updated_at": "2023-02-04T19:56:05.559Z", + "published_at": "2023-02-03T12:34:57.482Z", + "isCancelled": true, + "start": "2023-02-06T20:30:00.000Z", + "end": "2023-02-06T21:30:00.000Z", + "category": "special", + "body": "THIS MEETING IS CANCELED\n\n~~Public notice is hereby given that the Illinois Crime Reduction Task Force will conduct a public meeting on 2/6/2023, at 1:30 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.~~\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [], + "external": [], + "__typename": "Meeting" + }, + { + "id": "103", + "title": "ILLINOIS DOMESTIC VIOLENCE PRETRIAL WORKING GROUP: January 24, 2023", + "slug": "illinois-domestic-violence-pretrial-working-group-january-24-2023", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 1/24/2023, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.\n", + "created_at": "2023-01-18T19:33:54.143Z", + "updated_at": "2023-01-18T19:34:24.493Z", + "published_at": "2023-01-18T19:33:56.038Z", + "isCancelled": null, + "start": "2023-01-24T20:00:00.000Z", + "end": "2023-01-24T21:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 1/24/2023, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.\n\nDate: January 24, 2023\n\nTime: 2:00 pm \u2013 3:00 pm \n\nLocation: WebEx ", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "792", + "formats": null, + "size": 104.19, + "name": "Domestic Violence Pretrial Working Group Draft Agenda 1.24.23.pdf", + "ext": ".pdf", + "url": "/uploads/Domestic_Violence_Pretrial_Working_Group_Draft_Agenda_1_24_23_a49071989a.pdf", + "updated_at": "2023-01-18T19:33:42.745Z", + "created_at": "2023-01-18T19:33:42.716Z", + "hash": "Domestic_Violence_Pretrial_Working_Group_Draft_Agenda_1_24_23_a49071989a", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "102", + "title": "ILLINOIS CRIME REDUCTION TASK FORCE: January 19, 2023", + "slug": "illinois-crime-reduction-task-force-january-19-2023", + "summary": "Public notice is hereby given that the Illinois Crime Reduction Task Force will conduct a public meeting on 1/19/2023, at 1:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.\n\n", + "created_at": "2023-01-17T19:31:07.190Z", + "updated_at": "2023-03-14T13:51:13.997Z", + "published_at": "2023-01-17T19:31:08.853Z", + "isCancelled": null, + "start": "2023-01-19T19:00:00.000Z", + "end": "2023-01-19T21:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Crime Reduction Task Force will conduct a public meeting on 1/19/2023, at 1:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.\n\nDate: January 19, 2023\n\nTime: 1:00 pm \u2013 3:00 pm \n\nLocation: WebEx\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "788", + "formats": null, + "size": 617.27, + "name": "Crime Reduction Task Force - January 19 2023 Agenda.docx", + "ext": ".docx", + "url": "/uploads/Crime_Reduction_Task_Force_January_19_2023_Agenda_89d6e7fb39.docx", + "updated_at": "2023-01-17T19:30:59.217Z", + "created_at": "2023-01-17T19:30:59.191Z", + "hash": "Crime_Reduction_Task_Force_January_19_2023_Agenda_89d6e7fb39", + "__typename": "UploadFile" + }, + { + "id": "854", + "formats": null, + "size": 96.56, + "name": "CRTF Meeting Minutes 01-19-2023.pdf", + "ext": ".pdf", + "url": "/uploads/CRTF_Meeting_Minutes_01_19_2023_9741d36c19.pdf", + "updated_at": "2023-03-14T13:51:10.609Z", + "created_at": "2023-03-14T13:51:10.582Z", + "hash": "CRTF_Meeting_Minutes_01_19_2023_9741d36c19", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "101", + "title": "R3: Restore, Reinvest, and Renew Program Board, Regular Meeting: Jan 18,2023", + "slug": "r3-restore-reinvest-and-renew-program-board-regular-meeting-jan-18-2023", + "summary": "Regular Meeting, Date and Time: Wednesday, January 18, 2023 | 10:00 - 11:30 AM", + "created_at": "2023-01-13T17:13:03.450Z", + "updated_at": "2023-01-13T17:13:04.951Z", + "published_at": "2023-01-13T17:13:04.909Z", + "isCancelled": null, + "start": "2023-01-18T16:00:00.000Z", + "end": "2023-01-18T17:30:00.000Z", + "category": "special", + "body": "\n**Date and Time**\n\nWednesday, January 18, 2023 | 10:00 - 11:30 AM\n\n**Location**\n\n555 W Monroe St. Chicago IL 60661 \n \n4th Floor Lincoln Conference Room", + "posts": [], + "events": [], + "tags": [ + { + "title": "Restore, Reinvest, Renew (R3)", + "slug": "restore-reinvest-renew-r3", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "786", + "formats": null, + "size": 143.45, + "name": "R3Agenda1.182.pdf", + "ext": ".pdf", + "url": "/uploads/R3_Agenda1_182_92aeca8cc5.pdf", + "updated_at": "2023-01-13T17:13:00.413Z", + "created_at": "2023-01-13T17:13:00.395Z", + "hash": "R3_Agenda1_182_92aeca8cc5", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "100", + "title": "ILLINOIS DOMESTIC VIOLENCE FATALITY REVIEW COMMITTEE: January 17, 2023", + "slug": "illinois-domestic-violence-fatality-review-committee-january-17-2023", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review Committee will conduct a public meeting on 1/17/2023, at 1:00 pm by Zoom. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2023-01-11T22:10:26.628Z", + "updated_at": "2023-01-11T22:15:31.024Z", + "published_at": "2023-01-11T22:10:29.773Z", + "isCancelled": null, + "start": "2023-01-17T19:00:00.000Z", + "end": "2023-01-17T20:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review Committee will conduct a public meeting on 1/17/2023, at 1:00 pm by Zoom. All interested parties are invited to attend and will be given the opportunity for public comment.\n\nDate: January 17, 2023\n\nTime: 1:00 pm \u2013 2:30 pm\n\nLocation: Zoom", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "784", + "formats": null, + "size": 37.67, + "name": "DVFR Agenda 1.17.23 draft.docx", + "ext": ".docx", + "url": "/uploads/DVFR_Agenda_1_17_23_draft_a50eeca0d6.docx", + "updated_at": "2023-01-11T22:10:21.931Z", + "created_at": "2023-01-11T22:10:21.898Z", + "hash": "DVFR_Agenda_1_17_23_draft_a50eeca0d6", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "99", + "title": "IRB Meeting: January 03, 2023", + "slug": "irb-meeting-january-03-2023", + "summary": "Institutional Review Board, \nJanuary 03, 2023\n11:00 am - 12:00 pm", + "created_at": "2022-12-27T18:30:45.116Z", + "updated_at": "2022-12-27T18:30:59.543Z", + "published_at": "2022-12-27T18:30:59.510Z", + "isCancelled": null, + "start": "2023-01-03T17:00:00.000Z", + "end": "2023-01-03T18:00:00.000Z", + "category": "irb", + "body": "**Institutional Review Board**\n\nJanuary 03, 2023\n\n11:00 am- 12:00 pm\n\nIllinois Criminal Justice Information Authority\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "780", + "formats": null, + "size": 53.26, + "name": "IRB Agenda_January 3 2023.pdf", + "ext": ".pdf", + "url": "/uploads/IRB_Agenda_January_3_2023_4e66e2aff5.pdf", + "updated_at": "2022-12-27T18:30:40.440Z", + "created_at": "2022-12-27T18:30:40.411Z", + "hash": "IRB_Agenda_January_3_2023_4e66e2aff5", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "98", + "title": "Budget Committee Meeting: Dec 15, 2022", + "slug": "budget-committee-dec-15-2022", + "summary": "Thursday, December 15, 2022\n10:00 a.m. to 12:00 p.m.\nLocation:\nVia WebEx Video Conference/Teleconference\n", + "created_at": "2022-12-09T13:08:48.386Z", + "updated_at": "2024-04-22T21:21:11.758Z", + "published_at": "2022-12-09T13:08:50.094Z", + "isCancelled": null, + "start": "2022-12-15T16:00:00.000Z", + "end": "2022-12-15T18:00:00.000Z", + "category": "budget", + "body": "Thursday, December 15, 2022\n\n10:00 a.m. to 12:00 p.m.\n\n**Location:**\n\nVia WebEx Video Conference/Teleconference\n\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "757", + "formats": null, + "size": 2338.82, + "name": "Budget Committee Materials 121522.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_121522_90fe75c22f.pdf", + "updated_at": "2022-12-09T21:19:41.497Z", + "created_at": "2022-12-09T21:19:41.474Z", + "hash": "Budget_Committee_Materials_121522_90fe75c22f", + "__typename": "UploadFile" + }, + { + "id": "772", + "formats": null, + "size": 174.43, + "name": "Budget Committee Summary 121522.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_121522_1630cc5677.pdf", + "updated_at": "2022-12-22T15:22:56.305Z", + "created_at": "2022-12-22T15:22:56.282Z", + "hash": "Budget_Committee_Summary_121522_1630cc5677", + "__typename": "UploadFile" + }, + { + "id": "1317", + "formats": null, + "size": 195.84, + "name": "Budget Committee Minutes 121522.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_121522_dd00b064f1.pdf", + "updated_at": "2024-04-22T21:21:08.885Z", + "created_at": "2024-04-22T21:21:08.864Z", + "hash": "Budget_Committee_Minutes_121522_dd00b064f1", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "96", + "title": "ILLINOIS DOMESTIC VIOLENCE PRETRIAL WORKING GROUP: December 8, 2022", + "slug": "illinois-domestic-violence-pretrial-working-group-december-8-2022", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 12/8/2022, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-12-05T15:34:41.642Z", + "updated_at": "2023-01-18T19:39:54.860Z", + "published_at": "2022-12-05T15:34:43.452Z", + "isCancelled": null, + "start": "2022-12-08T20:00:00.000Z", + "end": "2022-12-08T22:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 12/8/2022, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "746", + "formats": null, + "size": 103.13, + "name": "Domestic Violence Pretrial Working Group Draft Agenda 12.8.22.pdf", + "ext": ".pdf", + "url": "/uploads/Domestic_Violence_Pretrial_Working_Group_Draft_Agenda_12_8_22_dccde50017.pdf", + "updated_at": "2022-12-05T15:34:37.234Z", + "created_at": "2022-12-05T15:34:37.208Z", + "hash": "Domestic_Violence_Pretrial_Working_Group_Draft_Agenda_12_8_22_dccde50017", + "__typename": "UploadFile" + }, + { + "id": "793", + "formats": null, + "size": 97.85, + "name": "DVPWG Meeting Minutes 12.8.22.pdf", + "ext": ".pdf", + "url": "/uploads/DVPWG_Meeting_Minutes_12_8_22_ccdc84fd2b.pdf", + "updated_at": "2023-01-18T19:39:47.391Z", + "created_at": "2023-01-18T19:39:47.369Z", + "hash": "DVPWG_Meeting_Minutes_12_8_22_ccdc84fd2b", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "97", + "title": "Regular Board Meeting: Dec 8, 2022", + "slug": "regular-board-meeting-dec-8-2022", + "summary": "Regular Board Meeting, Thursday, December 8, 2022, 10:00 a.m. to 12:00 p.m.", + "created_at": "2022-12-05T17:50:58.093Z", + "updated_at": "2022-12-06T15:28:26.961Z", + "published_at": "2022-12-05T17:51:01.167Z", + "isCancelled": null, + "start": "2022-12-08T16:00:00.000Z", + "end": "2022-12-08T18:00:00.000Z", + "category": "board", + "body": "**Regular Board Meeting**\n\nThursday, December 8, 2022\n\n10:00 a.m. to 12:00 p.m.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "748", + "formats": null, + "size": 84.66, + "name": "1 Board Agenda 12.8.2022 ddw.docx", + "ext": ".docx", + "url": "/uploads/1_Board_Agenda_12_8_2022_ddw_338ef62c07.docx", + "updated_at": "2022-12-06T15:28:23.672Z", + "created_at": "2022-12-06T15:28:23.648Z", + "hash": "1_Board_Agenda_12_8_2022_ddw_338ef62c07", + "__typename": "UploadFile" + }, + { + "id": "749", + "formats": null, + "size": 245.79, + "name": "2 Authority Board Meeting Minutes 3.17.22 6.14.22 mdj ce.pdf", + "ext": ".pdf", + "url": "/uploads/2_Authority_Board_Meeting_Minutes_3_17_22_6_14_22_mdj_ce_41739b39a7.pdf", + "updated_at": "2022-12-06T15:28:23.757Z", + "created_at": "2022-12-06T15:28:23.727Z", + "hash": "2_Authority_Board_Meeting_Minutes_3_17_22_6_14_22_mdj_ce_41739b39a7", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "95", + "title": "ILLINOIS DOMESTIC VIOLENCE FATALITY REVIEW COMMITTEE: Nov 15, 2022", + "slug": "illinois-domestic-violence-fatality-review-committee-nov-15-2022", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review Committee will conduct a public\nmeeting on 11/15/2022, at 1:00 pm by Zoom. All interested parties are invited to attend and will be given the\nopportunity for public comment.", + "created_at": "2022-11-10T19:01:17.015Z", + "updated_at": "2022-11-10T19:01:22.216Z", + "published_at": "2022-11-10T19:01:22.154Z", + "isCancelled": null, + "start": "2022-11-15T19:00:00.000Z", + "end": "2022-11-15T20:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review Committee will conduct a public\nmeeting on 11/15/2022, at 1:00 pm by Zoom. All interested parties are invited to attend and will be given the\nopportunity for public comment.\n\nDate: November 15, 2022\n\nTime: 1:00 pm \u2013 2:30 pm\n\nLocation: Zoom", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "739", + "formats": null, + "size": 620.21, + "name": "DVFR Agenda 11.15.22.pdf", + "ext": ".pdf", + "url": "/uploads/DVFR_Agenda_11_15_22_8eb5d75c1d.pdf", + "updated_at": "2022-11-10T19:01:09.721Z", + "created_at": "2022-11-10T19:01:09.676Z", + "hash": "DVFR_Agenda_11_15_22_8eb5d75c1d", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "94", + "title": "VIOLENCE PREVENTION AD HOC COMMITTEE MEETING: November 10, 2022", + "slug": "violence-prevention-ad-hoc-committee-meeting-november-10-2022", + "summary": "This serves as Public Notice of the Violence Prevention Ad Hoc Committee Regular Meeting to be held at\nthe date, time and location set forth below. All interested parties are invited to attend and will be given the\nopportunity for public comment.", + "created_at": "2022-11-09T22:10:48.568Z", + "updated_at": "2022-11-09T22:10:51.103Z", + "published_at": "2022-11-09T22:10:51.041Z", + "isCancelled": null, + "start": "2022-11-10T16:00:00.000Z", + "end": "2022-11-10T18:00:00.000Z", + "category": "special", + "body": "This serves as Public Notice of the Violence Prevention Ad Hoc Committee Regular Meeting to be held at\nthe date, time and location set forth below. All interested parties are invited to attend and will be given the\nopportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "735", + "formats": null, + "size": 81.17, + "name": "VPAH Meeting Minutes 6-9-22.pdf", + "ext": ".pdf", + "url": "/uploads/VPAH_Meeting_Minutes_6_9_22_1189d31b0c.pdf", + "updated_at": "2022-11-09T22:10:42.020Z", + "created_at": "2022-11-09T22:10:41.966Z", + "hash": "VPAH_Meeting_Minutes_6_9_22_1189d31b0c", + "__typename": "UploadFile" + }, + { + "id": "736", + "formats": null, + "size": 78.83, + "name": "ICJIA Ad Hoc VP Committee Feb 10 22 mtg minutes.pdf", + "ext": ".pdf", + "url": "/uploads/ICJIA_Ad_Hoc_VP_Committee_Feb_10_22_mtg_minutes_ba88778013.pdf", + "updated_at": "2022-11-09T22:10:42.110Z", + "created_at": "2022-11-09T22:10:42.081Z", + "hash": "ICJIA_Ad_Hoc_VP_Committee_Feb_10_22_mtg_minutes_ba88778013", + "__typename": "UploadFile" + }, + { + "id": "737", + "formats": null, + "size": 528.91, + "name": "ICJIA Violence Prevention Ad Hoc Committee Agenda 11-10-22 Final.pdf", + "ext": ".pdf", + "url": "/uploads/ICJIA_Violence_Prevention_Ad_Hoc_Committee_Agenda_11_10_22_Final_f9788b03cb.pdf", + "updated_at": "2022-11-09T22:10:42.555Z", + "created_at": "2022-11-09T22:10:42.514Z", + "hash": "ICJIA_Violence_Prevention_Ad_Hoc_Committee_Agenda_11_10_22_Final_f9788b03cb", + "__typename": "UploadFile" + }, + { + "id": "738", + "formats": null, + "size": 575.78, + "name": "ICJIA Violence Prevention Ad Hoc Committee Meeting Minutes 9-8-22.pdf", + "ext": ".pdf", + "url": "/uploads/ICJIA_Violence_Prevention_Ad_Hoc_Committee_Meeting_Minutes_9_8_22_af487dd23c.pdf", + "updated_at": "2022-11-09T22:10:42.670Z", + "created_at": "2022-11-09T22:10:42.617Z", + "hash": "ICJIA_Violence_Prevention_Ad_Hoc_Committee_Meeting_Minutes_9_8_22_af487dd23c", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "92", + "title": "ILLINOIS DOMESTIC VIOLENCE PRETRIAL WORKING GROUP: Oct 27, 2022", + "slug": "illinois-domestic-violence-pretrial-working-group-oct-27-2022", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 10/27/2022, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-10-25T16:38:10.501Z", + "updated_at": "2022-12-05T15:30:21.814Z", + "published_at": "2022-10-25T16:38:12.133Z", + "isCancelled": null, + "start": "2022-10-27T19:00:00.000Z", + "end": "2022-10-27T20:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 10/27/2022, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.\n\n**Date:** October 27, 2022\n\n**Time:** 2:00 pm \u2013 3:30 pm \n\n**Location:** WebEx\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "713", + "formats": null, + "size": 616.95, + "name": "Domestic Violence Pretrial Working Group 1027 Agenda.docx", + "ext": ".docx", + "url": "/uploads/Domestic_Violence_Pretrial_Working_Group_1027_Agenda_245148e280.docx", + "updated_at": "2022-10-25T16:38:06.871Z", + "created_at": "2022-10-25T16:38:06.842Z", + "hash": "Domestic_Violence_Pretrial_Working_Group_1027_Agenda_245148e280", + "__typename": "UploadFile" + }, + { + "id": "745", + "formats": null, + "size": 118.01, + "name": "DVPWG Meeting Minutes 1027.pdf", + "ext": ".pdf", + "url": "/uploads/DVPWG_Meeting_Minutes_1027_62af9ed06e.pdf", + "updated_at": "2022-12-05T15:30:16.957Z", + "created_at": "2022-12-05T15:30:16.925Z", + "hash": "DVPWG_Meeting_Minutes_1027_62af9ed06e", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "91", + "title": "RESTORE, REINVEST, AND RENEW PROGRAM BOARD Regular Meeting: Oct 27, 2022", + "slug": "restore-reinvest-and-renew-program-board-regular-meeting", + "summary": "\nThursday, October 27, 2022\n10:00 - 11:30 AM\nLocation\nVideoconference/Teleconference", + "created_at": "2022-10-21T16:05:37.201Z", + "updated_at": "2022-10-25T16:38:50.490Z", + "published_at": "2022-10-21T16:05:38.870Z", + "isCancelled": null, + "start": "2022-10-27T15:00:00.000Z", + "end": "2022-10-27T16:30:00.000Z", + "category": "special", + "body": "Pursuant to \u00a7 10-40 of the Cannabis Regulation and Tax Act (410 ILCS 705/)\n\n**Date and Time**\n\nThursday, October 27, 2022\n\n10:00 - 11:30 AM\n\n**Location**\n\nVideoconference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "712", + "formats": null, + "size": 238.6, + "name": "R3agenda10272022.pdf", + "ext": ".pdf", + "url": "/uploads/R3agenda10272022_345d5cbc3e.pdf", + "updated_at": "2022-10-21T16:05:34.545Z", + "created_at": "2022-10-21T16:05:34.501Z", + "hash": "R3agenda10272022_345d5cbc3e", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "90", + "title": "Budget Committee Meeting October 20, 2022", + "slug": "budget-committee-meeting-october-20-2022", + "summary": "Illinois Criminal Justice Information Authority\nBudget Committee Meeting\nThursday, October 20, 2022\n10:00 a.m. to 12:00 p.m.\n", + "created_at": "2022-10-14T18:35:43.672Z", + "updated_at": "2022-12-22T20:42:44.867Z", + "published_at": "2022-10-14T18:35:48.215Z", + "isCancelled": null, + "start": "2022-10-20T15:00:00.000Z", + "end": "2022-10-20T17:00:00.000Z", + "category": "budget", + "body": "Illinois Criminal Justice Information Authority\nBudget Committee Meeting\nThursday, October 20, 2022\n10:00 a.m. to 12:00 p.m.\n", + "posts": [ + { + "title": "ICJIA Budget Committee Funding Actions", + "slug": "icjia-budget-committee-funding-actions", + "__typename": "Post" + }, + { + "title": "ICJIA Budget Committee Funding Actions 12/15/22", + "slug": "icjia-budget-committee-funding-actions-12-15-22", + "__typename": "Post" + } + ], + "events": [], + "tags": [ + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "701", + "formats": null, + "size": 1469.82, + "name": "Budget_Commitee_Materials_102022_REVISED.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Commitee_Materials_102022_REVISED_beff9076e3.pdf", + "updated_at": "2022-10-18T15:55:48.321Z", + "created_at": "2022-10-18T15:55:48.278Z", + "hash": "Budget_Commitee_Materials_102022_REVISED_beff9076e3", + "__typename": "UploadFile" + }, + { + "id": "702", + "formats": null, + "size": 59.96, + "name": "REVISED American Rescue Plan Act Budget Committee Memo 102022.pdf", + "ext": ".pdf", + "url": "/uploads/REVISED_American_Rescue_Plan_Act_Budget_Committee_Memo_102022_d0cedbf29d.pdf", + "updated_at": "2022-10-19T19:34:30.466Z", + "created_at": "2022-10-19T19:34:30.425Z", + "hash": "REVISED_American_Rescue_Plan_Act_Budget_Committee_Memo_102022_d0cedbf29d", + "__typename": "UploadFile" + }, + { + "id": "703", + "formats": null, + "size": 667.94, + "name": "REVISED Victims of Crime Act Memo 102022.pdf", + "ext": ".pdf", + "url": "/uploads/REVISED_Victims_of_Crime_Act_Memo_102022_3ddd4cbfe3.pdf", + "updated_at": "2022-10-19T19:34:59.379Z", + "created_at": "2022-10-19T19:34:59.354Z", + "hash": "REVISED_Victims_of_Crime_Act_Memo_102022_3ddd4cbfe3", + "__typename": "UploadFile" + }, + { + "id": "722", + "formats": null, + "size": 109.65, + "name": "Budget Committee Summary 102022.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_102022_cd306ccd8a.pdf", + "updated_at": "2022-10-27T21:27:26.544Z", + "created_at": "2022-10-27T21:27:26.521Z", + "hash": "Budget_Committee_Summary_102022_cd306ccd8a", + "__typename": "UploadFile" + }, + { + "id": "778", + "formats": null, + "size": 143.94, + "name": "Budget_Committee_Minutes_102022.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_102022_c24d313ae9.pdf", + "updated_at": "2022-12-22T20:42:37.723Z", + "created_at": "2022-12-22T20:42:37.702Z", + "hash": "Budget_Committee_Minutes_102022_c24d313ae9", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "89", + "title": "ILLINOIS CRIME REDUCTION TASK FORCE: October 4, 2022", + "slug": "illinois-crime-reduction-task-force-october-4-2022", + "summary": "Public notice is hereby given that the Illinois Crime Reduction Task Force will conduct a public meeting on 10/4/2022, at 1:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-09-30T22:01:28.333Z", + "updated_at": "2023-03-14T13:49:54.024Z", + "published_at": "2022-09-30T22:01:30.029Z", + "isCancelled": null, + "start": "2022-10-04T18:00:00.000Z", + "end": "2022-10-04T19:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Crime Reduction Task Force will conduct a public meeting on 10/4/2022, at 1:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "682", + "formats": null, + "size": 617, + "name": "Crime Reduction TF Agenda 10_4 (2).docx", + "ext": ".docx", + "url": "/uploads/Crime_Reduction_TF_Agenda_10_4_2_9a7f1dc737.docx", + "updated_at": "2022-09-30T22:01:21.821Z", + "created_at": "2022-09-30T22:01:21.772Z", + "hash": "Crime_Reduction_TF_Agenda_10_4_2_9a7f1dc737", + "__typename": "UploadFile" + }, + { + "id": "853", + "formats": null, + "size": 147.75, + "name": "CRTF Meeting Minutes 1042022.pdf", + "ext": ".pdf", + "url": "/uploads/CRTF_Meeting_Minutes_1042022_5db4fbff0b.pdf", + "updated_at": "2023-03-14T13:49:50.383Z", + "created_at": "2023-03-14T13:49:50.365Z", + "hash": "CRTF_Meeting_Minutes_1042022_5db4fbff0b", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "88", + "title": "ILLINOIS DOMESTIC VIOLENCE PRETRIAL WORKING GROUP: September 22, 2022", + "slug": "illinois-domestic-violence-pretrial-working-group-september-22-2022", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 8/25/2022, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-09-20T18:19:22.309Z", + "updated_at": "2022-09-20T18:19:25.310Z", + "published_at": "2022-09-20T18:19:25.272Z", + "isCancelled": null, + "start": "2022-09-22T19:00:00.000Z", + "end": "2022-09-22T20:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 8/25/2022, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "671", + "formats": null, + "size": 33, + "name": "Domestic Violence Pretrial Working Group 922 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/Domestic_Violence_Pretrial_Working_Group_922_Agenda_8058f7997c.pdf", + "updated_at": "2022-09-20T18:19:17.111Z", + "created_at": "2022-09-20T18:19:17.081Z", + "hash": "Domestic_Violence_Pretrial_Working_Group_922_Agenda_8058f7997c", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "87", + "title": "ILLINOIS DOMESTIC VIOLENCE FATALITY REVIEW COMMITTEE: September 22, 2022", + "slug": "illinois-domestic-violence-fatality-review-committee-september-22-2022", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review Committee will conduct a public meeting on 9/22/2022, at 1:00 pm by Zoom. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-09-20T17:38:35.277Z", + "updated_at": "2022-09-20T17:39:20.944Z", + "published_at": "2022-09-20T17:38:37.534Z", + "isCancelled": null, + "start": "2022-09-22T18:00:00.000Z", + "end": "2022-09-22T21:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review Committee will conduct a public meeting on 9/22/2022, at 1:00 pm by Zoom. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "670", + "formats": null, + "size": 33.53, + "name": "DVFR 9_22 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/DVFR_9_22_Agenda_1711a2c08c.pdf", + "updated_at": "2022-09-20T17:38:29.428Z", + "created_at": "2022-09-20T17:38:29.403Z", + "hash": "DVFR_9_22_Agenda_1711a2c08c", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "86", + "title": "Budget Committee Meeting, September 21, 2022", + "slug": "september-21-2022-budget-committee-meeting", + "summary": "Budget Committee Meeting\nWednesday, September 21, 2022.\n1:30 p.m. to 3:30 p.m.\nLocation:\nVia WebEx (If COVID Disaster Proclamation is in effect.)\n333 S. Wabash, Conference Room #319, Chicago, Illinois 60605 (If COVID Disaster Proclamation is not in effect.)", + "created_at": "2022-09-15T18:15:52.255Z", + "updated_at": "2024-04-22T21:03:25.164Z", + "published_at": "2022-09-15T18:16:08.973Z", + "isCancelled": null, + "start": "2022-09-21T18:30:00.000Z", + "end": "2022-09-21T20:30:00.000Z", + "category": "budget", + "body": "Budget Committee Meeting\nWednesday, September 21, 2022.\n1:30 p.m. to 3:30 p.m.\nLocation:\nVia WebEx (If COVID Disaster Proclamation is in effect.)\n333 S. Wabash, Conference Room #319, Chicago, Illinois 60605 (If COVID Disaster Proclamation is not in effect.)", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "669", + "formats": null, + "size": 2024.15, + "name": "Budget Committee Materials 092122.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_092122_e9b11c0a9a.pdf", + "updated_at": "2022-09-15T18:15:42.610Z", + "created_at": "2022-09-15T18:15:42.592Z", + "hash": "Budget_Committee_Materials_092122_e9b11c0a9a", + "__typename": "UploadFile" + }, + { + "id": "681", + "formats": null, + "size": 110.75, + "name": "Budget Committee Summary 092122.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_092122_08ac4b1935.pdf", + "updated_at": "2022-09-28T15:16:28.248Z", + "created_at": "2022-09-28T15:16:28.223Z", + "hash": "Budget_Committee_Summary_092122_08ac4b1935", + "__typename": "UploadFile" + }, + { + "id": "1316", + "formats": null, + "size": 113.92, + "name": "Budget Committee Minutes 092122.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_092122_ba640d3317.pdf", + "updated_at": "2024-04-22T21:03:22.597Z", + "created_at": "2024-04-22T21:03:22.571Z", + "hash": "Budget_Committee_Minutes_092122_ba640d3317", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "85", + "title": "Regular Board Meeting: Sep 15, 2022", + "slug": "regular-board-meeting-sep-15-2022", + "summary": "Regular Board Meeting Thursday, September 15, 2022\n 10:00 a.m. to 12:00 p.m. \nIllinois Criminal Justice Information Authority \n \nLocation: \nVia Webex Video Conference/Teleconference \n \n", + "created_at": "2022-09-13T17:30:05.129Z", + "updated_at": "2022-09-13T17:30:08.206Z", + "published_at": "2022-09-13T17:30:08.170Z", + "isCancelled": null, + "start": "2022-09-15T15:00:00.000Z", + "end": "2022-09-15T17:00:00.000Z", + "category": "board", + "body": "Regular Board Meeting Thursday, September 15, 2022\n\n 10:00 a.m. to 12:00 p.m. \n\nLocation: \nVia Webex Video Conference/Teleconference \n \n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "667", + "formats": null, + "size": 82.96, + "name": "1 Board Agenda 6.16.2022 ddw (003) (002).docx", + "ext": ".docx", + "url": "/uploads/1_Board_Agenda_6_16_2022_ddw_003_002_e0baf543d5.docx", + "updated_at": "2022-09-13T17:29:53.072Z", + "created_at": "2022-09-13T17:29:53.055Z", + "hash": "1_Board_Agenda_6_16_2022_ddw_003_002_e0baf543d5", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "111", + "title": "STATEWIDE VIOLENCE PREVENTION AD HOC COMMITTEE: September 8, 2022", + "slug": "statewide-violence-prevention-ad-hoc-committee-september-8-2022", + "summary": "STATEWIDE VIOLENCE PREVENTION AD HOC COMMITTEE\nSeptember 8th, 2022 \n10:00 AM-12:00 PM\n\nLocation:\nVia Webex Video Conference/Teleconference\n", + "created_at": "2023-02-17T22:29:24.509Z", + "updated_at": "2023-02-17T22:29:26.563Z", + "published_at": "2023-02-17T22:29:26.527Z", + "isCancelled": false, + "start": "2022-09-08T15:00:00.000Z", + "end": "2022-09-08T17:00:00.000Z", + "category": "special", + "body": "STATEWIDE VIOLENCE PREVENTION AD HOC COMMITTEE\nSeptember 8th, 2022\n10:00 AM-12:00 PM\n\nLocation:\nVia Webex Video Conference/Teleconference\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "838", + "formats": null, + "size": 61.65, + "name": "VPAHCAGENDA Sept 8-22.pdf", + "ext": ".pdf", + "url": "/uploads/VPAHCAGENDA_Sept_8_22_5d1676637f.pdf", + "updated_at": "2023-02-17T22:29:19.916Z", + "created_at": "2023-02-17T22:29:19.900Z", + "hash": "VPAHCAGENDA_Sept_8_22_5d1676637f", + "__typename": "UploadFile" + }, + { + "id": "839", + "formats": null, + "size": 575.78, + "name": "ICJIA Violence Prevention Committee Meeting Minutes 9-8-22.pdf", + "ext": ".pdf", + "url": "/uploads/ICJIA_Violence_Prevention_Committee_Meeting_Minutes_9_8_22_a43ee99363.pdf", + "updated_at": "2023-02-17T22:29:20.722Z", + "created_at": "2023-02-17T22:29:20.705Z", + "hash": "ICJIA_Violence_Prevention_Committee_Meeting_Minutes_9_8_22_a43ee99363", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "84", + "title": "ILLINOIS DOMESTIC VIOLENCE PRETRIAL WORKING GROUP: August 25, 2022", + "slug": "illinois-domestic-violence-pretrial-working-group-august-25-2022", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 8/25/2022, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-08-23T17:34:03.304Z", + "updated_at": "2022-10-27T23:30:19.466Z", + "published_at": "2022-08-23T17:38:01.146Z", + "isCancelled": null, + "start": "2022-08-25T19:00:00.000Z", + "end": "2022-08-25T20:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 8/25/2022, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "648", + "formats": null, + "size": 33.15, + "name": "Domestic Violence Pretrial Working Group 825 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/Domestic_Violence_Pretrial_Working_Group_825_Agenda_32be57a8ce.pdf", + "updated_at": "2022-08-23T17:33:59.461Z", + "created_at": "2022-08-23T17:33:59.443Z", + "hash": "Domestic_Violence_Pretrial_Working_Group_825_Agenda_32be57a8ce", + "__typename": "UploadFile" + }, + { + "id": "723", + "formats": null, + "size": 109.49, + "name": "DVPWG Meeting Minutes 825.pdf", + "ext": ".pdf", + "url": "/uploads/DVPWG_Meeting_Minutes_825_c0fdcecf04.pdf", + "updated_at": "2022-10-27T23:30:15.540Z", + "created_at": "2022-10-27T23:30:15.488Z", + "hash": "DVPWG_Meeting_Minutes_825_c0fdcecf04", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "82", + "title": "Budget Committee Meeting August 18, 2022", + "slug": "budget-committee-meeting-august-18-2022", + "summary": "Budget Committee Meeting\nThursday, August 18, 2022.\n10:00 a.m. to 12:00 p.m.\nLocation:\nVia WebEx", + "created_at": "2022-08-11T21:06:45.508Z", + "updated_at": "2022-09-22T22:28:43.553Z", + "published_at": "2022-08-11T21:06:53.043Z", + "isCancelled": null, + "start": "2022-08-18T15:00:00.000Z", + "end": "2022-08-18T17:00:00.000Z", + "category": "budget", + "body": "Budget Committee Meeting\nThursday, August 18, 2022.\n10:00 a.m. to 12:00 p.m.\nLocation:\nVia WebEx", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "635", + "formats": null, + "size": 3560.39, + "name": "Budget Committee Materials 081822.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_081822_eb875c2899.pdf", + "updated_at": "2022-08-11T21:06:32.063Z", + "created_at": "2022-08-11T21:06:32.050Z", + "hash": "Budget_Committee_Materials_081822_eb875c2899", + "__typename": "UploadFile" + }, + { + "id": "653", + "formats": null, + "size": 168.78, + "name": "Budget Committee Summary 081822.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_081822_e2eb532f87.pdf", + "updated_at": "2022-08-29T16:07:40.804Z", + "created_at": "2022-08-29T16:07:40.785Z", + "hash": "Budget_Committee_Summary_081822_e2eb532f87", + "__typename": "UploadFile" + }, + { + "id": "679", + "formats": null, + "size": 177.98, + "name": "Budget Committee Minutes 081822.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_081822_5cb3a813df.pdf", + "updated_at": "2022-09-22T22:28:37.814Z", + "created_at": "2022-09-22T22:28:37.783Z", + "hash": "Budget_Committee_Minutes_081822_5cb3a813df", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "81", + "title": "HIGHER EDUCATION IN PRISON TASK FORCE: July 28, 2022", + "slug": "higher-education-in-prison-task-force-july-28-2022", + "summary": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-07-25T20:56:39.397Z", + "updated_at": "2022-07-25T20:56:42.186Z", + "published_at": "2022-07-25T20:56:42.163Z", + "isCancelled": null, + "start": "2022-07-28T15:30:00.000Z", + "end": "2022-07-28T18:30:00.000Z", + "category": "special", + "body": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "628", + "formats": null, + "size": 31.16, + "name": "HEP_Task_Force_Agenda_Meeting_7_28.pdf", + "ext": ".pdf", + "url": "/uploads/HEP_Task_Force_Agenda_Meeting_7_28_d2db8a0e24.pdf", + "updated_at": "2022-07-25T20:56:29.777Z", + "created_at": "2022-07-25T20:56:29.762Z", + "hash": "HEP_Task_Force_Agenda_Meeting_7_28_d2db8a0e24", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "80", + "title": "HIGHER EDUCATION IN PRISON TASK FORCE: July 21, 2022", + "slug": "higher-education-in-prison-task-force-july-21-2022", + "summary": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-07-19T16:20:05.260Z", + "updated_at": "2022-07-19T16:20:31.284Z", + "published_at": "2022-07-19T16:20:06.850Z", + "isCancelled": null, + "start": "2022-07-21T17:00:00.000Z", + "end": "2022-07-21T18:30:00.000Z", + "category": "special", + "body": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date,\ntime and location set forth below. All interested parties are invited to attend and will be given the opportunity for\npublic comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "626", + "formats": null, + "size": 31.36, + "name": "HEP_Task_Force_Agenda_Meeting_7_21.pdf", + "ext": ".pdf", + "url": "/uploads/HEP_Task_Force_Agenda_Meeting_7_21_cfd9809d73.pdf", + "updated_at": "2022-07-19T16:19:56.973Z", + "created_at": "2022-07-19T16:19:56.957Z", + "hash": "HEP_Task_Force_Agenda_Meeting_7_21_cfd9809d73", + "__typename": "UploadFile" + }, + { + "id": "627", + "formats": null, + "size": 622.38, + "name": "HEP_Task_Force_Agenda_Meeting_7_21.docx", + "ext": ".docx", + "url": "/uploads/HEP_Task_Force_Agenda_Meeting_7_21_798cafe7c9.docx", + "updated_at": "2022-07-19T16:19:57.123Z", + "created_at": "2022-07-19T16:19:57.115Z", + "hash": "HEP_Task_Force_Agenda_Meeting_7_21_798cafe7c9", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "79", + "title": "HIGHER EDUCATION IN PRISON TASK FORCE: July 14, 2022", + "slug": "higher-education-in-prison-task-force-july-14-2022", + "summary": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-07-12T16:44:39.435Z", + "updated_at": "2022-07-12T17:55:39.062Z", + "published_at": "2022-07-12T16:45:38.582Z", + "isCancelled": null, + "start": "2022-07-14T17:00:00.000Z", + "end": "2022-07-12T18:30:00.000Z", + "category": "special", + "body": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "623", + "formats": null, + "size": 622.76, + "name": "HEP_Task_Force_Agenda_Meeting_7_14.docx", + "ext": ".docx", + "url": "/uploads/HEP_Task_Force_Agenda_Meeting_7_14_0ad749f479.docx", + "updated_at": "2022-07-12T17:55:32.495Z", + "created_at": "2022-07-12T17:55:32.463Z", + "hash": "HEP_Task_Force_Agenda_Meeting_7_14_0ad749f479", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "78", + "title": "HIGHER EDUCATION IN PRISON TASK FORCE: June 30, 2022", + "slug": "higher-education-in-prison-task-force-june-30-2022", + "summary": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-06-28T15:25:28.136Z", + "updated_at": "2022-06-28T15:25:31.699Z", + "published_at": "2022-06-28T15:25:31.672Z", + "isCancelled": null, + "start": "2022-06-30T17:00:00.000Z", + "end": "2022-06-30T19:15:00.000Z", + "category": "special", + "body": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "611", + "formats": null, + "size": 31.97, + "name": "HEP Task Force Agenda Meeting 6.30.2022.pdf", + "ext": ".pdf", + "url": "/uploads/HEP_Task_Force_Agenda_Meeting_6_30_2022_d19b1000cf.pdf", + "updated_at": "2022-06-28T15:25:16.147Z", + "created_at": "2022-06-28T15:25:16.135Z", + "hash": "HEP_Task_Force_Agenda_Meeting_6_30_2022_d19b1000cf", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "77", + "title": "ILLINOIS DOMESTIC VIOLENCE PRETRIAL WORKING GROUP: June 23, 2022", + "slug": "illinois-domestic-violence-pretrial-working-group-june-23-2022", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a\npublic meeting on 6/23/2022, at 2:00 pm by WebEx. All interested parties are invited to attend and will\nbe given the opportunity for public comment.", + "created_at": "2022-06-21T17:36:42.287Z", + "updated_at": "2022-06-21T19:36:20.354Z", + "published_at": "2022-06-21T17:36:43.954Z", + "isCancelled": null, + "start": "2022-06-23T19:00:00.000Z", + "end": "2022-06-23T20:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 6/23/2022, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public commen", + "posts": [], + "events": [], + "tags": [ + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "603", + "formats": null, + "size": 34.2, + "name": "Domestic Violence Pretrial Working Group 623 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/Domestic_Violence_Pretrial_Working_Group_623_Agenda_2d3281df35.pdf", + "updated_at": "2022-06-21T17:36:26.595Z", + "created_at": "2022-06-21T17:36:26.583Z", + "hash": "Domestic_Violence_Pretrial_Working_Group_623_Agenda_2d3281df35", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "76", + "title": "Budget Committee Meeting - June 23, 2022", + "slug": "Budget-Committee-Meeting", + "summary": "Budget Committee Meeting\nThursday, June 23, 2022.\n10:00 a.m. to 12:00 p.m.\nLocation:\nVia WebEx", + "created_at": "2022-06-16T20:18:42.457Z", + "updated_at": "2022-08-24T23:00:45.378Z", + "published_at": "2022-06-16T20:19:06.405Z", + "isCancelled": null, + "start": "2022-06-23T15:00:00.000Z", + "end": "2022-06-23T17:00:00.000Z", + "category": "budget", + "body": "Budget Committee Meeting\nThursday, June 23, 2022.\n10:00 a.m. to 12:00 p.m.\nLocation:\nVia WebEx", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "602", + "formats": null, + "size": 2874.18, + "name": "Budget Committee Materials 062322.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_062322_4eff745816.pdf", + "updated_at": "2022-06-16T20:16:39.943Z", + "created_at": "2022-06-16T20:16:39.854Z", + "hash": "Budget_Committee_Materials_062322_4eff745816", + "__typename": "UploadFile" + }, + { + "id": "613", + "formats": null, + "size": 179.18, + "name": "Budget Committee Summary 062322.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_062322_1b0147df1f.pdf", + "updated_at": "2022-06-30T17:54:45.513Z", + "created_at": "2022-06-30T17:54:45.499Z", + "hash": "Budget_Committee_Summary_062322_1b0147df1f", + "__typename": "UploadFile" + }, + { + "id": "649", + "formats": null, + "size": 223.19, + "name": "Budget Committee Minutes 062322.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_062322_6799becbb0.pdf", + "updated_at": "2022-08-24T23:00:42.174Z", + "created_at": "2022-08-24T23:00:42.154Z", + "hash": "Budget_Committee_Minutes_062322_6799becbb0", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "72", + "title": "ILLINOIS DOMESTIC VIOLENCE FATALITY REVIEW COMMITTEE: June 21, 2022", + "slug": "illinois-domestic-violence-fatality-review-committee-june-21-2022", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review Committee will conduct a public meeting on 6/21/2022, at 1:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.\n", + "created_at": "2022-06-10T12:47:03.996Z", + "updated_at": "2022-06-10T12:47:07.858Z", + "published_at": "2022-06-10T12:47:07.834Z", + "isCancelled": null, + "start": "2022-06-21T18:00:00.000Z", + "end": "2022-06-21T20:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review Committee will conduct a public meeting on 6/21/2022, at 1:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "569", + "formats": null, + "size": 35.08, + "name": "DVFR 6_21 Agenda_2.pdf", + "ext": ".pdf", + "url": "/uploads/DVFR_6_21_Agenda_2_5d3ef9feaa.pdf", + "updated_at": "2022-06-10T12:46:54.742Z", + "created_at": "2022-06-10T12:46:54.727Z", + "hash": "DVFR_6_21_Agenda_2_5d3ef9feaa", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "73", + "title": "Illinois Firearm Prohibitors and Records Improvement Task Force: June 16, 2022", + "slug": "illinois-firearm-prohibitors-and-records-improvement-task-force-june-16-2022", + "summary": "Public notice is hereby given that the Illinois Firearm Task Force will conduct a public meeting on June 16, 2022, at 2:00 p.m. to 3:30 p.m. by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-06-14T15:03:22.184Z", + "updated_at": "2022-06-15T18:08:07.668Z", + "published_at": "2022-06-14T15:05:30.378Z", + "isCancelled": null, + "start": "2022-06-16T19:00:00.000Z", + "end": "2022-06-16T20:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Firearm Task Force will conduct a public meeting on June 16, 2022, at 2:00 p.m. to 3:30 p.m. by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "598", + "formats": null, + "size": 30.03, + "name": "Corrected Firearm TF Agenda 6_16.pdf", + "ext": ".pdf", + "url": "/uploads/Corrected_Firearm_TF_Agenda_6_16_21f2b95a21.pdf", + "updated_at": "2022-06-15T18:08:00.140Z", + "created_at": "2022-06-15T18:08:00.124Z", + "hash": "Corrected_Firearm_TF_Agenda_6_16_21f2b95a21", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "70", + "title": "HIGHER EDUCATION IN PRISON TASK FORCE: June 16, 2022", + "slug": "higher-education-in-prison-task-force-june-16-2002", + "summary": "This meeting is cancelled.", + "created_at": "2022-06-09T01:21:51.902Z", + "updated_at": "2023-02-04T18:28:57.167Z", + "published_at": "2022-06-09T01:21:54.314Z", + "isCancelled": true, + "start": "2022-06-16T17:00:00.000Z", + "end": "2022-06-16T18:30:00.000Z", + "category": "special", + "body": "**Note: This meeting is cancelled.**", + "posts": [], + "events": [], + "tags": [ + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [], + "external": [], + "__typename": "Meeting" + }, + { + "id": "74", + "title": "R3: RESTORE, REINVEST, AND RENEW PROGRAM BOARD: June 16, 2022", + "slug": "r3-restore-reinvest-and-renew-program-board-june-16-2022", + "summary": "Regular Meeting\nPursuant to \u00a7 10-40 of the Cannabis Regulation and Tax Act (410 ILCS 705/)", + "created_at": "2022-06-14T16:17:53.559Z", + "updated_at": "2022-06-14T16:21:34.506Z", + "published_at": "2022-06-14T16:19:57.289Z", + "isCancelled": null, + "start": "2022-06-16T17:00:00.000Z", + "end": "2022-06-16T19:00:00.000Z", + "category": "special", + "body": "Regular Meeting\n\nPursuant to \u00a7 10-40 of the Cannabis Regulation and Tax Act (410 ILCS 705/)", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "572", + "formats": null, + "size": 207.55, + "name": "R3Agenda06162022.pdf", + "ext": ".pdf", + "url": "/uploads/R3_Agenda06162022_c5f28f6582.pdf", + "updated_at": "2022-06-14T16:17:44.991Z", + "created_at": "2022-06-14T16:17:44.978Z", + "hash": "R3_Agenda06162022_c5f28f6582", + "__typename": "UploadFile" + }, + { + "id": "573", + "formats": null, + "size": 369.07, + "name": "Attachments1to12SFY2023R3FundingRecommendationsBoardMeeting06162022.pdf", + "ext": ".pdf", + "url": "/uploads/Attachments1to12_SFY_2023_R3_Funding_Recommendations_Board_Meeting06162022_afa586b8c3.pdf", + "updated_at": "2022-06-14T16:17:45.251Z", + "created_at": "2022-06-14T16:17:45.239Z", + "hash": "Attachments1to12_SFY_2023_R3_Funding_Recommendations_Board_Meeting06162022_afa586b8c3", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "75", + "title": "Regular Board Meeting:June 16, 2022", + "slug": "regular-board-meeting-june-16-2022", + "summary": " \t\t \nRegular Board Meeting", + "created_at": "2022-06-14T18:36:44.840Z", + "updated_at": "2022-06-14T18:37:06.731Z", + "published_at": "2022-06-14T18:37:06.698Z", + "isCancelled": null, + "start": "2022-06-16T15:00:00.000Z", + "end": "2022-06-16T17:00:00.000Z", + "category": "board", + "body": " \t\t \nRegular Board Meeting", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "587", + "formats": null, + "size": 76.43, + "name": "Board Meeting Agenda 6.16.22 mdj.docx", + "ext": ".docx", + "url": "/uploads/Board_Meeting_Agenda_6_16_22_mdj_5bc2ef211e.docx", + "updated_at": "2022-06-14T18:36:35.985Z", + "created_at": "2022-06-14T18:36:35.970Z", + "hash": "Board_Meeting_Agenda_6_16_22_mdj_5bc2ef211e", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "71", + "title": "R3: RESTORE, REINVEST, AND RENEW PROGRAM BOARD: June 14, 2022", + "slug": "r3-restore-reinvest-and-renew-program-board-june-14-2022", + "summary": "This meeting is cancelled.\n", + "created_at": "2022-06-09T22:58:53.141Z", + "updated_at": "2023-02-04T19:23:52.434Z", + "published_at": "2022-06-09T23:01:08.817Z", + "isCancelled": true, + "start": "2022-06-14T14:00:00.000Z", + "end": "2022-06-14T16:00:00.000Z", + "category": "special", + "body": "**NOTE: Today\u2019s meeting was canceled.**\n\n\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [], + "external": [], + "__typename": "Meeting" + }, + { + "id": "110", + "title": "STATEWIDE VIOLENCE PREVENTION AD HOC COMMITTEE: JUNE 9, 2022", + "slug": "statewide-violence-prevention-ad-hoc-committee-june-9-2022", + "summary": "STATEWIDE VIOLENCE PREVENTION AD HOC COMMITTEE\nJUNE 9, 2022 10:00 AM-12:00 PM\n\nLocation:\nVia Webex Video Conference/Teleconference\n", + "created_at": "2023-02-17T22:24:52.751Z", + "updated_at": "2023-02-17T22:24:54.489Z", + "published_at": "2023-02-17T22:24:54.445Z", + "isCancelled": false, + "start": "2022-06-09T15:00:00.000Z", + "end": "2022-06-09T17:00:00.000Z", + "category": "special", + "body": "STATEWIDE VIOLENCE PREVENTION AD HOC COMMITTEE\nJUNE 9, 2022 10:00 AM-12:00 PM\n\nLocation:\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "836", + "formats": null, + "size": 20.76, + "name": "VPAHCAGENDAJune9.docx", + "ext": ".docx", + "url": "/uploads/VPAHCAGENDA_June9_6acc34ecf9.docx", + "updated_at": "2023-02-17T22:24:48.425Z", + "created_at": "2023-02-17T22:24:48.400Z", + "hash": "VPAHCAGENDA_June9_6acc34ecf9", + "__typename": "UploadFile" + }, + { + "id": "837", + "formats": null, + "size": 81.2, + "name": "ICJIA VP Committee Meeting Minutes 6-9-22.pdf", + "ext": ".pdf", + "url": "/uploads/ICJIA_VP_Committee_Meeting_Minutes_6_9_22_545de518c7.pdf", + "updated_at": "2023-02-17T22:24:48.561Z", + "created_at": "2023-02-17T22:24:48.548Z", + "hash": "ICJIA_VP_Committee_Meeting_Minutes_6_9_22_545de518c7", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "69", + "title": "Budget Committee Meeting", + "slug": "budget-committee-meeting-1", + "summary": "Budget Committee Meeting\nWednesday, June 8, 2022.\n1:30 p.m. to 3:30 p.m.\nLocation:\nVia WebEx", + "created_at": "2022-06-03T18:16:32.033Z", + "updated_at": "2022-08-24T23:01:46.892Z", + "published_at": "2022-06-03T18:16:40.960Z", + "isCancelled": null, + "start": "2022-06-08T18:30:00.000Z", + "end": "2022-06-08T20:30:00.000Z", + "category": "budget", + "body": "Budget Committee Meeting\nWednesday, June 8, 2022.\n1:30 p.m. to 3:30 p.m.\nLocation:\nVia WebEx", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "562", + "formats": null, + "size": 4297.71, + "name": "Budget Committee Materials 060822.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_060822_27dfe7522e.pdf", + "updated_at": "2022-06-03T18:16:06.579Z", + "created_at": "2022-06-03T18:16:06.565Z", + "hash": "Budget_Committee_Materials_060822_27dfe7522e", + "__typename": "UploadFile" + }, + { + "id": "604", + "formats": null, + "size": 168.96, + "name": "Budget Committee Summary 060822.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_060822_e3564362f7.pdf", + "updated_at": "2022-06-22T18:52:53.021Z", + "created_at": "2022-06-22T18:52:52.996Z", + "hash": "Budget_Committee_Summary_060822_e3564362f7", + "__typename": "UploadFile" + }, + { + "id": "650", + "formats": null, + "size": 188.38, + "name": "Budget Committee Minutes 060822.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_060822_a8ddf25624.pdf", + "updated_at": "2022-08-24T23:01:43.830Z", + "created_at": "2022-08-24T23:01:43.814Z", + "hash": "Budget_Committee_Minutes_060822_a8ddf25624", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "68", + "title": "RESTORE, REINVEST, AND RENEW PROGRAM BOARD: June 7, 2022", + "slug": "restore-reinvest-and-renew-program-board-june-7-2022", + "summary": "RESTORE, REINVEST, AND RENEW PROGRAM BOARD, Regular Meeting", + "created_at": "2022-06-02T14:06:30.114Z", + "updated_at": "2022-06-02T14:06:31.571Z", + "published_at": "2022-06-02T14:06:31.546Z", + "isCancelled": null, + "start": "2022-06-07T15:00:00.000Z", + "end": "2022-06-07T16:00:00.000Z", + "category": "special", + "body": "Regular Meeting\n\nPursuant to \u00a7 10-40 of the Cannabis Regulation and Tax Act (410 ILCS 705/)", + "posts": [], + "events": [], + "tags": [ + { + "title": "Restore, Reinvest, Renew (R3)", + "slug": "restore-reinvest-renew-r3", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "559", + "formats": null, + "size": 90.13, + "name": "R3agenda06072022.pdf", + "ext": ".pdf", + "url": "/uploads/R3agenda06072022_00b55850d9.pdf", + "updated_at": "2022-06-02T14:06:04.038Z", + "created_at": "2022-06-02T14:06:03.936Z", + "hash": "R3agenda06072022_00b55850d9", + "__typename": "UploadFile" + }, + { + "id": "560", + "formats": null, + "size": 93.65, + "name": "R3agendaAttachmentA06072022.pdf", + "ext": ".pdf", + "url": "/uploads/R3agenda_Attachment_A06072022_0979411531.pdf", + "updated_at": "2022-06-02T14:06:04.081Z", + "created_at": "2022-06-02T14:06:04.072Z", + "hash": "R3agenda_Attachment_A06072022_0979411531", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "67", + "title": "HIGHER EDUCATION IN PRISON TASK FORCE Meeting: June 2, 2022", + "slug": "higher-education-in-prison-task-force-meeting-june-2-2022", + "summary": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-05-26T20:39:34.585Z", + "updated_at": "2022-05-26T20:39:37.101Z", + "published_at": "2022-05-26T20:39:37.078Z", + "isCancelled": null, + "start": "2022-06-02T17:00:00.000Z", + "end": "2022-06-02T18:30:00.000Z", + "category": "special", + "body": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "556", + "formats": null, + "size": 31.57, + "name": "HEP Task Force Agenda Meeting 6.2.2022.pdf", + "ext": ".pdf", + "url": "/uploads/HEP_Task_Force_Agenda_Meeting_6_2_2022_377a294644.pdf", + "updated_at": "2022-05-26T20:39:31.406Z", + "created_at": "2022-05-26T20:39:31.395Z", + "hash": "HEP_Task_Force_Agenda_Meeting_6_2_2022_377a294644", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "66", + "title": "Illinois Domestic Violence Pretrial Working Group Meeting: May 26, 2022 ", + "slug": "illinois-domestic-violence-pretrial-working-group-meeting-may-26-2022", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 5/26/2022, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-05-23T20:55:36.528Z", + "updated_at": "2022-10-27T23:30:56.751Z", + "published_at": "2022-05-23T20:55:39.876Z", + "isCancelled": null, + "start": "2022-05-26T19:00:00.000Z", + "end": "2022-05-26T20:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 5/26/2022, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "554", + "formats": null, + "size": 616.64, + "name": "Domestic Violence Pretrial Working Group 526 Agenda-Draft .docx", + "ext": ".docx", + "url": "/uploads/Domestic_Violence_Pretrial_Working_Group_526_Agenda_Draft_7d5be7df36.docx", + "updated_at": "2022-05-23T20:55:30.334Z", + "created_at": "2022-05-23T20:55:30.321Z", + "hash": "Domestic_Violence_Pretrial_Working_Group_526_Agenda_Draft_7d5be7df36", + "__typename": "UploadFile" + }, + { + "id": "724", + "formats": null, + "size": 146.42, + "name": "DVPWG Minutes 5.26.22.pdf", + "ext": ".pdf", + "url": "/uploads/DVPWG_Minutes_5_26_22_5e5822c9e4.pdf", + "updated_at": "2022-10-27T23:30:54.249Z", + "created_at": "2022-10-27T23:30:54.231Z", + "hash": "DVPWG_Minutes_5_26_22_5e5822c9e4", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "65", + "title": "HIGHER EDUCATION IN PRISON TASK FORCE Meeting: May 19, 2022", + "slug": "higher-education-in-prison-task-force-meeting-may-19-2022", + "summary": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-05-17T15:07:16.445Z", + "updated_at": "2022-07-06T19:54:07.630Z", + "published_at": "2022-05-17T15:07:20.935Z", + "isCancelled": null, + "start": "2022-05-19T17:00:00.000Z", + "end": "2022-05-19T18:30:00.000Z", + "category": "special", + "body": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "549", + "formats": null, + "size": 622.41, + "name": "HEP Task Force Agenda Meeting 5.19.2022.docx", + "ext": ".docx", + "url": "/uploads/HEP_Task_Force_Agenda_Meeting_5_19_2022_407d191bcc.docx", + "updated_at": "2022-05-17T15:07:13.228Z", + "created_at": "2022-05-17T15:07:13.208Z", + "hash": "HEP_Task_Force_Agenda_Meeting_5_19_2022_407d191bcc", + "__typename": "UploadFile" + }, + { + "id": "618", + "formats": null, + "size": 41.99, + "name": "HEP Task Force Meeting Minutes 5.19.2022_final.docx", + "ext": ".docx", + "url": "/uploads/HEP_Task_Force_Meeting_Minutes_5_19_2022_final_6048906ed0.docx", + "updated_at": "2022-07-06T19:54:00.816Z", + "created_at": "2022-07-06T19:54:00.806Z", + "hash": "HEP_Task_Force_Meeting_Minutes_5_19_2022_final_6048906ed0", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "64", + "title": "The Firearm Prohibitors and Records Improvement Task Force Meeting: May 18, 2022", + "slug": "the-firearm-prohibitors-and-records-improvement-task-force-meeting-may-18-2022", + "summary": "Public notice is hereby given that the Illinois Firearm Task Force will conduct a public meeting on May 18, 2022, at 10:30 a.m. to 12:00 p.m. by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-05-16T01:31:44.915Z", + "updated_at": "2022-08-27T11:50:26.651Z", + "published_at": "2022-05-16T01:32:25.633Z", + "isCancelled": null, + "start": "2022-05-18T15:30:00.000Z", + "end": "2022-05-18T17:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Firearm Task Force will conduct a public meeting on May 18, 2022, at 10:30 a.m. to 12:00 p.m. by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "548", + "formats": null, + "size": 102.92, + "name": "Firearm TF Agenda 5_18.pdf", + "ext": ".pdf", + "url": "/uploads/Firearm_TF_Agenda_5_18_40a0c4a595.pdf", + "updated_at": "2022-05-16T01:31:36.422Z", + "created_at": "2022-05-16T01:31:36.409Z", + "hash": "Firearm_TF_Agenda_5_18_40a0c4a595", + "__typename": "UploadFile" + }, + { + "id": "651", + "formats": null, + "size": 131.79, + "name": "1st Meeting Firearm Prohibitor Task Force Meeting Minutes.pdf", + "ext": ".pdf", + "url": "/uploads/1st_Meeting_Firearm_Prohibitor_Task_Force_Meeting_Minutes_4a5d0917c0.pdf", + "updated_at": "2022-08-27T11:49:45.020Z", + "created_at": "2022-08-27T11:49:45.004Z", + "hash": "1st_Meeting_Firearm_Prohibitor_Task_Force_Meeting_Minutes_4a5d0917c0", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "63", + "title": "Higher Education in Prison Task Force meeting: May 5, 2022", + "slug": "higher-education-in-prison-task-force-meeting-may-5-2022", + "summary": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-05-02T21:13:52.260Z", + "updated_at": "2022-07-06T19:53:27.681Z", + "published_at": "2022-05-02T21:13:55.025Z", + "isCancelled": null, + "start": "2022-05-05T17:00:00.000Z", + "end": "2022-05-05T18:30:00.000Z", + "category": "special", + "body": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "538", + "formats": null, + "size": 59.58, + "name": "HEP Task Force Agenda Meeting 5.5.2022.pdf", + "ext": ".pdf", + "url": "/uploads/HEP_Task_Force_Agenda_Meeting_5_5_2022_ac38423269.pdf", + "updated_at": "2022-05-02T21:13:46.631Z", + "created_at": "2022-05-02T21:13:46.620Z", + "hash": "HEP_Task_Force_Agenda_Meeting_5_5_2022_ac38423269", + "__typename": "UploadFile" + }, + { + "id": "617", + "formats": null, + "size": 72.17, + "name": "HEP Task Force Meeting Minutes 5.5.22_final.docx", + "ext": ".docx", + "url": "/uploads/HEP_Task_Force_Meeting_Minutes_5_5_22_final_57521207c5.docx", + "updated_at": "2022-07-06T19:53:14.907Z", + "created_at": "2022-07-06T19:53:14.892Z", + "hash": "HEP_Task_Force_Meeting_Minutes_5_5_22_final_57521207c5", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "62", + "title": "ILLINOIS DOMESTIC VIOLENCE PRETRIAL WORKING GROUP Meeting: April 28, 2022", + "slug": "illinois-domestic-violence-pretrial-working-group-meeting-april-28-2022", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 4/28/2022, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-04-25T18:56:19.947Z", + "updated_at": "2022-05-26T21:10:33.992Z", + "published_at": "2022-04-25T18:57:05.741Z", + "isCancelled": null, + "start": "2022-04-28T19:00:00.000Z", + "end": "2022-04-28T20:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a public meeting on 4/28/2022, at 2:00 pm by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "535", + "formats": null, + "size": 59.3, + "name": "Domestic Violence Pretrial Working Group 428 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/Domestic_Violence_Pretrial_Working_Group_428_Agenda_ab5591d85c.pdf", + "updated_at": "2022-04-25T18:56:06.164Z", + "created_at": "2022-04-25T18:56:06.137Z", + "hash": "Domestic_Violence_Pretrial_Working_Group_428_Agenda_ab5591d85c", + "__typename": "UploadFile" + }, + { + "id": "557", + "formats": null, + "size": 126.7, + "name": "DV Pretrial Working Group Minutes 4.28.22.pdf", + "ext": ".pdf", + "url": "/uploads/DV_Pretrial_Working_Group_Minutes_4_28_22_59db351a43.pdf", + "updated_at": "2022-05-26T21:10:29.185Z", + "created_at": "2022-05-26T21:10:29.121Z", + "hash": "DV_Pretrial_Working_Group_Minutes_4_28_22_59db351a43", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "61", + "title": "Higher Education in Prison Task Force meeting: April 21, 2022", + "slug": "higher-education-in-prison-task-force-meeting-april-21-2022", + "summary": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-04-19T16:26:42.218Z", + "updated_at": "2022-04-19T16:31:42.291Z", + "published_at": "2022-04-19T16:26:44.092Z", + "isCancelled": null, + "start": "2022-04-21T17:00:00.000Z", + "end": "2022-04-21T18:30:00.000Z", + "category": "special", + "body": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "533", + "formats": null, + "size": 58.88, + "name": "HEP Task Force Agenda Meeting.4.21.2022 rev.pdf", + "ext": ".pdf", + "url": "/uploads/HEP_Task_Force_Agenda_Meeting_4_21_2022_rev_d42365442f.pdf", + "updated_at": "2022-04-19T16:31:38.862Z", + "created_at": "2022-04-19T16:31:38.838Z", + "hash": "HEP_Task_Force_Agenda_Meeting_4_21_2022_rev_d42365442f", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "60", + "title": "Budget Committee Meeting April 14, 2022", + "slug": "budget-committee-meeting-april-14-2022", + "summary": "Thursday, April 14, 2022.\n10 a.m. to 12 p.m.\nLocation:\nVia WebEx\n", + "created_at": "2022-04-11T15:26:53.704Z", + "updated_at": "2022-06-09T21:24:48.088Z", + "published_at": "2022-04-11T15:26:58.369Z", + "isCancelled": null, + "start": "2022-04-14T15:00:00.000Z", + "end": "2022-04-14T17:00:00.000Z", + "category": "budget", + "body": "Budget Committee Meeting\nApril 14, 2022\n10 a.m. to 12 p.m.\nVia WebEx", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "516", + "formats": null, + "size": 1886.32, + "name": "Budget Committee Materials 041422.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_041422_9c322849e9.pdf", + "updated_at": "2022-04-11T15:26:42.377Z", + "created_at": "2022-04-11T15:26:42.362Z", + "hash": "Budget_Committee_Materials_041422_9c322849e9", + "__typename": "UploadFile" + }, + { + "id": "534", + "formats": null, + "size": 155.54, + "name": "Budget Committee Summary 041422.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_041422_1da615f267.pdf", + "updated_at": "2022-04-21T18:25:25.345Z", + "created_at": "2022-04-21T18:25:25.330Z", + "hash": "Budget_Committee_Summary_041422_1da615f267", + "__typename": "UploadFile" + }, + { + "id": "566", + "formats": null, + "size": 170.29, + "name": "Budget Committee Minutes 041422.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_041422_71b3497557.pdf", + "updated_at": "2022-06-09T21:24:38.058Z", + "created_at": "2022-06-09T21:24:38.040Z", + "hash": "Budget_Committee_Minutes_041422_71b3497557", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "59", + "title": "Higher Education in Prison Task Force meeting: April 8, 2022", + "slug": "higher-education-in-prison-task-force-meeting-april-8-2022", + "summary": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-04-06T13:22:09.149Z", + "updated_at": "2022-05-05T21:49:22.847Z", + "published_at": "2022-04-06T13:22:12.171Z", + "isCancelled": null, + "start": "2022-04-08T15:00:00.000Z", + "end": "2022-04-08T16:30:00.000Z", + "category": "special", + "body": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "513", + "formats": null, + "size": 60, + "name": "HEP Task Force Agenda Meeting.4.8.2022.pdf", + "ext": ".pdf", + "url": "/uploads/HEP_Task_Force_Agenda_Meeting_4_8_2022_932d3672b9.pdf", + "updated_at": "2022-04-06T13:22:03.091Z", + "created_at": "2022-04-06T13:22:03.074Z", + "hash": "HEP_Task_Force_Agenda_Meeting_4_8_2022_932d3672b9", + "__typename": "UploadFile" + }, + { + "id": "545", + "formats": null, + "size": 106.47, + "name": "HEP Task Force Meeting Minutes 4.8.2022 (002).pdf", + "ext": ".pdf", + "url": "/uploads/HEP_Task_Force_Meeting_Minutes_4_8_2022_002_7241323cb6.pdf", + "updated_at": "2022-05-05T21:48:40.856Z", + "created_at": "2022-05-05T21:48:40.847Z", + "hash": "HEP_Task_Force_Meeting_Minutes_4_8_2022_002_7241323cb6", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "58", + "title": "HIGHER EDUCATION IN PRISON TASK FORCE: Mar 24, 2022", + "slug": "higher-education-in-prison-task-force-mar-24-2022", + "summary": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-03-22T16:18:29.155Z", + "updated_at": "2022-05-05T21:50:02.215Z", + "published_at": "2022-03-22T16:18:31.764Z", + "isCancelled": null, + "start": "2022-03-24T17:00:00.000Z", + "end": "2022-03-24T18:30:00.000Z", + "category": "special", + "body": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "505", + "formats": null, + "size": 622.51, + "name": "HEP Task Force Agenda Meeting.3.24.2022.docx", + "ext": ".docx", + "url": "/uploads/HEP_Task_Force_Agenda_Meeting_3_24_2022_3b78871856.docx", + "updated_at": "2022-05-05T21:49:42.170Z", + "created_at": "2022-03-22T16:18:23.198Z", + "hash": "HEP_Task_Force_Agenda_Meeting_3_24_2022_3b78871856", + "__typename": "UploadFile" + }, + { + "id": "544", + "formats": null, + "size": 97.38, + "name": "HEP Task Force Meeting Minutes 3.24.2022.pdf", + "ext": ".pdf", + "url": "/uploads/HEP_Task_Force_Meeting_Minutes_3_24_2022_1f84003b74.pdf", + "updated_at": "2022-05-05T21:47:56.070Z", + "created_at": "2022-05-05T21:47:56.058Z", + "hash": "HEP_Task_Force_Meeting_Minutes_3_24_2022_1f84003b74", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "57", + "title": "ILLINOIS DOMESTIC VIOLENCE PRETRIAL WORKING GROUP: Mar 23, 2022", + "slug": "illinois-domestic-violence-pretrial-working-group-mar-23-2022", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a\npublic meeting on 3/23/2022, at 2:00 pm by WebEx. All interested parties are invited to attend and will\nbe given the opportunity for public comment.", + "created_at": "2022-03-21T16:33:49.931Z", + "updated_at": "2022-04-28T20:43:30.424Z", + "published_at": "2022-03-21T16:33:51.913Z", + "isCancelled": null, + "start": "2022-03-23T19:00:00.000Z", + "end": "2022-03-23T21:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Pretrial Working Group will conduct a\npublic meeting on 3/23/2022, at 2:00 pm by WebEx. All interested parties are invited to attend and will\nbe given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "504", + "formats": null, + "size": 616.31, + "name": "Domestic Violence Pretrial Working Group 323 Agenda_Updated.docx", + "ext": ".docx", + "url": "/uploads/Domestic_Violence_Pretrial_Working_Group_323_Agenda_Updated_c179de0eb5.docx", + "updated_at": "2022-03-22T13:17:26.614Z", + "created_at": "2022-03-22T13:17:26.603Z", + "hash": "Domestic_Violence_Pretrial_Working_Group_323_Agenda_Updated_c179de0eb5", + "__typename": "UploadFile" + }, + { + "id": "536", + "formats": null, + "size": 166.55, + "name": "DV Pretrial Working Group Minutes 3.23.22.pdf", + "ext": ".pdf", + "url": "/uploads/DV_Pretrial_Working_Group_Minutes_3_23_22_53aaff0e6a.pdf", + "updated_at": "2022-04-28T20:42:46.577Z", + "created_at": "2022-04-28T20:42:46.564Z", + "hash": "DV_Pretrial_Working_Group_Minutes_3_23_22_53aaff0e6a", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "43", + "title": "Authority Board Meeting: March 17, 2022", + "slug": "authority-board-meeting-march-17-2022", + "summary": "Authority Board Meeting: March 17, 2022", + "created_at": "2022-01-12T23:25:35.290Z", + "updated_at": "2022-12-06T15:29:06.597Z", + "published_at": "2022-01-12T23:25:36.652Z", + "isCancelled": null, + "start": "2022-03-17T15:00:00.000Z", + "end": "2022-03-17T17:00:00.000Z", + "category": "board", + "body": "", + "posts": [], + "events": [], + "tags": [ + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "495", + "formats": null, + "size": 83.28, + "name": "Board Agenda 3.17.22 mdj.docx", + "ext": ".docx", + "url": "/uploads/Board_Agenda_3_17_22_mdj_eee1afdd4a.docx", + "updated_at": "2022-03-16T18:24:50.780Z", + "created_at": "2022-03-16T18:24:50.767Z", + "hash": "Board_Agenda_3_17_22_mdj_eee1afdd4a", + "__typename": "UploadFile" + }, + { + "id": "749", + "formats": null, + "size": 245.79, + "name": "2 Authority Board Meeting Minutes 3.17.22 6.14.22 mdj ce.pdf", + "ext": ".pdf", + "url": "/uploads/2_Authority_Board_Meeting_Minutes_3_17_22_6_14_22_mdj_ce_41739b39a7.pdf", + "updated_at": "2022-12-06T15:28:23.757Z", + "created_at": "2022-12-06T15:28:23.727Z", + "hash": "2_Authority_Board_Meeting_Minutes_3_17_22_6_14_22_mdj_ce_41739b39a7", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "55", + "title": "ILLINOIS DOMESTIC VIOLENCE FATALITY REVIEW COMMITTEE: March 15, 2022", + "slug": "illinois-domestic-violence-fatality-review-committee-march-15-2022", + "summary": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review Committee will conduct\na public meeting on 3/15/2022, at 12:00 pm by WebEx. All interested parties are invited to attend and\nwill be given the opportunity for public comment.", + "created_at": "2022-03-11T15:50:11.972Z", + "updated_at": "2022-03-11T15:50:14.503Z", + "published_at": "2022-03-11T15:50:14.478Z", + "isCancelled": null, + "start": "2022-03-15T17:00:00.000Z", + "end": "2022-03-15T19:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Domestic Violence Fatality Review Committee will conduct\na public meeting on 3/15/2022, at 12:00 pm by WebEx. All interested parties are invited to attend and\nwill be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "487", + "formats": null, + "size": 33.1, + "name": "DVFR 3_15 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/DVFR_3_15_Agenda_882310b997.pdf", + "updated_at": "2022-03-11T15:50:06.161Z", + "created_at": "2022-03-11T15:50:06.148Z", + "hash": "DVFR_3_15_Agenda_882310b997", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "54", + "title": "HIGHER EDUCATION IN PRISON TASK FORCE: March 10, 2022", + "slug": "higher-education-in-prison-task-force-march-10-2022", + "summary": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2022-03-08T16:39:16.421Z", + "updated_at": "2022-04-18T18:59:42.728Z", + "published_at": "2022-03-08T16:39:59.251Z", + "isCancelled": null, + "start": "2022-03-10T18:00:00.000Z", + "end": "2022-03-10T19:00:00.000Z", + "category": "special", + "body": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date, time and location set forth below. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "482", + "formats": null, + "size": 59.82, + "name": "HEP Task Force Agenda Meeting.3.10.2022(2).pdf", + "ext": ".pdf", + "url": "/uploads/HEP_Task_Force_Agenda_Meeting_3_10_2022_2_8876076265.pdf", + "updated_at": "2022-03-08T16:39:11.544Z", + "created_at": "2022-03-08T16:39:11.533Z", + "hash": "HEP_Task_Force_Agenda_Meeting_3_10_2022_2_8876076265", + "__typename": "UploadFile" + }, + { + "id": "521", + "formats": null, + "size": 93.18, + "name": "HEP Task Force Meeting Minutes 3.10.2022 (002).pdf", + "ext": ".pdf", + "url": "/uploads/HEP_Task_Force_Meeting_Minutes_3_10_2022_002_3baa22dcaf.pdf", + "updated_at": "2022-04-18T18:59:36.957Z", + "created_at": "2022-04-18T18:59:36.947Z", + "hash": "HEP_Task_Force_Meeting_Minutes_3_10_2022_002_3baa22dcaf", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "48", + "title": "Victim Services Ad Hoc Committee Meeting: Mar 10, 2022", + "slug": "victim-services-ad-hoc-committee-meeting-mar-10-2022", + "summary": "Public notice is hereby given that the Victim Services Ad Hoc Committee will conduct a public\nmeeting on March 10, 2022, from 9:00 a.m. to 1:30 p.m. by WebEx. All interested parties are\ninvited to attend and will be given the opportunity for public comment", + "created_at": "2022-02-10T15:36:46.136Z", + "updated_at": "2022-02-10T15:49:11.758Z", + "published_at": "2022-02-10T15:36:47.567Z", + "isCancelled": null, + "start": "2022-03-10T15:00:00.000Z", + "end": "2022-03-10T19:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Victim Services Ad Hoc Committee will conduct a public meeting on March 10, 2022, from 9:00 a.m. to 1:30 p.m. by WebEx. \n\nAll interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [ + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + }, + { + "title": "Victim Services", + "slug": "victim-services", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "447", + "formats": null, + "size": 82.73, + "name": "Agenda Day 2.pdf", + "ext": ".pdf", + "url": "/uploads/Agenda_Day_2_e74d321655.pdf", + "updated_at": "2022-02-10T15:36:15.147Z", + "created_at": "2022-02-10T15:36:15.134Z", + "hash": "Agenda_Day_2_e74d321655", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "53", + "title": "Higher Education in Prison Task Force: Feb 24, 2022", + "slug": "higher-education-in-prison-task-force-feb-24-2022", + "summary": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date,\ntime and location set forth below. All interested parties are invited to attend and will be given the opportunity for\npublic comment.", + "created_at": "2022-02-22T17:38:49.595Z", + "updated_at": "2022-03-08T16:35:00.163Z", + "published_at": "2022-02-22T17:38:52.673Z", + "isCancelled": null, + "start": "2022-02-24T18:00:00.000Z", + "end": "2022-02-24T19:00:00.000Z", + "category": "special", + "body": "This serves as Public Notice of the Higher Education in Prison Task Force\u2019s Regular Meeting to be held at the date,\ntime and location set forth below. All interested parties are invited to attend and will be given the opportunity for\npublic comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "460", + "formats": null, + "size": 66.09, + "name": "HEPAgenda02242022.pdf", + "ext": ".pdf", + "url": "/uploads/HEP_Agenda02242022_d5117c764d.pdf", + "updated_at": "2022-02-22T17:39:34.378Z", + "created_at": "2022-02-22T17:39:34.366Z", + "hash": "HEP_Agenda02242022_d5117c764d", + "__typename": "UploadFile" + }, + { + "id": "461", + "formats": null, + "size": 32.15, + "name": "HEP Task Force Bylaws 2 24 2022.docx", + "ext": ".docx", + "url": "/uploads/HEP_Task_Force_Bylaws_2_24_2022_0ca504e924.docx", + "updated_at": "2022-02-22T17:44:18.071Z", + "created_at": "2022-02-22T17:44:18.058Z", + "hash": "HEP_Task_Force_Bylaws_2_24_2022_0ca504e924", + "__typename": "UploadFile" + }, + { + "id": "481", + "formats": null, + "size": 93.6, + "name": "HEP Task Force Meeting Minutes 2.24.2022.pdf", + "ext": ".pdf", + "url": "/uploads/HEP_Task_Force_Meeting_Minutes_2_24_2022_d94d9cc939.pdf", + "updated_at": "2022-03-08T16:34:55.405Z", + "created_at": "2022-03-08T16:34:55.388Z", + "hash": "HEP_Task_Force_Meeting_Minutes_2_24_2022_d94d9cc939", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "51", + "title": "IRB Meeting: February 23, 2022", + "slug": "irb-meeting-february-23-2022", + "summary": "Institutional Review Board, \nFebruary 23, 2022\n1:00 pm- 2:00 pm", + "created_at": "2022-02-16T20:48:11.406Z", + "updated_at": "2022-02-16T21:47:33.613Z", + "published_at": "2022-02-16T20:48:40.580Z", + "isCancelled": null, + "start": "2022-02-23T19:00:00.000Z", + "end": "2022-02-23T20:00:00.000Z", + "category": "irb", + "body": "**Institutional Review Board**\n\nFebruary 23, 2022\n\n1:00 pm- 2:00 pm\n\nIllinois Criminal Justice Information Authority\n\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "453", + "formats": null, + "size": 120.19, + "name": "Feb 2022 meeting.pdf", + "ext": ".pdf", + "url": "/uploads/Feb_2022_meeting_7a501b7544.pdf", + "updated_at": "2022-02-16T21:47:30.175Z", + "created_at": "2022-02-16T21:47:30.164Z", + "hash": "Feb_2022_meeting_7a501b7544", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "49", + "title": "Budget Committee Meeting: February 17, 2022", + "slug": "budget-committee-meeting-february-17-2022", + "summary": "Thursday, February 17, 2022.\n10 a.m. to 12 p.m.\nLocation:\nVia WebEx", + "created_at": "2022-02-10T22:40:29.166Z", + "updated_at": "2022-05-03T18:28:34.872Z", + "published_at": "2022-02-10T22:41:39.061Z", + "isCancelled": null, + "start": "2022-02-17T16:00:00.000Z", + "end": "2022-02-17T18:00:00.000Z", + "category": "budget", + "body": "**Thursday, Dec 16, 2021**\n\n\n10am to 12pm.\n\n\n**Location:**\n\n\nVia WebEx Video Conference / Teleconference\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "451", + "formats": null, + "size": 1802.04, + "name": "Budget Committee Materials 021722 Revised v2.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_021722_Revised_v2_0bb152de5b.pdf", + "updated_at": "2022-02-16T18:29:40.638Z", + "created_at": "2022-02-16T18:29:40.627Z", + "hash": "Budget_Committee_Materials_021722_Revised_v2_0bb152de5b", + "__typename": "UploadFile" + }, + { + "id": "463", + "formats": null, + "size": 154.9, + "name": "Budget Committee Summary 021722.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_021722_f8f9e5ddc4.pdf", + "updated_at": "2022-03-02T16:09:07.240Z", + "created_at": "2022-03-02T16:09:07.225Z", + "hash": "Budget_Committee_Summary_021722_f8f9e5ddc4", + "__typename": "UploadFile" + }, + { + "id": "540", + "formats": null, + "size": 177.73, + "name": "Budget Committee Minutes 021722.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_021722_ef510ada98.pdf", + "updated_at": "2022-05-03T18:28:29.654Z", + "created_at": "2022-05-03T18:28:29.636Z", + "hash": "Budget_Committee_Minutes_021722_ef510ada98", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "50", + "title": "Traffic and Pedestrian Stop Data Use and Collection Task Force Meeting: February 16, 2022", + "slug": "traffic-and-pedestrian-stop-data-use-and-collection-task-force-meeting-february-16-2022", + "summary": "Title: Traffic and Pedestrian Stop Data Use and Collection Task Force Meeting: February 16, 2022\nTime: 2:00-4:00PM Central \nLocation: via WebEx Videoconference/Teleconference\n", + "created_at": "2022-02-15T18:02:03.596Z", + "updated_at": "2022-02-15T18:05:08.273Z", + "published_at": "2022-02-15T18:05:08.248Z", + "isCancelled": null, + "start": "2022-02-16T20:00:00.000Z", + "end": "2022-02-16T20:00:00.000Z", + "category": "special", + "body": "Title: Traffic and Pedestrian Stop Data Use and Collection Task Force Meeting: February 16, 2022\nTime: 2:00-4:00PM Central \nLocation: via WebEx Videoconference/Teleconference\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "449", + "formats": null, + "size": 30.9, + "name": "Traffic Stop Task Force Minutes 12-15-21.docx", + "ext": ".docx", + "url": "/uploads/Traffic_Stop_Task_Force_Minutes_12_15_21_9327744ba9.docx", + "updated_at": "2022-02-15T18:01:37.392Z", + "created_at": "2022-02-15T18:01:37.376Z", + "hash": "Traffic_Stop_Task_Force_Minutes_12_15_21_9327744ba9", + "__typename": "UploadFile" + }, + { + "id": "450", + "formats": null, + "size": 612.49, + "name": "IL Traffic Stop Task Force Agenda 02-16-22.docx", + "ext": ".docx", + "url": "/uploads/IL_Traffic_Stop_Task_Force_Agenda_02_16_22_d939bbc13e.docx", + "updated_at": "2022-02-15T18:01:38.714Z", + "created_at": "2022-02-15T18:01:38.704Z", + "hash": "IL_Traffic_Stop_Task_Force_Agenda_02_16_22_d939bbc13e", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "46", + "title": "Statewide Violence Prevention Ad Hoc Committee: Feb 10, 2022", + "slug": "statewide-violence-prevention-ad-hoc-committee-feb-10-2022", + "summary": "FEBRUARY 10, 2022, 10:00 AM-12:00 PM", + "created_at": "2022-02-08T15:11:38.111Z", + "updated_at": "2023-02-17T21:50:27.248Z", + "published_at": "2022-02-08T15:11:39.478Z", + "isCancelled": null, + "start": "2022-02-10T16:00:00.000Z", + "end": "2022-02-10T18:00:00.000Z", + "category": "special", + "body": "**Location:**\n\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [ + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + }, + { + "title": "Violence Prevention", + "slug": "violence-prevention", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "424", + "formats": null, + "size": 60.58, + "name": "VPAHCAGENDA.pdf", + "ext": ".pdf", + "url": "/uploads/VPAHCAGENDA_aac5c3434f.pdf", + "updated_at": "2022-02-08T15:11:05.195Z", + "created_at": "2022-02-08T15:11:05.180Z", + "hash": "VPAHCAGENDA_aac5c3434f", + "__typename": "UploadFile" + }, + { + "id": "835", + "formats": null, + "size": 78.83, + "name": "ICJIA VP Committee Meeting Minutes 2-10-22.pdf", + "ext": ".pdf", + "url": "/uploads/ICJIA_VP_Committee_Meeting_Minutes_2_10_22_8cdadc4440.pdf", + "updated_at": "2023-02-17T21:50:23.355Z", + "created_at": "2023-02-17T21:50:23.332Z", + "hash": "ICJIA_VP_Committee_Meeting_Minutes_2_10_22_8cdadc4440", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "45", + "title": "R3: Restore, Reinvest, and Renew Program Board: Jan 31, 2022", + "slug": "r3-restore-reinvest-and-renew-program-board-jan-31-2022", + "summary": "Regular Meeting\n\nVideoconference/Teleconference", + "created_at": "2022-01-26T22:30:52.456Z", + "updated_at": "2022-06-07T21:20:34.445Z", + "published_at": "2022-01-26T22:30:54.022Z", + "isCancelled": null, + "start": "2022-01-31T19:00:00.000Z", + "end": "2022-01-31T20:30:00.000Z", + "category": "special", + "body": "**Regular Meeting**\n\nPursuant to \u00a7 10-40 of the Cannabis Regulation and Tax Act (410 ILCS 705/)\n\n**Date and Time:**\nMonday, January 31, 2022\n1:00 PM - 2:30 PM\n\n**Location:**\nVideoconference/Teleconference", + "posts": [], + "events": [], + "tags": [ + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + }, + { + "title": "Restore, Reinvest, Renew (R3)", + "slug": "restore-reinvest-renew-r3", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "423", + "formats": null, + "size": 96.95, + "name": "R3agenda01312022.pdf", + "ext": ".pdf", + "url": "/uploads/R3agenda01312022_2f51a9b4a1.pdf", + "updated_at": "2022-01-26T22:30:31.018Z", + "created_at": "2022-01-26T22:30:31.006Z", + "hash": "R3agenda01312022_2f51a9b4a1", + "__typename": "UploadFile" + }, + { + "id": "563", + "formats": null, + "size": 195.6, + "name": "R3Minutes06072022.pdf", + "ext": ".pdf", + "url": "/uploads/R3_Minutes06072022_a34f5fb0a5.pdf", + "updated_at": "2022-06-07T21:20:29.592Z", + "created_at": "2022-06-07T21:20:29.578Z", + "hash": "R3_Minutes06072022_a34f5fb0a5", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "44", + "title": "Victim Services Ad Hoc Committee Meeting: Jan 27, 2022", + "slug": "victim-services-ad-hoc-committee-meeting-jan-27-2022", + "summary": "Public notice is hereby given that the Victim Services Ad Hoc Committee will conduct a public meeting on January\n27, 2022, from 9:00 a.m. to 4:00 p.m. by WebEx. All interested parties are invited to attend and will be given the\nopportunity for public comment", + "created_at": "2022-01-25T16:40:19.217Z", + "updated_at": "2022-01-26T15:33:15.787Z", + "published_at": "2022-01-25T16:40:21.374Z", + "isCancelled": null, + "start": "2022-01-27T15:00:00.000Z", + "end": "2022-01-27T22:00:00.000Z", + "category": "special", + "body": "\nPublic notice is hereby given that the Victim Services Ad Hoc Committee will conduct a public meeting on January 27, 2022, from 9:00 a.m. to 4:00 p.m. by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [ + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "420", + "formats": null, + "size": 151.48, + "name": "Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/Agenda_205ebb2dc9.pdf", + "updated_at": "2022-01-25T16:39:59.366Z", + "created_at": "2022-01-25T16:39:59.359Z", + "hash": "Agenda_205ebb2dc9", + "__typename": "UploadFile" + }, + { + "id": "421", + "formats": null, + "size": 73.67, + "name": "Board Memo Final (002).pdf", + "ext": ".pdf", + "url": "/uploads/Board_Memo_Final_002_8b29fe7ed2.pdf", + "updated_at": "2022-01-26T15:33:10.141Z", + "created_at": "2022-01-26T15:33:10.121Z", + "hash": "Board_Memo_Final_002_8b29fe7ed2", + "__typename": "UploadFile" + }, + { + "id": "422", + "formats": null, + "size": 46.89, + "name": "Email Appointment of Victim Services Ad Hoc Committee Members.pdf", + "ext": ".pdf", + "url": "/uploads/Email_Appointment_of_Victim_Services_Ad_Hoc_Committee_Members_3d21b92469.pdf", + "updated_at": "2022-01-26T15:33:10.173Z", + "created_at": "2022-01-26T15:33:10.165Z", + "hash": "Email_Appointment_of_Victim_Services_Ad_Hoc_Committee_Members_3d21b92469", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "42", + "title": "Illinois Domestic Violence Fatality Review Committee Meeting: January 13, 2022 ", + "slug": "illinois-domestic-violence-fatality-review-committee-meeting-january-13-2022", + "summary": "Illinois Domestic Violence Fatality Review Committee Meeting: January 13, 2022 ", + "created_at": "2022-01-11T01:45:51.280Z", + "updated_at": "2022-03-15T18:10:05.915Z", + "published_at": "2022-01-11T01:46:55.491Z", + "isCancelled": null, + "start": "2022-01-13T16:00:00.000Z", + "end": "2022-01-13T18:00:00.000Z", + "category": "special", + "body": "Illinois Domestic Violence Fatality Review Committee Meeting: January 13, 2022 ", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "417", + "formats": null, + "size": 34.26, + "name": "DVFR 1_13 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/DVFR_1_13_Agenda_d0a0a587a4.pdf", + "updated_at": "2022-01-11T01:45:41.354Z", + "created_at": "2022-01-11T01:45:41.340Z", + "hash": "DVFR_1_13_Agenda_d0a0a587a4", + "__typename": "UploadFile" + }, + { + "id": "418", + "formats": null, + "size": 23, + "name": "Illinois Domestic Violence Fatality Review Bylaws 1 13 22.pdf", + "ext": ".pdf", + "url": "/uploads/Illinois_Domestic_Violence_Fatality_Review_Bylaws_1_13_22_187f9f2551.pdf", + "updated_at": "2022-01-11T01:45:41.499Z", + "created_at": "2022-01-11T01:45:41.486Z", + "hash": "Illinois_Domestic_Violence_Fatality_Review_Bylaws_1_13_22_187f9f2551", + "__typename": "UploadFile" + }, + { + "id": "492", + "formats": null, + "size": 71.67, + "name": "DVFR Task Force Meeting Minutes 1.13.2022_Amended_31522.pdf", + "ext": ".pdf", + "url": "/uploads/DVFR_Task_Force_Meeting_Minutes_1_13_2022_Amended_31522_2f6e9ed176.pdf", + "updated_at": "2022-03-15T18:10:00.941Z", + "created_at": "2022-03-15T18:10:00.929Z", + "hash": "DVFR_Task_Force_Meeting_Minutes_1_13_2022_Amended_31522_2f6e9ed176", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "34", + "title": "Budget Committee Meeting: Dec 16, 2021", + "slug": "budget-committee-meeting-dec-16-2021", + "summary": "Thursday, Dec 16, 2021.\n\n10am to 12pm.\n\nLocation: \n\nVia WebEx", + "created_at": "2021-12-10T16:44:28.701Z", + "updated_at": "2022-03-02T19:07:21.178Z", + "published_at": "2021-12-10T16:44:30.129Z", + "isCancelled": null, + "start": "2021-12-16T16:00:00.000Z", + "end": "2021-12-16T18:00:00.000Z", + "category": "budget", + "body": "**Thursday, Dec 16, 2021**\n\n10am to 12pm.\n\n**Location:**\n\nVia WebEx Video Conference / Teleconference", + "posts": [], + "events": [], + "tags": [ + { + "title": "Meeting", + "slug": "meeting", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "356", + "formats": null, + "size": 1859.46, + "name": "Budget Committee Materials 121621.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_121621_cec6ca44e5.pdf", + "updated_at": "2021-12-10T16:43:32.757Z", + "created_at": "2021-12-10T16:43:32.728Z", + "hash": "Budget_Committee_Materials_121621_cec6ca44e5", + "__typename": "UploadFile" + }, + { + "id": "359", + "formats": null, + "size": 1139.18, + "name": "Supplemental Budget Committee Materials 121621.pdf", + "ext": ".pdf", + "url": "/uploads/Supplemental_Budget_Committee_Materials_121621_2564f83dd9.pdf", + "updated_at": "2021-12-14T21:10:36.359Z", + "created_at": "2021-12-14T21:10:36.346Z", + "hash": "Supplemental_Budget_Committee_Materials_121621_2564f83dd9", + "__typename": "UploadFile" + }, + { + "id": "410", + "formats": null, + "size": 143.08, + "name": "Budget Committee Summary 121621.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_121621_bb3560e385.pdf", + "updated_at": "2021-12-29T04:09:35.421Z", + "created_at": "2021-12-29T04:09:35.408Z", + "hash": "Budget_Committee_Summary_121621_bb3560e385", + "__typename": "UploadFile" + }, + { + "id": "464", + "formats": null, + "size": 161.91, + "name": "Budget Committee Minutes 121621.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_121621_4f91a9bba4.pdf", + "updated_at": "2022-03-02T19:07:17.581Z", + "created_at": "2022-03-02T19:07:17.571Z", + "hash": "Budget_Committee_Minutes_121621_4f91a9bba4", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "35", + "title": "Traffic and Pedestrian Stop Data Use and Collection Task Force Meeting: Dec 15, 2021", + "slug": "traffic-and-pedestrian-stop-data-use-and-collection-task-force-meeting-dec-15-2021", + "summary": "Traffic and Pedestrian Stop Data Use and Collection Task Force Meeting: December 15, 2021\n\nTime: 1:30-3:00PM Central\n\nLocation: via WebEx Videoconference/Teleconference", + "created_at": "2021-12-14T15:06:45.424Z", + "updated_at": "2022-02-15T19:41:49.391Z", + "published_at": "2021-12-14T15:06:47.404Z", + "isCancelled": null, + "start": "2021-12-15T19:30:00.000Z", + "end": "2021-12-15T22:30:00.000Z", + "category": "special", + "body": "Traffic and Pedestrian Stop Data Use and Collection Task Force Meeting: December 15, 2021\n\nTime: 1:30-3:00PM Central\n\nLocation: via WebEx Videoconference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "357", + "formats": null, + "size": 613.3, + "name": "IL Traffic Stop Task Force Agenda 12-15-21.docx", + "ext": ".docx", + "url": "/uploads/IL_Traffic_Stop_Task_Force_Agenda_12_15_21_e7ded5f5ed.docx", + "updated_at": "2021-12-14T15:06:38.811Z", + "created_at": "2021-12-14T15:06:38.709Z", + "hash": "IL_Traffic_Stop_Task_Force_Agenda_12_15_21_e7ded5f5ed", + "__typename": "UploadFile" + }, + { + "id": "449", + "formats": null, + "size": 30.9, + "name": "Traffic Stop Task Force Minutes 12-15-21.docx", + "ext": ".docx", + "url": "/uploads/Traffic_Stop_Task_Force_Minutes_12_15_21_9327744ba9.docx", + "updated_at": "2022-02-15T18:01:37.392Z", + "created_at": "2022-02-15T18:01:37.376Z", + "hash": "Traffic_Stop_Task_Force_Minutes_12_15_21_9327744ba9", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "33", + "title": "Illinois Constitutional Rights and Remedies Task Force: Dec 8. 2021", + "slug": "illinois-constitutional-rights-and-remedies-task-force-dec-8-2021", + "summary": "Public notice is hereby given that the Illinois Task Force on Constitutional Rights and Remedies will conduct a public meeting on 12/8/2021, at 2:00 pm. by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2021-12-02T14:52:33.554Z", + "updated_at": "2021-12-08T17:56:46.868Z", + "published_at": "2021-12-02T14:52:36.796Z", + "isCancelled": null, + "start": "2021-12-08T20:00:00.000Z", + "end": "2021-12-08T22:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Task Force on Constitutional Rights and Remedies will conduct a public meeting on 12/8/2021, at 2:00 pm. by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "345", + "formats": null, + "size": 32.97, + "name": "TFCRR_12.8 _Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/TFCRR_12_8_Agenda_921d7e44b5.pdf", + "updated_at": "2021-12-02T14:52:20.433Z", + "created_at": "2021-12-02T14:52:20.417Z", + "hash": "TFCRR_12_8_Agenda_921d7e44b5", + "__typename": "UploadFile" + }, + { + "id": "352", + "formats": null, + "size": 1267.49, + "name": "Task Force on Constitutional Rights & Remedies Recommendations.pdf", + "ext": ".pdf", + "url": "/uploads/Task_Force_on_Constitutional_Rights_and_Remedies_Recommendations_2faba283e5.pdf", + "updated_at": "2021-12-06T20:46:43.681Z", + "created_at": "2021-12-06T20:46:43.666Z", + "hash": "Task_Force_on_Constitutional_Rights_and_Remedies_Recommendations_2faba283e5", + "__typename": "UploadFile" + }, + { + "id": "355", + "formats": null, + "size": 167.1, + "name": "Proposed votes on recommendations 12.8.pdf", + "ext": ".pdf", + "url": "/uploads/Proposed_votes_on_recommendations_12_8_5d7dba749c.pdf", + "updated_at": "2021-12-08T17:56:41.517Z", + "created_at": "2021-12-08T17:56:41.498Z", + "hash": "Proposed_votes_on_recommendations_12_8_5d7dba749c", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "32", + "title": "Illinois Constitutional Rights and Remedies Task Force: Nov 29. 2021", + "slug": "llinois-constitutional-rights-and-remedies-task-force-nov-29-2021", + "summary": "Public notice is hereby given that the Illinois Task Force on Constitutional Rights and Remedies will\nconduct a public meeting on 11/29/2021, at 2:00 pm. by WebEx. All interested parties are invited to\nattend and will be given the opportunity for public comment.", + "created_at": "2021-11-22T18:56:46.725Z", + "updated_at": "2021-11-22T18:59:31.225Z", + "published_at": "2021-11-22T18:56:48.231Z", + "isCancelled": null, + "start": "2021-11-29T20:00:00.000Z", + "end": "2021-11-29T21:30:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Task Force on Constitutional Rights and Remedies will\nconduct a public meeting on 11/29/2021, at 2:00 pm. by WebEx. All interested parties are invited to\nattend and will be given the opportunity for public comment.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "342", + "formats": null, + "size": 34.23, + "name": "TFCRR_11_29_Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/TFCRR_11_29_Agenda_270727b2b7.pdf", + "updated_at": "2021-11-22T18:56:39.352Z", + "created_at": "2021-11-22T18:56:39.336Z", + "hash": "TFCRR_11_29_Agenda_270727b2b7", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "31", + "title": "Illinois Constitutional Rights and Remedies Task Force: Nov 15, 2021", + "slug": "illinois-constitutional-rights-and-remedies-task-force-nov-15-2021", + "summary": "Public notice is hereby given that the Illinois Task Force on Constitutional Rights and Remedies will conduct a public meeting on 11/15/2021, at 2:00 pm. by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2021-11-10T15:59:35.651Z", + "updated_at": "2021-11-22T18:54:18.954Z", + "published_at": "2021-11-10T16:04:10.169Z", + "isCancelled": null, + "start": "2021-11-15T20:00:00.000Z", + "end": "2021-11-15T22:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Task Force on Constitutional Rights and Remedies will conduct a public meeting on 11/15/2021, at 2:00 pm. by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.\n\n\n**Date**: November 15, 2021\n\n**Time**: 2:00 pm \u2013 4:00 pm\n\n**Location**: WebEx\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "334", + "formats": null, + "size": 104.11, + "name": "TFCRR_11_15_Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/TFCRR_11_15_Agenda_ef163011c8.pdf", + "updated_at": "2021-11-10T15:58:33.846Z", + "created_at": "2021-11-10T15:58:33.825Z", + "hash": "TFCRR_11_15_Agenda_ef163011c8", + "__typename": "UploadFile" + }, + { + "id": "340", + "formats": null, + "size": 46.37, + "name": "TF Con Rights Remedies Meeting Minutes 11-15-21.docx", + "ext": ".docx", + "url": "/uploads/TF_Con_Rights_Remedies_Meeting_Minutes_11_15_21_6c08be70d1.docx", + "updated_at": "2021-11-22T18:54:03.111Z", + "created_at": "2021-11-22T18:54:03.096Z", + "hash": "TF_Con_Rights_Remedies_Meeting_Minutes_11_15_21_6c08be70d1", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "30", + "title": "STATEWIDE VIOLENCE PREVENTION AD HOC COMMITTEE: Nov 4, 2021", + "slug": "statewide-violence-prevention-ad-hoc-committee-nov-4-2021", + "summary": "STATEWIDE VIOLENCE PREVENTION AD HOC COMMITTEE, November 4, 2021, 10:00 AM-12:00 PM\nWebex Video Conference/Teleconference", + "created_at": "2021-11-02T15:11:44.227Z", + "updated_at": "2021-11-02T15:11:46.172Z", + "published_at": "2021-11-02T15:11:46.137Z", + "isCancelled": null, + "start": "2021-11-04T15:00:00.000Z", + "end": "2021-11-04T17:00:00.000Z", + "category": "special", + "body": "\nNovember 4, 2021\n\n10:00 AM-12:00 PM\n\n**Location:**\n\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [ + { + "title": "Violence Prevention", + "slug": "violence-prevention", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "331", + "formats": null, + "size": 60.54, + "name": "VPAHCAGENDANov4.pdf", + "ext": ".pdf", + "url": "/uploads/VPAHCAGENDA_Nov4_2736221b45.pdf", + "updated_at": "2021-11-02T15:11:32.056Z", + "created_at": "2021-11-02T15:11:32.038Z", + "hash": "VPAHCAGENDA_Nov4_2736221b45", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "28", + "title": "Illinois Constitutional Rights and Remedies Task Force: Nov 1, 2021", + "slug": "illinois-task-force-on-constitutional-rights-and-remedies-nov-1-2021", + "summary": "Public notice is hereby given that the Illinois Task Force on Constitutional Rights and Remedies will\nconduct a public meeting on 11/1/2021, at 1:00 pm. by WebEx. All interested parties are invited to\nattend and will be given the opportunity for public comment.", + "created_at": "2021-10-27T23:20:45.976Z", + "updated_at": "2021-11-22T18:55:06.783Z", + "published_at": "2021-10-27T23:20:48.661Z", + "isCancelled": null, + "start": "2021-11-01T18:00:00.000Z", + "end": "2021-11-01T20:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Task Force on Constitutional Rights and Remedies will\nconduct a public meeting on 11/1/2021, at 1:00 pm. by WebEx. All interested parties are invited to\nattend and will be given the opportunity for public comment.\n\n**Date**: November 1, 2021\n\n**Time**: 1:00 pm \u2013 3:00 pm\n\n**Location**: WebEx\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "219", + "formats": null, + "size": 119.23, + "name": "TFCRR 11_1 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/TFCRR_11_1_Agenda_35f27c0911.pdf", + "updated_at": "2021-10-27T23:20:39.082Z", + "created_at": "2021-10-27T23:20:31.661Z", + "hash": "TFCRR_11_1_Agenda_35f27c0911", + "__typename": "UploadFile" + }, + { + "id": "328", + "formats": null, + "size": 49102.81, + "name": "Materials for Preliminary Report.zip", + "ext": ".zip", + "url": "/uploads/Materials_for_Preliminary_Report_752d045ddb.zip", + "updated_at": "2021-11-01T21:10:01.194Z", + "created_at": "2021-11-01T21:10:01.182Z", + "hash": "Materials_for_Preliminary_Report_752d045ddb", + "__typename": "UploadFile" + }, + { + "id": "327", + "formats": null, + "size": 236.49, + "name": "Constitutional Rights Taskforce.pdf", + "ext": ".pdf", + "url": "/uploads/Constitutional_Rights_Taskforce_f510e4289a.pdf", + "updated_at": "2021-11-01T21:09:13.417Z", + "created_at": "2021-11-01T21:09:13.400Z", + "hash": "Constitutional_Rights_Taskforce_f510e4289a", + "__typename": "UploadFile" + }, + { + "id": "341", + "formats": null, + "size": 45.29, + "name": "TF Con Rights Remedies Meeting Minutes 11-1-21 Amended 11-15-21 (002).docx", + "ext": ".docx", + "url": "/uploads/TF_Con_Rights_Remedies_Meeting_Minutes_11_1_21_Amended_11_15_21_002_e7499f5be2.docx", + "updated_at": "2021-11-22T18:55:00.634Z", + "created_at": "2021-11-22T18:55:00.618Z", + "hash": "TF_Con_Rights_Remedies_Meeting_Minutes_11_1_21_Amended_11_15_21_002_e7499f5be2", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "27", + "title": "Illinois Constitutional Rights and Remedies Task Force: Oct 25, 2021", + "slug": "illinois-constitutional-rights-and-remedies-task-force-oct-25-2021", + "summary": "Public notice is hereby given that the Illinois Task Force on Constitutional Rights and Remedies will conduct a public meeting on 10/25/2021, at 1:00 pm. by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.", + "created_at": "2021-10-22T15:54:28.695Z", + "updated_at": "2021-10-22T15:54:30.306Z", + "published_at": "2021-10-22T15:54:30.279Z", + "isCancelled": null, + "start": "2021-10-25T18:00:00.000Z", + "end": "2021-10-25T20:00:00.000Z", + "category": "special", + "body": "Public notice is hereby given that the Illinois Task Force on Constitutional Rights and Remedies will conduct a public meeting on 10/25/2021, at 1:00 pm. by WebEx. All interested parties are invited to attend and will be given the opportunity for public comment.\n\nDate: October 25, 2021\n\nTime: 1:00 pm \u2013 3:00 pm\n\nLocation: WebEx\n\nPhone: 312- 535-8110 or US Toll 1-415-655-0002\n\nAccess Code: 2456 460 3049\n\nAccess Password: EZea8GWxm38\n\nSubject: Third Meeting of the Illinois Constitutional Rights and Remedies Task Force", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "191", + "formats": null, + "size": 615.9, + "name": "TFCRR 10_25 Agenda v.1.docx", + "ext": ".docx", + "url": "/uploads/TFCRR_10_25_Agenda_v_1_bdfed4173c.docx", + "updated_at": "2021-10-22T15:54:18.395Z", + "created_at": "2021-10-22T15:54:18.382Z", + "hash": "TFCRR_10_25_Agenda_v_1_bdfed4173c", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "47", + "title": "R3: Restore, Reinvest, and Renew Program Board: Oct 25, 2021", + "slug": "r3-restore-reinvest-renew-program-board-oct-25-2021", + "summary": "R3: Restore, Reinvest, Renew Program Board meeting, Oct 25, 2021", + "created_at": "2022-02-08T19:57:00.691Z", + "updated_at": "2022-02-08T20:28:29.068Z", + "published_at": "2022-02-08T19:57:02.956Z", + "isCancelled": null, + "start": "2021-10-25T17:00:00.000Z", + "end": "2021-10-25T19:00:00.000Z", + "category": "special", + "body": "R3: Restore, Reinvest, Renew Program Board meeting, Oct 25, 2021", + "posts": [], + "events": [], + "tags": [ + { + "title": "Restore, Reinvest, Renew (R3)", + "slug": "restore-reinvest-renew-r3", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "439", + "formats": null, + "size": 257.82, + "name": "R3Minutes10252022.pdf", + "ext": ".pdf", + "url": "/uploads/R3_Minutes10252022_241b2b4cfc.pdf", + "updated_at": "2022-02-08T19:56:18.153Z", + "created_at": "2022-02-08T19:56:18.139Z", + "hash": "R3_Minutes10252022_241b2b4cfc", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "25", + "title": "Illinois Constitutional Rights and Remedies Task Force: Oct 21, 2021", + "slug": "illinois-constitutional-rights-and-remedies-task-force-oct-21-2021", + "summary": "Illinois Constitutional Rights and Remedies Task Force: Oct 21, 2021", + "created_at": "2021-10-14T18:18:28.199Z", + "updated_at": "2021-10-20T15:38:11.619Z", + "published_at": "2021-10-14T18:18:30.485Z", + "isCancelled": null, + "start": "2021-10-21T20:00:00.000Z", + "end": "2021-10-21T22:00:00.000Z", + "category": "special", + "body": "Illinois Constitutional Rights and Remedies Task Force: Oct 21, 2021", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "184", + "formats": null, + "size": 1321.74, + "name": "Materials submitted 10.13.21(2).zip", + "ext": ".zip", + "url": "/uploads/Materials_submitted_10_13_21_2_b1cd1ff3dc.zip", + "updated_at": "2021-10-14T21:30:38.362Z", + "created_at": "2021-10-14T21:30:38.344Z", + "hash": "Materials_submitted_10_13_21_2_b1cd1ff3dc", + "__typename": "UploadFile" + }, + { + "id": "185", + "formats": null, + "size": 29053.98, + "name": "Materials submitted by 10.13.2021.zip", + "ext": ".zip", + "url": "/uploads/Materials_submitted_by_10_13_2021_42789bec05.zip", + "updated_at": "2021-10-14T21:30:48.159Z", + "created_at": "2021-10-14T21:30:48.148Z", + "hash": "Materials_submitted_by_10_13_2021_42789bec05", + "__typename": "UploadFile" + }, + { + "id": "186", + "formats": null, + "size": 33.78, + "name": "TFCRR 10_21 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/TFCRR_10_21_Agenda_7523a5d030.pdf", + "updated_at": "2021-10-17T19:28:28.850Z", + "created_at": "2021-10-17T19:28:28.833Z", + "hash": "TFCRR_10_21_Agenda_7523a5d030", + "__typename": "UploadFile" + }, + { + "id": "187", + "formats": null, + "size": 487.03, + "name": "TFCRR Recommendations.zip", + "ext": ".zip", + "url": "/uploads/TFCRR_Recommendations_f9eb6ada89.zip", + "updated_at": "2021-10-20T15:38:07.380Z", + "created_at": "2021-10-20T15:38:07.352Z", + "hash": "TFCRR_Recommendations_f9eb6ada89", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "21", + "title": "Budget Committee Meeting: Oct 21, 2021", + "slug": "budget-committee-meeting-oct-21-2021", + "summary": "Thu 10/21/2021 10:00 AM - 12:00 PM\n\nWebEx\n\n", + "created_at": "2021-09-30T11:44:54.035Z", + "updated_at": "2021-12-23T16:02:25.490Z", + "published_at": "2021-09-30T11:45:17.324Z", + "isCancelled": null, + "start": "2021-10-21T15:00:00.000Z", + "end": "2021-10-21T17:00:00.000Z", + "category": "budget", + "body": "Thu 10/21/2021 10:00 AM - 12:00 PM\n\nWebEx\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "182", + "formats": null, + "size": 1554.84, + "name": "Budget_Committee_Materials_102121v2.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_102121v2_32d0dd6009.pdf", + "updated_at": "2021-10-14T20:40:58.117Z", + "created_at": "2021-10-14T20:40:58.104Z", + "hash": "Budget_Committee_Materials_102121v2_32d0dd6009", + "__typename": "UploadFile" + }, + { + "id": "188", + "formats": null, + "size": 664.5, + "name": "VOCA memo for 102121 v12 Revised.pdf", + "ext": ".pdf", + "url": "/uploads/VOCA_memo_for_102121_v12_Revised_01299a12d7.pdf", + "updated_at": "2021-10-20T19:32:27.374Z", + "created_at": "2021-10-20T19:32:27.362Z", + "hash": "VOCA_memo_for_102121_v12_Revised_01299a12d7", + "__typename": "UploadFile" + }, + { + "id": "319", + "formats": null, + "size": 193.26, + "name": "Budget_Committee_Summary_102121.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_102121_d38de8656f.pdf", + "updated_at": "2021-10-28T23:10:37.212Z", + "created_at": "2021-10-28T23:10:37.198Z", + "hash": "Budget_Committee_Summary_102121_d38de8656f", + "__typename": "UploadFile" + }, + { + "id": "384", + "formats": null, + "size": 203.6, + "name": "Budget Committee Minutes 102121.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_102121_b9e3daef68.pdf", + "updated_at": "2021-12-23T16:02:14.746Z", + "created_at": "2021-12-23T16:02:14.732Z", + "hash": "Budget_Committee_Minutes_102121_b9e3daef68", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "24", + "title": "Illinois Constitutional Rights and Remedies Task Force: Oct 7, 2021", + "slug": "illinois-constitutional-rights-and-remedies-task-force-meeting-october-7-2021", + "summary": "ILLINOIS CONSTITUTIONAL RIGHTS AND REMEDIES TASK FORCE MEETING: OCTOBER 7, 2021", + "created_at": "2021-10-05T18:58:01.858Z", + "updated_at": "2021-10-14T18:33:28.892Z", + "published_at": "2021-10-05T18:58:04.757Z", + "isCancelled": null, + "start": "2021-10-07T17:00:00.000Z", + "end": "2021-10-07T19:00:00.000Z", + "category": "special", + "body": "ILLINOIS CONSTITUTIONAL RIGHTS AND REMEDIES TASK FORCE MEETING: OCTOBER 7, 2021", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "138", + "formats": null, + "size": 104.21, + "name": "TFCRR 10_7 Agenda.pdf", + "ext": ".pdf", + "url": "/uploads/TFCRR_10_7_Agenda_6b62f7390a.pdf", + "updated_at": "2021-10-05T18:57:49.517Z", + "created_at": "2021-10-05T18:57:49.505Z", + "hash": "TFCRR_10_7_Agenda_6b62f7390a", + "__typename": "UploadFile" + }, + { + "id": "139", + "formats": null, + "size": 84.02, + "name": "Illinois Constitutional Rights Remedies Task Force Bylaws 10 5 2021.pdf", + "ext": ".pdf", + "url": "/uploads/Illinois_Constitutional_Rights_Remedies_Task_Force_Bylaws_10_5_2021_82b4161856.pdf", + "updated_at": "2021-10-05T18:57:49.560Z", + "created_at": "2021-10-05T18:57:49.551Z", + "hash": "Illinois_Constitutional_Rights_Remedies_Task_Force_Bylaws_10_5_2021_82b4161856", + "__typename": "UploadFile" + }, + { + "id": "140", + "formats": null, + "size": 15481.28, + "name": "TF Con Right Remedies Readings.zip", + "ext": ".zip", + "url": "/uploads/TF_Con_Right_Remedies_Readings_bbfb74c299.zip", + "updated_at": "2021-10-05T19:35:46.739Z", + "created_at": "2021-10-05T19:35:46.719Z", + "hash": "TF_Con_Right_Remedies_Readings_bbfb74c299", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "19", + "title": "Illinois Constitutional Rights and Remedies Task Force: Sep 23, 2021", + "slug": "illinois-constitutional-rights-and-remedies-task-force", + "summary": "\nLocation\nVia WebEx Video Conference/Teleconference", + "created_at": "2021-09-21T17:54:15.052Z", + "updated_at": "2021-10-06T14:22:19.269Z", + "published_at": "2021-09-21T17:54:34.602Z", + "isCancelled": null, + "start": "2021-09-23T15:00:00.000Z", + "end": "2021-09-23T17:00:00.000Z", + "category": "special", + "body": "Location:\n\nVia WebEx Video Conference/Teleconference\n\n20 ILCS 5165/4-5 P.A. 101-652 \n \nThursday, September 23, 2021, 10:00 a.m. \u2013 12:00 p.m.\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "135", + "formats": null, + "size": 51.38, + "name": "Updated Constitutional Rights and Remedies Agenda 09-23-21.pdf", + "ext": ".pdf", + "url": "/uploads/Updated_Constitutional_Rights_and_Remedies_Agenda_09_23_21_cf6193ad43.pdf", + "updated_at": "2021-09-21T17:54:06.123Z", + "created_at": "2021-09-21T17:54:06.103Z", + "hash": "Updated_Constitutional_Rights_and_Remedies_Agenda_09_23_21_cf6193ad43", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "17", + "title": "Traffic and Pedestrian Stop Data Use and Collection Task Force Meeting: September 22, 2021", + "slug": "traffic-and-pedestrian-stop-data-use-and-collection-task-force-meeting-september-22-2021", + "summary": "Traffic and Pedestrian Stop Data Use and Collection Task Force Meeting, Wednesday, September 22, 2021\n\n1:30 p.m. to 3:00 p.m.\n\nLocation: Via Webex Video Conference/Teleconference\n\nAgenda to follow.\n\n ", + "created_at": "2021-09-16T15:26:46.875Z", + "updated_at": "2021-12-14T15:07:19.327Z", + "published_at": "2021-09-16T15:27:09.548Z", + "isCancelled": null, + "start": "2021-09-22T18:30:00.000Z", + "end": "2021-09-22T20:00:00.000Z", + "category": "special", + "body": "Traffic and Pedestrian Stop Data Use and Collection Task Force Meeting, Wednesday, September 22, 2021\n\n1:30 p.m. to 3:00 p.m.\n\nLocation: Via Webex Video Conference/Teleconference\n\nAgenda to follow.", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "358", + "formats": null, + "size": 29.27, + "name": "Traffic Stop Task Force Minutes 09-22-21.docx", + "ext": ".docx", + "url": "/uploads/Traffic_Stop_Task_Force_Minutes_09_22_21_65f4880cb6.docx", + "updated_at": "2021-12-14T15:07:13.112Z", + "created_at": "2021-12-14T15:07:13.099Z", + "hash": "Traffic_Stop_Task_Force_Minutes_09_22_21_65f4880cb6", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "20", + "title": "Authority Board Meeting: Sep 16, 2021", + "slug": "authority-board-meeting-sep-16-2021", + "summary": "Authority Board Meeting\n\nThursday, September 16. 10a to 12p.", + "created_at": "2021-09-21T18:16:20.521Z", + "updated_at": "2022-03-17T20:34:09.793Z", + "published_at": "2021-09-21T18:16:44.422Z", + "isCancelled": null, + "start": "2021-09-16T15:00:00.000Z", + "end": "2021-09-16T17:00:00.000Z", + "category": "board", + "body": "Authority Board Meeting", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "361", + "formats": null, + "size": 82.64, + "name": "1 Board Agenda 09.16.21 mdj.docx", + "ext": ".docx", + "url": "/uploads/1_Board_Agenda_09_16_21_mdj_b954071190.docx", + "updated_at": "2021-12-16T14:39:18.763Z", + "created_at": "2021-12-16T14:39:18.751Z", + "hash": "1_Board_Agenda_09_16_21_mdj_b954071190", + "__typename": "UploadFile" + }, + { + "id": "502", + "formats": null, + "size": 81.95, + "name": "4 Authority Board Meeting Minutes 9.16.21 mdj.docx", + "ext": ".docx", + "url": "/uploads/4_Authority_Board_Meeting_Minutes_9_16_21_mdj_24c9d17b77.docx", + "updated_at": "2022-03-17T20:33:16.768Z", + "created_at": "2022-03-17T20:33:16.749Z", + "hash": "4_Authority_Board_Meeting_Minutes_9_16_21_mdj_24c9d17b77", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "15", + "title": "Statewide Violence Prevention Ad Hoc Committee: September 2, 2021", + "slug": "statewide-violence-prevention-ad-hoc-committee-september-2-2021", + "summary": "Location:\nVia Webex Video Conference/Teleconference", + "created_at": "2021-08-31T18:41:33.599Z", + "updated_at": "2021-09-01T14:28:53.831Z", + "published_at": "2021-08-31T18:41:35.102Z", + "isCancelled": null, + "start": "2021-09-02T15:00:00.000Z", + "end": "2021-09-02T17:00:00.000Z", + "category": "special", + "body": "**Location:**\n\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [ + { + "title": "Violence Prevention", + "slug": "violence-prevention", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "128", + "formats": null, + "size": 60.61, + "name": "VPAHCAGENDASept 2.pdf", + "ext": ".pdf", + "url": "/uploads/VPAHCAGENDA_Sept_2_ff85931400.pdf", + "updated_at": "2021-08-31T18:41:23.311Z", + "created_at": "2021-08-31T18:41:23.301Z", + "hash": "VPAHCAGENDA_Sept_2_ff85931400", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "12", + "title": "Budget Committee Meeting: Aug 19, 2021", + "slug": "budget-committee-meeting-aug-19-2021", + "summary": "Budget Committee, Thursday, August 19, 2021, 10:00am to 12:00pm.", + "created_at": "2021-08-16T13:43:59.556Z", + "updated_at": "2021-12-23T16:06:22.175Z", + "published_at": "2021-08-16T13:44:01.004Z", + "isCancelled": null, + "start": "2021-08-19T15:00:00.000Z", + "end": "2021-08-19T17:00:00.000Z", + "category": "budget", + "body": "\n\n## Location\n\nVia WebEx Video Conference / Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "85", + "formats": null, + "size": 2698.2, + "name": "Budget Committee Materials 081921.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_081921_82886ff5e8.pdf", + "updated_at": "2021-08-16T13:43:35.900Z", + "created_at": "2021-08-16T13:43:35.879Z", + "hash": "Budget_Committee_Materials_081921_82886ff5e8", + "__typename": "UploadFile" + }, + { + "id": "89", + "formats": null, + "size": 174.51, + "name": "Budget Committee Summary 081921.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_081921_9198f6e091.pdf", + "updated_at": "2021-08-27T12:35:22.514Z", + "created_at": "2021-08-27T12:35:22.503Z", + "hash": "Budget_Committee_Summary_081921_9198f6e091", + "__typename": "UploadFile" + }, + { + "id": "385", + "formats": null, + "size": 198.41, + "name": "Budget Committee Minutes 081921.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_081921_5e65e71c28.pdf", + "updated_at": "2021-12-23T16:06:12.567Z", + "created_at": "2021-12-23T16:06:12.553Z", + "hash": "Budget_Committee_Minutes_081921_5e65e71c28", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "9", + "title": "IRB Meeting: July 21, 2021", + "slug": "irb-meeting-july-21-2021", + "summary": "Institutional Review Board, \nJuly 21, 2021,\n10:00 am- 11:00 am,\nIllinois Criminal Justice Information Authority,\n300 W. Adams Street, Suite 200,\nChicago, IL 60606,", + "created_at": "2021-07-23T14:36:44.729Z", + "updated_at": "2021-07-23T14:37:22.143Z", + "published_at": "2021-07-23T14:37:00.342Z", + "isCancelled": null, + "start": "2021-07-21T15:00:00.000Z", + "end": "2021-07-21T17:00:00.000Z", + "category": "irb", + "body": "**Institutional Review Board**\n\nJuly 21, 2021\n\n10:00 am- 11:00 am\n\nIllinois Criminal Justice Information Authority\n\n300 W. Adams Street, Suite 200 \n\nChicago, IL 60606", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "55", + "formats": null, + "size": 68.72, + "name": "IRBAgenda7212021.pdf", + "ext": ".pdf", + "url": "/uploads/IRB_Agenda7212021_acf71aeaec.pdf", + "updated_at": "2021-07-23T14:36:22.955Z", + "created_at": "2021-07-23T14:36:22.943Z", + "hash": "IRB_Agenda7212021_acf71aeaec", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "13", + "title": "Statewide Violence Prevention Ad Hoc Committee: July 20, 2021", + "slug": "statewide-violence-prevention-ad-hoc-committee-july-20-2021", + "summary": "Location: Via Webex Video Conference/Teleconference", + "created_at": "2021-08-30T16:37:09.535Z", + "updated_at": "2021-08-30T16:38:09.816Z", + "published_at": "2021-08-30T16:37:11.519Z", + "isCancelled": null, + "start": "2021-07-20T15:00:00.000Z", + "end": "2021-07-20T17:00:00.000Z", + "category": "special", + "body": "**Location:**\n\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [ + { + "title": "Violence Prevention", + "slug": "violence-prevention", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "95", + "formats": null, + "size": 60.46, + "name": "VPAHCAGENDA72021.pdf", + "ext": ".pdf", + "url": "/uploads/VPAHCAGENDA_72021_27d255a984.pdf", + "updated_at": "2021-08-30T16:36:55.672Z", + "created_at": "2021-08-30T16:36:55.655Z", + "hash": "VPAHCAGENDA_72021_27d255a984", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "14", + "title": " Traffic and Pedestrian Stop Data Use and Collection Task Force Meeting: June 30, 2021", + "slug": "traffic-and-pedestrian-stop-data-use-and-collection-task-force-meeting-june-30-2021", + "summary": "Location: Via Webex Video Conference/Teleconference", + "created_at": "2021-08-30T16:41:59.317Z", + "updated_at": "2021-09-16T15:23:37.136Z", + "published_at": "2021-08-30T16:42:00.528Z", + "isCancelled": null, + "start": "2021-06-30T18:30:00.000Z", + "end": "2021-06-30T20:00:00.000Z", + "category": "special", + "body": "**Location:**\n\nVia Webex Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [ + { + "title": "Task Force", + "slug": "task-force", + "__typename": "Tag" + }, + { + "title": "Traffic", + "slug": "traffic", + "__typename": "Tag" + } + ], + "attachments": [ + { + "id": "96", + "formats": null, + "size": 87.22, + "name": "IL Traffic Stop Task Force Agenda 06-30-21.pdf", + "ext": ".pdf", + "url": "/uploads/IL_Traffic_Stop_Task_Force_Agenda_06_30_21_587599a99e.pdf", + "updated_at": "2021-08-30T16:41:48.658Z", + "created_at": "2021-08-30T16:41:48.648Z", + "hash": "IL_Traffic_Stop_Task_Force_Agenda_06_30_21_587599a99e", + "__typename": "UploadFile" + }, + { + "id": "130", + "formats": null, + "size": 36.67, + "name": "Traffic Stop Task Force Minutes 06-30-21.docx", + "ext": ".docx", + "url": "/uploads/Traffic_Stop_Task_Force_Minutes_06_30_21_603ce14068.docx", + "updated_at": "2021-09-16T15:23:28.582Z", + "created_at": "2021-09-16T15:23:28.558Z", + "hash": "Traffic_Stop_Task_Force_Minutes_06_30_21_603ce14068", + "__typename": "UploadFile" + }, + { + "id": "131", + "formats": null, + "size": 611.47, + "name": "IL Traffic Stop Task Force Agenda 06-30-21.docx", + "ext": ".docx", + "url": "/uploads/IL_Traffic_Stop_Task_Force_Agenda_06_30_21_1ca9e74533.docx", + "updated_at": "2021-09-16T15:23:28.669Z", + "created_at": "2021-09-16T15:23:28.659Z", + "hash": "IL_Traffic_Stop_Task_Force_Agenda_06_30_21_1ca9e74533", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "40", + "title": "Budget Committee Meeting June 25 2021", + "slug": "budget-committee-meeting-june-25-2021", + "summary": "Budget Committee Meeting\n\nFriday, June 25, 2021.\n\n10am to 12pm.\n\nLocation: \n\nVia WebEx", + "created_at": "2021-12-23T17:27:02.971Z", + "updated_at": "2021-12-23T17:27:06.891Z", + "published_at": "2021-12-23T17:27:06.843Z", + "isCancelled": null, + "start": "2021-06-25T15:00:00.000Z", + "end": "2021-06-25T17:00:00.000Z", + "category": "budget", + "body": "\nBudget Committee Meeting\n\nFriday, June 25, 2021.\n\n10am to 12pm.\n\nLocation: \n\nVia WebEx", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "405", + "formats": null, + "size": 164.05, + "name": "Budget_Committee_Summary_062521.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_062521_abf37a36a7.pdf", + "updated_at": "2021-12-23T17:26:50.146Z", + "created_at": "2021-12-23T17:26:50.129Z", + "hash": "Budget_Committee_Summary_062521_abf37a36a7", + "__typename": "UploadFile" + }, + { + "id": "406", + "formats": null, + "size": 198.06, + "name": "Budget_Committee_Minutes_062521.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_062521_afec7d0f5d.pdf", + "updated_at": "2021-12-23T17:26:50.181Z", + "created_at": "2021-12-23T17:26:50.173Z", + "hash": "Budget_Committee_Minutes_062521_afec7d0f5d", + "__typename": "UploadFile" + }, + { + "id": "407", + "formats": null, + "size": 2351.01, + "name": "Budget_Committee_Materials_062521.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_062521_fb94249487.pdf", + "updated_at": "2021-12-23T17:26:57.189Z", + "created_at": "2021-12-23T17:26:57.181Z", + "hash": "Budget_Committee_Materials_062521_fb94249487", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "56", + "title": "Regular Board Meeting: June 24, 2021", + "slug": "regular-board-meeting-june-24-2021", + "summary": "Thursday, June 24, 2021\n10 a.m. to 12:00 p.m.\nIllinois Criminal Justice Information Authority\nLocation: Via WebEx Video Conference/Teleconference", + "created_at": "2022-03-17T20:27:03.020Z", + "updated_at": "2022-03-17T20:32:17.863Z", + "published_at": "2022-03-17T20:27:04.631Z", + "isCancelled": null, + "start": "2021-06-24T15:00:00.000Z", + "end": "2021-06-24T17:00:00.000Z", + "category": "board", + "body": "Thursday, June 24, 2021\n10 a.m. to 12:00 p.m.\nIllinois Criminal Justice Information Authority\nLocation: Via WebEx Video Conference/Teleconference", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "501", + "formats": null, + "size": 271.69, + "name": "4 Authority Board Meeting Minutes 6.24.21 mdj.pdf", + "ext": ".pdf", + "url": "/uploads/4_Authority_Board_Meeting_Minutes_6_24_21_mdj_c759e0c39d.pdf", + "updated_at": "2022-03-17T20:31:08.509Z", + "created_at": "2022-03-17T20:31:08.497Z", + "hash": "4_Authority_Board_Meeting_Minutes_6_24_21_mdj_c759e0c39d", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "39", + "title": "Budget Committee Meeting May 14 2021", + "slug": "budget-committee-meeting-may-14-2021", + "summary": "Budget Committee Meeting\n\nFriday, May 14, 2021.\n\n11am to 12pm.\n\nLocation: \n\nVia WebEx", + "created_at": "2021-12-23T17:21:53.365Z", + "updated_at": "2021-12-23T17:21:57.236Z", + "published_at": "2021-12-23T17:21:57.211Z", + "isCancelled": null, + "start": "2021-05-14T17:00:00.000Z", + "end": "2021-05-14T17:00:00.000Z", + "category": "budget", + "body": "Budget Committee Meeting\n\nFriday, May 14, 2021.\n\n11am to 12pm.\n\nLocation: \n\nVia WebEx\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "402", + "formats": null, + "size": 104.16, + "name": "Budget_Committee_Minutes_051421.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_051421_fb1451ba21.pdf", + "updated_at": "2021-12-23T17:21:47.862Z", + "created_at": "2021-12-23T17:21:47.848Z", + "hash": "Budget_Committee_Minutes_051421_fb1451ba21", + "__typename": "UploadFile" + }, + { + "id": "403", + "formats": null, + "size": 98.04, + "name": "Budget_Committee_Summary_051421.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_051421_44c18b3f9b.pdf", + "updated_at": "2021-12-23T17:21:48.115Z", + "created_at": "2021-12-23T17:21:48.104Z", + "hash": "Budget_Committee_Summary_051421_44c18b3f9b", + "__typename": "UploadFile" + }, + { + "id": "404", + "formats": null, + "size": 756.15, + "name": "Budget_Committee_Materials_051421.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_051421_f8b3b35d2c.pdf", + "updated_at": "2021-12-23T17:21:50.030Z", + "created_at": "2021-12-23T17:21:49.976Z", + "hash": "Budget_Committee_Materials_051421_f8b3b35d2c", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "38", + "title": "Budget Committee Meeting April 15 2021", + "slug": "budget-committee-meeting-april-15-2021", + "summary": "Budget Committee Meeting\n\nThursday, April 15, 2021.\n\n10am to 12pm.\n\nLocation: \n\nVia WebEx", + "created_at": "2021-12-23T17:14:27.492Z", + "updated_at": "2021-12-23T17:14:32.135Z", + "published_at": "2021-12-23T17:14:32.108Z", + "isCancelled": null, + "start": "2021-04-15T17:00:00.000Z", + "end": "2021-04-15T17:00:00.000Z", + "category": "budget", + "body": "Budget Committee Meeting\n\nThursday, April 15, 2021.\n\n10am to 12pm.\n\nLocation: \n\nVia WebEx", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "399", + "formats": null, + "size": 135.24, + "name": "Budget_Committee_Summary_041521.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_041521_4d2f7f5042.pdf", + "updated_at": "2021-12-23T17:14:18.440Z", + "created_at": "2021-12-23T17:14:18.425Z", + "hash": "Budget_Committee_Summary_041521_4d2f7f5042", + "__typename": "UploadFile" + }, + { + "id": "400", + "formats": null, + "size": 178.16, + "name": "Budget_Committee_Minutes_041521.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_041521_07aa3b7e78.pdf", + "updated_at": "2021-12-23T17:14:18.687Z", + "created_at": "2021-12-23T17:14:18.644Z", + "hash": "Budget_Committee_Minutes_041521_07aa3b7e78", + "__typename": "UploadFile" + }, + { + "id": "401", + "formats": null, + "size": 1043.01, + "name": "Budget_Committee_Materials_041521v2.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_041521v2_50ba920c4a.pdf", + "updated_at": "2021-12-23T17:14:22.146Z", + "created_at": "2021-12-23T17:14:22.138Z", + "hash": "Budget_Committee_Materials_041521v2_50ba920c4a", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "8", + "title": "Authority Board Meeting: March 18, 2021", + "slug": "authority-board-meeting-march-18-2021", + "summary": "Regular Board Meeting, Thursday, March 18, 2021, 10:00 a.m. to 12:00 p.m., Illinois Criminal Justice Information Authority", + "created_at": "2021-07-23T14:15:35.695Z", + "updated_at": "2022-03-17T20:25:14.191Z", + "published_at": "2021-07-23T14:15:37.168Z", + "isCancelled": null, + "start": "2021-03-18T15:00:00.000Z", + "end": "2021-03-18T17:00:00.000Z", + "category": "board", + "body": "**Regular Board Meeting**\n\nThursday, March 18, 2021\n\n10:00 a.m. to 12:00 p.m.\n\nIllinois Criminal Justice Information Authority", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "54", + "formats": null, + "size": 111.93, + "name": "1 Board Agenda 03.18.21 mdj.pdf", + "ext": ".pdf", + "url": "/uploads/1_Board_Agenda_03_18_21_mdj_13b5c3f47d.pdf", + "updated_at": "2021-07-23T14:15:31.042Z", + "created_at": "2021-07-23T14:15:31.023Z", + "hash": "1_Board_Agenda_03_18_21_mdj_13b5c3f47d", + "__typename": "UploadFile" + }, + { + "id": "498", + "formats": null, + "size": 245.59, + "name": "3 Authority Board Meeting Minutes 3.18.21 mdj ce.pdf", + "ext": ".pdf", + "url": "/uploads/3_Authority_Board_Meeting_Minutes_3_18_21_mdj_ce_8900978797.pdf", + "updated_at": "2022-03-17T20:25:08.523Z", + "created_at": "2022-03-17T20:25:08.513Z", + "hash": "3_Authority_Board_Meeting_Minutes_3_18_21_mdj_ce_8900978797", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "16", + "title": "Traffic and Pedestrian Stop Data Use and Collection Task Force Meeting: March 17, 2021", + "slug": "traffic-and-pedestrian-stop-data-use-and-collection-task-force-meeting-march-17-2021", + "summary": "Location: Via WebEx Video Conference/Teleconference\n", + "created_at": "2021-09-16T15:25:24.806Z", + "updated_at": "2021-09-16T15:28:15.252Z", + "published_at": "2021-09-16T15:25:27.189Z", + "isCancelled": null, + "start": "2021-03-17T18:30:00.000Z", + "end": "2021-03-17T20:00:00.000Z", + "category": "special", + "body": "**Location**\n\nVia WebEx Video Conference/Teleconference\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "132", + "formats": null, + "size": 36.96, + "name": "Traffic Stop Task Force Minutes 03-17-21.docx", + "ext": ".docx", + "url": "/uploads/Traffic_Stop_Task_Force_Minutes_03_17_21_af0371a704.docx", + "updated_at": "2021-09-16T15:28:11.552Z", + "created_at": "2021-09-16T15:28:11.540Z", + "hash": "Traffic_Stop_Task_Force_Minutes_03_17_21_af0371a704", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "37", + "title": "Budget Committee February 18 2021", + "slug": "budget-committee-february-18-2021", + "summary": "Budget Committee Meeting\n\nThursday, February 18, 2021.\n\n10am to 12pm.\n\nLocation: \n\nVia WebEx", + "created_at": "2021-12-23T16:58:24.595Z", + "updated_at": "2021-12-23T17:01:39.991Z", + "published_at": "2021-12-23T17:01:39.957Z", + "isCancelled": null, + "start": "2021-02-18T16:00:00.000Z", + "end": "2021-02-18T18:00:00.000Z", + "category": "budget", + "body": "Budget Committee Meeting\n\nThursday, February 18, 2021.\n\n10am to 12pm.\n\nLocation: \n\nVia WebEx\n\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "396", + "formats": null, + "size": 129.81, + "name": "Budget_Committee_Summary_021821.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_021821_e18d80e810.pdf", + "updated_at": "2021-12-23T17:00:06.658Z", + "created_at": "2021-12-23T17:00:06.646Z", + "hash": "Budget_Committee_Summary_021821_e18d80e810", + "__typename": "UploadFile" + }, + { + "id": "397", + "formats": null, + "size": 135.02, + "name": "Budget_Committee_Minutes_021821.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_021821_d3c8ca0eb4.pdf", + "updated_at": "2021-12-23T17:00:06.862Z", + "created_at": "2021-12-23T17:00:06.808Z", + "hash": "Budget_Committee_Minutes_021821_d3c8ca0eb4", + "__typename": "UploadFile" + }, + { + "id": "398", + "formats": null, + "size": 1722.84, + "name": "Budget_Committee_Materials_021821.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_021821_724fa764a1.pdf", + "updated_at": "2021-12-23T17:00:12.809Z", + "created_at": "2021-12-23T17:00:12.794Z", + "hash": "Budget_Committee_Materials_021821_724fa764a1", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "36", + "title": "Budget Committee January 27 2021", + "slug": "budget-committee-January-27-2021", + "summary": "Wednesday, January 27, 2021.\n\n10am to 12pm.\n\nLocation: \n\nVia WebEx", + "created_at": "2021-12-23T16:16:32.235Z", + "updated_at": "2021-12-23T16:57:13.011Z", + "published_at": "2021-12-23T16:17:58.343Z", + "isCancelled": null, + "start": "2021-01-27T16:00:00.000Z", + "end": "2021-01-27T18:00:00.000Z", + "category": "budget", + "body": "Budget Committee Meeting \n\nWednesday, January 27, 2021.\n\n10am to 12pm.\n\nLocation: \n\nVia WebEx", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "387", + "formats": null, + "size": 2593.07, + "name": "Budget_Committee_Materials_012721.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Materials_012721_f969a5da21.pdf", + "updated_at": "2021-12-23T16:14:10.955Z", + "created_at": "2021-12-23T16:14:10.942Z", + "hash": "Budget_Committee_Materials_012721_f969a5da21", + "__typename": "UploadFile" + }, + { + "id": "388", + "formats": null, + "size": 135.14, + "name": "Budget_Committee_Summary 012721.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Summary_012721_f168de87f6.pdf", + "updated_at": "2021-12-23T16:15:17.744Z", + "created_at": "2021-12-23T16:15:17.735Z", + "hash": "Budget_Committee_Summary_012721_f168de87f6", + "__typename": "UploadFile" + }, + { + "id": "389", + "formats": null, + "size": 146.3, + "name": "Budget_Committee_Minutes_012721.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_012721_ff0d840e27.pdf", + "updated_at": "2021-12-23T16:16:26.022Z", + "created_at": "2021-12-23T16:16:25.992Z", + "hash": "Budget_Committee_Minutes_012721_ff0d840e27", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "7", + "title": "Authority Board Meeting: Jan 21, 2021", + "slug": "authority-board-meeting-jan-21-2021", + "summary": "Regular Board Meeting, Thursday, January 21, 2021, 10:00 a.m. to 12:00 p.m. Illinois Criminal Justice Information Authority", + "created_at": "2021-07-23T14:08:42.861Z", + "updated_at": "2022-03-17T20:23:53.462Z", + "published_at": "2021-07-23T14:09:25.670Z", + "isCancelled": null, + "start": "2021-01-21T18:00:00.000Z", + "end": "2021-01-21T18:00:00.000Z", + "category": "board", + "body": "**Regular Board Meeting**\n\nThursday, January 21, 2021\n\n10:00 a.m. to 12:00 p.m.\n \nIllinois Criminal Justice Information Authority", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "47", + "formats": null, + "size": 18.52, + "name": "3 Grants Update 1.14.21.pdf", + "ext": ".pdf", + "url": "/uploads/3_Grants_Update_1_14_21_a0309c5c48.pdf", + "updated_at": "2021-07-23T14:07:20.531Z", + "created_at": "2021-07-23T14:07:20.518Z", + "hash": "3_Grants_Update_1_14_21_a0309c5c48", + "__typename": "UploadFile" + }, + { + "id": "48", + "formats": null, + "size": 94.18, + "name": "4 NOFO schedule 1.13.21.pdf", + "ext": ".pdf", + "url": "/uploads/4_NOFO_schedule_1_13_21_e3f2fe033e.pdf", + "updated_at": "2021-07-23T14:07:20.896Z", + "created_at": "2021-07-23T14:07:20.888Z", + "hash": "4_NOFO_schedule_1_13_21_e3f2fe033e", + "__typename": "UploadFile" + }, + { + "id": "49", + "formats": null, + "size": 88.26, + "name": "5 RA update 1-13-21.pdf", + "ext": ".pdf", + "url": "/uploads/5_RA_update_1_13_21_5f50889b68.pdf", + "updated_at": "2021-07-23T14:07:20.960Z", + "created_at": "2021-07-23T14:07:20.949Z", + "hash": "5_RA_update_1_13_21_5f50889b68", + "__typename": "UploadFile" + }, + { + "id": "50", + "formats": null, + "size": 165.54, + "name": "1 Board Agenda 01.21.21 mdj.pdf", + "ext": ".pdf", + "url": "/uploads/1_Board_Agenda_01_21_21_mdj_8be9fe6f01.pdf", + "updated_at": "2021-07-23T14:07:20.992Z", + "created_at": "2021-07-23T14:07:20.976Z", + "hash": "1_Board_Agenda_01_21_21_mdj_8be9fe6f01", + "__typename": "UploadFile" + }, + { + "id": "51", + "formats": null, + "size": 201.82, + "name": "2 Meeting Minutes 9.17.2020 (1) mdj.pdf", + "ext": ".pdf", + "url": "/uploads/2_Meeting_Minutes_9_17_2020_1_mdj_b21dcb399c.pdf", + "updated_at": "2021-07-23T14:07:21.037Z", + "created_at": "2021-07-23T14:07:21.025Z", + "hash": "2_Meeting_Minutes_9_17_2020_1_mdj_b21dcb399c", + "__typename": "UploadFile" + }, + { + "id": "52", + "formats": null, + "size": 496.79, + "name": "Statewide Violence Prevention Plan Jan 21 board mtg presentation_RG RD.pptx", + "ext": ".pptx", + "url": "/uploads/Statewide_Violence_Prevention_Plan_Jan_21_board_mtg_presentation_RG_RD_9341802279.pptx", + "updated_at": "2021-07-23T14:07:21.060Z", + "created_at": "2021-07-23T14:07:21.052Z", + "hash": "Statewide_Violence_Prevention_Plan_Jan_21_board_mtg_presentation_RG_RD_9341802279", + "__typename": "UploadFile" + }, + { + "id": "53", + "formats": null, + "size": 241.53, + "name": "Meeting Minutes 1.21.21 ce.pdf", + "ext": ".pdf", + "url": "/uploads/Meeting_Minutes_1_21_21_ce_2550d5ad4e.pdf", + "updated_at": "2021-07-23T14:07:21.094Z", + "created_at": "2021-07-23T14:07:21.081Z", + "hash": "Meeting_Minutes_1_21_21_ce_2550d5ad4e", + "__typename": "UploadFile" + }, + { + "id": "496", + "formats": null, + "size": 241.46, + "name": "2 Meeting Minutes 1.21.21 mdj.pdf", + "ext": ".pdf", + "url": "/uploads/2_Meeting_Minutes_1_21_21_mdj_e579e01a30.pdf", + "updated_at": "2022-03-17T20:23:47.632Z", + "created_at": "2022-03-17T20:23:47.620Z", + "hash": "2_Meeting_Minutes_1_21_21_mdj_e579e01a30", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "10", + "title": "Budget Committee Meeting: Jan 12, 2021", + "slug": "budget-committee-meeting-jan-12-2021", + "summary": "Budget Committee Meeting, January 12, 2021, 10:00 a.m. to 12:00 p.m., Illinois Criminal Justice Information Authority", + "created_at": "2021-07-23T14:46:13.487Z", + "updated_at": "2021-12-23T16:09:14.117Z", + "published_at": "2021-07-23T14:47:02.257Z", + "isCancelled": null, + "start": "2021-01-12T16:00:00.000Z", + "end": "2021-01-12T18:00:00.000Z", + "category": "budget", + "body": "**Budget Committee Meeting**\n\nJanuary 12, 2021, 10:00 a.m. to 12:00 p.m., Illinois Criminal Justice Information Authority", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "56", + "formats": null, + "size": 97.31, + "name": "011221 Budget Committee Summary.pdf", + "ext": ".pdf", + "url": "/uploads/011221_Budget_Committee_Summary_ab96261946.pdf", + "updated_at": "2021-07-23T14:45:43.795Z", + "created_at": "2021-07-23T14:45:43.782Z", + "hash": "011221_Budget_Committee_Summary_ab96261946", + "__typename": "UploadFile" + }, + { + "id": "57", + "formats": null, + "size": 103.47, + "name": "BC MINUTES 011221.pdf", + "ext": ".pdf", + "url": "/uploads/BC_MINUTES_011221_b099c5963c.pdf", + "updated_at": "2021-07-23T14:45:43.905Z", + "created_at": "2021-07-23T14:45:43.898Z", + "hash": "BC_MINUTES_011221_b099c5963c", + "__typename": "UploadFile" + }, + { + "id": "386", + "formats": null, + "size": 103.5, + "name": "Budget Committee Minutes 011221.pdf", + "ext": ".pdf", + "url": "/uploads/Budget_Committee_Minutes_011221_8415d3296f.pdf", + "updated_at": "2021-12-23T16:09:10.246Z", + "created_at": "2021-12-23T16:09:10.234Z", + "hash": "Budget_Committee_Minutes_011221_8415d3296f", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + }, + { + "id": "18", + "title": "Traffic and Pedestrian Stop Data Use and Collection Task Force Meeting: December 16, 2020", + "slug": "traffic-and-pedestrian-stop-data-use-and-collection-task-force-meeting-december-16-2020", + "summary": "Location: Via WebEx Video Conference/Teleconference\n", + "created_at": "2021-09-16T15:31:06.177Z", + "updated_at": "2021-09-16T15:31:07.763Z", + "published_at": "2021-09-16T15:31:07.627Z", + "isCancelled": null, + "start": "2020-12-16T19:00:00.000Z", + "end": "2020-12-16T21:00:00.000Z", + "category": "special", + "body": "**Location**\n\nVia WebEx Video Conference/Teleconference\n\n", + "posts": [], + "events": [], + "tags": [], + "attachments": [ + { + "id": "133", + "formats": null, + "size": 36.19, + "name": "Traffic Stop Task Force Minutes 12-16-20.docx", + "ext": ".docx", + "url": "/uploads/Traffic_Stop_Task_Force_Minutes_12_16_20_b12867b0ea.docx", + "updated_at": "2021-09-16T15:30:33.375Z", + "created_at": "2021-09-16T15:30:33.365Z", + "hash": "Traffic_Stop_Task_Force_Minutes_12_16_20_b12867b0ea", + "__typename": "UploadFile" + } + ], + "external": [], + "__typename": "Meeting" + } + ] + } +} \ No newline at end of file diff --git a/tests/test_il_criminal_justice_information.py b/tests/test_il_criminal_justice_information.py index 69bcca4e2..5c9591156 100644 --- a/tests/test_il_criminal_justice_information.py +++ b/tests/test_il_criminal_justice_information.py @@ -2,30 +2,21 @@ from os.path import dirname, join import pytest # noqa -from city_scrapers_core.constants import ( - ADVISORY_COMMITTEE, - BOARD, - CANCELLED, - COMMITTEE, - PASSED, - TENTATIVE, -) +from city_scrapers_core.constants import COMMISSION, TENTATIVE from city_scrapers_core.utils import file_response from freezegun import freeze_time -from scrapy.settings import Settings from city_scrapers.spiders.il_criminal_justice_information import ( IlCriminalJusticeInformationSpider, ) test_response = file_response( - join(dirname(__file__), "files", "il_criminal_justice_information.html"), - url="http://www.icjia.state.il.us/about/overview", + join(dirname(__file__), "files", "il_criminal_justice_information.json"), + url="https://agency.icjia-api.cloud/graphql", ) spider = IlCriminalJusticeInformationSpider() -spider.settings = Settings(values={"CITY_SCRAPERS_ARCHIVE": False}) -freezer = freeze_time("2019-04-27") +freezer = freeze_time("2024-07-16") freezer.start() parsed_items = [item for item in spider.parse(test_response)] @@ -34,28 +25,29 @@ def test_count(): - assert len(parsed_items) == 46 + assert len(parsed_items) == 19 def test_title(): - assert parsed_items[0]["title"] == "Authority Board" - assert parsed_items[-1]["title"] == "Strategic Opportunities Committee" + assert ( + parsed_items[0]["title"] + == "TRAFFIC & PEDESTRIAN STOP STATISTICAL STUDY TASK FORCE: July 25, 2024" # noqa + ) def test_description(): - assert parsed_items[0]["description"] == "" + assert ( + parsed_items[0]["description"] + == "Thursday, July 25, 2024\n11:30pm – 12:30pm\nLocation\nVia WebEx Video Conference/Teleconference" # noqa + ) def test_start(): - assert parsed_items[0]["start"] == datetime(2019, 12, 19, 10) - assert parsed_items[6]["start"] == datetime(2018, 8, 22, 10, 45) - assert parsed_items[21]["start"] == datetime(2018, 6, 21, 10, 0) + assert parsed_items[0]["start"] == datetime(2024, 7, 25, 11, 30) def test_end(): - assert parsed_items[0]["end"] is None - assert parsed_items[6]["end"] == datetime(2018, 8, 22, 12) - assert parsed_items[13]["end"] is None + assert parsed_items[0]["end"] == datetime(2024, 7, 25, 12, 30) def test_time_notes(): @@ -65,46 +57,37 @@ def test_time_notes(): def test_id(): assert ( parsed_items[0]["id"] - == "il_criminal_justice_information/201912191000/x/authority_board" + == "il_criminal_justice_information/202407251130/x/traffic_pedestrian_stop_statistical_study_task_force_july_25_2024" # noqa ) def test_status(): assert parsed_items[0]["status"] == TENTATIVE - assert parsed_items[4]["status"] == CANCELLED - assert parsed_items[-1]["status"] == PASSED def test_location(): assert parsed_items[0]["location"] == { - "name": "Illinois Criminal Justice Information Authority", - "address": "300 W Adams St, Suite 200,Chicago, IL 60606, 2nd Floor Building Conference Room", # noqa - } - assert parsed_items[6]["location"] == { - "address": "3000 South Dirksen Parkway, Springfield, IL 62703", - "name": "Crowne Plaza Springfield", + "name": "TBD", + "address": "", } def test_source(): - assert parsed_items[0]["source"] == "http://www.icjia.state.il.us/about/overview" + assert parsed_items[0]["source"] == "https://agency.icjia-api.cloud/graphql" # noqa def test_links(): - assert parsed_items[0]["links"] == [] - assert parsed_items[5]["links"] == [ - { - "href": "http://www.icjia.state.il.us/assets/pdf/Meetings/12-11-18/Authority_Board_Meeting_Agenda_Memo_Materials_121118.pdf", # noqa - "title": "Materials", - }, + assert parsed_items[0]["links"] == [ { - "href": "http://www.icjia.org/assets/pdf/Meetings/2019-04-24/AuthorityBoardMeeting%20Materials4.24.19.pdf", # noqa - "title": "Minutes", - }, + "href": "https://agency.icjia-api.cloud/uploads/Traffic_Data_Stop_Task_Force_Agenda_07_24_24_KA_TL_df57bde328.pdf", # noqa + "title": "Traffic Data Stop Task Force Agenda 07-24-24 KA TL.pdf", + } ] def test_classification(): - assert parsed_items[0]["classification"] == BOARD - assert parsed_items[23]["classification"] == ADVISORY_COMMITTEE - assert parsed_items[-1]["classification"] == COMMITTEE + assert parsed_items[0]["classification"] == COMMISSION + + +def test_all_day(): + assert parsed_items[0]["all_day"] is False