documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2012-0156" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
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-2012-0156-0024 | FMCSA | Gross Combination Weight Rating (GCWR); Definition FMCSA-2012-0156 | Executive Order 12866 and Congressional Review Requirements | Supporting & Related Material | Supplement | 2014-03-27T04:00:00Z | 2014 | 3 | 2024-11-07T23:07:44Z | 0 | 0 | 09000064816861c2 | |||
| FMCSA-2012-0156-0023 | FMCSA | Gross Combination Weight Rating (GCWR); Definition FMCSA-2012-0156 | Gross Combination Weight Rating; Definition | Rule | Final Rule | 2014-03-19T04:00:00Z | 2014 | 3 | 2014-03-19T04:00:00Z | 2014-03-19T14:05:55Z | 2014-05502 | 0 | 0 | 090000648166f113 | |
| FMCSA-2012-0156-0010 | FMCSA | Gross Combination Weight Rating (GCWR); Definition FMCSA-2012-0156 | Catergorical Exclusion Determination | Other | Environmental Categorical Exclusion Determination | 2013-05-07T04:00:00Z | 2013 | 5 | 2013-05-07T04:00:00Z | 2024-11-12T05:19:20Z | 1 | 0 | 09000064812bdd52 | ||
| FMCSA-2012-0156-0009 | FMCSA | Gross Combination Weight Rating (GCWR); Definition FMCSA-2012-0156 | Gross Combination Weight Rating; Definition | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2013-05-07T04:00:00Z | 2013 | 5 | 2013-05-07T04:00:00Z | 2013-07-09T03:59:59Z | 2024-11-11T20:47:08Z | 2013-10735 | 1 | 0 | 09000064812bd9d8 |
| FMCSA-2012-0156-0006 | FMCSA | Gross Combination Weight Rating (GCWR); Definition FMCSA-2012-0156 | Gross Combination Weight Rating; Definition; Withdrawal | Rule | Withdrawal | 2012-10-29T04:00:00Z | 2012 | 10 | 2012-10-29T04:00:00Z | 2024-11-12T05:08:03Z | 2012-26550 | 1 | 0 | 090000648115424a | |
| FMCSA-2012-0156-0002 | FMCSA | Gross Combination Weight Rating (GCWR); Definition FMCSA-2012-0156 | Categorical Exclusion Determination | Other | Memo | 2012-08-29T04:00:00Z | 2012 | 8 | 2012-08-29T04:00:00Z | 2012-08-29T14:25:46Z | 0 | 0 | 09000064810f4c0e | ||
| FMCSA-2012-0156-0001 | FMCSA | Gross Combination Weight Rating (GCWR); Definition FMCSA-2012-0156 | Gross Combination Weight Rating; Definition | Rule | Final Rule with Request for Comments | 2012-08-27T04:00:00Z | 2012 | 8 | 2012-08-27T04:00:00Z | 2012-09-27T03:59:59Z | 2013-06-12T01:01:42Z | 2012-21017 | 0 | 0 | 09000064810f24d9 |
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;