Chain Steps
Data license: Public court records
7 rows where chain_id = "JDGMT-1"
This data as json, CSV (advanced)
Suggested facets: date (date)
| Link | chain_id | step_number | filing_id | date | description | party |
|---|---|---|---|---|---|---|
| JDGMT-1,1 | Final Judgment JDGMT-1 | 1 | 58 58 | 2023-09-05 | Mtn for entry of final judgment | Pohl |
| JDGMT-1,2 | Final Judgment JDGMT-1 | 2 | 59 59 | 2023-09-15 | Kassab objection to proposed judgment | Kassab |
| JDGMT-1,3 | Final Judgment JDGMT-1 | 3 | 60 60 | 2023-09-18 | Pohl reply ISO final judgment | Pohl |
| JDGMT-1,4 | Final Judgment JDGMT-1 | 4 | 61 61 | 2023-09-20 | Kassab letter to judge | Kassab |
| JDGMT-1,5 | Final Judgment JDGMT-1 | 5 | 62 62 | 2023-09-22 | Pohl response to letter | Pohl |
| JDGMT-1,6 | Final Judgment JDGMT-1 | 6 | 63 63 | 2023-10-23 | Pohl request for ruling | Pohl |
| JDGMT-1,7 | Final Judgment JDGMT-1 | 7 | 64 64 | 2023-12-22 | FINAL JUDGMENT: $6,310,039.34 | 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)
);