documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FMCSA-2007-27748" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, 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-2007-27748-1417 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Partial Extension of Compliance Date for Entry-Level Driver Training | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2019-07-18T04:00:00Z | 2019 | 7 | 2019-07-18T04:00:00Z | 2019-08-20T03:59:59Z | 2019-09-20T01:00:49Z | 2019-14956 | 0 | 0 | 0900006483d9c3ff |
| FMCSA-2007-27748-0916 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators | Proposed Rule | Request for Comment | 2016-03-07T05:00:00Z | 2016 | 3 | 2016-03-07T05:00:00Z | 2016-04-07T03:59:59Z | 2019-09-06T01:05:07Z | 2016-03869 | 0 | 0 | 0900006481ea5137 |
| 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 | |
| FMCSA-2007-27748-0853 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Minimum Training Requirements for Entry-Level Driver Commercial Motor Vehicle Operators: Establishment of Negotiated Rulemaking Committee; Request for Nominations | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-12-10T05:00:00Z | 2014 | 12 | 2014-12-10T05:00:00Z | 2015-01-10T04:59:59Z | 2019-09-05T13:32:42Z | 2014-28919 | 0 | 0 | 090000648196aa6d |
| FMCSA-2007-27748-0851 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Minimum Training Requirements for Entry-Level Commercials Drivers' License Applicants: Consideration of Negotiated Rulemaking Process; Correction | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-09-22T04:00:00Z | 2014 | 9 | 2014-09-22T04:00:00Z | 2014-09-22T14:58:36Z | 2014-22304 | 0 | 0 | 0900006481885b17 | |
| FMCSA-2007-27748-0810 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Minimum Training Requirements for Entry-Level Commercial Drivers' License Applicants: Consideration of Negotiated Rulemaking Process | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-08-19T04:00:00Z | 2014 | 8 | 2014-08-19T04:00:00Z | 2014-09-19T03:59:59Z | 2019-09-05T13:32:19Z | 2014-19637 | 0 | 0 | 090000648182f7c5 |
| FMCSA-2007-27748-0809 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Minimum Training Requirements: Entry Level Commercial Motor Vehicle Operators | Proposed Rule | 2013-09-19T04:00:00Z | 2013 | 9 | 2013-09-19T04:00:00Z | 2013-09-19T19:43:02Z | 2013-22772 | 0 | 0 | 090000648142b402 | ||
| FMCSA-2007-27748-0790 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2013-02-28T05:00:00Z | 2013 | 2 | 2013-02-28T05:00:00Z | 2019-09-05T13:31:44Z | 2013-04487 | 0 | 0 | 090000648120f835 |
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;