documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2010-0177" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
agency_id 1
- FMCSA 7
| 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-2010-0177-0010 | FMCSA | Parts and Accessories Necessary for Safe; Application for an Exemption from the Flatbed Carrier Group FMCSA-2010-0177 | Parts and Accessories Necessary for Safe Operation: Exemption Renewal for the Flatbed Carrier Safety Group | Notice | Request for Comments | 2022-04-26T04:00:00Z | 2022 | 4 | 2022-04-26T04:00:00Z | 2022-05-27T03:59:59Z | 2024-11-07T00:37:17Z | 2022-08806 | 1 | 0 | 090000648503589b |
| FMCSA-2010-0177-0009 | FMCSA | Parts and Accessories Necessary for Safe; Application for an Exemption from the Flatbed Carrier Group FMCSA-2010-0177 | Parts and Accessories Necessary for Safe Operation: Exemption Renewal for the Flatbed Carrier Safety Group | Notice | Request for Comments | 2017-04-21T04:00:00Z | 2017 | 4 | 2017-04-21T04:00:00Z | 2017-05-23T03:59:59Z | 2017-04-21T14:32:21Z | 2017-08076 | 0 | 0 | 0900006482566073 |
| FMCSA-2010-0177-0007 | FMCSA | Parts and Accessories Necessary for Safe; Application for an Exemption from the Flatbed Carrier Group FMCSA-2010-0177 | Parts and Accessories Necessary for Safe Operations: Flatbed Carrier Safety Group; Exemption Renewals | Notice | Request for Comments | 2015-06-04T04:00:00Z | 2015 | 6 | 2015-06-04T04:00:00Z | 2015-07-07T03:59:59Z | 2024-11-07T23:24:03Z | 2015-13655 | 1 | 0 | 0900006481b1a336 |
| FMCSA-2010-0177-0006 | FMCSA | Parts and Accessories Necessary for Safe; Application for an Exemption from the Flatbed Carrier Group FMCSA-2010-0177 | Exemption from Parts and Accessories Necessary for Safe Operations: Flatbed Carrier Safety Group | Notice | Request for Comments | 2013-06-11T04:00:00Z | 2013 | 6 | 2013-06-11T04:00:00Z | 2013-07-12T03:59:59Z | 2024-11-11T20:47:13Z | 2013-13781 | 1 | 0 | 090000648131888d |
| FMCSA-2010-0177-0005 | FMCSA | Parts and Accessories Necessary for Safe; Application for an Exemption from the Flatbed Carrier Group FMCSA-2010-0177 | Parts and Accessories Necessary for Safe Operation; Final Disposition: Grant of Exemption for Flatbed Carrier Safety Group | Rule | Federal Register Publication | 2011-04-14T04:00:00Z | 2011 | 4 | 2011-04-14T04:00:00Z | 2024-11-12T05:00:42Z | 2011-08563 | 1 | 0 | 0900006480c2c57f | |
| FMCSA-2010-0177-0004 | FMCSA | Parts and Accessories Necessary for Safe; Application for an Exemption from the Flatbed Carrier Group FMCSA-2010-0177 | Maverick Transportation LLC - Request for Exemption | Other | Exemption/Waiver | 2010-10-20T04:00:00Z | 2010 | 10 | 2010-10-20T04:00:00Z | 2013-08-11T04:42:35Z | 0 | 0 | 0900006480b73232 | ||
| FMCSA-2010-0177-0001 | FMCSA | Parts and Accessories Necessary for Safe; Application for an Exemption from the Flatbed Carrier Group FMCSA-2010-0177 | Parts and Accessories Necessary for Safe Operation; Applications for Exemption: Flatbed Carrier Safety Group | Rule | Federal Register Publication | 2010-06-14T04:00:00Z | 2010 | 6 | 2010-06-14T04:00:00Z | 2010-07-15T03:59:59Z | 2024-11-07T22:15:46Z | 2010-14224 | 1 | 0 | 0900006480b01880 |
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;