documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMCSA-2007-27748" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0863 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | American Bus Association - Nomination | Other | Letter(s) | 2014-12-17T05:00:00Z | 2014 | 12 | 2014-12-17T05:00:00Z | 2019-09-05T13:33:02Z | 0 | 0 | 090000648197f2d2 | ||
| FMCSA-2007-27748-0860 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Rick Rodgerson - Resume | Other | Response(s) | 2014-12-16T05:00:00Z | 2014 | 12 | 2014-12-16T05:00:00Z | 2014-12-16T13:38:37Z | 0 | 0 | 0900006481976864 | ||
| FMCSA-2007-27748-0854 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Recommendations for a Collaborative Approach to Developing Entry-Level Driver Training Regulations | Supporting & Related Material | Report | 2014-12-11T05:00:00Z | 2014 | 12 | 2014-12-11T14:18:38Z | 0 | 0 | 090000648196bb56 | |||
| 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 |
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;