documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "MSHA", document_type = "Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, 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-2008-0012-0001 | MSHA | Mine Rescue Team Equipment MSHA-2008-0012 | Mine Rescue Team Equipment | Rule | 2008-09-15T04:00:00Z | 2008 | 9 | 2008-09-15T04:00:00Z | 2011-06-11T16:45:03Z | E8-21449 | 0 | 0 | 0900006480706342 | ||
| MSHA-2008-0013-0001 | MSHA | Fire Extinguishers in Underground Coal Mines (FINAL RULE) MSHA-2008-0013 | Fire Extinguishers in Underground Coal Mines | Rule | 2008-09-15T04:00:00Z | 2008 | 9 | 2008-09-15T04:00:00Z | 2011-06-11T16:45:04Z | E8-21448 | 0 | 0 | 0900006480706366 | ||
| MSHA-2008-0006-0001 | MSHA | Notice of enforcement of DPM final limit; withdrawal of intent to issue a proposed rule. MSHA-2008-0006 | Diesel Particulate Matter Exposure of Underground Metal and Nonmetal Miners | Rule | Other | 2008-05-20T04:00:00Z | 2008 | 5 | 2008-05-20T04:00:00Z | 2011-06-11T16:44:58Z | E8-11329 | 0 | 0 | 09000064805f4738 | |
| MSHA-2007-0002-0037 | MSHA | Sealing of Abandoned Areas; Final Rule MSHA-2007-0002 | Sealing of Abandoned Areas | Rule | 2008-05-14T04:00:00Z | 2008 | 5 | 2008-05-14T04:00:00Z | 2011-06-11T16:44:45Z | E8-10662 | 0 | 0 | 09000064805b7e15 | ||
| MSHA-2008-0005-0001 | MSHA | Sealing of Abandoned Areas MSHA-2008-0005 | Sealing of Abandoned Areas | Rule | Final Rule | 2008-04-18T04:00:00Z | 2008 | 4 | 2008-04-18T04:00:00Z | 2011-06-11T16:44:57Z | 08-01152 | 0 | 0 | 0900006480511ae1 | |
| MSHA-2008-0003-0001 | MSHA | Asbestos Exposure Limit MSHA-2008-0003 | Asbestos Exposure Limit | Rule | Final Rule | 2008-02-29T05:00:00Z | 2008 | 2 | 2008-02-29T05:00:00Z | 2011-06-11T16:44:57Z | E8-03828 | 0 | 0 | 09000064803d4fca | |
| MSHA-2007-0006-0003 | MSHA | Mine Rescue Teams MSHA-2007-0006 | Mine Rescue Teams | Rule | Final Rule | 2008-02-08T05:00:00Z | 2008 | 2 | 2008-02-08T05:00:00Z | 2011-06-11T16:44:55Z | 08-00551 | 0 | 0 | 09000064803aaa3d | |
| MSHA-2008-0001-0001 | MSHA | Criteria and Procedures for Proposed Assessment of Civil Penalties MSHA-2008-0001 | Criteria and Procedures for Proposed Assessment of Civil Penalties | Rule | Final Rule | 2008-02-07T05:00:00Z | 2008 | 2 | 2008-02-07T05:00:00Z | 2011-06-11T16:44:56Z | E8-02226 | 0 | 0 | 09000064803a9ec5 |
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;