documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "OSHA", document_type = "Rule" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OSHA-2007-0072-0396 | OSHA | Walking-Working Surfaces; Personal Protective Equipment (Fall Protection Systems) OSHA-2007-0072 | Walking-Working Surfaces, Personal Protective Equipment (Fall Protection Systems), and Special Industries (Electric Power Generation, Transmission, and Distribution); Corrections | Rule | Correction | 2019-12-17T05:00:00Z | 2019 | 12 | 2019-12-17T05:00:00Z | 2019-12-18T14:01:22Z | 2019-27114 | 0 | 0 | 090000648421d047 | |
| OSHA-2017-0006-0055 | OSHA | Federal Registers Unassociated with a Docket OSHA-2017-0006 | Rules of Procedure | Rule | 2019-10-04T04:00:00Z | 2019 | 10 | 2019-10-04T04:00:00Z | 2025-06-05T22:41:03Z | 2019-21414 | 0 | 0 | 090000648401fca9 | ||
| OSHA-H005C-2006-0870-2189 | OSHA | BERYLLIUM OSHA-H005C-2006-0870 | Occupational Exposure to Beryllium and Beryllium Compounds in Construction and Shipyard Sectors | Rule | Final Rule | 2019-09-30T04:00:00Z | 2019 | 9 | 2019-09-30T04:00:00Z | 2019-12-09T05:48:04Z | 2019-21037 | 0 | 0 | 0900006483fead6f | |
| OSHA-2015-0015-0052 | OSHA | Additional PortaCount® Quantitative Fit Testing Protocols: Amendment to Respiratory Protection Standard OSHA-2015-0015 | Additional Ambient Aerosol CNC Quantitative Fit Testing Protocols: Respiratory Protection Standard | Rule | Final Rule | 2019-09-26T04:00:00Z | 2019 | 9 | 2019-09-26T04:00:00Z | 2019-09-26T12:40:44Z | 2019-20686 | 0 | 0 | 0900006483fcaf59 | |
| OSHA-2013-0023-2168 | OSHA | Improve Tracking of Workplace Injuries and Illnesses OSHA-2013-0023 | Recording and Reporting Occupational Injuries and Illnesses; Approval of Information Collection Requirements | Rule | 2019-07-29T04:00:00Z | 2019 | 7 | 2019-07-29T04:00:00Z | 2019-07-29T12:36:52Z | 2019-15880 | 0 | 0 | 0900006483dc2094 | ||
| OSHA-2014-0019-0021 | OSHA | Arizona State Plan for Occupational Safety and Health OSHA-2014-0019 | Arizona State Plan for Occupational Safety and Health | Rule | Withdrawal | 2019-07-26T04:00:00Z | 2019 | 7 | 2019-07-26T04:00:00Z | 2019-07-26T12:27:56Z | 2019-15850 | 0 | 0 | 0900006483dbb26c | |
| OSHA-2007-0066-1870 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Cranes and Derricks in Construction: Operator Qualification; Approval of Information Collection Requirements | Rule | Final Rule | 2019-07-19T04:00:00Z | 2019 | 7 | 2019-07-19T04:00:00Z | 2019-07-19T13:07:01Z | 2019-15383 | 0 | 0 | 0900006483da0509 | |
| OSHA-2012-0007-0783 | OSHA | Standard Improvement Project, Phase IV ("SIP IV") OSHA-2012-0007 | Standards Improvement Project-Phase IV | Rule | Final Rule | 2019-05-14T04:00:00Z | 2019 | 5 | 2019-05-14T04:00:00Z | 2019-05-14T12:36:23Z | 2019-07902 | 0 | 0 | 0900006483c79b92 | |
| OSHA-2017-0006-0011 | OSHA | Federal Registers Unassociated with a Docket OSHA-2017-0006 | Process Safety Management of Highly Hazardous Chemicals and Slings | Rule | 2019-04-15T04:00:00Z | 2019 | 4 | 2019-04-15T04:00:00Z | 2019-04-16T15:53:20Z | 2019-07286 | 0 | 0 | 0900006483ba2927 | ||
| OSHA-2013-0023-2167 | OSHA | Improve Tracking of Workplace Injuries and Illnesses OSHA-2013-0023 | Tracking of Workplace Injuries and Illnesses | Rule | Final Rule | 2019-01-25T05:00:00Z | 2019 | 1 | 2019-01-25T05:00:00Z | 2019-01-25T15:50:33Z | 2019-00101 | 0 | 0 | 0900006483a0b5fe | |
| OSHA-2017-0006-0010 | OSHA | Federal Registers Unassociated with a Docket OSHA-2017-0006 | Federal Civil Penalties Inflation Adjustment Act Annual Adjustments for 2019 | Rule | 2019-01-23T05:00:00Z | 2019 | 1 | 2019-01-23T05:00:00Z | 2019-01-24T12:56:40Z | 2019-00089 | 0 | 0 | 0900006483a028cd |
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;