Chain Steps
Data license: Public court records
1 row where chain_id = "TCPA-1", filing_id = 9 and party = "Pohl"
This data as json, CSV (advanced)
Suggested facets: date (date)
| Link | chain_id | step_number | filing_id | date | description | party |
|---|---|---|---|---|---|---|
| TCPA-1,5 | TCPA Motion to Dismiss TCPA-1 | 5 | 9 9 | 2018-11-01 | Pohl response opposing 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)
);