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 posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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-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-0885 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | The American Association of Motor Vehicle Administrators - Nominations | Other | Letter(s) | 2015-01-12T05:00:00Z | 2015 | 1 | 2015-01-12T05:00:00Z | 2019-09-05T13:34:24Z | 0 | 0 | 09000064819b19be | ||
| FMCSA-2007-27748-0880 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Indiana Electric Cooperatives - Nomination | Other | Letter(s) | 2015-01-09T05:00:00Z | 2015 | 1 | 2015-01-09T05:00:00Z | 2019-09-05T13:34:15Z | 0 | 0 | 09000064819aec7a | ||
| FMCSA-2007-27748-0879 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | NAFA Fleet Management Association - Nomination | Other | Letter(s) | 2015-01-09T05:00:00Z | 2015 | 1 | 2015-01-09T05:00:00Z | 2019-09-05T13:34:07Z | 0 | 0 | 09000064819ae553 | ||
| FMCSA-2007-27748-0873 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | National Advocates for the Advancement of New Drivers - Nomination | Other | Letter(s) | 2015-01-07T05:00:00Z | 2015 | 1 | 2015-01-07T05:00:00Z | 2019-09-05T13:33:36Z | 0 | 0 | 09000064819a5221 | ||
| FMCSA-2007-27748-0874 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Susan Podziba - Nomination | Other | Letter(s) | 2015-01-07T05:00:00Z | 2015 | 1 | 2015-01-07T05:00:00Z | 2019-09-05T13:33:51Z | 0 | 0 | 09000064819a574e | ||
| FMCSA-2007-27748-0869 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | R. Bryan Spoon - Nomination | Other | Letter(s) | 2015-01-05T05:00:00Z | 2015 | 1 | 2015-01-05T05:00:00Z | 2019-09-05T13:33:15Z | 0 | 0 | 090000648199a81d | ||
| FMCSA-2007-27748-0870 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Dangerous Goods Advisory Council - Nomination | Other | Letter(s) | 2015-01-05T05:00:00Z | 2015 | 1 | 2015-01-05T05:00:00Z | 2019-09-05T13:33:25Z | 0 | 0 | 090000648199c9f8 |
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;