Sonoma County Sheriff's Office Arrest Data
Each row of data represents an arrest or citation. Arrest charges are grouped together in the charge description column. Charge details are delimited by semicolons and charges are delimited by line breaks with multiple hyphens. Location information has been generalized to the nearest intersection.
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 \"sonomacounty-ca-gov/sonoma-county-sheriffs-office-arrest-data-f6uf-eqmk\".\"sonoma_county_sheriffs_office_arrest_data\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.