The reference implementation of LegalDown
Parse, validate, and serialize LegalDown documents — from the command line or from Python.
Targets specification v0.1 · Every diagnostic carries a stable rule id · One dependency: PyYAML
LegalDown is an open plain-text standard for legal documents. This package is the toolkit for working with those documents in code:
📥 Parses a .lgd file into a typed document model — frontmatter, sections, blocks, parties,
definitions, anchors.
✅ Validates it against the specification's rule set (§15): broken cross-references, undefined terms, duplicate identifiers, malformed party metadata, bad dates and money values, and more.
📤 Serializes the model back to LegalDown source, so you can edit documents programmatically and write them out again.
🏷️ Names every finding. Each diagnostic carries the specification's stable rule id (§15.1) alongside its severity and message, so you can suppress one check, escalate another, or gate a build on exactly the rules you care about. Rule ids survive specification renumbering — they are the part of a diagnostic that is safe to depend on.
pip install legaldown-validatorPython 3.11 or newer. The distribution is named legaldown-validator; the import name is
legaldown:
import legaldownThe package ships a py.typed marker, so type checkers use its annotations directly.
Given a LegalDown document:
---
title: Services Agreement
document_type: contract
sides:
- name: providers
label: Provider
parties:
- name: acme
label: Acme
type: legal_entity
legal_name: Acme Corporation
- name: clients
label: Client
parties:
- name: beta
label: Beta
type: legal_entity
legal_name: Beta Industries Inc.
language: en
---
# Fees {#fees}
{{party: beta}} shall pay {{money: 5000}} under {{ref: payment-terms}}.Validate it:
legaldown validate contract.lgdcontract.lgd: error: [ref-broken] Broken section reference: 'payment-terms'.
contract.lgd: warning: [money-missing-currency] Money directive without currency parameter.
1 error(s), 1 warning(s), 0 info(s)
One diagnostic per line, each prefixed with its rule id. A clean document reports
No issues found. and exits 0.
Diagnostics go to stdout; the trailing summary and No issues found. go to stderr, so
legaldown validate contracts/ > report.txt captures the findings alone. --quiet drops the
summary entirely.
legaldown validate contract.lgd # one document
legaldown validate contracts/ # a whole directory, recursively
legaldown validate --format json contract.lgd # machine-readable output
legaldown validate --ignore def-unreferenced doc.lgd # mute one rule
legaldown validate --warnings-as-errors doc.lgd # tighten a CI gate| Option | Effect |
|---|---|
--format {text,json} |
Output format (default text) |
--ignore RULE_ID |
Suppress a rule by its stable id — repeatable |
--warnings-as-errors |
Report warnings at error severity |
--strict |
Exit non-zero on any diagnostic, not just errors |
--quiet |
Drop the trailing summary line |
Directories are searched recursively for *.lgd, *.legaldown, and *.legal.md, and
legaldown --version reports the validator version.
Exit codes: 0 clean · 1 diagnostics found (errors, or any diagnostic under --strict) ·
2 a file could not be read.
--format json emits the structured shape described in §15.9 — ideal for CI annotations, editor
integrations, and dashboards:
{
"legaldown_spec": "0.1",
"validator_version": "0.1.0",
"diagnostics": [
{
"file": "contract.lgd",
"rule": "ref-broken",
"level": "error",
"message": "Broken section reference: 'payment-terms'."
}
]
}- run: pip install legaldown-validator
- run: legaldown validate contracts/ --warnings-as-errorsThe exit code fails the job; the rule ids let you grant exceptions without turning whole checks off.
Three functions cover the common path:
from legaldown import parse_document, validate_document, serialize_document
document = parse_document(open("contract.lgd").read(), filename="contract.lgd")
result = validate_document(document)
for diagnostic in result.diagnostics:
print(diagnostic.level, diagnostic.rule, diagnostic.message)
if result.is_valid: # no Error-level diagnostics
print(serialize_document(document))Validating a document builds the indices the checks need — section numbers, resolved definitions,
party display text, every inline value found in the body. ValidationResult hands all of it back,
so a renderer or a UI can reuse the work instead of re-deriving it:
| Attribute | Contents |
|---|---|
diagnostics |
Diagnostic(rule, level, message) — the authoritative record |
is_valid |
True when no Error-level diagnostic was reported |
errors / warnings / infos |
Message strings by severity |
rules(level=None) |
Set of rule ids present, optionally filtered by severity |
sections, section_lookup |
Numbered section index; resolves {{ref:}} targets |
definition_lookup, party_lookup, side_lookup, attachment_lookup |
Resolved display text |
inline_dates, inline_money, inline_durations, inline_fields, inline_placeholders |
Field-spec values found in the body |
parse_document returns a Document of plain dataclasses — Metadata, Section, Block,
Side, Party, Attachment — that you can inspect, edit, and write back out:
from legaldown import parse_document, serialize_document
document = parse_document(source)
document.metadata.governing_law = "Czech Republic"
with open("contract.lgd", "w", encoding="utf-8") as handle:
handle.write(serialize_document(document))document_to_dict() / document_from_dict() round-trip the model through JSON-friendly
structures, and render_block() renders a single block when you are driving your own layout.
One guarantee worth knowing: the parser is faithful — it never rewrites your input to make it valid, so what you authored is exactly what the validator judges. The serializer, by contrast, normalizes: frontmatter is re-emitted as canonical YAML and paragraphs are written as single lines, so expect a formatting-normalized file rather than a byte-for-byte copy.
The full rule set with severities and examples lives in the specification (§15); this is the map:
| Area | Checks include |
|---|---|
| Structure | Heading depth and skipped levels, hardcoded section numbers, missing title |
| Cross-references | {{ref:}} targets that do not exist or point at an attachment |
| Anchors | Duplicate identifiers, malformed identifiers, auto-generated collisions |
| Definitions | Undefined {{term:}}, duplicate ids, missing quoted span, ambiguous quoting, unreferenced definitions |
| Parties and sides | Unknown {{party:}} / {{side:}}, malformed or duplicate names, invalid party types, minimum party and side counts, empty representatives |
| Values | Invalid dates, money without currency or with an unknown one, invalid durations and units, undeclared or reserved custom field types |
| Placeholders | Malformed ids, invalid or inconsistent types, placeholders in structural fields |
| Attachments | Undeclared {{attach:}}, duplicate or colliding ids, empty titles, unreferenced attachments |
| Amendments | Terms the amended original does not define, definition overrides, empty amendment titles |
| Metadata | Invalid document type, invalid dates, missing sides, issuer side requirements |
Each check reports at the severity the specification assigns it — Error, Warning, or Info.
This implementation claims Level 1 — Core (§16.2): everything above applies to a single document, in memory, with no filesystem access beyond reading the file you point it at. That covers authoring, editing, and CI validation of individual documents.
It is verified against the specification's own fixtures corpus — every rule it implements passes, bar seven whose fixtures span several files and are covered by unit tests instead. The specification (§16.5) requires an implementation to be explicit about the checks it does not perform, so those are listed in CONFORMANCE.md rather than left to be discovered.
git clone https://github.com/ForLegalAI/legaldown-validator
cd legaldown-validator
pip install -e ".[dev]"
pytestThe fixtures corpus lives in the specification repository, so point the harness at a checkout:
git clone https://github.com/ForLegalAI/LegalDown ../LegalDown
LEGALDOWN_FIXTURES_DIR=../LegalDown/fixtures pytest tests/conformance -qCases for rules outside Core are skipped and named, so the run doubles as the coverage ledger in CONFORMANCE.md, which accounts for every skip. CI runs it on every push and pull request.
Bug reports and pull requests are welcome in Issues; questions about the format itself belong in the specification repository's Discussions.
MIT — see LICENSE. The LegalDown specification itself is published separately under CC BY 4.0; it permits implementations to choose their own license.