A Civic Infrastructure Proposal · v0.3

The Metric Catalog

What fourteen stakeholders in the family court system can see, cannot see, and have never been given the chance to measure.
Missouri Pilot · Published 2026 · Methodology Open
Layer 01 · Visible
Efficiency theater.
The metrics courts already publish measure throughput — filings, clearance, disposition time. They tell you the machine is running. They tell you nothing about whether it works.
0Metrics Tracked Today
Layer 02 · Hidden
Accountability risk.
Judicial decision patterns, enforcement gaps, professional performance. These exist in fragmented form and are the metrics most likely to reshape outcomes — and most aggressively withheld.
0Defensibly Measurable
Layer 03 · Missing
The truth layer.
Actual parenting time exercised. Children's stability. Conflict intensity. System-induced harm. No one is counting. These metrics describe reality — and innovation lives here.
0Currently Uncounted
§ 01

Reading the Catalog

Every metric carries a visibility status and a disclosure tier. Together they say: who can see this today, and who should be allowed to.

Visible

Published or publishable today. Aggregate, de-identified, low re-identification risk.

Hidden

Data exists but is fragmented, restricted, or institutionally withheld. Defensible to expose with governance.

Missing

Not tracked by any system. Requires new infrastructure — often user-generated — to measure.

§ 02

Select a Role

Each stakeholder sees a different slice of the system. Click a role to view its metric catalog. Then click any metric for the full methodology.

Endorse Adoption

The methodology is published for public review. Endorse the metrics you believe should be adopted. Endorsements are aggregated and presented to the Methodology Board and state partners.

0
Metrics Endorsed
0
Roles Covered
0
Missing Endorsed
0%
Catalog Complete
§ 03

State Comparison

How publicly available family court metrics compare across peer states. Missouri is the pilot implementation; peer data is illustrative, drawn from state judiciary reports.

ASSUMPTION: Peer-state data below is representative of public judiciary reporting patterns. Figures should be verified against each state's most recent Office of Court Administration annual report before policy use. This view demonstrates the schema; production data would be refreshed quarterly.

Metric Missouri California New York Texas Illinois Florida
Published publicly Partially available Not published
§ 04

Reform Implications

What the comparison reveals about where national standardization is possible and where state-level innovation must lead.

Finding 01

No state publishes judicial-level outcome data.

Every state ranks zero on individual-judge transparency. This is the single most consistent gap in the country and the single most defensible reform target — if paired with governance protections against adversarial use.

Finding 02

Compliance data does not exist anywhere.

No state tracks whether court-ordered parenting time is actually exercised. This is the "truth layer" — and the space where user-generated data from platforms like CoTrackPro becomes the only viable source.

Finding 03

Disposition time is standardized; quality is not.

Most states report time-to-disposition. Almost none report durability of outcomes — whether the agreements or rulings hold. This creates perverse optimization: fast rulings that return to court repeatedly.

Finding 04

Disparity analysis is politically radioactive.

Outcomes by income, race, and representation status are virtually absent from public reporting. Academic DUAs are the only viable path; legislative mandates face predictable resistance.

§ 05

Technical Specification

Architecture for a metric publication and endorsement platform. AWS-native, least-privilege, privacy-preserving by default.

Stack

Core Components

TypeScript across the board. API Gateway fronts Lambda handlers. DynamoDB single-table for operational data. S3 for published data snapshots and research DUA exports. KMS CMK per tier.

Frontend:  React + Vite + Tailwind
API:       API Gateway + Lambda (TS)
Data:      DynamoDB single-table
Storage:   S3 (tiered buckets per class)
Auth:      Cognito (anon + identity pools)
Secrets:   SSM SecureString
Analytics: CloudWatch + custom audit table
Privacy

De-identification Pipeline

Every metric publication passes through four gates before release. Nothing skips. Nothing is ever published directly from operational tables.

1. k-anonymity check (k ≥ 10)
2. l-diversity on sensitive attrs
3. Small-cell suppression (n < 10)
4. Differential privacy noise (ε ≤ 1.0)
5. Methodology board sign-off
6. Versioned snapshot to S3
Data Model

DynamoDB Single-Table Schema

