Skip to content

👩‍⚖️ Library that sanitizes and formalizes the data model of Dutch court judgments from Rechtspraak.nl

License

Notifications You must be signed in to change notification settings

digitalheir/rechtspraak-js

Repository files navigation

Rechtspraak.js

Build Statusnpm versionLicenseCode Climate

This library sanitizes and formalizes the data model for Dutch court judgments published by Rechtspraak.nl. The process is performed on all documents publicly offered by Rechtspraak.nl and are published as a linked data graph (well-formed JSON-LD with a JSON Schema).

Why?

Rechtspraak.nl publishes information about a lot of Dutch court judgments with a rich collection of metadata. Sadly, the data model is ill-described and rife with syntactical errors. Rechtspraak.nl provides no schema for its documents other than an incomplete PDF in natural language and a lot of RDF fields are invalid. It's hard to know what to expect when downloading a document, especially for some of the more esoteric metadata fields.

The purpose of this project is to formalize the data model of Rechtspraak.nl. I have done this by analyzing all existing documents (~2 million) on Rechtspraak.nl to generate a JSON Schema and Typescript typings for the metadata associated with the court judgments. I have corrected some common errors in the source files (mostly to do with not properly encoding URIs) and generate valid JSON-LD (which is compatible with RDF) from them.

This work is a tangible step forward towards machine readable legal data, hence the ease of automated processing of these documents is improved.

Data

A dump of the sanitized metadata is available at https://rechtspraak.lawreader.nl/_all. A human-readable interface around the data is at https://rechtspraak.lawreader.nl/

The former URL will load the complete knowledge graph of Rechtspraak.nl. This page returns a JSON document of about 20 gigabyes in size. The document has two fields:

  1. @context, which provides the URI mappings for the concepts, and
  2. @graph, which is an array filled with the actual data (see JSON-LD specification for more information)

I recommend using a streaming JSON parser like Oboe.js to consume the data.

For accessing subsets of the knowledge graph, you can use most of the API from CouchDB views, ie: https://rechtspraak.lawreader.nl/_all?limit=100&skip=50 will limit your request to 100 docs after the first 50. Mind that you can also use startkey to paginate faster: _all?startkey="ECLI:NL:CBB:2015:5"&limit=50 will fetch the first 50 docs starting at ECLI:NL:CBB:2015:5. Documents are ordered alphabetically by their ids ([European Case Law Identifier][https://en.wikipedia.org/wiki/European_Case_Law_Identifier]).

I try to stick to the vocabularies used in the source documents (dcterms, and some from the Dutch government), and also introduce relevant fields from schema.org. I've invented my own URIs where appropriate. In time I'm planning to make all of these URIs resolvable as well.

Tip: use a tool like JSON-LD playground to visualise the data.

Types

Code is written in Typescript, compiled project supplies d.ts typing files along with the Javascript code.

JSON Schema

~ ~ I'm still working on converting the Typescript interface to JSON Schema ~ ~ (for the impatient, look for source files to generate the JSON-LD document)

Rechtspraak.nl metadata gotchas

Here is a list of some of the syntactical errors I encountered in the data offering for Rechtspraak.nl, which are sanitized in this work.

Some issues derived from an earlier report:

  • In general, the W3C RDF validator crashes on input documents

  • The subject of a triple is not always clear. There are two dcterms:modified properties described, and it is unclear which one refers to the date on which the document was modified and which one to the date on which the metadata was modified.

  • Values are usually not typed, for example in the case of dates.

  • Resource identifiers are not always used, when they easily can be. An example is the dcterms:coverage property. This might not seem important, such as in the case of dcterms:accessRights, which is fixed to the string literal public. But RDF processors typically do not treat two equal strings literals as the same concept: URIs are used for that. (Also, properties in the Dublin Core normally define a range which usually imply URIs.)

  • There are some ECLI identifiers that turn up when searching for documents that have a body, but actually do not have a body. Encountered are:

  • Property-specific issues:

    • dcterms:references prefixes the resourceIdentifier attribute with the namespace of the corpus that the referent is in. This is not properly formed RDF.
    • dcterms:subject: when a judgment is about multiple fields, a resource identifier is given that contains both subjects concatenated. An example is http://psi.rechtspraak.nl/rechtsgebied#bestuursrecht_socialezekerheidsrecht. It makes more sense to have one URI for 'bestuursrecht' and one URI for 'socialezekerheidsrecht'.
    • psi:zaaknummer doesn't seem to split lists of identifiers correctly. A string like 97/8236 TW, 97/8241 TW is probably two case numbers, not one.
  • The XML defines a prefix that refers to the relative URI bwb-dl. Prefixing to relative URIs is a practice that has been deprecated by W3C.

Further reading

This work is a spin-off from my Master thesis, Automatic Assignment of Section Structure to Texts of Dutch Court Judgments.

License

GPL v3. This is a viral open source license. If you create derivatives, you must publish your code under compatible license terms.

Contact

Inquiries go to Maarten Trompper (maartentrompper@gmail.com)


Flag of the European Union

This project is co-funded by the European Union.

About

👩‍⚖️ Library that sanitizes and formalizes the data model of Dutch court judgments from Rechtspraak.nl

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published