documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FMCSA-2012-0101" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_date (date), comment_start_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-2012-0101-0005 | FMCSA | Released Rates of Motor Carriers of Household Goods FMCSA-2012-0101 | Consumer Protection Regulations: Transportation of Household Goods in Interstate Commerce; Released Rates of Motor Carriers of Household Goods | Rule | Final Rule | 2012-04-30T04:00:00Z | 2012 | 4 | 2012-04-30T04:00:00Z | 2012-04-30T13:40:04Z | 2012-09865 | 0 | 0 | 0900006481000d71 | |
| FMCSA-2012-0101-0003 | FMCSA | Released Rates of Motor Carriers of Household Goods FMCSA-2012-0101 | January 12, 2012, Decision of the Surface Transportation Board, Released Rates of Motor Common Carriers of Household Goods, Docket No. RR 999 (Amendment No. 5), STB ID No. 41845 | Supporting & Related Material | Decision | 2012-04-26T04:00:00Z | 2012 | 4 | 2012-04-26T19:35:55Z | 0 | 0 | 0900006480ffde96 | |||
| FMCSA-2012-0101-0001 | FMCSA | Released Rates of Motor Carriers of Household Goods FMCSA-2012-0101 | FMCSA Environmental Categorical Exclusion Determination, Released Rates of Motor Carriers of Household Goods, RIN 2126-AB51 | Supporting & Related Material | Environmental Categorical Exclusion Determination | 2012-04-26T04:00:00Z | 2012 | 4 | 2012-04-26T18:49:02Z | 0 | 0 | 0900006480ffe137 | |||
| FMCSA-2012-0101-0002 | FMCSA | Released Rates of Motor Carriers of Household Goods FMCSA-2012-0101 | January 21, 2011, Decision of the Surface Transportation Board, Released Rates of Motor Common Carriers of Household Goods, Docket No. RR 999 (Amendment No. 5), STB ID No. 39789 | Supporting & Related Material | Decision | 2012-04-26T04:00:00Z | 2012 | 4 | 2012-04-26T19:34:30Z | 0 | 0 | 0900006480ffde94 | |||
| FMCSA-2012-0101-0004 | FMCSA | Released Rates of Motor Carriers of Household Goods FMCSA-2012-0101 | March 9, 2012, Decision of the Surface Transportation Board, Released Rates of Motor Common Carriers of Household Goods, Docket No. RR 999 (Amendment No. 5), STB ID No. 42232 | Supporting & Related Material | Decision | 2012-04-26T04:00:00Z | 2012 | 4 | 2012-04-26T19:36:55Z | 0 | 0 | 0900006480ffded3 |
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;