documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FMCSA-1997-3188" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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)
document_type 2
agency_id 1
- FMCSA 5
| 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-3188-0002 | FMCSA | Federal Motor Carrier Safety Requlations; Exemptions - NPRM (NHS Sec. 345 Monitoring Project) FMCSA-1997-3188 | Report to the Minnesota Legislature: Study of the Effects of Exempting Fertilizer and Agricultural Chemical Retailers from Driver Hours-of-Service Regulations, 3/92, The MInnesota Department of Transportation Office of Motor Carrier Safety and Compliance | Supporting & Related Material | Supplement | 1997-12-15T05:00:00Z | 1997 | 12 | 2008-01-08T19:50:22Z | 0 | 0 | 090000648031e997 | |||
| FMCSA-1997-3188-0001 | FMCSA | Federal Motor Carrier Safety Requlations; Exemptions - NPRM (NHS Sec. 345 Monitoring Project) FMCSA-1997-3188 | Petition to Open Rulemaking on Commerical Motor Vehicle Exemptions of Section 345 of the National Highway System Designation Act of 1995 | Other | Petition(s) | 1997-12-15T05:00:00Z | 1997 | 12 | 1997-12-15T05:00:00Z | 1997-12-16T04:59:59Z | 2008-01-12T00:41:29Z | 0 | 0 | 090000648031e993 | |
| FMCSA-1997-3188-0005 | FMCSA | Federal Motor Carrier Safety Requlations; Exemptions - NPRM (NHS Sec. 345 Monitoring Project) FMCSA-1997-3188 | Wylie, C.D., Shultz, T., Miller, J.C., and Mitler, M.M. (1997) Commercial Motor Vehicle: Driver Rest Periods and Recovery of Performance - Report | Other | Report | 1997-11-25T05:00:00Z | 1997 | 11 | 1997-11-25T05:00:00Z | 1997-11-26T04:59:59Z | 2024-11-07T21:44:31Z | 1 | 0 | 0900006480382af7 | |
| FMCSA-1997-3188-0004 | FMCSA | Federal Motor Carrier Safety Requlations; Exemptions - NPRM (NHS Sec. 345 Monitoring Project) FMCSA-1997-3188 | Smiley, A., and Heslegrave, R. (1997) A 36-Hour Recovery Period for Truck Drivers: Synopsis of Current Scientific Knowledge - Report | Other | Report | 1997-11-25T05:00:00Z | 1997 | 11 | 1997-11-25T05:00:00Z | 1997-11-26T04:59:59Z | 2024-11-07T21:44:31Z | 1 | 0 | 0900006480382af6 | |
| FMCSA-1997-3188-0003 | FMCSA | Federal Motor Carrier Safety Requlations; Exemptions - NPRM (NHS Sec. 345 Monitoring Project) FMCSA-1997-3188 | 1995 Drivers' Hours of Service Waiver and Exemption Period for Specified Farm Products and Products of Preservation - Special Report | Other | Report | 1996-05-01T04:00:00Z | 1996 | 5 | 1996-05-01T04:00:00Z | 1996-05-02T03:59:59Z | 2008-01-12T00:42:23Z | 0 | 0 | 090000648031e998 |
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;