documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "OSHA", document_type = "Rule" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-2013-0023-1915 | OSHA | Improve Tracking of Workplace Injuries and Illnesses OSHA-2013-0023 | Improve Tracking of Workplace Injuries and Illnesses: Delay of Compliance Date | Rule | Final Rule | 2017-11-24T05:00:00Z | 2017 | 11 | 2017-11-24T05:00:00Z | 2017-11-24T13:48:42Z | 2017-25392 | 0 | 0 | 0900006482ca7de6 | |
| OSHA-2007-0066-0668 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Cranes and Derricks in Construction: Operator Certification Extension | Rule | Final Rule | 2017-11-09T05:00:00Z | 2017 | 11 | 2017-11-09T05:00:00Z | 2017-11-09T13:33:39Z | 2017-24349 | 0 | 0 | 0900006482c607a5 | |
| OSHA-2013-0002-0008 | OSHA | Standard on Walking-Working Surfaces (29 CFR part 1910, subpart D) OSHA-2013-0002 | Walking-Working Surfaces and Personal Protective Equipment (Fall Protection Systems) for General Industry; Approval of Collections of Information | Rule | Final Rule | 2017-07-06T04:00:00Z | 2017 | 7 | 2017-07-06T04:00:00Z | 2017-07-06T12:24:22Z | 2017-14122 | 0 | 0 | 0900006482806e1d | |
| OSHA-2015-0006-0032 | OSHA | Clarification of Employer's Continuing Obligation to Make and Maintain an Accurate Record of Each Recordable Injury and Illness OSHA-2015-0006 | Clarification of Employer's Continuing Obligation to Make and Maintain an Accurate Record of Each Recordable Injury and Illness | Rule | Final Rule | 2017-05-03T04:00:00Z | 2017 | 5 | 2017-05-03T04:00:00Z | 2017-05-03T13:13:59Z | 2017-08754 | 0 | 0 | 090000648258d2c5 | |
| OSHA-H005C-2006-0870-2074 | OSHA | BERYLLIUM OSHA-H005C-2006-0870 | Occupational Exposure: Beryllium; Further Delay of Effective Date | Rule | Final Rule | 2017-03-21T04:00:00Z | 2017 | 3 | 2017-03-21T04:00:00Z | 2017-03-21T12:32:56Z | 2017-05569 | 0 | 0 | 09000064825159f6 | |
| OSHA-H005C-2006-0870-2046 | OSHA | BERYLLIUM OSHA-H005C-2006-0870 | Occupational Exposure to Beryllium: Delay of Effective Date | Rule | Final Rule | 2017-02-01T05:00:00Z | 2017 | 2 | 2017-02-01T05:00:00Z | 2017-02-01T13:08:11Z | 2017-02149 | 0 | 0 | 09000064824a3bda | |
| OSHA-2017-0006-0001 | OSHA | Federal Registers Unassociated with a Docket OSHA-2017-0006 | Department of Labor Federal Civil Penalties Inflation Adjustment Act Annual Adjustments for 2017 | Rule | 2017-01-18T05:00:00Z | 2017 | 1 | 2017-01-18T05:00:00Z | 2017-05-01T13:41:07Z | 2017-00614 | 0 | 0 | 09000064824806d8 | ||
| OSHA-H005C-2006-0870-2043 | OSHA | BERYLLIUM OSHA-H005C-2006-0870 | Occupational Exposure to Beryllium | Rule | Final Rule | 2017-01-09T05:00:00Z | 2017 | 1 | 2017-01-09T05:00:00Z | 2017-01-09T14:42:25Z | 2016-30409 | 0 | 0 | 09000064824529e1 |
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;