documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMCSA-2000-8410" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, last_modified, 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-2000-8410-1683 | FMCSA | Younger Commercial Driver Pilot Training Program FMCSA-2000-8410 | Notice of Denial of Petition to Initiate a Pilot Program | Rule | Federal Register Publication | 2003-06-09T04:00:00Z | 2003 | 6 | 2003-06-09T04:00:00Z | 2003-06-10T03:59:59Z | 2024-11-07T21:31:11Z | 1 | 0 | 0900006480334e68 | |
| FMCSA-2000-8410-1667 | FMCSA | Younger Commercial Driver Pilot Training Program FMCSA-2000-8410 | Letter from Honorable Dennis Moore to Secretary Norman Y. Mineta - Correspondence | Other | Correspondence | 2001-08-21T04:00:00Z | 2001 | 8 | 2001-08-21T04:00:00Z | 2001-08-22T03:59:59Z | 2024-11-07T21:30:43Z | 1 | 0 | 0900006480334e56 | |
| FMCSA-2000-8410-1664 | FMCSA | Younger Commercial Driver Pilot Training Program FMCSA-2000-8410 | The Honorable Gordon H. Smith - Letter Regarding a Comment Sent by Constituent Gwen Timberlake | Other | Correspondence | 2001-06-28T04:00:00Z | 2001 | 6 | 2001-06-28T04:00:00Z | 2001-06-29T03:59:59Z | 2024-11-07T21:30:42Z | 1 | 0 | 0900006480334e53 | |
| FMCSA-2000-8410-1663 | FMCSA | Younger Commercial Driver Pilot Training Program FMCSA-2000-8410 | Honorable Bob Goodlatte - Letter Regarding Information Received From Constiuent, Mr. Herb Detweiler | Other | Correspondence | 2001-06-27T04:00:00Z | 2001 | 6 | 2001-06-27T04:00:00Z | 2001-06-28T03:59:59Z | 2024-11-07T21:30:42Z | 1 | 0 | 0900006480334e52 | |
| FMCSA-2000-8410-0002 | FMCSA | Younger Commercial Driver Pilot Training Program FMCSA-2000-8410 | Notice of Receipt of Proposal to Initiate a Pilot Program, Request for Comments | Rule | Federal Register Publication | 2001-02-20T05:00:00Z | 2001 | 2 | 2001-02-20T05:00:00Z | 2001-02-21T04:59:59Z | 2024-11-07T21:31:58Z | 1 | 0 | 0900006480334e8d | |
| FMCSA-2000-8410-0001 | FMCSA | Younger Commercial Driver Pilot Training Program FMCSA-2000-8410 | Petition for Approval of Pilot Program | Other | Petition(s) | 2001-02-14T05:00:00Z | 2001 | 2 | 2001-02-14T05:00:00Z | 2001-02-15T04:59:59Z | 2024-11-12T03:31:49Z | 1 | 0 | 0900006480334ac9 |
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;