documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "OSHA-2007-0066" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, withdrawn, 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-0673 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Crane Operator Qualification Reports | Supporting & Related Material | Report | 2017-12-15T05:00:00Z | 2017 | 12 | 2017-12-15T17:57:47Z | 0 | 0 | 0900006482d15552 | |||
| OSHA-2007-0066-0672 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | British Columbia Crane Operator Qualification and Evaluation Requirements | Supporting & Related Material | Guidance | 2017-11-30T05:00:00Z | 2017 | 11 | 2017-11-30T13:10:22Z | 0 | 0 | 0900006482cb298e | |||
| OSHA-2007-0066-0670 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | December 3, 2015, Letter from the International Union of Operating Engineers to DOL | Supporting & Related Material | Letter | 2017-11-30T05:00:00Z | 2017 | 11 | 2017-11-30T13:07:50Z | 0 | 0 | 0900006482cb298c | |||
| OSHA-2007-0066-0671 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | OSHA Press Release - OSHA announces intent to extend compliance date for crane operator certification requirements | Supporting & Related Material | Press Release, Public Announcement/Notice | 2017-11-30T05:00:00Z | 2017 | 11 | 2017-11-30T13:09:14Z | 0 | 0 | 0900006482cb298d | |||
| OSHA-2007-0066-0669 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Crane Operator Qualification Reports | Supporting & Related Material | 2017-11-30T00:00:00Z | 2017 | 11 | 2017-12-15T17:59:32Z | 0 | 1 | 0900006482cb298b | ||||
| 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-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-0539 | OSHA | Safety Standards for Cranes and Derricks in Construction OSHA-2007-0066 | Crane Operator Certification Stakeholder Meeting Notes -- April 2-3, 2013 | Supporting & Related Material | MI-Minutes of Meeting | 2017-07-26T04:00:00Z | 2017 | 7 | 2017-07-26T16:54:08Z | 0 | 0 | 090000648296e49f |
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;