documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2001-10647" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
| id | agency_id | docket_id | title | document_type | subtype | posted_date ▲ | posted_year | posted_month | comment_start_date | comment_end_date | last_modified | fr_doc_num | open_for_comment | withdrawn | object_id |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FMCSA-2001-10647-0007 | FMCSA | MSC - In the Matter of Cresco Lines, Inc. - Motion for Entry of Default Judgment FMCSA-2001-10647 | In the Matter of Cresco Lines, Inc. - Order Terminating Proceeding | Other | Order | 2002-10-15T04:00:00Z | 2002 | 10 | 2002-10-15T04:00:00Z | 2002-10-17T03:59:59Z | 2024-11-12T02:18:43Z | 1 | 0 | 09000064803024b9 | |
| FMCSA-2001-10647-0006 | FMCSA | MSC - In the Matter of Cresco Lines, Inc. - Motion for Entry of Default Judgment FMCSA-2001-10647 | In the Matter of Cresco Lines, Inc. - Motion to Dismiss | Other | Motion | 2002-07-23T04:00:00Z | 2002 | 7 | 2002-07-23T04:00:00Z | 2002-07-24T03:59:59Z | 2024-11-12T02:18:33Z | 1 | 0 | 09000064803024b8 | |
| FMCSA-2001-10647-0005 | FMCSA | MSC - In the Matter of Cresco Lines, Inc. - Motion for Entry of Default Judgment FMCSA-2001-10647 | In the Matter of Cresco Lines, Inc. - Reply to Respondent's Motions to Strike Portions of the Field Adminstrator's Memorandum, the Affidavit in Support of its Motion and Exhibit D-1 | Other | Reply | 2001-12-20T05:00:00Z | 2001 | 12 | 2001-12-20T05:00:00Z | 2001-12-21T04:59:59Z | 2024-11-12T02:18:33Z | 1 | 0 | 09000064803024b7 | |
| FMCSA-2001-10647-0004 | FMCSA | MSC - In the Matter of Cresco Lines, Inc. - Motion for Entry of Default Judgment FMCSA-2001-10647 | In the Matter of Cresco Lines, Inc. - Respondent's Motion to Stay Pending Discovery and Rebuttal to the Field Administrator's Reply to its Motions to Strike | Other | Motion | 2001-11-02T05:00:00Z | 2001 | 11 | 2001-11-02T05:00:00Z | 2001-11-03T04:59:59Z | 2024-11-12T02:18:33Z | 1 | 0 | 09000064803024b6 | |
| FMCSA-2001-10647-0003 | FMCSA | MSC - In the Matter of Cresco Lines, Inc. - Motion for Entry of Default Judgment FMCSA-2001-10647 | In the Matter of Cresco Lines, Inc. - Respondent's Response to the Field Administrator's Motion for Default, or, in the Alternative, Motion for a Final Order and Respondent's Motions to Strike Portions of the Field Administrator's Memorandum | Other | Response(s) | 2001-10-15T04:00:00Z | 2001 | 10 | 2001-10-15T04:00:00Z | 2001-10-16T03:59:59Z | 2024-11-12T02:18:33Z | 1 | 0 | 09000064803024b5 | |
| FMCSA-2001-10647-0002 | FMCSA | MSC - In the Matter of Cresco Lines, Inc. - Motion for Entry of Default Judgment FMCSA-2001-10647 | In the Matter of Cresco Lines, Inc. - Respondent's Agreed Motion for Extension of Time to the Respond to the Field Administrator's Motion for the Entry of a Default Order or in the Alternative, Motion in Opposition to Respondent's Request for a Formal | Other | Motion | 2001-09-26T04:00:00Z | 2001 | 9 | 2001-09-26T04:00:00Z | 2001-09-27T03:59:59Z | 2024-11-12T02:18:33Z | 1 | 0 | 09000064803024b3 | |
| FMCSA-2001-10647-0001 | FMCSA | MSC - In the Matter of Cresco Lines, Inc. - Motion for Entry of Default Judgment FMCSA-2001-10647 | In the Matter of Cresco Lines, Inc. - Motion for Entry of Default Judgment, or in the Alternative, Motion in Opposition to Respondent's Request for a Formal Hearing and a Motion for Final Order | Other | Motion | 2001-09-25T04:00:00Z | 2001 | 9 | 2001-09-25T04:00:00Z | 2001-09-26T03:59:59Z | 2024-11-12T02:18:33Z | 1 | 0 | 09000064803024b2 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE documents (
id TEXT PRIMARY KEY,
agency_id TEXT,
docket_id TEXT REFERENCES dockets(id),
title TEXT,
document_type TEXT,
subtype TEXT,
posted_date TEXT,
posted_year INTEGER,
posted_month INTEGER,
comment_start_date TEXT,
comment_end_date TEXT,
last_modified TEXT,
fr_doc_num TEXT,
open_for_comment INTEGER,
withdrawn INTEGER,
object_id TEXT
);
CREATE INDEX idx_docs_agency ON documents(agency_id);
CREATE INDEX idx_docs_docket ON documents(docket_id);
CREATE INDEX idx_docs_date ON documents(posted_date);
CREATE INDEX idx_docs_year ON documents(posted_year);
CREATE INDEX idx_docs_type ON documents(document_type);
CREATE INDEX idx_docs_frnum ON documents(fr_doc_num);
CREATE INDEX idx_docs_comment_end ON documents(comment_end_date) WHERE comment_end_date IS NOT NULL AND withdrawn = 0;