documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FMCSA-2012-0020" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- FMCSA 10
| 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-2012-0020-0014 | FMCSA | Quarterly Reporting Requirements FMCSA-2012-0020 | "Rescission of Quarterly Financial Reporting Requirements Final Rule: EO 12866 and CRA Requirements " | Other | OMB Review | 2013-12-19T05:00:00Z | 2013 | 12 | 2013-12-19T05:00:00Z | 2013-12-19T16:11:53Z | 0 | 0 | 09000064814c57fb | ||
| FMCSA-2012-0020-0013 | FMCSA | Quarterly Reporting Requirements FMCSA-2012-0020 | Rescission of Quarterly Financial Reporting Requirements | Rule | Final Rule | 2013-12-17T05:00:00Z | 2013 | 12 | 2013-12-17T05:00:00Z | 2013-12-18T18:32:12Z | 2013-29936 | 0 | 0 | 09000064814c4857 | |
| FMCSA-2012-0020-0012 | FMCSA | Quarterly Reporting Requirements FMCSA-2012-0020 | Categorical Exclusion Determination | Supporting & Related Material | Environmental Categorical Exclusion Determination | 2013-12-16T05:00:00Z | 2013 | 12 | 2013-12-16T20:30:14Z | 0 | 0 | 09000064814c2c93 | |||
| FMCSA-2012-0020-0011 | FMCSA | Quarterly Reporting Requirements FMCSA-2012-0020 | U.S. DOT/FMCSA - Denial of Request to Extend Comment Period | Other | Request | 2013-08-15T04:00:00Z | 2013 | 8 | 2013-08-15T04:00:00Z | 2024-11-07T22:53:18Z | 1 | 0 | 09000064813b2ea7 | ||
| FMCSA-2012-0020-0010 | FMCSA | Quarterly Reporting Requirements FMCSA-2012-0020 | SJ Consulting Group, Inc. - Request for Extended Deadline for Comments | Other | Request | 2013-07-23T04:00:00Z | 2013 | 7 | 2013-07-23T04:00:00Z | 2024-11-07T22:58:10Z | 1 | 0 | 0900006481378386 | ||
| FMCSA-2012-0020-0006 | FMCSA | Quarterly Reporting Requirements FMCSA-2012-0020 | Rescission of Quarterly Financial Reporting Requirements | Proposed Rule | Request for Comment | 2013-05-24T04:00:00Z | 2013 | 5 | 2013-05-24T04:00:00Z | 2013-07-24T03:59:59Z | 2024-11-12T05:14:41Z | 2013-12339 | 1 | 0 | 09000064812f7f6b |
| FMCSA-2012-0020-0005 | FMCSA | Quarterly Reporting Requirements FMCSA-2012-0020 | Environmental Categorical Exclusion Determination | Supporting & Related Material | Environmental Categorical Exclusion Determination | 2013-05-24T04:00:00Z | 2013 | 5 | 2024-11-12T05:19:40Z | 0 | 0 | 09000064812f7a01 | |||
| FMCSA-2012-0020-0004 | FMCSA | Quarterly Reporting Requirements FMCSA-2012-0020 | Rescission of Quarterly Financial Reporting Requirements; Withdrawal | Rule | Withdrawal | 2012-08-27T04:00:00Z | 2012 | 8 | 2012-08-27T04:00:00Z | 2012-08-27T15:52:19Z | 2012-21021 | 0 | 0 | 09000064810f259b | |
| FMCSA-2012-0020-0002 | FMCSA | Quarterly Reporting Requirements FMCSA-2012-0020 | Categorical Exclusion Determination | Supporting & Related Material | Environmental Categorical Exclusion Determination | 2012-06-28T04:00:00Z | 2012 | 6 | 2012-06-28T15:02:49Z | 0 | 0 | 090000648106d840 | |||
| FMCSA-2012-0020-0001 | FMCSA | Quarterly Reporting Requirements FMCSA-2012-0020 | Rescission of Quarterly Financial Reporting Requirements | Rule | Final Rule | 2012-06-27T04:00:00Z | 2012 | 6 | 2012-06-27T04:00:00Z | 2012-07-28T03:59:59Z | 2024-11-07T22:40:41Z | 2012-15744 | 1 | 0 | 090000648106a73e |
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;