documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "OSHA-H005C-2006-0870" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, withdrawn, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OSHA-H005C-2006-0870-2171 | OSHA | BERYLLIUM OSHA-H005C-2006-0870 | Ohshimo, S. et al. 2017. Differential Diagnosis of Granulomatous Lung Disease: Clues and Pitfalls. Series Pathology for the Clinician. Eur Respir Rev: 26: 1-16. | Supporting & Related Material | Publication - Copyrighted Materials | 2018-09-19T04:00:00Z | 2018 | 9 | 2018-09-19T15:48:58Z | 0 | 0 | 0900006483722f03 | |||
| OSHA-H005C-2006-0870-2170 | OSHA | BERYLLIUM OSHA-H005C-2006-0870 | Limited Extension of Select Compliance Dates for Occupational Exposure to Beryllium in General Industry | Rule | Final Rule | 2018-08-09T04:00:00Z | 2018 | 8 | 2018-08-09T04:00:00Z | 2018-08-09T12:45:12Z | 2018-17106 | 0 | 0 | 09000064835f9135 | |
| OSHA-H005C-2006-0870-2169 | OSHA | BERYLLIUM OSHA-H005C-2006-0870 | Notes from June 27, 2018 Abrasive Blasting Manufacturers Alliance (ABMA) Meeting | Supporting & Related Material | Meeting Materials | 2018-08-06T04:00:00Z | 2018 | 8 | 2018-08-06T18:05:34Z | 0 | 0 | 09000064835d4138 | |||
| OSHA-H005C-2006-0870-2158 | OSHA | BERYLLIUM OSHA-H005C-2006-0870 | Limited Extension of Select Compliance Dates for Occupational Exposure to Beryllium in General Industry | Proposed Rule | Notice of Extension | 2018-06-01T04:00:00Z | 2018 | 6 | 2018-06-01T04:00:00Z | 2018-07-03T03:59:59Z | 2018-07-03T01:08:43Z | 2018-11643 | 0 | 0 | 090000648331e7c8 |
| OSHA-H005C-2006-0870-2157 | OSHA | BERYLLIUM OSHA-H005C-2006-0870 | Office of Management and Budget memo for the heads of executive departments and agencies. Safeguarding Against and Responding to the Breach of Personally Identifiable Information. May 22, 2007. M-07-16. | Supporting & Related Material | Memorandum | 2018-05-21T04:00:00Z | 2018 | 5 | 2018-05-21T13:17:46Z | 0 | 0 | 09000064832800d6 | |||
| OSHA-H005C-2006-0870-2156 | OSHA | BERYLLIUM OSHA-H005C-2006-0870 | Materion Signed Settlement Agreement (April 24, 2018) | Supporting & Related Material | Agency References | 2018-05-04T04:00:00Z | 2018 | 5 | 2018-05-04T14:48:43Z | 0 | 0 | 090000648322b585 | |||
| OSHA-H005C-2006-0870-2155 | OSHA | BERYLLIUM OSHA-H005C-2006-0870 | Signed Materion Settlement Agreement (April 24, 2018) | Supporting & Related Material | 2018-04-26T00:00:00Z | 2018 | 4 | 2018-05-04T14:43:43Z | 0 | 1 | 09000064831c75ef | ||||
| OSHA-H005C-2006-0870-2154 | OSHA | BERYLLIUM OSHA-H005C-2006-0870 | Meeting Materials from March 20, 2018 meeting between OSHA and Strategic Materials, Inc., EHS Abrasives, and Garnet | Supporting & Related Material | Meeting Materials | 2018-03-30T04:00:00Z | 2018 | 3 | 2018-04-05T19:19:24Z | 0 | 0 | 09000064830655b3 | |||
| OSHA-H005C-2006-0870-2153 | OSHA | BERYLLIUM OSHA-H005C-2006-0870 | Grant Thornton's 2015 Government Contractor Survey. Grant Thornton International. | Supporting & Related Material | Publication - Copyrighted Materials | 2018-03-22T04:00:00Z | 2018 | 3 | 2018-03-22T16:29:25Z | 0 | 0 | 090000648303f32f | |||
| OSHA-H005C-2006-0870-2152 | OSHA | BERYLLIUM OSHA-H005C-2006-0870 | Occupational Exposure: Beryllium | Rule | Final Rule | 2018-03-07T05:00:00Z | 2018 | 3 | 2018-03-07T05:00:00Z | 2018-03-07T13:20:42Z | 2018-04579 | 0 | 0 | 0900006482fa12be |
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;