Chain Steps
Data license: Public court records
8 rows where chain_id = "TCPA-1"
This data as json, CSV (advanced)
Suggested facets: date, date (date)
| Link | chain_id | step_number | filing_id | date | description | party |
|---|---|---|---|---|---|---|
| TCPA-1,1 | TCPA Motion to Dismiss TCPA-1 | 1 | 3 3 | 2018-10-15 | Pohl affidavit in support | Pohl |
| TCPA-1,2 | TCPA Motion to Dismiss TCPA-1 | 2 | 5 5 | 2018-10-24 | Pohl deposition (Kassab exhibit) | Kassab |
| TCPA-1,3 | TCPA Motion to Dismiss TCPA-1 | 3 | 6 6 | 2018-10-24 | Bar grievance exhibit | Kassab |
| TCPA-1,4 | TCPA Motion to Dismiss TCPA-1 | 4 | 7 7 | 2018-10-24 | TCPA Motion to Dismiss | Kassab |
| TCPA-1,5 | TCPA Motion to Dismiss TCPA-1 | 5 | 9 9 | 2018-11-01 | Pohl response opposing TCPA | Pohl |
| TCPA-1,6 | TCPA Motion to Dismiss TCPA-1 | 6 | 10 10 | 2018-11-05 | Kassab objections to evidence | Kassab |
| TCPA-1,7 | TCPA Motion to Dismiss TCPA-1 | 7 | 13 13 | 2018-11-19 | Supplemental TCPA MTD | Kassab |
| TCPA-1,8 | TCPA Motion to Dismiss TCPA-1 | 8 | 15 15 | 2018-12-26 | Pohl response to supp. TCPA | 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)
);