documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "OSHA-2007-0066" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, last_modified, 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-0389 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Memo Re: Incorporation of Subpart V Rulemaking Record | Supporting & Related Material | References | 2009-06-01T04:00:00Z | 2009 | 6 | 2015-02-19T14:18:19Z | 0 | 0 | 09000064809b943d | |||
| OSHA-2007-0066-0345 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Hearing Exhibits Submitted During Informal Public Hearing, March 17-20, 2009, Proposed Rule for Cranes and Derricks in Construction, OSHA-2007-0066 | Supporting & Related Material | Hearing Exhibits | 2009-04-09T04:00:00Z | 2009 | 4 | 2015-02-19T14:18:15Z | 0 | 0 | 090000648093c61f | |||
| OSHA-2007-0066-0341 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Public Hearing Transcripts - Cranes and Derricks in Construction. March 17, 2009. Washington, DC. | Supporting & Related Material | Transcripts | 2009-04-07T04:00:00Z | 2009 | 4 | 2015-12-29T01:07:10Z | 0 | 0 | 09000064809473c6 | |||
| OSHA-2007-0066-0340 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | POSTHEARING NOTICE | Other | Post Hearing Order | 2009-04-01T04:00:00Z | 2009 | 4 | 2009-04-01T04:00:00Z | 2009-06-19T03:59:59Z | 2015-02-19T14:18:15Z | 0 | 0 | 090000648093b6ce | |
| OSHA-2007-0066-0338 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Appendix B for Investigation of the March 15, 2008 Fatal Tower Crane Collapse at 303 East 51st Street, New York, NY | Supporting & Related Material | Supporting Documents/References | 2009-03-23T04:00:00Z | 2009 | 3 | 2015-02-19T14:18:15Z | 0 | 0 | 090000648092843b | |||
| OSHA-2007-0066-0336 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Investigation of the March 15, 2008 Fatal Tower Crane Collapse at 303 East 51st Street, New York, NY | Supporting & Related Material | Supporting Documents/References | 2009-03-17T04:00:00Z | 2009 | 3 | 2015-02-19T14:18:14Z | 0 | 0 | 0900006480914e51 | |||
| 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 |
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;