documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "MSHA", document_type = "Proposed Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_date, posted_month, comment_start_date, comment_end_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-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-0030-0054 | 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, Extension of comment period; close of record. | Proposed Rule | 2016-08-25T04:00:00Z | 2016 | 8 | 2016-08-25T04:00:00Z | 2016-10-01T03:59:59Z | 2016-10-04T01:01:54Z | 2016-20395 | 0 | 0 | 090000648219bae0 | |
| MSHA-2014-0030-0019 | 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 | 2016-06-27T04:00:00Z | 2016 | 6 | 2016-06-27T04:00:00Z | 2016-09-07T03:59:59Z | 2016-08-27T01:01:05Z | 2016-15191 | 0 | 0 | 090000648206eb97 | |
| 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 | |
| MSHA-2014-0030-0001 | 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 | 2016-06-08T04:00:00Z | 2016 | 6 | 2016-06-08T04:00:00Z | 2016-09-07T03:59:59Z | 2016-09-07T01:01:02Z | 2016-13218 | 0 | 0 | 090000648201defd |
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;