Table: mcc-main
  PK                        SK                              Attributes
  --                        --                              ----------
  ROLE#<roleId>             META#                           name, summary, version
  ROLE#<roleId>             METRIC#<metricId>               status, tier, name, desc
  METRIC#<metricId>         META#                           full methodology JSON
  METRIC#<metricId>         ENDORSEMENT#<identityId>        endorsedAt, source
  METRIC#<metricId>         ENDORSE_COUNT#                  total (atomic counter)
  JURISDICTION#<jurId>      METRIC#<metricId>#<period>      value, n, ci_low, ci_high
  AUDIT#<ts>#<eventId>      DETAIL#                         actor, action, payload

GSI1 (status index):
  GSI1PK: STATUS#<status>    GSI1SK: METRIC#<metricId>
GSI2 (tier index):
  GSI2PK: TIER#<tier>        GSI2SK: METRIC#<metricId>
GSI3 (endorsements by role):
  GSI3PK: ROLE#<roleId>      GSI3SK: ENDORSE_COUNT#<descCount>
API Surface

Route Table

GET/v1/rolesPUBLIC
GET/v1/roles/:roleId/metricsPUBLIC
GET/v1/metrics/:metricIdPUBLIC
GET/v1/metrics/:metricId/methodologyPUBLIC
GET/v1/metrics/:metricId/endorsementsPUBLIC
POST/v1/metrics/:metricId/endorseAUTH·ANON
DELETE/v1/metrics/:metricId/endorseAUTH·ANON
GET/v1/jurisdictions/:jurId/summaryPUBLIC
GET/v1/jurisdictions/:jurId/metrics/:metricIdPUBLIC
GET/v1/compare?metric=...&states=...PUBLIC
POST/v1/disputesAUTH·ANON
POST/v1/research/dua/requestAUTH·VERIFIED
GET/v1/research/catalogAUTH·DUA
GET/v1/audit/log?since=...AUTH·ADMIN
IAM Posture

Least-Privilege Roles

