documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "MSHA-2010-0008" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_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-2010-0008-0078 | MSHA | Examinations of Work Areas in Underground Coal Mines for Violations of Mandatory Health or Safety Standards MSHA-2010-0008 | Updates to the PRA supporting Statement, Explanation of Burden Estimates and Notice of Office of Management and Budget Action, April 2012. | Supporting & Related Material | Paperwork Packages | 2012-08-07T04:00:00Z | 2012 | 8 | 2012-08-07T16:53:30Z | 0 | 0 | 09000064810c53c9 | |||
| MSHA-2010-0008-0077 | MSHA | Examinations of Work Areas in Underground Coal Mines for Violations of Mandatory Health or Safety Standards MSHA-2010-0008 | Examinations of Work Areas in Underground Coal Mines for Violations of Mandatory Health or Safety Standards | Rule | 2012-07-26T04:00:00Z | 2012 | 7 | 2012-07-26T04:00:00Z | 2012-07-27T13:49:05Z | 2012-18205 | 0 | 0 | 09000064810b1b80 | ||
| MSHA-2010-0008-0074 | MSHA | Examinations of Work Areas in Underground Coal Mines for Violations of Mandatory Health or Safety Standards MSHA-2010-0008 | Department of Labor, Mine Safety and Health Administration (MSHA), (2010). “Fatality Prevention-Rules to Live By”. | Supporting & Related Material | Publication - Other Governmental | 2012-04-06T04:00:00Z | 2012 | 4 | 2012-04-06T15:48:54Z | 0 | 0 | 0900006480feac32 | |||
| MSHA-2010-0008-0076 | MSHA | Examinations of Work Areas in Underground Coal Mines for Violations of Mandatory Health or Safety Standards MSHA-2010-0008 | U.S. Department of Labor, Mine Safety and Health Administration (2012). Paperwork Reduction Act Supporting Statement for 1219-AB75, Information Collection Requirement Reference Number 1219-0088, April 2012. | Supporting & Related Material | Publication - Other Governmental | 2012-04-06T04:00:00Z | 2012 | 4 | 2012-04-06T21:26:55Z | 0 | 0 | 0900006480feac35 | |||
| MSHA-2010-0008-0075 | MSHA | Examinations of Work Areas in Underground Coal Mines for Violations of Mandatory Health or Safety Standards MSHA-2010-0008 | Department of Labor, Mine Safety and Health Administration (MSHA), (2010). Rules to Live By II, “Preventing Catastrophic Accidents”. | Supporting & Related Material | Publication - Other Governmental | 2012-04-06T04:00:00Z | 2012 | 4 | 2012-04-06T15:48:54Z | 0 | 0 | 0900006480feac34 | |||
| MSHA-2010-0008-0073 | MSHA | Examinations of Work Areas in Underground Coal Mines for Violations of Mandatory Health or Safety Standards MSHA-2010-0008 | Examinations of Work Areas in Underground Coal Mines for Violations of Mandatory Health or Safety Standards | Rule | 2012-04-06T04:00:00Z | 2012 | 4 | 2012-04-06T15:26:23Z | 2012-08328 | 0 | 0 | 0900006480feaada |
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;