SCALES
SCALES is an integrated justice platform to connect criminal justice data across data silos.
SCALES is an integrated justice platform to connect criminal justice data across data silos.
SCALES (Systematic Content Analysis of Litigation Events) is an open knowledge network designed to democratize access to criminal and civil court records across the United States. The knowledge graph contains over 523 million triples describing 96.5 million entities spanning more than 4.1 million cases, including 2.4 million criminal cases and 1.8 million civil cases. The graph integrates data from federal district courts as well as state and local court systems, linking entities such as parties, attorneys, law firms, judges, charges, sentences, arrests, and bookings across cases. Built on the National Information Exchange Model (NIEM) Justice Domain standard, SCALES employs standardized vocabularies to enable systematic analysis of justice system functioning, reveal inequities, and support evidence-based policy making. The platform addresses the critical lack of nationally-accessible and linked criminal justice data.
List distinct judges
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX j: <http://release.niem.gov/niem/domains/jxdm/7.2/#>
PREFIX nc: <http://release.niem.gov/niem/niem-core/5.0/>
SELECT DISTINCT ?judgeName
WHERE {
?judge rdf:type j:Judge ;
nc:PersonFullName ?judgeName .
}
LIMIT 100
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?judge")
v2("?judgeName"):::projected
c2([jxdm:Judge]):::iri
v1 --"a"--> c2
v1 --"http://release.niem.gov/niem/niem-core/5.0/PersonFullName"--> v2
List SCALES ontology event labels
PREFIX scales: <http://schemas.scales-okn.org/rdf/scales#>
SELECT DISTINCT ?eventLabel
WHERE {
?docket scales:OntologyLabel ?eventLabel .
}
LIMIT 100
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?docket")
v2("?eventLabel"):::projected
v1 --"scales:OntologyLabel"--> v2
| SPARQL Endpoint | https://frink.apps.renci.org/scales/sparql |
|---|---|
| Triple Pattern Fragments | https://frink.apps.renci.org/ldf/scales |
| Class | Entities |
|---|
| Property | Triples |
|---|