documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "OSHA", document_type = "Proposed Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, subtype, posted_month, 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-2016-0014-0001 | OSHA | Preventing Workplace Violence in Healthcare OSHA-2016-0014 | Prevention of Workplace Violence in Healthcare and Social Assistance | Proposed Rule | Request for Information | 2016-12-07T05:00:00Z | 2016 | 12 | 2016-12-07T05:00:00Z | 2017-04-07T03:59:59Z | 2019-11-16T02:09:05Z | 2016-29197 | 0 | 0 | 09000064823e70cd |
| OSHA-2012-0007-0646 | OSHA | Standard Improvement Project, Phase IV ("SIP IV") OSHA-2012-0007 | Standards Improvement Project-Phase IV | Proposed Rule | Extension of Comment Period | 2016-12-02T05:00:00Z | 2016 | 12 | 2016-12-02T05:00:00Z | 2017-01-05T04:59:59Z | 2017-01-07T21:08:45Z | 2016-28924 | 0 | 0 | 09000064823d9e51 |
| OSHA-2006-0037-0002 | OSHA | Hazard Communication OSHA-2006-0037 | Informal Discussion on Hazard Communication Rulemaking | Proposed Rule | Public Meeting | 2016-10-28T04:00:00Z | 2016 | 10 | 2016-10-28T04:00:00Z | 2016-11-10T13:29:47Z | 2016-26003 | 0 | 0 | 090000648235addd | |
| OSHA-S205A-2006-0697-0070 | OSHA | SCAFFOLDS USED IN THE CONSTRUCTION INDUSTRY OSHA-S205A-2006-0697 | Safety Standards for Scaffolds Used in the Construction Industry | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-10-27T04:00:00Z | 2016 | 10 | 2016-10-27T04:00:00Z | 1993-05-29T03:59:59Z | 2018-01-03T02:01:43Z | 93-7063 | 0 | 0 | 0900006482357c5b |
| OSHA-2015-0015-0002 | OSHA | Additional PortaCount® Quantitative Fit Testing Protocols: Amendment to Respiratory Protection Standard OSHA-2015-0015 | Additional PortaCount® Quantitative Fit-Testing Protocols: Amendment to Respiratory Protection Standard | Proposed Rule | Request for Comment | 2016-10-07T04:00:00Z | 2016 | 10 | 2016-10-07T04:00:00Z | 2016-12-07T04:59:59Z | 2016-12-08T02:03:21Z | 2016-23928 | 0 | 0 | 09000064822a9d5e |
| OSHA-2012-0007-0031 | OSHA | Standard Improvement Project, Phase IV ("SIP IV") OSHA-2012-0007 | Standards Improvement Project-Phase IV | Proposed Rule | Request for Comment | 2016-10-04T04:00:00Z | 2016 | 10 | 2016-10-04T04:00:00Z | 2016-12-06T04:59:59Z | 2017-01-27T02:00:23Z | 2016-19454 | 0 | 0 | 0900006482291271 |
| OSHA-S777-2006-0940-2272 | OSHA | ERGONOMICS PROGRAM OSHA-S777-2006-0940 | Ergonomics Program | Proposed Rule | Request for Comment | 2016-09-27T04:00:00Z | 2016 | 9 | 2016-09-27T04:00:00Z | 2016-09-28T01:01:50Z | 0 | 0 | 0900006482272e73 | ||
| OSHA-2013-0022-0001 | OSHA | Safety Standards for Fall Protection in Shipyard Employment OSHA-2013-0022 | Fall Protection in Shipyard Employment | Proposed Rule | Request for Information | 2016-09-08T04:00:00Z | 2016 | 9 | 2016-09-08T04:00:00Z | 2016-12-08T04:59:59Z | 2016-12-08T02:03:20Z | 2016-21369 | 0 | 0 | 09000064821e0f49 |
| OSHA-2008-0012-0071 | OSHA | Tree Care Operations OSHA-2008-0012 | Meetings: Stakeholders; Tree Care Operations | Proposed Rule | Public Meeting | 2016-06-13T04:00:00Z | 2016 | 6 | 2016-06-13T04:00:00Z | 2016-06-13T13:31:10Z | 2016-13844 | 0 | 0 | 09000064820333f6 | |
| OSHA-H005C-2006-0870-1721 | OSHA | BERYLLIUM OSHA-H005C-2006-0870 | Meetings: Occupational Exposure to Beryllium; Rescheduled | Proposed Rule | Public Hearing | 2016-02-16T05:00:00Z | 2016 | 2 | 2016-02-16T05:00:00Z | 2016-02-16T14:25:53Z | 2016-02782 | 0 | 0 | 0900006481e6e30b |
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;