Diversion
The Diversion dataset contains information on defendants who receive a referral to a diversion program, including the type of program and date of referral; each row is a program to which a defendant has been referred.
Please use this link for more instructions and data glossary:
https://www.cookcountystatesattorney.org/resources/how-read-data
Querying over HTTP
Splitgraph serves as an HTTP API that lets you run SQL queries directly on
this data to power Web applications. For example:
curl https://data.splitgraph.com/sql/query/ddn \
-H "Content-Type: application/json" \
-d@-<<EOF
{"sql": "
SELECT *
FROM \"datacatalog-cookcountyil-gov/diversion-gpu3-5dfh\".\"diversion\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.