documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where agency_id = "MSHA", document_type = "Notice" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2010-0005-0037 | MSHA | Safety and Health Management Programs for Mines MSHA-2010-0005 | Safety and Health Management Programs for Mines - Notice of Public Meetings | Notice | 2011-10-18T04:00:00Z | 2011 | 10 | 2011-10-18T04:00:00Z | 2015-03-17T14:58:47Z | 0 | 0 | 0900006480f54cb2 | |||
| MSHA-2011-0004-0001 | MSHA | Paperwork renewal package - Proposed Extension of Existing Information Collection; Automatic Fire Sensor and Warning Device Systems; Examination and Test Requirements MSHA-2011-0004 | PAPERWORK PACKAGE RENEWAL - NOTICE OF REQUEST FOR PUBLIC COMMENTS | Notice | 2011-09-20T04:00:00Z | 2011 | 9 | 2011-09-20T04:00:00Z | 2011-11-22T04:59:59Z | 2011-09-20T19:27:53Z | 182 | 0 | 0 | 0900006480f23722 | |
| MSHA-2011-0003-0001 | MSHA | Proposed Extension of Existing Information Collection; Testing, Evaluation, and Approval of Mining Products MSHA-2011-0003 | Proposed Extension of Existing Information Collection; Testing, Evaluation, and Approval of Mining Products | Notice | 2011-06-14T04:00:00Z | 2011 | 6 | 2011-06-14T04:00:00Z | 2011-06-29T03:59:59Z | 2011-06-14T20:14:37Z | 83 | 0 | 0 | 0900006480e4fd0d | |
| MSHA-2010-0008-0036 | MSHA | Examinations of Work Areas in Underground Coal Mines for Violations of Mandatory Health or Safety Standards MSHA-2010-0008 | Federal Register; Proposed rule; notice of public hearings; notice of re-opening and close of comment period | Notice | Public Hearings | 2011-05-05T04:00:00Z | 2011 | 5 | 2011-05-05T04:00:00Z | 2011-06-11T16:48:08Z | 86 | 0 | 0 | 0900006480c4058a |
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;