documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FMCSA-2009-0341" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2009-0341-0009 | FMCSA | MSC - In the Matter of EH Transport - Field Administrator's Objection to Respondent's Request for Formal Hearing FMCSA-2009-0341 | In the Matter of EH Transport - Order Approving Settlement Agreement | Other | Order | 2012-10-19T04:00:00Z | 2012 | 10 | 2012-10-19T04:00:00Z | 2025-10-17T17:46:14Z | 0 | 0 | 0900006481149538 | ||
| FMCSA-2009-0341-0008 | FMCSA | MSC - In the Matter of EH Transport - Field Administrator's Objection to Respondent's Request for Formal Hearing FMCSA-2009-0341 | In the Matter of EH Transport - Second Order Cancelling and Re-Setting the Rule 16 Litigation Scheduling Conference, Re-Directing Rule 26(f) Planning and Submission, and Granting/Denying Other Relief | Other | Order | 2012-09-21T04:00:00Z | 2012 | 9 | 2012-09-21T04:00:00Z | 2025-10-17T17:46:08Z | 0 | 0 | 090000648111dbd9 | ||
| FMCSA-2009-0341-0007 | FMCSA | MSC - In the Matter of EH Transport - Field Administrator's Objection to Respondent's Request for Formal Hearing FMCSA-2009-0341 | In the Matter of EH Transport - Order Cancelling and Re-Setting the Rule 16 Litigation Scheduling Conference, Re-Directing Rule 26(f) Planning and Submission, and Granting/Denying Other Relief | Other | Order | 2012-07-18T04:00:00Z | 2012 | 7 | 2012-07-18T04:00:00Z | 2025-10-17T17:46:03Z | 0 | 0 | 090000648109cbc9 | ||
| FMCSA-2009-0341-0006 | FMCSA | MSC - In the Matter of EH Transport - Field Administrator's Objection to Respondent's Request for Formal Hearing FMCSA-2009-0341 | In the Matter of EH Transport - Order Setting Rule 16 Litigation Scheduling Conference, and Directing Rule 26(f) Planning and Submission | Other | Order | 2012-05-29T04:00:00Z | 2012 | 5 | 2012-05-29T04:00:00Z | 2025-10-17T17:45:31Z | 0 | 0 | 090000648101fa40 | ||
| FMCSA-2009-0341-0005 | FMCSA | MSC - In the Matter of EH Transport - Field Administrator's Objection to Respondent's Request for Formal Hearing FMCSA-2009-0341 | In the Matter of EH Transport - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2012-05-14T04:00:00Z | 2012 | 5 | 2012-05-14T04:00:00Z | 2025-10-17T17:45:26Z | 0 | 0 | 090000648100af03 | ||
| FMCSA-2009-0341-0004 | FMCSA | MSC - In the Matter of EH Transport - Field Administrator's Objection to Respondent's Request for Formal Hearing FMCSA-2009-0341 | In the Matter of EH Transport - Order Appointing Administrative Law Judge | Other | Order | 2012-05-02T04:00:00Z | 2012 | 5 | 2012-05-02T04:00:00Z | 2025-10-17T17:45:15Z | 0 | 0 | 0900006481003978 | ||
| FMCSA-2009-0341-0003 | FMCSA | MSC - In the Matter of EH Transport - Field Administrator's Objection to Respondent's Request for Formal Hearing FMCSA-2009-0341 | In the Matter of EH Transport - Field Administrator's Consent to Respondent's Request for Formal Hearing | Other | Consent | 2012-04-24T04:00:00Z | 2012 | 4 | 2012-04-24T04:00:00Z | 2025-10-17T17:45:10Z | 0 | 0 | 0900006480ff7525 | ||
| FMCSA-2009-0341-0002 | FMCSA | MSC - In the Matter of EH Transport - Field Administrator's Objection to Respondent's Request for Formal Hearing FMCSA-2009-0341 | In the Matter of EH Transport, Inc. - Field Administrator's Motion to Consolidate Cases | Other | Motion | 2009-12-29T05:00:00Z | 2009 | 12 | 2009-12-29T05:00:00Z | 2025-10-17T17:45:05Z | 0 | 0 | 0900006480a7347f | ||
| FMCSA-2009-0341-0001 | FMCSA | MSC - In the Matter of EH Transport - Field Administrator's Objection to Respondent's Request for Formal Hearing FMCSA-2009-0341 | In the Matter of EH Transport - Field Administrator's Objection to Respondent's Request for Formal Hearing | Other | Objection(s) | 2009-11-30T05:00:00Z | 2009 | 11 | 2009-11-30T05:00:00Z | 2026-02-07T09:01:24Z | 0 | 0 | 0900006480a5f33f |
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;