documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "OSHA", document_type = "Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2008-0031-0087 | OSHA | Clarification of Remedy for Violation of Requirements to Provide Personal Protective Equipment and Train Employees OSHA-2008-0031 | Clarification of Employer Duty To Provide Personal Protective Equipment and Train Each Employee. Final Rule | Rule | Final Rule | 2008-12-12T05:00:00Z | 2008 | 12 | 2008-12-12T05:00:00Z | 2011-06-11T14:25:10Z | E8-29122 | 0 | 0 | 09000064807d8864 | |
| OSHA-S025A-2006-0658-0310 | OSHA | LONGSHORING AND MARINE TERMINALS STANDARDS (Parts 1917 and 1918) FOR VERTICAL TANDEM LIFTS (VTL's) OSHA-S025A-2006-0658 | Longshoring and Marine Terminals; Vertical Tandem Lifts. Final Rule | Rule | Final Rule | 2008-12-10T05:00:00Z | 2008 | 12 | 2008-12-10T05:00:00Z | 2011-06-11T14:57:16Z | E8-28644 | 0 | 0 | 09000064807d5716 | |
| OSHA-S108C-2006-0688-0134 | OSHA | ELECTRICAL STDS OSHA-S108C-2006-0688 | Electrical Standard; Clarifications; Corrections | Rule | Final Rule | 2008-10-29T04:00:00Z | 2008 | 10 | 2008-10-29T04:00:00Z | 2011-06-11T14:57:27Z | E8-25789 | 0 | 0 | 0900006480782af7 | |
| OSHA-2007-0015-0002 | OSHA | Electrical Standard; Final Rule OSHA-2007-0015 | S-108C: Electrical Standard; Clarifications; Corrections. Final Rule; clarifications; correcting amendments | Rule | Correction | 2008-10-29T04:00:00Z | 2008 | 10 | 2008-10-29T04:00:00Z | 2016-08-10T20:11:36Z | 210 | 0 | 0 | 0900006480782f8e | |
| OSHA-2007-0040-0011 | OSHA | Updating OSHA Standards Based on National Consensus Standards OSHA-2007-0040 | Updating OSHA Standards Based on National Consensus Standards; Final rule; confirmation of effective date | Rule | Final Rule | 2008-03-14T04:00:00Z | 2008 | 3 | 2008-03-14T04:00:00Z | 2011-06-11T14:19:33Z | E8-05120 | 0 | 0 | 09000064803f7542 |
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;