documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FMCSA", document_type = "Proposed Rule" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, 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-2014-0428-0022 | FMCSA | None FMCSA-2014-0428 | Parts and Accessories Necessary for Safe Operation: Federal Motor Vehicle Safety Standards Certification for Commercial Motor Vehicles Operated by United States-Domiciled Motor Carriers, | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2015-12-30T05:00:00Z | 2015 | 12 | 2015-12-30T05:00:00Z | 2015-12-31T15:33:02Z | 2015-32868 | 0 | 0 | 0900006481ddb075 | |
| FMCSA-2015-0396-0006 | FMCSA | None FMCSA-2015-0396 | Commercial Driver's License Standards: Use of Seat Belts, | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2015-12-10T05:00:00Z | 2015 | 12 | 2015-12-10T05:00:00Z | 2016-01-26T04:59:59Z | 2019-08-30T15:03:01Z | 2015-30864 | 0 | 0 | 0900006481d9aa8c |
| FMCSA-2015-0176-0001 | FMCSA | None FMCSA-2015-0176 | Parts and Accessories Necessary for Safe Operation: Inspection, Repair, and Maintenance; General Amendments | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2015-10-07T04:00:00Z | 2015 | 10 | 2015-10-07T04:00:00Z | 2015-12-08T04:59:59Z | 2024-11-12T05:49:23Z | 2015-24921 | 1 | 0 | 0900006481cb64ab |
| FMCSA-2014-0428-0001 | FMCSA | None FMCSA-2014-0428 | Parts and Accessories Necessary for Safe Operation: Federal Motor Vehicle Safety Standards Certification for Commercial Motor Vehicles Operated by United States-Domiciled Motor Carriers | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2015-06-17T04:00:00Z | 2015 | 6 | 2015-06-17T04:00:00Z | 2015-08-04T03:59:59Z | 2024-11-11T20:59:08Z | 2015-14934 | 1 | 0 | 0900006481b408c4 |
| FMCSA-2005-23151-0098 | FMCSA | Qualification of Drivers; Diabetes Standards FMCSA-2005-23151 | Qualification of Drivers; Diabetes Standard | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2015-05-04T04:00:00Z | 2015 | 5 | 2015-05-04T04:00:00Z | 2015-07-07T03:59:59Z | 2019-08-30T14:11:23Z | 2015-09993 | 0 | 0 | 0900006481acb26a |
| FMCSA-2014-0470-0002 | FMCSA | None FMCSA-2014-0470 | Meetings: State Inspection Programs for Passenger-Carrying Vehicles; Listening Sessions | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2015-03-27T04:00:00Z | 2015 | 3 | 2015-03-27T04:00:00Z | 2015-03-27T14:15:34Z | 2015-07054 | 0 | 0 | 0900006481a6b3cb | |
| FMCSA-2007-27748-0907 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Minimum Training Requirements for Entry-Level Drivers of Commercial Motor Vehicles | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2015-03-06T05:00:00Z | 2015 | 3 | 2015-03-06T05:00:00Z | 2015-03-06T16:00:16Z | 2015-05197 | 0 | 0 | 0900006481a30228 | |
| FMCSA-2007-27748-0895 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Minimum Training Requirements for Entry-Level Drivers of Commercial Motor Vehicles: Negotiated Rulemaking Committee Membership and First Meeting | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2015-02-12T05:00:00Z | 2015 | 2 | 2015-02-12T05:00:00Z | 2019-09-05T13:34:46Z | 2015-02967 | 0 | 0 | 0900006481a00907 |
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;