Chain Steps
Data license: Public court records
4 rows where chain_id = "POST-1"
This data as json, CSV (advanced)
Suggested facets: date, date (date)
| Link | chain_id | step_number | filing_id | date | description | party |
|---|---|---|---|---|---|---|
| POST-1,1 | Post-Judgment Motions POST-1 | 1 | 65 65 | 2024-01-19 | Mtn for JNOV | Kassab |
| POST-1,2 | Post-Judgment Motions POST-1 | 2 | 66 66 | 2024-01-19 | Motion for New Trial | Kassab |
| POST-1,3 | Post-Judgment Motions POST-1 | 3 | 67 67 | 2024-02-02 | Pohl objections to JNOV | Pohl |
| POST-1,4 | Post-Judgment Motions POST-1 | 4 | 68 68 | 2024-02-02 | Pohl response to modify judgment | Pohl |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE chain_steps (
chain_id TEXT REFERENCES motion_chains(chain_id),
step_number INTEGER,
filing_id INTEGER REFERENCES filings(filing_id),
date TEXT,
description TEXT,
party TEXT,
PRIMARY KEY (chain_id, step_number)
);