documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "MSHA-2014-0030" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-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-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-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;