documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "MSHA", document_type = "Rule" and posted_year = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, last_modified, 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-2006-0044-0001 | MSHA | Emergency Mine Evacuation MSHA-2006-0044 | Emergency Mine Evacuation | Rule | Final Rule | 2006-12-08T05:00:00Z | 2006 | 12 | 2006-12-08T05:00:00Z | 2011-06-11T16:44:45Z | 06-09608 | 0 | 0 | 09000064801e9f4a | |
| MSHA-2006-0028-0001 | MSHA | Diesel Particulate Matter Exposure of Underground Metal and Nonmetal Miners MSHA-2006-0028 | Diesel Particulate Matter Exposure of Underground Metal and Nonmetal Miners | Rule | 2006-06-27T04:00:00Z | 2006 | 6 | 2006-06-27T04:00:00Z | 2011-06-11T16:44:43Z | E6-10084 | 0 | 0 | 0900006480190ad8 | ||
| MSHA-2006-0027-0001 | MSHA | Diesel Particulate Matter Exposure of Underground Metal and Nonmetal Miners MSHA-2006-0027 | Diesel Particulate Matter Exposure of Underground Metal and Nonmetal Miners | Rule | 2006-06-09T04:00:00Z | 2006 | 6 | 2006-06-09T04:00:00Z | 2011-06-11T16:44:43Z | E6-09067 | 0 | 0 | 0900006480184ac1 | ||
| MSHA-2006-0004-0003 | MSHA | Diesel Particulate Matter Exposure of Underground Metal and Nonmetal Miners MSHA-2006-0004 | Diesel Particulate Matter Exposure of Underground Metal and Nonmetal Miners | Rule | 2006-06-08T04:00:00Z | 2006 | 6 | 2006-06-08T04:00:00Z | 2006-09-02T20:21:21Z | C6-04494 | 0 | 0 | 0900006480183d22 | ||
| MSHA-2006-0010-0003 | MSHA | Emergency Mine Evacuation MSHA-2006-0010 | Emergency Mine Evacuation | Rule | 2006-05-24T04:00:00Z | 2006 | 5 | 2006-05-24T04:00:00Z | 2006-06-30T03:59:59Z | 2011-06-11T16:44:41Z | 06-04825 | 0 | 0 | 0900006480179661 | |
| MSHA-2006-0004-0002 | MSHA | Diesel Particulate Matter Exposure of Underground Metal and Nonmetal Miners MSHA-2006-0004 | Diesel Particulate Matter Exposure of Underground Metal and Nonmetal Miners | Rule | 2006-05-18T04:00:00Z | 2006 | 5 | 2006-05-18T04:00:00Z | 2011-06-11T16:44:40Z | 06-04494 | 0 | 0 | 0900006480174c31 | ||
| MSHA-2006-0025-0001 | MSHA | Evaluation of International Electrotechnical Commissions Standards for Explosion-Proof Enclosures MSHA-2006-0025 | Evaluation of International Electrotechnical Commissions Standards for Explosion-Proof Enclosures | Rule | 2006-05-17T04:00:00Z | 2006 | 5 | 2006-05-17T04:00:00Z | 2011-06-11T16:44:42Z | 06-04391 | 0 | 0 | 09000064801741f8 | ||
| MSHA-2006-0017-0001 | MSHA | Department of Labor Regulatory Review and Update MSHA-2006-0017 | Department of Labor Regulatory Review and Update | Rule | 2006-04-03T04:00:00Z | 2006 | 4 | 2006-04-03T04:00:00Z | 2006-09-02T20:21:43Z | 06-03041 | 0 | 0 | 09000064801542f1 | ||
| MSHA-2006-0010-0002 | MSHA | Emergency Mine Evacuation MSHA-2006-0010 | Emergency Mine Evacuation | Rule | 2006-03-27T05:00:00Z | 2006 | 3 | 2006-03-27T05:00:00Z | 2011-06-11T16:44:41Z | 06-02907 | 0 | 0 | 090000648014e97d | ||
| MSHA-2006-0010-0001 | MSHA | Emergency Mine Evacuation MSHA-2006-0010 | Emergency Mine Evacuation | Rule | 2006-03-09T05:00:00Z | 2006 | 3 | 2006-03-09T05:00:00Z | 2006-05-31T03:59:59Z | 2011-06-11T16:44:41Z | 06-02255 | 0 | 0 | 0900006480141e21 | |
| MSHA-2005-0017-0002 | MSHA | Training Standards for Shaft and Slope Construction Workers at Underground Mines and Surface Areas of Underground Mines MSHA-2005-0017 | Training Standards for Shaft and Slope Construction Workers at Underground Mines and Surface Areas of Underground Mines | Rule | 2006-01-23T05:00:00Z | 2006 | 1 | 2006-01-23T05:00:00Z | 2006-09-02T20:21:12Z | C5-24624 | 0 | 0 | 0900006480119372 |
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;