Executable Law
Dutch legislation encoded in YAML and executed by a deterministic engine. Every decision traces back to its legal source.
Dutch legislation you can run, test, and trace back to the source.
# Wet op de zorgtoeslag, article 2
- number: '2'
text: |
De verzekerde heeft aanspraak op een zorgtoeslag ter hoogte
van het verschil tussen de standaardpremie en de normpremie...
machine_readable:
execution:
input:
- name: toetsingsinkomen
source:
regulation: algemene_wet_inkomensafhankelijke_regelingen
output: toetsingsinkomen
parameters:
bsn: $bsn
output:
- name: hoogte_zorgtoeslag
type: amount
actions:
- output: hoogte_zorgtoeslag
value:
operation: MAX
values:
- 0
- operation: SUBTRACT
values:
- $standaardpremie
- $normpremieEach article sits alongside the original legal text. The machine_readable section defines inputs, outputs, and the calculation logic. The engine executes this directly.
Developers building government services that implement Dutch law. Use the engine to compute legal outcomes instead of hand-coding rules.
Legal experts validating whether machine-readable interpretations match the law. The execution-first methodology uses concrete test cases from parliamentary documents.
Policy makers exploring how legislation works in practice. Run "what if" scenarios in the browser to see how changing a parameter affects outcomes across multiple laws.