documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2012-0377" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, 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-0377-0103 | FMCSA | Prohibition of Coercion FMCSA-2012-0377 | Finding of No Significant Impact - Coercion of Commerical Motoor Vehicle Drivers; Prohibition | Other | Agreement | 2015-12-07T05:00:00Z | 2015 | 12 | 2015-12-07T05:00:00Z | 2015-12-07T16:44:33Z | 0 | 0 | 0900006481d89ea5 | ||
| FMCSA-2012-0377-0100 | FMCSA | Prohibition of Coercion FMCSA-2012-0377 | Prohibiting Coercion of Commercial Motor Vehicle Drivers | Rule | Final Rule | 2015-11-30T05:00:00Z | 2015 | 11 | 2015-11-30T05:00:00Z | 2019-09-04T13:54:44Z | 2015-30237 | 0 | 0 | 0900006481d79618 | |
| FMCSA-2012-0377-0102 | FMCSA | Prohibition of Coercion FMCSA-2012-0377 | Prohibiting Coercion of Commercial Motor Vehicle Drivers | Other | Agency Response | 2015-11-30T05:00:00Z | 2015 | 11 | 2015-11-30T05:00:00Z | 2015-11-30T19:12:42Z | 0 | 0 | 0900006481d7aee9 | ||
| FMCSA-2012-0377-0099 | FMCSA | Prohibition of Coercion FMCSA-2012-0377 | U.S.DOT/FMCSA - Environmental Assessment | Other | Environmental assessment | 2015-11-27T05:00:00Z | 2015 | 11 | 2015-11-27T05:00:00Z | 2015-11-27T15:12:58Z | 0 | 0 | 0900006481d7410c | ||
| FMCSA-2012-0377-0005 | FMCSA | Prohibition of Coercion FMCSA-2012-0377 | Privacy Impact Analysis | Supporting & Related Material | Analysis | 2014-05-20T04:00:00Z | 2014 | 5 | 2014-05-20T18:25:49Z | 0 | 0 | 0900006481707034 | |||
| FMCSA-2012-0377-0002 | FMCSA | Prohibition of Coercion FMCSA-2012-0377 | Coercion of Commercial Motor Vehicle Drivers; Prohibition | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-05-13T04:00:00Z | 2014 | 5 | 2014-05-13T04:00:00Z | 2014-08-12T03:59:59Z | 2019-09-04T13:54:09Z | 2014-10722 | 0 | 0 | 09000064816f3fe8 |
| FMCSA-2012-0377-0001 | FMCSA | Prohibition of Coercion FMCSA-2012-0377 | Coercion of Commercial Motor Vehicle Drivers; Prohibition | Supporting & Related Material | Environmental Assessment | 2014-05-08T04:00:00Z | 2014 | 5 | 2014-05-08T04:21:08Z | 0 | 0 | 09000064816e72bd |
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;