documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "MSHA-2014-0031" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, posted_date (date), comment_start_date (date), comment_end_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| MSHA-2014-0031-0185 | MSHA | Exposure of Underground Miners to Diesel Exhaust MSHA-2014-0031 | Requests for Information: Exposure of Underground Miners to Diesel Exhaust | Proposed Rule | 2019-03-25T04:00:00Z | 2019 | 3 | 2019-03-25T04:00:00Z | 2020-09-26T03:59:59Z | 2020-09-24T01:01:07Z | 2019-05443 | 0 | 0 | 0900006483b25178 | |
| MSHA-2014-0031-0176 | MSHA | Exposure of Underground Miners to Diesel Exhaust MSHA-2014-0031 | Exposure of Underground Miners to Diesel Exhaust Request for Information; reopening of the rulemaking record for public comments. | Proposed Rule | 2018-03-26T04:00:00Z | 2018 | 3 | 2018-03-26T04:00:00Z | 2019-03-27T03:59:59Z | 2019-03-26T01:03:23Z | 2018-05978 | 0 | 0 | 090000648304da3a | |
| MSHA-2014-0031-0076 | MSHA | Exposure of Underground Miners to Diesel Exhaust MSHA-2014-0031 | Exposure of Underground Miners to Diesel Exhaust: Request for Information; Reopening of Rulemaking Record; Extension of Comment Period | Proposed Rule | 2017-01-09T05:00:00Z | 2017 | 1 | 2017-01-09T05:00:00Z | 2018-01-10T04:59:59Z | 2018-01-11T02:01:25Z | 2017-00104 | 0 | 0 | 09000064824529e2 | |
| MSHA-2014-0031-0047 | MSHA | Exposure of Underground Miners to Diesel Exhaust MSHA-2014-0031 | Exposure of Underground Miners to Diesel Exhaust , Extension of Comment Period | Proposed Rule | 2016-08-25T04:00:00Z | 2016 | 8 | 2016-08-25T04:00:00Z | 2016-12-01T04:59:59Z | 2016-12-08T02:02:47Z | 2016-20396 | 0 | 0 | 090000648219bb21 | |
| MSHA-2014-0031-0034 | MSHA | Exposure of Underground Miners to Diesel Exhaust MSHA-2014-0031 | Exposure of Underground Miners to Diesel Exhaust | Proposed Rule | 2016-06-27T04:00:00Z | 2016 | 6 | 2016-06-27T04:00:00Z | 2016-09-07T03:59:59Z | 2016-09-03T20:40:53Z | 2016-15190 | 0 | 0 | 090000648206eb40 | |
| MSHA-2014-0031-0033 | MSHA | Exposure of Underground Miners to Diesel Exhaust MSHA-2014-0031 | Exposure of Underground Miners to Diesel Exhaust | Proposed Rule | 2016-06-17T04:00:00Z | 2016 | 6 | 2016-06-17T04:00:00Z | 2016-06-28T15:21:00Z | C1-2016-13219 | 0 | 0 | 090000648204af08 | ||
| MSHA-2014-0031-0001 | MSHA | Exposure of Underground Miners to Diesel Exhaust MSHA-2014-0031 | Exposure of Underground Miners to Diesel Exhaust | Proposed Rule | 2016-06-08T04:00:00Z | 2016 | 6 | 2016-06-08T04:00:00Z | 2016-09-02T03:59:59Z | 2016-08-18T01:02:05Z | 2016-13219 | 0 | 0 | 090000648201df9f |
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;