documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMCSA-1998-3706" and posted_year = 2004 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, comment_start_date, comment_end_date, last_modified, open_for_comment, 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-1998-3706-0057 | FMCSA | Hours of Service of Drivers; Supporting Documents FMCSA-1998-3706 | U.S. DOT/FMCSA - Supplemental Notice of Proposed Rulemaking (SNPRM); Request for Comments | Rule | Federal Register Publication | 2004-11-03T05:00:00Z | 2004 | 11 | 2004-11-03T05:00:00Z | 2004-11-04T04:59:59Z | 2024-11-12T03:06:21Z | 1 | 0 | 0900006480322354 | |
| FMCSA-1998-3706-0056 | FMCSA | Hours of Service of Drivers; Supporting Documents FMCSA-1998-3706 | Executive Order 12866 Sec. 6(a)(3)E(ii) and (iii) Document Showing Changes Made Between Manuscript Sent to OMB and November 3, 2004, Federal Register Publication for RIN 2126-AA76 | Other | OMB Review | 2004-11-01T05:00:00Z | 2004 | 11 | 2004-11-01T05:00:00Z | 2004-11-03T04:59:59Z | 2024-11-12T03:06:21Z | 1 | 0 | 0900006480322353 | |
| FMCSA-1998-3706-0052 | FMCSA | Hours of Service of Drivers; Supporting Documents FMCSA-1998-3706 | A.D. Transport Express Inc. v. Federal Motor Carrier Safety Administration, 290 F. 3d 761 (6th Cir. 2002) | Other | Appellate Decision/Action on Appeal | 2004-11-01T05:00:00Z | 2004 | 11 | 2004-11-01T05:00:00Z | 2004-11-03T04:59:59Z | 2024-11-12T03:06:01Z | 1 | 0 | 090000648032234e | |
| FMCSA-1998-3706-0054 | FMCSA | Hours of Service of Drivers; Supporting Documents FMCSA-1998-3706 | FMCSA Regulatory Evaluation, Supplemental Proposal for Supporting Documents for Verification of Drivers' Hours of Service, April 2004 | Supporting & Related Material | Analysis | 2004-11-01T05:00:00Z | 2004 | 11 | 2024-11-12T03:06:01Z | 0 | 0 | 0900006480322351 | |||
| FMCSA-1998-3706-0053 | FMCSA | Hours of Service of Drivers; Supporting Documents FMCSA-1998-3706 | Darrell Andrews Trucking, Inc. v. Federal Motor Carrier Safety Administration, 296 F. 3d 1120 (D.C. Cir. 2002) | Other | Appellate Decision/Action on Appeal | 2004-11-01T05:00:00Z | 2004 | 11 | 2004-11-01T05:00:00Z | 2004-11-03T04:59:59Z | 2024-11-12T03:06:01Z | 1 | 0 | 0900006480322350 | |
| FMCSA-1998-3706-0055 | FMCSA | Hours of Service of Drivers; Supporting Documents FMCSA-1998-3706 | FMCSA Environmental Categorical Exclusion Determination for Hours of Service of Drivers; Supporting Documents October 5 2004 | Supporting & Related Material | Environmental Categorical Exclusion Determination | 2004-11-01T05:00:00Z | 2004 | 11 | 2024-11-12T03:06:02Z | 0 | 0 | 0900006480322352 |
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;