documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "OSHA", document_type = "Proposed Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-2007-0066-0112 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Cranes and Derricks in Construction; Notice of Proposed Rulemaking; Extension of Written Comment Period | Proposed Rule | Extension of Comment Period | 2008-12-02T05:00:00Z | 2008 | 12 | 2008-12-02T05:00:00Z | 2009-01-23T04:59:59Z | 2015-02-19T14:17:52Z | E8-28608 | 0 | 0 | 09000064807c8dd3 |
| OSHA-2007-0066-0001 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Cranes and Derricks in Construction | Proposed Rule | 2008-10-09T04:00:00Z | 2008 | 10 | 2008-10-09T04:00:00Z | 2008-12-09T04:59:59Z | 2015-02-19T14:17:42Z | E8-21993 | 0 | 0 | 09000064807410d8 | |
| OSHA-2008-0012-0001 | OSHA | Tree Care Operations OSHA-2008-0012 | Tree Care Operations | Proposed Rule | 2008-09-18T04:00:00Z | 2008 | 9 | 2008-09-18T04:00:00Z | 2008-12-18T04:59:59Z | 2011-06-11T14:24:56Z | E8-21851 | 0 | 0 | 090000648070ccf8 | |
| OSHA-2008-0031-0001 | OSHA | Clarification of Remedy for Violation of Requirements to Provide Personal Protective Equipment and Train Employees OSHA-2008-0031 | Clarification of Remedy For Violation of Requirements To Provide Personal Protective Equipment and Train Employees | Proposed Rule | 2008-08-19T04:00:00Z | 2008 | 8 | 2008-08-19T04:00:00Z | 2008-09-19T03:59:59Z | 2011-06-11T14:25:09Z | 161 | 0 | 0 | 09000064806ccd53 | |
| OSHA-2007-0026-0157 | OSHA | Confined Spaces in Construction OSHA-2007-0026 | Confined Spaces in Construction | Proposed Rule | 2008-04-21T04:00:00Z | 2008 | 4 | 2008-04-21T04:00:00Z | 2008-06-21T03:59:59Z | 2014-01-07T20:49:34Z | E8-08460 | 0 | 0 | 0900006480517e6f | |
| OSHA-2007-0026-0019 | OSHA | Confined Spaces in Construction OSHA-2007-0026 | Confined Spaces in Construction. Notice of Proposed Rulemaking; Extension of Written Comment Period | Proposed Rule | Extension of Comment Period | 2008-01-23T05:00:00Z | 2008 | 1 | 2008-01-23T05:00:00Z | 2008-02-29T04:59:59Z | 2014-01-07T20:49:21Z | E8-01081 | 0 | 0 | 09000064803a0dca |
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;