documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMCSA-2001-11117" and posted_year = 2003 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, comment_end_date, 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-2001-11117-0077 | FMCSA | Interim Final Rule: Limitations On the Issuance of Commercial Drivers Licenses with a Hazardous Materials Endorsement FMCSA-2001-11117 | Interim Final Rule; Delay of Compliance Date; Request for Comments | Rule | Federal Register Publication | 2003-11-07T05:00:00Z | 2003 | 11 | 2003-11-07T05:00:00Z | 2003-11-08T04:59:59Z | 2019-09-05T18:02:09Z | 0 | 0 | 0900006480303848 | |
| FMCSA-2001-11117-0041 | FMCSA | Interim Final Rule: Limitations On the Issuance of Commercial Drivers Licenses with a Hazardous Materials Endorsement FMCSA-2001-11117 | State of Nebraska, Department of Motor Vehicles - Request Clarification on the TSA and FMCSA Dockets | Other | Request | 2003-07-07T04:00:00Z | 2003 | 7 | 2003-07-07T04:00:00Z | 2003-07-08T03:59:59Z | 2019-09-05T18:01:49Z | 0 | 0 | 0900006480303829 | |
| FMCSA-2001-11117-0013 | FMCSA | Interim Final Rule: Limitations On the Issuance of Commercial Drivers Licenses with a Hazardous Materials Endorsement FMCSA-2001-11117 | Interim Final Rule; Request for Comments | Rule | Federal Register Publication | 2003-05-05T04:00:00Z | 2003 | 5 | 2003-05-05T04:00:00Z | 2003-05-06T03:59:59Z | 2019-09-05T18:00:57Z | 0 | 0 | 0900006480303809 | |
| FMCSA-2001-11117-0012 | FMCSA | Interim Final Rule: Limitations On the Issuance of Commercial Drivers Licenses with a Hazardous Materials Endorsement FMCSA-2001-11117 | Pre-Publication Manuscript - Limitations on the Issuance of Commercial Driver's Licenses with a Hazardous Materials Endorsement | Rule | Interim Final Rule | 2003-05-01T04:00:00Z | 2003 | 5 | 2003-05-01T04:00:00Z | 2003-05-02T03:59:59Z | 2019-09-05T13:10:33Z | 0 | 0 | 0900006480303808 | |
| FMCSA-2001-11117-0011 | FMCSA | Interim Final Rule: Limitations On the Issuance of Commercial Drivers Licenses with a Hazardous Materials Endorsement FMCSA-2001-11117 | Meeting Record Regarding Patriot Act Rules | Other | Record of Meeting/Phone Conversation | 2003-04-30T04:00:00Z | 2003 | 4 | 2003-04-30T04:00:00Z | 2003-05-02T03:59:59Z | 2019-09-05T13:09:53Z | 0 | 0 | 0900006480303807 | |
| FMCSA-2001-11117-0010 | FMCSA | Interim Final Rule: Limitations On the Issuance of Commercial Drivers Licenses with a Hazardous Materials Endorsement FMCSA-2001-11117 | Meeting Record Regarding Patriot Act Rules | Other | Record of Meeting/Phone Conversation | 2003-04-30T04:00:00Z | 2003 | 4 | 2003-04-30T04:00:00Z | 2003-05-02T03:59:59Z | 2019-09-05T18:01:10Z | 0 | 0 | 0900006480303806 |
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;