documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "FMCSA" and posted_year = 1995 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, 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-1997-2175-0006 | FMCSA | Notice of Proposed Rulemaking - Inspection, Repair, and Maintenance; Periodic Motor Vehicle Inspection - Proposed Rules FMCSA-1997-2175 | Inspection, Repair, and Maintenance; Periodic Inspection of Commercial Motor Vehicles - Notices | Notice | Notice | 1995-11-07T05:00:00Z | 1995 | 11 | 1995-11-07T05:00:00Z | 1989-05-02T03:59:59Z | 2024-11-12T02:53:32Z | 1 | 0 | 090000648031707b | |
| FMCSA-1997-2273-0001 | FMCSA | Notice - Advanced Technology in Commercial Motor Vehicle Operations FMCSA-1997-2273 | Advanced Technology in Commercial Motor Vehicle Operations - Notices | Notice | Notice | 1995-09-07T04:00:00Z | 1995 | 9 | 1995-09-07T04:00:00Z | 1995-11-07T04:59:59Z | 2024-11-12T02:50:17Z | 1 | 0 | 0900006480317e5b | |
| FMCSA-1997-2199-0148 | FMCSA | Training for Entry Level Drivers of Commercial Motor Vehicles (CMVs) FMCSA-1997-2199 | Assessing the Adequacy of Commercial Motor Vehicle Driver Training - Report | Other | Report | 1995-07-01T04:00:00Z | 1995 | 7 | 1995-07-01T04:00:00Z | 1993-08-21T03:59:59Z | 2024-11-07T01:42:39Z | 1 | 0 | 09000064802a33da | |
| FMCSA-1997-2299-0129 | FMCSA | Notice of Proposed Rulemaking-Rules of Practice for Motor Carrier Proceedings; Investigations; Disqualifications and Penalties FMCSA-1997-2299 | Transport Safety Services, Inc. - Supplement | Supporting & Related Material | Supplement | 1995-02-09T05:00:00Z | 1995 | 2 | 2024-11-07T18:29:16Z | 0 | 0 | 0900006480318352 | |||
| FMCSA-1997-2350-0239 | FMCSA | Notice of Proposed Rulemaking (NPRM) - Hours of Service of Drivers FMCSA-1997-2350 | National Transportation Safety Board (1996) Factors That Affect Fatigue in Heavy Truck Accidents - Report | Other | Report | 1995-01-01T05:00:00Z | 1995 | 1 | 1995-01-01T05:00:00Z | 2000-12-16T04:59:59Z | 2024-11-07T21:45:30Z | 1 | 0 | 090000648034e0d3 | |
| FMCSA-2004-19608-2013 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | National Transportation Safety Board (1996) Factors That Affect Fatigue in Heavy Truck Accidents - Report | Other | Report | 1995-01-01T05:00:00Z | 1995 | 1 | 1995-01-01T05:00:00Z | 1995-01-02T04:59:59Z | 2008-01-08T12:42:00Z | 0 | 0 | 0900006480384355 |
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;