documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2001-9643" 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-9643-0007 | FMCSA | ESC - In the Matter of E.F. Corporation d/b/a West Motor Freight of PA - Motion for Final Order FMCSA-2001-9643 | In the Matter of E.F. Corporation d/b/a West Motor Freight of PA - Notification of Settlement | Notice | Notice | 2001-11-20T05:00:00Z | 2001 | 11 | 2001-11-20T05:00:00Z | 2001-11-21T04:59:59Z | 2024-11-12T03:53:03Z | 1 | 0 | 0900006480343e41 | |
| FMCSA-2001-9643-0006 | FMCSA | ESC - In the Matter of E.F. Corporation d/b/a West Motor Freight of PA - Motion for Final Order FMCSA-2001-9643 | In the Matter of E.F. Corporation d/b/a West Motor Freight of PA - Updated Response to Request for Status | Other | Response(s) | 2001-09-14T04:00:00Z | 2001 | 9 | 2001-09-14T04:00:00Z | 2001-09-15T03:59:59Z | 2024-11-12T03:53:03Z | 1 | 0 | 0900006480343e40 | |
| FMCSA-2001-9643-0005 | FMCSA | ESC - In the Matter of E.F. Corporation d/b/a West Motor Freight of PA - Motion for Final Order FMCSA-2001-9643 | In the Matter of E.F. Corporation d/b/a West Motor Freight of PA - Response to Request for Status | Other | Response(s) | 2001-07-09T04:00:00Z | 2001 | 7 | 2001-07-09T04:00:00Z | 2001-07-11T03:59:59Z | 2024-11-12T03:53:03Z | 1 | 0 | 0900006480343e3f | |
| FMCSA-2001-9643-0004 | FMCSA | ESC - In the Matter of E.F. Corporation d/b/a West Motor Freight of PA - Motion for Final Order FMCSA-2001-9643 | In the Matter of E.F. Corporation d/b/a West Motor Freight of PA - Order | Other | Order | 2001-06-29T04:00:00Z | 2001 | 6 | 2001-06-29T04:00:00Z | 2001-06-30T03:59:59Z | 2024-11-12T03:53:03Z | 1 | 0 | 0900006480343e3e | |
| FMCSA-2001-9643-0003 | FMCSA | ESC - In the Matter of E.F. Corporation d/b/a West Motor Freight of PA - Motion for Final Order FMCSA-2001-9643 | In the Matter of E.F. Corporation d/b/a West Motor Freight of PA - Entry of Appearance and Request for Extension to Respond to Motion forFinal Order Filed by FMCSA and to Place this Case in an Inactive Docket Status | Other | Request | 2001-06-11T04:00:00Z | 2001 | 6 | 2001-06-11T04:00:00Z | 2001-06-12T03:59:59Z | 2024-11-12T03:53:03Z | 1 | 0 | 0900006480343e3d | |
| FMCSA-2001-9643-0002 | FMCSA | ESC - In the Matter of E.F. Corporation d/b/a West Motor Freight of PA - Motion for Final Order FMCSA-2001-9643 | In the Matter of E. F. Corporation d/b/a West Motor Freight of PA - Request for Extension of Time to File Reply to FHWA Motion for Final Order | Other | Request | 2001-05-29T04:00:00Z | 2001 | 5 | 2001-05-29T04:00:00Z | 2001-05-30T03:59:59Z | 2024-11-12T03:53:02Z | 1 | 0 | 0900006480343e3c | |
| FMCSA-2001-9643-0001 | FMCSA | ESC - In the Matter of E.F. Corporation d/b/a West Motor Freight of PA - Motion for Final Order FMCSA-2001-9643 | In the Matter of E.F. Corporation d/b/a West Motor Freight of PA - Motion for Final Order and Memorandum of Law in Support of Motion | Other | Motion | 2001-05-11T04:00:00Z | 2001 | 5 | 2001-05-11T04:00:00Z | 2001-05-12T03:59:59Z | 2024-11-12T03:53:02Z | 1 | 0 | 0900006480343e34 |
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;