(a) On or before August 1 of each year, the Illinois State Police shall report to the Governor, the Attorney General, the Office of the State Appellate Defender, and both houses of the General Assembly the following information for the previous fiscal year: (1) the number of petitions to expunge received by the Illinois State Police; (2) the number of petitions to expunge to which the Illinois State Police objected pursuant to subdivision (d)(5)(B) of Section 5.2 of this Act; (3) the number of petitions to seal records received by the Illinois State Police; (4) the number of petitions to seal records to which the Illinois State Police objected pursuant to subdivision (d)(5)(B) of Section 5.2 of this Act; (5) the number of orders to expunge received by the Illinois State Police; (6) the number of orders to expunge to which the Illinois State Police successfully filed a motion to vacate, modify or reconsider under paragraph (12) of subsection (d) of Section 5.2 of this Act; (7) the number of orders to expunge records entered by the Illinois State Police; (8) the number of orders to seal records received by the Illinois State Police; (9) the number of orders to seal records to which the Illinois State Police successfully filed a motion to vacate, modify or reconsider under paragraph (12) of subsection (d) of Section 5.2 of this Act; (10) the number of orders to seal records entered by the Illinois State Police; (11) the amount of fees received by the Illinois State Police pursuant to subdivision (d)(10) of Section 5.2 of this Act and deposited into the State Police Services Fund; (12) the number of orders to expunge or to seal records received by the Illinois State Police that have not been entered as of June 30 of the previous fiscal year. (b) The information reported under this Section shall be made available to the public, at the time it is reported, on the official web site of the Illinois State Police. (c) Upon request of a State's Attorney or the Attorney General, the Illinois State Police shall provide within 90 days a list of all orders to expunge or seal with which the Illinois State Police has not yet complied. This list shall include the date of the order, the name of the petitioner, the case number, and a detailed statement of the basis for non-compliance. (Text of Section after amendment by P.A. 104-459) Sec. 14. Expungement Backlog Accountability Law. (a) On or before August 1 of each year, the Illinois State Police shall report to the Governor, the Attorney General, the Office of the State Appellate Defender, and both houses of the General Assembly the following information for the previous fiscal year: (1) the number of petitions to expunge received by the Illinois State Police; (2) the number of petitions to expunge to which the Illinois State Police objected pursuant to subdivision (d)(5)(B) of Section 5.2 of this Act; (3) the number of petitions to seal records received by the Illinois State Police; (4) the number of petitions to seal records to which the Illinois State Police objected pursuant to subdivision (d)(5)(B) of Section 5.2 of this Act; (5) the number of orders to expunge received by the Illinois State Police; (6) the number of orders to expunge to which the Illinois State Police successfully filed a motion to vacate, modify or reconsider under paragraph (12) of subsection (d) of Section 5.2 of this Act; (7) the number of orders to expunge records entered by the Illinois State Police; (8) the number of orders to seal records received by the Illinois State Police; (9) the number of orders to seal records to which the Illinois State Police successfully filed a motion to vacate, modify or reconsider under paragraph (12) of subsection (d) of Section 5.2 of this Act; (10) the number of orders to seal records entered by the Illinois State Police; (11) the amount of fees received by the Illinois State Police pursuant to subdivision (d)(10) of Section 5.2 of this Act and deposited into the State Police Services Fund; (12) the number of orders to expunge or to seal records received by the Illinois State Police that have not been entered as of June 30 of the previous fiscal year; (13) the total number of records sealed pursuant to automated sealing under subsection (k) of Section 5.2; (14) the number of conviction records sealed pursuant to automated sealing under subsection (k) of Section 5.2; (15) the number of conviction records sealed pursuant to automated sealing under subsection (k) of Section 5.2 by misdemeanor or felony class; and (16) the number of records sealed pursuant to automated sealing under subsection (k) of Section 5.2 by county. (b) The information reported under this Section shall be made available to the public, at the time it is reported, on the official web site of the Illinois State Police. (c) Upon request of a State's Attorney or the Attorney General, the Illinois State Police shall provide within 90 days a list of all orders to expunge or seal with which the Illinois State Police has not yet complied. This list shall include the date of the order, the name of the petitioner, the case number, and a detailed statement of the basis for non-compliance. This site is maintained for the Illinois General Assembly by the Legislative Information System, 705 Stratton Building, Springfield, Illinois 62706. Contact ILGA Webmaster ILGA.GOV 2026 ILGA.gov | All Rights Reserved | ADA | Disclaimers | Learn This site is maintained for the Illinois General Assembly by the Legislative Information System, 705 Stratton Building, Springfield, Illinois 62706. Contact ILGA Webmaster ILGA.GOV 2026 ILGA.gov | All Rights Reserved | ADA | Disclaimers | Learn .fade-out { opacity: 0; transition: opacity 1.0s; /* Adjust the duration as needed */ } .cookies { position: fixed; bottom: 0; margin-bottom: 0; /* Ensure no margin at the bottom */ width: 100%; border-radius: 0; /* Remove rounded borders */ opacity: 0.98; z-index: 100; } @media (max-width: 576px) { .cookies { height: auto; /* Allow the height to adjust based on content */ padding-bottom: 80px !important; /* Add extra padding to push buttons above UserWay widget */ } } ILGA.gov is better with cookies. ILGA.gov uses cookies to ensure you get the best experience on our website. By continuing to browse ILGA.gov you consent to our use of cookies. Read About Cookies Accept & Continue document.getElementById('about-cookies-btn').addEventListener('click', function () { window.location.href = '/Cookies'; }); (function () { var button = document.querySelector("#cookieConsent button[data-cookie-string]"); button.addEventListener("click", function (event) { document.cookie = button.dataset.cookieString; var cookieContainer = document.querySelector("#cookieConsent"); cookieContainer.remove() }, false); })(); enableWordFriendlyCopy({ selector: '#copyable-content', baseUrl: 'https://ilga.gov/' }); (function () { const BASE_WIDTH = 578; const isDev = location.hostname === 'localhost' || location.hostname === 'dev.ilga.gov'; const log = (...args) => { if (isDev) { console.log(...args); } }; function applyBillScale() { log('--- applyBillScale called ---'); const host = document.querySelector('#billtextanchor .billtext-host'); const scaleEl = document.querySelector('#billtextanchor .billtext-scale'); log('host element:', host); log('scaleEl element:', scaleEl); if (!host || !scaleEl) { log('Missing host or scaleEl, exiting'); return; } const available = window.innerWidth; log('available viewport width:', available); let scale = 1; log('initial scale:', scale); if (available = 850 (desktop)'); } log('calculated scale:', scale); scaleEl.style.transformOrigin = 'top left'; scaleEl.style.transform = `scale(${scale})`; log('transform:', scaleEl.style.transform); const calculatedWidth = BASE_WIDTH * scale; scaleEl.style.width = `${calculatedWidth}px`; log('calculated width:', calculatedWidth); } log('Bill scaling script loaded. isDev =', isDev); window.addEventListener('orientationchange', () => { log('orientationchange event fired'); applyBillScale(); }); document.addEventListener('DOMContentLoaded', () => { log('DOMContentLoaded event fired'); applyBillScale(); }); })(); (function () { var s = document.createElement('script'); var h = document.querySelector('head') || document.body; s.src = 'https://acsbapp.com/apps/app/dist/js/app.js'; s.async = true; s.onload = function () { acsbJS.init({ statementLink: '', footerHtml: '', hideMobile: false, hideTrigger: false, disableBgProcess: false, language: 'en', position: 'left', leadColor: '#070D0D', triggerColor: '#03396c', triggerRadius: '50%', triggerPositionX: 'left', // Change from 'right' to 'left' triggerPositionY: 'bottom', triggerIcon: 'people', triggerSize: 'medium', triggerOffsetX: 20, triggerOffsetY: 20, mobile: { triggerSize: 'small', triggerPositionX: 'left', // Change from 'right' to 'left' triggerPositionY: 'bottom', triggerOffsetX: 10, triggerOffsetY: 10, triggerRadius: '50%' } }); }; h.appendChild(s); })(); document.addEventListener('DOMContentLoaded', function () { document.querySelectorAll('button[onclick]').forEach(button => { // Extract the href from the inline onclick const onclick = button.getAttribute('onclick'); const match = onclick.match(/location\.href\s*=\s*['"]([^'"]+)['"]/); if (!match) return; const url = match[1]; // Remove the inline onclick to prevent auto navigation button.removeAttribute('onclick'); // Add our controlled event listener button.addEventListener('click', function (e) { if (e.ctrlKey || e.metaKey) { window.open(url, '_blank'); } else { window.location.href = url; } }); }); });
20 ILCS 2630/14
Expungement Backlog Accountability Law
Known as the Criminal Identification Act
The act spans §§ 20-2630-0-01 to 20-2630-9-5 (25 sections).
P.A. 102-538, eff. 8-20-21.; P.A. 104-459, eff. 6-1-26.
Official source: Illinois General Assembly. Reproduced from public-domain Illinois statutes; confirm against the official source for the current text. Not legal advice.