lambda-public-read:
  - dynamodb:Query (GSI1, GSI2)
  - dynamodb:GetItem (ROLE#, METRIC#)
  - kms:Decrypt (public CMK)

lambda-endorse:
  - dynamodb:UpdateItem (atomic counter)
  - dynamodb:PutItem (AUDIT#)
  - cognito-identity:GetId

lambda-research-dua:
  - s3:GetObject (research-exports/*)
  - kms:Decrypt (research CMK)
  - STS: short-lived (max 1h)

lambda-admin:
  - dynamodb:* (audit table only)
  - cloudtrail:LookupEvents
Secrets

SSM Parameter Namespace

/mcc/prod/db/table-name
/mcc/prod/db/audit-table
/mcc/prod/kms/public-cmk-arn
/mcc/prod/kms/research-cmk-arn
/mcc/prod/auth/cognito-pool-id
/mcc/prod/auth/cognito-client-id
/mcc/prod/alerts/slack-webhook  [SecureString]
/mcc/prod/research/dua-webhook  [SecureString]

Never hardcode. Never commit.
Rotation: 90 days for SecureString.
Endorsement Handler

Lambda Sample

// src/handlers/endorse.ts
import { APIGatewayProxyHandler } from 'aws-lambda';
import { DynamoDBClient } from '@aws-sdk/client-dynamodb';
import { DynamoDBDocumentClient, UpdateCommand } from '@aws-sdk/lib-dynamodb';

const ddb = DynamoDBDocumentClient.from(new DynamoDBClient({}));
const TABLE = process.env.TABLE_NAME!;

export const handler: APIGatewayProxyHandler = async (evt) => {
  const metricId = evt.pathParameters?.metricId;
  const identityId = evt.requestContext.identity.cognitoIdentityId;
  if (!metricId || !identityId) return { statusCode: 400, body: 'bad request' };

  try {
    await ddb.send(new UpdateCommand({
      TableName: TABLE,
      Key: { PK: `METRIC#${metricId}`, SK: `ENDORSEMENT#${identityId}` },
      UpdateExpression: 'SET endorsedAt = :ts, #src = :src',
      ExpressionAttributeNames: { '#src': 'source' },
      ExpressionAttributeValues: { ':ts': Date.now(), ':src': 'web' },
      ConditionExpression: 'attribute_not_exists(endorsedAt)'
    }));
    await ddb.send(new UpdateCommand({
      TableName: TABLE,
      Key: { PK: `METRIC#${metricId}`, SK: 'ENDORSE_COUNT#' },
      UpdateExpression: 'ADD total :one',
      ExpressionAttributeValues: { ':one': 1 }
    }));
    return { statusCode: 200, body: JSON.stringify({ ok: true }) };
  } catch (e: any) {
    if (e.name === 'ConditionalCheckFailedException') {
      return { statusCode: 409, body: 'already endorsed' };
    }
    return { statusCode: 500, body: 'internal' };
  }
};
Deployment

Rollout Phases

PHASE 1

Read-only

Static catalog, no endorsements. Methodology review window opens.

PHASE 2

Endorsement

Anon Cognito identities. Endorsements persist. Audit trail active.

PHASE 3

MO Pilot

Three counties onboarded. Tier A jurisdiction dashboards live.

PHASE 4

Research

DUA endpoint opens. First academic partnership. Peer-reviewed methodology.

PHASE 5

Multistate

Schema adopted in 3+ states. JTA model legislation published.

§ 06

Governance & Risk

A transparency platform without governance is an attack surface. These are the structures that make the catalog defensible.

Structure

Methodology Board

No single jurisdiction, firm, or advocacy organization may hold more than 20% of board seats. Public disclosure of funding sources is required. A firewall separates CoTrackPro commercial interests from published metrics.

Seat 01 — 03

Academic

Three researchers in family law, child development, or social policy from accredited institutions. Rotating three-year terms.

Seat 04 — 05

Judicial

Two retired family court judges with jurisdictional diversity. No active judges to prevent conflicts.

Seat 06 — 07

Bar

Two family law practitioners nominated by state bar family law sections. One must represent low-income clients.

Seat 08 — 09

Advocacy

One domestic violence survivor advocate and one fathers' rights representative — intentional balance.

Seat 10

Parent

One lived-experience parent member with no active family court case, rotating annually.

Seat 11

Child Welfare

One licensed child welfare or mental health professional with trauma-informed credentials.

Process

Metric Adoption Workflow

STEP 01

Propose

Board member or public submits metric with draft methodology.

STEP 02

Review

Data Ethics Review assesses re-identification risk and harm potential.

STEP 03

Public Comment

60-day open comment period. All comments logged and published.

STEP 04

Board Vote

Two-thirds majority required. Dissents published with the decision.

STEP 05

Publish

Methodology frozen, versioned, and snapshot to immutable storage.

§ 07

Risk Register

What could go wrong. What we do about it.

Severity · High
Judicial independence challenge

Courts may challenge judge-level metrics as infringing judicial independence doctrines.

Mitigation: Start with court-level aggregates only. Judge-level metrics require methodology board sign-off and state judicial conference coordination before publication.

Severity · Critical
DV survivor re-identification

Protective order data published at small-county level could expose protected persons.

Mitigation: VAWA-aware pipeline. Suppress counties with fewer than 25 PO cases/quarter. Differential privacy noise mandatory. Never publish location granularity.

Severity · High
Adversarial use by high-conflict litigants

Metrics weaponized to harass judges, attorneys, or opposing parties.

Mitigation: No individual-name rankings. Rate-limit API. Terms of use prohibit use in pending litigation without disclosure. Dispute process for every data point.

Severity · Medium
Media misinterpretation

Journalists report numbers without methodology context, creating misleading stories.

Mitigation: Methodology link published with every metric. Confidence intervals mandatory on every visualization. Press kit explains limitations.

Severity · Medium
State bar complaint on attorney data

Attorney-level performance metrics draw ethics complaints.

Mitigation: Attorney-level data lives only in Tier B with DUA. No public attorney rankings. Peer benchmarks return only to the attorney themselves.

Severity · Medium
Funding capture

A single funder or interest group influences metric selection.

Mitigation: Governance charter caps any funder at 20%. Public funding disclosure. Two-thirds board supermajority for metric adoption.

Severity · Low
Perceived CoTrackPro bias

Catalog seen as favoring one parent type due to platform origin.

Mitigation: Every compliance metric is bilateral — measured in both directions. Neutrality audit annually. Spin out to JTA or nonprofit at scale.

Severity · Low
Data drift

State data schemas change, breaking comparability over time.

Mitigation: Versioned schemas. Every published metric carries its schema version. Break notifications sent to subscribers of affected metrics.

The Pilot · Show-Me Transparency

Missouri First.
Because Reform Starts Where You Can Reach It.

Missouri has the right ingredients: a centralized Office of State Courts Administrator, three diverse pilot counties within a half-day's drive of each other, a cooperative state bar family law section, and active academic partners at Mizzou, Wash U, and SLU law schools. This is the blueprint for a 36-month pilot that proves the catalog works — then scales.

3
Pilot Counties
36
Month Timeline
$1.4M
Total Program Cost
§ 08

Pilot County Selection

Three counties chosen for jurisdictional diversity. Each validates a different scale and population profile before the framework generalizes statewide.

ASSUMPTION: Filing volumes below are representative of Missouri OSCA annual statistical reports. Production values should be confirmed against the most recent Missouri Judicial Report before finalizing MOUs with each circuit.

Tier 1 · Urban High-Volume

St. Louis County

Population: ~1.0M · 21st Judicial Circuit
Highest family court volume in the state. Diverse demographics across north/central/south St. Louis County. Proximity to Wash U and SLU enables active research partnership. Tests the framework at scale.
Case volume ~8,500/yr
Judges 8 family-assigned
Pro se rate ~58%
Partner Wash U Law
Tier 2 · Mid-Size Regional

Greene County

Population: ~300K · 31st Judicial Circuit
Springfield anchor. Represents Ozarks region and mid-Missouri population patterns. Regional court hub for surrounding rural counties. Mid-volume docket tests the framework without urban complexity.
Case volume ~2,600/yr
Judges 3 family-assigned
Pro se rate ~64%
Partner MSU Public Affairs
Tier 3 · University Town

Boone County

Population: ~180K · 13th Judicial Circuit
Columbia / University of Missouri home. Smaller docket supports rapid iteration on methodology. Mizzou Law and School of Social Work provide native research capacity. Ideal for methodology refinement before rollout.
Case volume ~1,400/yr
Judges 2 family-assigned
Pro se rate ~51%
Partner Mizzou Law
§ 09

Proposed Statute Language

Draft amendments to Missouri Revised Statutes enabling metric reporting authority and de-identified data sharing. Written for introduction through the Judiciary Committee.

ASSUMPTION: Section numbering below reflects current RSMo chapters but should be verified with Missouri Legislative Research before drafting bill text. This is educational/policy framing — not legal drafting — and should be reviewed by Missouri-licensed legislative counsel before introduction.

Proposed RSMo § 476.058 (new)

Family Court Metric Reporting Authority

The Office of State Courts Administrator shall develop, maintain, and publish annually a set of standardized family court operational and outcome metrics covering case flow, disposition, and enforcement. Published metrics shall be aggregated at the circuit or county level, shall employ de-identification standards consistent with applicable federal law, and shall include methodology, confidence intervals, and known limitations for each metric.
Establishes OSCA authority without mandating judge-level or individual-case publication. Leaves methodology to OSCA working group in consultation with judicial conference and stakeholder advisory board. Parallels authority structure in RSMo § 476.055 (general OSCA authority).
Proposed RSMo § 452.317 (new subsection)

Parenting Plan Compliance Data · Voluntary Reporting

Parties to a dissolution, paternity, or modification action involving minor children may voluntarily submit documented parenting time compliance data to a platform designated by the Office of State Courts Administrator. Such data shall be aggregated, de-identified, and published only at the county level. Individual compliance data shall not be admissible as evidence in any proceeding without a party's express written consent and shall not create a rebuttable presumption of compliance or non-compliance.
Critical evidentiary shield. Protects parents from adversarial weaponization of their own compliance logs. Mirrors the structure of RSMo § 452.375.5(1) which protects communications in mediation.
Proposed RSMo § 476.059 (new)

Research Data Use Agreement Authority

The Office of State Courts Administrator may enter into data use agreements with accredited academic institutions or nonprofit research organizations to provide access to de-identified case-level data for research purposes. All such agreements shall require IRB approval, publication of methodology, and a prohibition on re-identification attempts, with penalties for violation including permanent ineligibility for future data access.
Opens the Tier B research channel. Re-identification prohibition modeled on the Health Insurance Portability and Accountability Act Safe Harbor provisions at 45 CFR § 164.514.
Proposed RSMo § 455.085 (new subsection)

Protective Order Data Confidentiality

Notwithstanding any other provision of this chapter, data concerning protective orders issued under this chapter shall not be published at any geographic granularity that would permit the re-identification of petitioners. The Office of State Courts Administrator shall apply a minimum suppression threshold of twenty-five protective order petitions per reporting period per geographic unit.
VAWA-aligned protection. Critical for DV survivor safety. Prevents even well-intentioned transparency from endangering protected persons in smaller counties.
§ 10

OSCA Data-Sharing MOU

Template memorandum of understanding between CoTrackPro (or a designated nonprofit fiscal agent) and the Missouri Office of State Courts Administrator.

Memorandum of Understanding

Between the Missouri Office of State Courts Administrator ("OSCA") and [CoTrackPro LLC or designated 501(c)(3) fiscal agent] ("Platform Partner"), for the purpose of piloting the Family Court Metric Catalog in three Missouri judicial circuits.
Article I
Purpose and Scope

This MOU establishes the terms under which OSCA will provide de-identified aggregate family court data to Platform Partner for publication in the public Metric Catalog, and under which Platform Partner will provide user-contributed compliance data back to OSCA for judicial administration research. Scope is limited to the 13th, 21st, and 31st Judicial Circuits for a 36-month pilot period.

Article II
Data Elements Provided by OSCA
  • Quarterly aggregate case filings by case type, disaggregated by month and circuit
  • Median and P90 time-to-disposition by case type and circuit
  • Clearance rates, rolling quarterly
  • Mediation referral and completion counts
  • Pro se participation rates by case type
  • Continuance frequencies per case
  • No judge-level, party-level, or individual-case data is provided under this agreement
Article III
Data Elements Provided by Platform Partner
  • Aggregate parenting time compliance rates, county-level, opt-in user base only
  • Aggregate child contact gap distributions
  • Aggregate enforcement-request-to-action timelines (user-reported)
  • No individual case, party, or identifier data is provided under this agreement
  • Minimum k-anonymity threshold of 10 applied to all published cells
Article IV
Methodology and Governance

All published metrics shall conform to methodology approved by the Methodology Board as constituted in the Catalog Governance Charter (§ 06). OSCA reserves the right to review and comment on any publication involving OSCA-provided data prior to release, with a 15-business-day review window. Changes to published methodology require 60-day public comment before adoption.

Article V
Refresh Cadence

OSCA shall provide quarterly data transfers within 45 days of quarter-end. Platform Partner shall publish aggregate user-contributed metrics on the same quarterly cadence with methodology, confidence intervals, and sample size disclosed for each cell.

Article VI
Audit Rights

OSCA may request an independent audit of Platform Partner's de-identification pipeline once per calendar year at Platform Partner's expense. Platform Partner may request an audit of OSCA data provenance on the same basis. Audit results shall be published publicly.

Article VII
Prohibited Uses
  • No published data may be used to rank or compare named individual judges, attorneys, or other court personnel
  • No re-identification attempts are permitted; violations terminate this MOU immediately
  • No commercial resale of raw data; published aggregates remain public domain
  • No use in active litigation without disclosure to all parties and the court
Article VIII
Term and Termination

Initial term of 36 months commencing on execution. Either party may terminate for cause with 90 days' notice, or without cause with 180 days' notice. Upon termination, Platform Partner shall cease new publication using OSCA data within 30 days; historical publications remain available with clear period-of-coverage labels. Renewal requires affirmative agreement by both parties.

Article IX
Indemnification and Liability

Each party is responsible for its own acts and omissions. Platform Partner indemnifies OSCA against claims arising from Platform Partner's de-identification failures. OSCA retains sovereign immunity consistent with Missouri law. Neither party is liable for consequential or indirect damages.

§ 11

Budget · 36-Month Pilot

Three-year cost structure assuming three-county pilot, two-person core team, modest infrastructure, and honoraria for the Methodology Board.

Category Line Item Year 1 Year 2 Year 3
Personnel Program Director (0.75 FTE) $112,500 $115,875 $119,350
Data / Methodology Engineer (1.0 FTE) $140,000 $144,200 $148,525
Privacy / Audit Contractor (part-time) $40,000 $42,000 $44,100
Subtotal · Personnel $292,500 $302,075 $311,975
Infrastructure AWS (DynamoDB, Lambda, S3, KMS, CloudWatch) $18,000 $22,000 $28,000
Software licenses & tooling $8,500 $8,500 $9,000
Third-party security audit (annual) $12,000 $12,000 $13,000
Subtotal · Infrastructure $38,500 $42,500 $50,000
Governance Methodology Board honoraria (11 seats, 4 meetings/yr) $33,000 $33,000 $33,000
Data Ethics Review (external) $18,000 $18,000 $18,000
Subtotal · Governance $51,000 $51,000 $51,000
Outreach Stakeholder convenings (4/yr in-state) $16,000 $18,000 $20,000
Publications, website, translation (ES) $22,000 $18,000 $18,000
Subtotal · Outreach $38,000 $36,000 $38,000
Reserve Contingency (10% of operating) $42,000 $43,160 $45,100
Annual Total $462,000 $474,735 $496,075
Three-Year Total $1,432,810
Funding Strategy

Blended Capital Stack

No single funder exceeds 20% of program costs per the governance charter. Target mix: state appropriation (~30%), philanthropic family justice funders (~35%), research grants via academic partners (~20%), operating subscription from participating circuits (~15%).

Matching Precedent

Comparable Programs

Scale comparable to the National Center for State Courts' performance measurement initiatives and early Court Statistics Project pilots. Per-county annual cost roughly aligns with existing OSCA data-warehouse operating budgets at similar scope.

§ 12

Stakeholder Call Sheet

The people whose buy-in determines whether this pilot launches. In approximate order of first outreach.

Priority · Highest · First 30 Days
OSCA Statistical Research Staff
Office of State Courts Administrator · Research & Statistics Division
Exploratory conversation. Do not propose. Ask what they already produce, what constraints they work under, and what would make their lives easier. Listen for 80% of the meeting.
Talking Points We want to reduce duplicate work, not create new burden · Aggregation and de-identification happen on our side · Methodology governance gives OSCA veto power · Published data credits OSCA as source
Priority · High · First 60 Days
Missouri Bar Family Law Section
Section Council · Chairs of Continuing Legal Education & Policy Committees
Seek endorsement in principle and nomination of practitioner seats on the Methodology Board. Offer CLE presentations as a two-way information exchange.
Talking Points Attorney-level data stays in Tier B with DUA (no public rankings) · Practitioner-benchmark access helps members · Section nominates two board seats, one requiring low-income client representation
Priority · High · First 60 Days
Presiding Judges · Pilot Circuits
21st (St. Louis Co.), 13th (Boone), 31st (Greene)
Circuit-level agreement to participate in the pilot. No judge-level publication for the pilot duration. Judicial self-assessment dashboards available privately to each jurist who opts in.
Talking Points Nothing about your judges is published · Docket-management metrics are already yours · Self-assessment tools support judicial development · You can withdraw anytime with 90 days' notice
Priority · Medium · 90 Days
Judiciary Committee Members
Missouri Senate & House Judiciary Committees
Informational visits. No bill introduction until pilot is live and generating data. Build relationships, share the Catalog, invite questions. Return in Year 2 with pilot findings and draft language.
Talking Points Start with authorization language, not mandate · Privacy safeguards written in statute · VAWA-aligned protections · Cost offset through academic grant partnerships · Show-me first, scale second
Priority · Medium · 90 Days
Missouri Coalition Against Domestic & Sexual Violence
MOCADSV Policy Director · Member Agency Leadership
Review of all DV-adjacent metrics and protective order data handling. Offer a seat on the Methodology Board. Their endorsement is the single most important credibility signal for the framework.
Talking Points Protective order data suppressed below n=25 per quarter · VAWA-aligned pipeline · DV survivor advocate has a board seat by design · Bilateral violation tracking prevents one-sided weaponization
Priority · Medium · 120 Days
Mizzou Law · Family Violence Clinic
Clinical Faculty · Research Partnership Lead
Academic research partnership for Boone County pilot. IRB coordination, student researcher placement, first peer-reviewed publication target in Year 2.
Talking Points Published methodology, reproducible findings · Student research opportunities · First DUA partnership · Named co-authorship on methodology papers
Priority · Medium · 120 Days
Wash U & SLU Law Schools
Family Law Faculty · Clinical Program Directors
Parallel partnership for St. Louis County pilot. Larger docket supports disparity analysis research. Joint submission for research funding to Arnold Ventures, Ewing Marion Kauffman Foundation, or similar.
Talking Points Largest urban family court docket in state · Demographic outcome differential research · Joint grant submission opportunities · CLE co-programming
Priority · Ongoing
Missouri Fathers & Families
Parent Advocacy Organizations · Multiple
Proactive engagement with parent advocacy across the spectrum. Equal outreach to mother-led and father-led organizations ensures bilateral credibility from day one.
Talking Points Every compliance metric is bilateral by design · Parent seat on Methodology Board · Neutrality audit annually · Both sides measured equally, no exceptions
§ 13

Communications Timeline

Sequencing for announcements, academic partnerships, and the first public data release. Designed to build credibility before making claims.

Month 01 — 03
Quiet Stakeholder Alignment

No public announcements. All energy into OSCA conversations, bar section briefings, and presiding judge meetings. Draft methodology published for private stakeholder review only. Success metric: three signed circuit letters of participation.

Month 04 — 06
Methodology Board Convened

Public announcement of the board composition and charter. First board meeting publicly noticed. 60-day public comment window opens on draft methodology. Success metric: all 11 board seats filled, first methodology vote completed.

Month 07 — 09
Static Catalog Launch

The Catalog goes live as a read-only publication. No data yet — just the framework, the methodology, the governance, and the MOU template. Position as a civic infrastructure proposal, not a product. Success metric: endorsements from MOCADSV, state bar section, and at least two sitting legislators.

Month 10 — 12
First MOUs Signed

OSCA and circuit MOUs executed. Data pipelines built. First internal-only dashboards for pilot circuits. Academic partnerships formalized with DUAs. Success metric: first OSCA data transfer received and processed.

Month 13 — 18
First Public Data Release

Tier A jurisdiction dashboards published. Accompanied by methodology papers, press kit, stakeholder testimonials, and interactive comparison with pre-existing public OSCA reports. Coordinated announcements across all three circuits on the same day. Success metric: coverage in St. Louis Post-Dispatch, Kansas City Star, and Missouri Lawyers Media.

Month 19 — 24
First User-Contributed Metrics

Tier C opt-in expands. Parenting time compliance rate becomes the first user-generated metric published at county aggregate. The truth-layer metric nobody else has. Expect national coverage. Success metric: 500+ opted-in participants contributing across the three circuits.

Month 25 — 30
Research Partnership Publications

First peer-reviewed papers from Mizzou and Wash U partnerships. Present at AFCC, National Conference on Courts and Technology, and Missouri Bar Annual Meeting. Begin conversations with Illinois, Kansas, and Iowa court administrators about schema adoption. Success metric: three peer-reviewed publications, two conference keynotes.

Month 31 — 36
Legislative Advancement

With 30 months of operational data and published research, return to the Judiciary Committee. Introduce RSMo amendments through a carrying legislator. Simultaneous introduction in one neighboring state demonstrates the replication model. Success metric: bill introduced in Missouri, MOU signed in one additional state.

§ 14

Success Criteria

What makes the pilot worth doing, measured at the 36-month mark.

Minimum Viable

The Floor

Three circuits participating. First Tier A dashboards published. Methodology Board operating. One peer-reviewed paper. MOCADSV endorsement retained. No re-identification incidents. Pilot continues into Year 4 with sustainable funding.

Target

The Midpoint

All floor criteria plus first Tier C metric published with 500+ participants. Bill introduced in Missouri. Second state signs MOU. Three peer-reviewed publications. State bar family law section adopts catalog as reference in member practice resources. First attorney-level benchmarks returning privately to practitioners.

Stretch

The Ceiling

All target criteria plus RSMo amendments passed. Five-state schema consortium formed. Arnold Ventures or Pew Charitable Trusts grant secured for national expansion. National Center for State Courts adopts elements. JTA publishes model legislation. Catalog becomes the standard reference in family court reform literature.

Set in Atkinson Hyperlegible · Optimized for low-vision reading
Framework v0.3 · Missouri Implementation Blueprint
A CoTrackPro Civic Publication
Saved