documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "MSHA-2014-0029" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-0029-0046 | MSHA | Request for Information to Improve the Health and Safety of Miners and to Prevent Accidents in Underground Coal Mines MSHA-2014-0029 | Edward Green, Counsel, Bituminous Coal Operators’ Association (BCOA), Crowell & Moring LLP, Bruce Watzman, Senior Vice President, Regulatory Affairs, National Mining Association (NMA), and Mark Ellis, President, Industrial Minerals Association-North America (IMA-NA), request for a 60-day extension of the comment period, June 11, 2015. | Other | Letter(s) | 2015-07-01T04:00:00Z | 2015 | 7 | 2015-07-01T04:00:00Z | 2015-07-01T20:34:10Z | 0 | 0 | 0900006481b655e2 | ||
| MSHA-2014-0029-0047 | MSHA | Request for Information to Improve the Health and Safety of Miners and to Prevent Accidents in Underground Coal Mines MSHA-2014-0029 | U.S. Department of Labor, Mine Safety and Health Administration, Office of the Assistant Secretary of Labor for Mine Safety and Health. Reply dated June 24, 2015 to Edward Green, Counsel, Bituminous Coal Operators’ Association (BCOA), Crowell & Moring LLP, regarding June 11, 2015 letter to MSHA. | Other | Letter(s) | 2015-07-01T04:00:00Z | 2015 | 7 | 2015-07-01T04:00:00Z | 2015-07-01T20:34:14Z | 0 | 0 | 0900006481b655e3 | ||
| MSHA-2014-0029-0024 | MSHA | Request for Information to Improve the Health and Safety of Miners and to Prevent Accidents in Underground Coal Mines MSHA-2014-0029 | Correspondence from Mark G. Ellis - Request a 120-Day Extension of Comment Period, April 2, 2015. | Other | 2015-04-03T04:00:00Z | 2015 | 4 | 2015-04-03T04:00:00Z | 2015-07-01T20:35:37Z | 0 | 0 | 0900006481a8be8d | |||
| MSHA-2014-0029-0023 | MSHA | Request for Information to Improve the Health and Safety of Miners and to Prevent Accidents in Underground Coal Mines MSHA-2014-0029 | Correspondence from Bruce Watzman - Request a 120-Day Extension of Comment Period, April 1, 2015. | Other | 2015-04-03T04:00:00Z | 2015 | 4 | 2015-04-03T04:00:00Z | 2015-07-01T20:35:22Z | 0 | 0 | 0900006481a8be8c | |||
| MSHA-2014-0029-0022 | MSHA | Request for Information to Improve the Health and Safety of Miners and to Prevent Accidents in Underground Coal Mines MSHA-2014-0029 | Correspondence from Gregory E. Conrad- Request a 30-Day Extension of Comment Period, March 23, 2015. | Other | Letter(s) | 2015-04-03T04:00:00Z | 2015 | 4 | 2015-04-03T04:00:00Z | 2015-07-01T20:35:05Z | 0 | 0 | 0900006481a8be8b |
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;