documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "MSHA", document_type = "Proposed Rule" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, 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-0030-0178 | MSHA | Examinations of Working Places in Metal and Nonmetal Mines. 30 CFR Parts 56 and 57 (1219-AB87) MSHA-2014-0030 | Examinations of Working Places in Metal and Nonmetal Mines - Proposed rule; delay of effective date. | Proposed Rule | 2017-09-12T04:00:00Z | 2017 | 9 | 2017-09-12T04:00:00Z | 2017-09-27T03:59:59Z | 2017-09-28T01:07:36Z | 2017-19380 | 0 | 0 | 0900006482b291cd | |
| MSHA-2014-0030-0179 | MSHA | Examinations of Working Places in Metal and Nonmetal Mines. 30 CFR Parts 56 and 57 (1219-AB87) MSHA-2014-0030 | Examinations of Working Places in Metal and Nonmetal Mines - Proposed rule, limited reopening of the rulemaking record; notice of public hearings; close of comment period. | Proposed Rule | 2017-09-12T04:00:00Z | 2017 | 9 | 2017-09-12T04:00:00Z | 2017-11-14T04:59:59Z | 2017-11-22T02:01:02Z | 2017-19381 | 0 | 0 | 0900006482b291d3 | |
| MSHA-2014-0030-0129 | MSHA | Examinations of Working Places in Metal and Nonmetal Mines. 30 CFR Parts 56 and 57 (1219-AB87) MSHA-2014-0030 | Examinations of Working Places in Metal and Nonmetal Mines | Proposed Rule | 2017-03-27T04:00:00Z | 2017 | 3 | 2017-03-27T04:00:00Z | 2017-04-27T03:59:59Z | 2017-04-29T01:02:14Z | 2017-05979 | 0 | 0 | 09000064825288bd | |
| MSHA-2014-0019-0123 | MSHA | Proximity Detection Systems for Mobile Machines in Underground Mines MSHA-2014-0019 | Proximity Detection Systems for Mobile Machines in Underground Mines | Proposed Rule | 2017-02-06T05:00:00Z | 2017 | 2 | 2017-02-06T05:00:00Z | 2017-04-11T03:59:59Z | 2017-04-18T01:01:05Z | 2017-02388 | 0 | 0 | 09000064824ada73 | |
| 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-0019-0122 | MSHA | Proximity Detection Systems for Mobile Machines in Underground Mines MSHA-2014-0019 | Proximity Detection Systems for Mobile Machines in Underground Mines: Reopening Record; Extension of Comment Period | Proposed Rule | 2017-01-09T05:00:00Z | 2017 | 1 | 2017-01-09T05:00:00Z | 2017-02-09T04:59:59Z | 2017-01-09T16:29:56Z | 2017-00105 | 0 | 0 | 09000064824529e3 |
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;