documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2004-18074" and posted_year = 2004 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, comment_end_date, 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-2004-18074-0007 | FMCSA | In the Matter of Western Transportation Enterprises, Inc. - Request for Administrative Review of Out-of-Service Order FMCSA-2004-18074 | In the Matter of Western Transportation Enterprises, Inc. - Response in Opposition to Motion to Deny Petitioner's Petition for Administrative Review Under 49 C.F.R. Section 385.15 | Other | Response(s) | 2004-11-09T05:00:00Z | 2004 | 11 | 2004-11-09T05:00:00Z | 2004-11-11T04:59:59Z | 2008-01-12T00:41:28Z | 0 | 0 | 090000648031fa34 | |
| FMCSA-2004-18074-0006 | FMCSA | In the Matter of Western Transportation Enterprises, Inc. - Request for Administrative Review of Out-of-Service Order FMCSA-2004-18074 | In the Matter of Western Transportation Enterprises, Inc. - Arkansas Division Administrator and Field Administrator's Motion for Clarification of the September 28, 2004 Order of the Assistant Administrator | Other | Motion | 2004-10-06T04:00:00Z | 2004 | 10 | 2004-10-06T04:00:00Z | 2004-10-07T03:59:59Z | 2008-01-12T00:41:28Z | 0 | 0 | 090000648031fa33 | |
| FMCSA-2004-18074-0005 | FMCSA | In the Matter of Western Transportation Enterprises, Inc. - Request for Administrative Review of Out-of-Service Order FMCSA-2004-18074 | In the Matter of Western Transportation Enterprises, Inc. - Arkansas Division Administrator and Field Administrator's Motion for Clarification of the September 28, 2004 Order of the Assistant Administrator | Other | Motion | 2004-10-05T04:00:00Z | 2004 | 10 | 2004-10-05T04:00:00Z | 2004-10-06T03:59:59Z | 2008-01-12T00:40:09Z | 0 | 0 | 090000648031fa31 | |
| FMCSA-2004-18074-0004 | FMCSA | In the Matter of Western Transportation Enterprises, Inc. - Request for Administrative Review of Out-of-Service Order FMCSA-2004-18074 | In the Matter of Western Transportation Enterprises, Inc. - Order | Other | Order | 2004-09-29T04:00:00Z | 2004 | 9 | 2004-09-29T04:00:00Z | 2004-09-30T03:59:59Z | 2008-01-12T00:41:11Z | 0 | 0 | 090000648031fa2f | |
| FMCSA-2004-18074-0003 | FMCSA | In the Matter of Western Transportation Enterprises, Inc. - Request for Administrative Review of Out-of-Service Order FMCSA-2004-18074 | In the Matter of Western Transportation Enterprises, Inc. - Motion to Deny Petitioner's Petition for Administrative Review Under 49 C.F.R. Section 385.15 | Other | Motion | 2004-07-13T04:00:00Z | 2004 | 7 | 2004-07-13T04:00:00Z | 2004-07-14T03:59:59Z | 2008-01-12T00:40:09Z | 0 | 0 | 090000648031fa2b | |
| FMCSA-2004-18074-0001-0002 | FMCSA | In the Matter of Western Transportation Enterprises, Inc. - Request for Administrative Review of Out-of-Service Order FMCSA-2004-18074 | In the Matter of Western Transportation Enterprises, Inc. - Petition for Administrative Review for an Order to Cease All Interstate Transportation | Other | Petition(s) | 2004-06-16T04:00:00Z | 2004 | 6 | 2004-06-16T04:00:00Z | 2004-06-17T03:59:59Z | 2008-01-12T00:40:52Z | 0 | 0 | 090000648031fa27 | |
| FMCSA-2004-18074-0001-0001 | FMCSA | In the Matter of Western Transportation Enterprises, Inc. - Request for Administrative Review of Out-of-Service Order FMCSA-2004-18074 | In the Matter of Western Transportation Enterprises, Inc. - Petition for Administrative Review for an Order to Cease All Interstate Transportation | Other | Petition(s) | 2004-06-16T04:00:00Z | 2004 | 6 | 2004-06-16T04:00:00Z | 2004-06-17T03:59:59Z | 2008-01-12T00:41:28Z | 0 | 0 | 090000648031fa24 | |
| FMCSA-2004-18074-0002 | FMCSA | In the Matter of Western Transportation Enterprises, Inc. - Request for Administrative Review of Out-of-Service Order FMCSA-2004-18074 | In the Matter of Western Transportation Enterprises, Inc. - Order Granting Stay | Other | Order | 2004-06-16T04:00:00Z | 2004 | 6 | 2004-06-16T04:00:00Z | 2004-06-17T03:59:59Z | 2008-01-12T00:41:44Z | 0 | 0 | 090000648031fa2a |
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;