documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FMCSA-2014-0390" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, open_for_comment, withdrawn, posted_date (date), comment_start_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-2014-0390-0011 | FMCSA | None FMCSA-2014-0390 | In the Matter of Eagle Transport Corporation - Order Approving Settlement | Other | Order | 2015-09-24T04:00:00Z | 2015 | 9 | 2015-09-24T04:00:00Z | 2024-11-11T21:02:59Z | 1 | 0 | 0900006481c8ba54 | ||
| FMCSA-2014-0390-0010 | FMCSA | None FMCSA-2014-0390 | In the Matter of Eagle Transport Corporation - Dismissal | Other | Dismissal | 2015-08-12T04:00:00Z | 2015 | 8 | 2015-08-12T04:00:00Z | 2024-11-12T05:45:20Z | 1 | 0 | 0900006481c1898d | ||
| FMCSA-2014-0390-0009 | FMCSA | None FMCSA-2014-0390 | In the Matter of Eagle Transport Corporation - Notification of Settlement | Other | Notification of Settlement | 2015-08-10T04:00:00Z | 2015 | 8 | 2015-08-10T04:00:00Z | 2024-11-11T21:08:29Z | 1 | 0 | 0900006481bc8caa | ||
| FMCSA-2014-0390-0008 | FMCSA | None FMCSA-2014-0390 | In the Matter of Eagle Transport Corporation - Order Referring Matter to Binding Arbitration | Other | Order | 2015-07-10T04:00:00Z | 2015 | 7 | 2015-07-10T04:00:00Z | 2024-11-11T21:04:30Z | 1 | 0 | 0900006481b76812 | ||
| FMCSA-2014-0390-0007 | FMCSA | None FMCSA-2014-0390 | In the Matter of Eagle Transport Corporation - Reply to Second Interim Order | Other | Reply | 2015-02-23T05:00:00Z | 2015 | 2 | 2015-02-23T05:00:00Z | 2024-11-12T05:35:19Z | 1 | 0 | 0900006481a100ac | ||
| FMCSA-2014-0390-0006 | FMCSA | None FMCSA-2014-0390 | In the Matter of Eagle Transport Corporation - Second Interim Order | Other | Order | 2015-02-11T05:00:00Z | 2015 | 2 | 2015-02-11T05:00:00Z | 2024-11-07T23:18:02Z | 1 | 0 | 09000064819fe814 | ||
| FMCSA-2014-0390-0005 | FMCSA | None FMCSA-2014-0390 | In the Matter of Eagle Transport Corp. - Regional Field Administrator's Motion for Default or in the Alternative Submission of Evidence | Other | Motion | 2015-01-15T05:00:00Z | 2015 | 1 | 2015-01-15T05:00:00Z | 2024-11-11T20:57:01Z | 1 | 0 | 09000064819c9485 | ||
| FMCSA-2014-0390-0004 | FMCSA | None FMCSA-2014-0390 | In the Matter of Eagle Transport Corporation - Carrier's Reply to Interim Order | Other | Reply | 2015-01-05T05:00:00Z | 2015 | 1 | 2015-01-05T05:00:00Z | 2024-11-12T05:29:53Z | 1 | 0 | 090000648198d189 | ||
| FMCSA-2014-0390-0003 | FMCSA | None FMCSA-2014-0390 | In the Matter of Eagle Transport Corporation - Interim Order | Other | 2014-12-17T00:00:00Z | 2014 | 12 | 2024-11-12T05:29:05Z | 0 | 1 | 090000648197fa0f | ||||
| FMCSA-2014-0390-0002 | FMCSA | None FMCSA-2014-0390 | In the Matter of Eagle Transport Corporation - Interim Order | Other | Order | 2014-12-11T05:00:00Z | 2014 | 12 | 2014-12-11T05:00:00Z | 2024-11-12T05:30:30Z | 1 | 0 | 0900006481968f26 | ||
| FMCSA-2014-0390-0001 | FMCSA | None FMCSA-2014-0390 | In the Matter of Eagle Transport Corporation - Regional Field Administrator's Consent to Arbitration | Other | Consent | 2014-09-29T04:00:00Z | 2014 | 9 | 2014-09-29T04:00:00Z | 2024-11-07T23:10:04Z | 1 | 0 | 090000648189946b |
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;