documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "OSHA-2007-0066" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2007-0066-0838 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Cranes and Derricks in Construction; Operator Qualification | Proposed Rule | Extension of Comment Period | 2018-06-20T04:00:00Z | 2018 | 6 | 2018-06-20T04:00:00Z | 2018-07-06T03:59:59Z | 2018-10-16T01:12:47Z | 2018-13280 | 0 | 0 | 0900006483433810 |
| OSHA-2007-0066-0675 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Cranes and Derricks in Construction: Operator Qualification | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2018-05-21T04:00:00Z | 2018 | 5 | 2018-05-21T04:00:00Z | 2018-06-21T03:59:59Z | 2018-06-23T01:07:37Z | 2018-10559 | 0 | 0 | 090000648329ff72 |
| OSHA-2007-0066-0540 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Cranes and Derricks in Construction: Operator Certification Extension | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2017-08-30T04:00:00Z | 2017 | 8 | 2017-08-30T04:00:00Z | 2017-09-30T03:59:59Z | 2017-09-30T13:02:09Z | 2017-18441 | 0 | 0 | 0900006482af3edc |
| OSHA-2007-0066-0499 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Cranes and Derricks in Construction: Operator Certification | Proposed Rule | Hearings | 2014-04-15T04:00:00Z | 2014 | 4 | 2014-04-15T04:00:00Z | 2014-04-26T03:59:59Z | 2014-04-26T01:01:59Z | 2014-08512 | 0 | 0 | 09000064816b41fc |
| OSHA-2007-0066-0432 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Cranes and Derricks in Construction: Operator Certification | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-02-10T05:00:00Z | 2014 | 2 | 2014-02-10T05:00:00Z | 2014-03-13T03:59:59Z | 2014-03-14T01:02:41Z | 2014-02579 | 0 | 0 | 09000064815564b5 |
| OSHA-2007-0066-0427 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Cranes and Derricks in Construction: Demolition and Underground Construction. ACTION: Notice of proposed rulemaking. | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-08-17T04:00:00Z | 2012 | 8 | 2012-08-17T04:00:00Z | 2012-09-18T03:59:59Z | 2015-02-19T14:18:25Z | 2012-20170 | 0 | 0 | 09000064810e15bd |
| OSHA-2007-0066-0168 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Cranes and Derricks in Construction. Proposed Rule; Notice of Hearing | Proposed Rule | 2009-01-26T05:00:00Z | 2009 | 1 | 2009-01-26T05:00:00Z | 2009-03-04T04:59:59Z | 2015-02-19T14:18:04Z | E9-01128 | 0 | 0 | 09000064808308c3 | |
| 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 |
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;