documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2005-21323" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, 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-2005-21323-0070 | FMCSA | Parts and Accessories Necessary for Safe Operation: Surge Brakes Requirements FMCSA-2005-21323 | Final Rule | Rule | Federal Register Publication | 2007-03-06T05:00:00Z | 2007 | 3 | 2007-03-06T05:00:00Z | 2007-03-07T04:59:59Z | 2024-11-07T17:22:08Z | 1 | 0 | 09000064802c77f3 | |
| FMCSA-2005-21323-0071 | FMCSA | Parts and Accessories Necessary for Safe Operation: Surge Brakes Requirements FMCSA-2005-21323 | Notice; Withdrawal of Regulatory Guidance | Rule | Federal Register Publication | 2007-03-06T05:00:00Z | 2007 | 3 | 2007-03-06T05:00:00Z | 2007-03-07T04:59:59Z | 2024-11-07T17:22:08Z | 1 | 0 | 09000064802c77f4 | |
| FMCSA-2005-21323-0069 | FMCSA | Parts and Accessories Necessary for Safe Operation: Surge Brakes Requirements FMCSA-2005-21323 | U.S. DOT/FMCSA - Memorandum re: Enforcement Policy Concerning Trailers Equipped with Surge Brakes | Other | Memo, Action Memo or Letter | 2007-02-08T05:00:00Z | 2007 | 2 | 2007-02-08T05:00:00Z | 2007-02-09T04:59:59Z | 2024-11-07T17:22:08Z | 1 | 0 | 09000064802c77f1 | |
| FMCSA-2005-21323-0004 | FMCSA | Parts and Accessories Necessary for Safe Operation: Surge Brakes Requirements FMCSA-2005-21323 | U.S. DOT/FMCSA - Notice of Proposed Rulemaking (NPRM); Request for Comments | Rule | Federal Register Publication | 2005-10-07T04:00:00Z | 2005 | 10 | 2005-10-07T04:00:00Z | 2005-10-08T03:59:59Z | 2024-11-07T17:23:53Z | 1 | 0 | 09000064802c77d1 | |
| FMCSA-2005-21323-0001 | FMCSA | Parts and Accessories Necessary for Safe Operation: Surge Brakes Requirements FMCSA-2005-21323 | Petition from Surge Brake Coalition | Other | Petition for Rulemaking | 2005-07-26T04:00:00Z | 2005 | 7 | 2005-07-26T04:00:00Z | 2005-07-27T03:59:59Z | 2024-11-07T17:23:59Z | 1 | 0 | 09000064802c77b0 | |
| FMCSA-2005-21323-0002 | FMCSA | Parts and Accessories Necessary for Safe Operation: Surge Brakes Requirements FMCSA-2005-21323 | Photos from Petition from Surge Brake Coalition | Other | Petition for Rulemaking | 2005-07-26T04:00:00Z | 2005 | 7 | 2005-07-26T04:00:00Z | 2005-07-27T03:59:59Z | 2024-11-07T17:24:00Z | 1 | 0 | 09000064802c77bb | |
| FMCSA-2005-21323-0003 | FMCSA | Parts and Accessories Necessary for Safe Operation: Surge Brakes Requirements FMCSA-2005-21323 | Reply to Mr. Jack Klepinger, the Surge Brake Coalition | Other | Grant of Petition | 2005-07-26T04:00:00Z | 2005 | 7 | 2005-07-26T04:00:00Z | 2005-07-27T03:59:59Z | 2024-11-07T17:24:09Z | 1 | 0 | 09000064802c77c6 |
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;