documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "MSHA-2011-0001" 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-2011-0001-0186 | MSHA | Pattern of Violations MSHA-2011-0001 | U.S. Department of Labor, Mine Safety and Health Administration (DOL/MSHA), Office of Standards, Regulations and Variances (OSRV). Reply dated February 10, 2012 response from Roslyn Fontaine, Acting Director, to Edward M. Green, Counsel for Alpha Natural Resources, Inc. Crowell & Moring LLP, regarding a letter dated October 31, 2011. | Other | 2012-04-17T04:00:00Z | 2012 | 4 | 2012-04-17T04:00:00Z | 2012-04-17T16:03:20Z | 0 | 0 | 0900006480ff284d | |||
| MSHA-2011-0001-0185 | MSHA | Pattern of Violations MSHA-2011-0001 | Appalachian Citizens’ Law Center, Inc. Letter dated May 10, 2011 from Wes Addington, Attorney at Law to Joseph Main, Assistant Secretary of Labor, Mine Safety and Health Administration, June 5, 2011. | Other | 2012-04-17T04:00:00Z | 2012 | 4 | 2012-04-17T04:00:00Z | 2012-04-17T16:03:04Z | 0 | 0 | 0900006480ff2835 | |||
| MSHA-2011-0001-0171 | MSHA | Pattern of Violations MSHA-2011-0001 | Memorandum for the Assistant Secretary, U.S. Department of Labor, Mine Safety and Health (DOL/MSH), final Report "In 32 Years MSHA Has Never Successfully Exercised Its Pattern of Violations Authority Audit Report No. 05-10-005-06-001", September 29, 2010. | Other | None | 2011-05-16T04:00:00Z | 2011 | 5 | 2012-04-17T16:04:43Z | 0 | 0 | 0900006480cdd35b | |||
| MSHA-2011-0001-0173 | MSHA | Pattern of Violations MSHA-2011-0001 | U.S. Department of Labor, Mine Safety and Health (DOL/MSH), Office of Standards, Regulations and Variances (OSRV). Reply dated February 15, 2011 response from April Nelson, Acting Director, to Mr. Cline regarding February 4, 2011 email to MSHA. | Other | None | 2011-05-16T04:00:00Z | 2011 | 5 | 2016-10-31T15:02:42Z | 0 | 0 | 0900006480cdd35d | |||
| MSHA-2011-0001-0172 | MSHA | Pattern of Violations MSHA-2011-0001 | Memorandum for the Secretary, U.S. Department of Labor, Mine Safety and Health (DOL/MSH), Request for Approval to Publish a Proposed Rule on Pattern of Violations, November 19, 2010. | Other | 2011-05-16T00:00:00Z | 2011 | 5 | 2016-07-18T20:19:24Z | 0 | 1 | 0900006480cdd35c |
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;