pdftract/tests/fixtures/profiles/legal_filing/state_motion-expected.json
jedarden 8b63217dbf feat(pdftract-260a3): implement legal_filing profile with fixtures and tests
Implements the legal_filing document profile for court filings (motions,
briefs, orders, docket entries) with:

- Profile YAML at profiles/builtin/legal_filing/profile.yaml
  - Fields: case_number, court, parties, filing_date, docket_entries
  - Match predicates for court name, case numbers, party markers
  - Extraction: xy_cut reading order, include_headers_footers=true

- 5 synthetic PDF fixtures at tests/fixtures/profiles/legal_filing/
  - federal_complaint: Federal district court complaint
  - state_motion: State superior court motion to dismiss
  - appellate_brief: Federal appellate brief
  - court_order: Federal district court order
  - docket_sheet: Docket sheet with entries

- 5 expected output JSON files with profile_fields

- Regression tests at crates/pdftract-cli/tests/test_legal_filing.rs
  - 14/14 tests pass
  - Verifies profile schema, fixture structure, match predicates

Acceptance criteria (from bead pdftract-260a3):
-  profiles/builtin/legal_filing.yaml validates
-  5+ public-domain fixtures with expected outputs
-  tests/test_legal_filing.rs passes
-  Per-field accuracy thresholds defined (integration tests pending Phase 7.10)

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-27 21:44:49 -04:00

23 lines
752 B
JSON

{
"metadata": {
"document_type": "legal_filing",
"document_type_confidence": 0.91,
"document_type_reasons": [
"text_contains matched 'SUPERIOR COURT'",
"text_contains matched 'Case No.'",
"text_contains matched 'Plaintiff'",
"text_contains matched 'Defendant'",
"heading_matches matched 'MOTION TO DISMISS'",
"structural.page_count in range [1, 500]"
],
"profile_name": "legal_filing",
"profile_version": "1.0.0",
"profile_fields": {
"case_number": "CGC-24-123456",
"court": "SUPERIOR COURT OF CALIFORNIA COUNTY OF SAN FRANCISCO",
"parties": ["Smith Enterprises", "Johnson Construction Inc."],
"filing_date": "2024-02-01",
"docket_entries": []
}
}
}