documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "MSHA-2010-0007" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_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-0007-0397 | MSHA | Lowering Miners' Exposure to Respirable Coal Mine Dust, Including Continuous Personal Dust Monitors MSHA-2010-0007 | Page, S., J. Volkwein, R. Vinson, G. Joy, S. Mischler, D. Tuchman, and L. McWilliams. 2008. Equivalency of a Personal Dust Monitor To The Current United States Coal Mine Respirable Dust Sampler. NIOSHTIC-2 No.20033402. Also published in Journal of Environmental Monitoring, 10(1):96-101. | Supporting & Related Material | Publication - Other Governmental | 2013-10-29T04:00:00Z | 2013 | 10 | 2013-10-30T14:19:54Z | 0 | 0 | 0900006481465649 | |||
| MSHA-2010-0007-0396 | MSHA | Lowering Miners' Exposure to Respirable Coal Mine Dust, Including Continuous Personal Dust Monitors MSHA-2010-0007 | Attfield, M.D. and Kuempel, E.D. (2008). “Mortality Among U.S. Underground Coal Miners, A 23-year follow-up.” American Journal of Industrial Medicine 51(4):231-245, with Erratum (2010), American Journal of Industrial Medicine (53)(5):550. | Supporting & Related Material | 2013-07-18T04:00:00Z | 2013 | 7 | 2013-08-01T16:03:37Z | 0 | 0 | 090000648136e6f1 | ||||
| MSHA-2010-0007-0395 | MSHA | Lowering Miners' Exposure to Respirable Coal Mine Dust, Including Continuous Personal Dust Monitors MSHA-2010-0007 | U.S. Bureau of Economic Analysis (2010). “National Income and Product Accounts Table: Table1.1.9. Implicit Price Deflators for Gross Domestic Product” [Index numbers, 2005 = 100]. May 27, 2010. | Supporting & Related Material | Publication - Other Governmental | 2013-01-18T05:00:00Z | 2013 | 1 | 2013-01-18T22:06:05Z | 0 | 0 | 09000064811c9b5a | |||
| MSHA-2010-0007-0394 | MSHA | Lowering Miners' Exposure to Respirable Coal Mine Dust, Including Continuous Personal Dust Monitors MSHA-2010-0007 | U.S. Bureau of Economic Analysis (2010). “National Income and Product Accounts Table: Table 1.1.9. Implicit Price Deflators for Gross Domestic Product [Index numbers, 2005=100].” May 27, 2010. | Supporting & Related Material | Publication - Other Governmental | 2013-01-18T05:00:00Z | 2013 | 1 | 2013-01-18T21:56:50Z | 0 | 0 | 09000064811c9b59 |
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;