documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMCSA-2005-21259" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, last_modified, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FMCSA 6
| 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-21259-0036 | FMCSA | Parts and Accessories Necessary for Safe Operation; Protection Against Shifting and Falling Cargo FMCSA-2005-21259 | U.S. DOT/FMCSA - Final Rule | Rule | Federal Register Publication | 2006-06-22T04:00:00Z | 2006 | 6 | 2006-06-22T04:00:00Z | 2006-06-23T03:59:59Z | 2024-11-11T22:33:43Z | 1 | 0 | 09000064802c184e | |
| FMCSA-2005-21259-0005 | FMCSA | Parts and Accessories Necessary for Safe Operation; Protection Against Shifting and Falling Cargo FMCSA-2005-21259 | U.S. DOT/FMCSA - Notice of Proposed Rulemaking and Request for Comments; Correction | Rule | Federal Register Publication | 2005-06-23T04:00:00Z | 2005 | 6 | 2005-06-23T04:00:00Z | 2005-06-24T03:59:59Z | 2024-11-11T22:33:43Z | 1 | 0 | 09000064802c1853 | |
| FMCSA-2005-21259-0004 | FMCSA | Parts and Accessories Necessary for Safe Operation; Protection Against Shifting and Falling Cargo FMCSA-2005-21259 | Coastal Transport. Inc. - Comments | Other | Certificate of Service | 2005-06-17T04:00:00Z | 2005 | 6 | 2005-06-17T04:00:00Z | 2005-06-18T03:59:59Z | 2024-11-11T22:33:43Z | 1 | 0 | 09000064802c1851 | |
| FMCSA-2005-21259-0001 | FMCSA | Parts and Accessories Necessary for Safe Operation; Protection Against Shifting and Falling Cargo FMCSA-2005-21259 | Proposed Regulatory Analysis for Changes to the Regulations Protecting Against Shifting and Falling Cargo | Supporting & Related Material | Analysis | 2005-06-08T04:00:00Z | 2005 | 6 | 2024-11-11T22:34:15Z | 0 | 0 | 09000064802c1820 | |||
| FMCSA-2005-21259-0003 | FMCSA | Parts and Accessories Necessary for Safe Operation; Protection Against Shifting and Falling Cargo FMCSA-2005-21259 | U.S. DOT/FMCSA - Notice Proposed Rulemaking; Request for Comments | Rule | Federal Register Publication | 2005-06-08T04:00:00Z | 2005 | 6 | 2005-06-08T04:00:00Z | 2005-06-09T03:59:59Z | 2024-11-11T22:33:19Z | 1 | 0 | 09000064802c1847 | |
| FMCSA-2005-21259-0002 | FMCSA | Parts and Accessories Necessary for Safe Operation; Protection Against Shifting and Falling Cargo FMCSA-2005-21259 | Proposed Environmental Assessment for Parts and Accessories Necessary for Safe Operation: Protection Against Shifting and Falling Cargo | Supporting & Related Material | Environmental Assessment | 2005-06-08T04:00:00Z | 2005 | 6 | 2024-11-11T22:33:19Z | 0 | 0 | 09000064802c183c |
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;