Chain Steps
Data license: Public court records
4 rows where chain_id = "CC-1"
This data as json, CSV (advanced)
Suggested facets: date (date)
| Link | chain_id | step_number | filing_id | date | description | party |
|---|---|---|---|---|---|---|
| CC-1,1 | Counterclaim Dismissal CC-1 | 1 | 22 22 | 2021-12-07 | Pohl MSJ on counterclaims | Pohl |
| CC-1,2 | Counterclaim Dismissal CC-1 | 2 | 23 23 | 2022-01-31 | Kassab response to MSJ | Kassab |
| CC-1,3 | Counterclaim Dismissal CC-1 | 3 | 24 24 | 2022-02-04 | Pohl reply ISO MSJ | Pohl |
| CC-1,4 | Counterclaim Dismissal CC-1 | 4 | 25 25 | 2022-02-07 | ORDER: CCs dismissed with prejudice | Court |
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)
);