documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "OSHA-S270A-2006-0709" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- OSHA 8
| 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-S270A-2006-0709-0013 | OSHA | ROLL-OVER PROTECTION STRUCTURES (ROPS) OSHA-S270A-2006-0709 | 5-1: ROLL-OVER PROTECTIVE STRUCTURES. FINAL RULE; CORRECTIONS AND TECHNICAL AMENDMENTS | Notice | Federal Register Notices | 2006-07-20T04:00:00Z | 2006 | 7 | 2006-07-20T04:00:00Z | 2006-07-21T03:59:59Z | 2016-08-10T21:03:05Z | 0 | 0 | 0900006480204cfd | |
| OSHA-S270A-2006-0709-0012 | OSHA | ROLL-OVER PROTECTION STRUCTURES (ROPS) OSHA-S270A-2006-0709 | 5: ROLL-OVER PROTECTIVE STRUCTURES. FINAL RULE; CONFIRMATION OF EFFECTIVE DATE | Notice | Federal Register Notices | 2006-02-28T05:00:00Z | 2006 | 2 | 2006-02-28T05:00:00Z | 2006-03-01T04:59:59Z | 2016-08-10T21:03:05Z | 0 | 0 | 0900006480204cfc | |
| OSHA-S270A-2006-0709-0005 | OSHA | ROLL-OVER PROTECTION STRUCTURES (ROPS) OSHA-S270A-2006-0709 | Supporting Exhibit 4-1; TABLE 1. DIFFERENCES BETWEEN THE SAE AND ORIGINAL OSHA STANDARDS IN ROPS FRAME-TESTING REQUIREMENTS FOR CONSTRUCTION | Supporting & Related Material | References/Supporting Documents | 2006-01-01T05:00:00Z | 2006 | 1 | 2016-05-20T23:08:04Z | 0 | 0 | 0900006480204cf5 | |||
| OSHA-S270A-2006-0709-0007 | OSHA | ROLL-OVER PROTECTION STRUCTURES (ROPS) OSHA-S270A-2006-0709 | Supporting Exhibit 4-3; TABLE 3. DIFFERENCES AMONG THE ASAE, SAE, AND ORIGINAL OSHA STANDARDS IN ROPS FRAME-TESTING REQUIREMENTS FOR AGRICULTURE | Supporting & Related Material | References/Supporting Documents | 2006-01-01T05:00:00Z | 2006 | 1 | 2016-05-20T23:08:04Z | 0 | 0 | 0900006480204cf7 | |||
| OSHA-S270A-2006-0709-0001 | OSHA | ROLL-OVER PROTECTION STRUCTURES (ROPS) OSHA-S270A-2006-0709 | 1: ROLL-OVER PROTECTIVE STRUCTURES. DIRECT FINAL RULE | Notice | Federal Register Notices | 2005-12-29T05:00:00Z | 2005 | 12 | 2005-12-29T05:00:00Z | 2005-12-30T04:59:59Z | 2016-08-10T21:03:04Z | 0 | 0 | 0900006480204cf1 | |
| OSHA-S270A-2006-0709-0009 | OSHA | ROLL-OVER PROTECTION STRUCTURES (ROPS) OSHA-S270A-2006-0709 | Supporting Exhibit 4-5; MEMORANDUM FOR ROBERT BELL, OSHA , SUBJECT: MEMO TO FILE ON ROPS | Supporting & Related Material | References/Supporting Documents | 2005-03-10T05:00:00Z | 2005 | 3 | 2016-05-20T23:08:04Z | 0 | 0 | 0900006480204cf9 | |||
| OSHA-S270A-2006-0709-0010 | OSHA | ROLL-OVER PROTECTION STRUCTURES (ROPS) OSHA-S270A-2006-0709 | Supporting Exhibit 4-6; LETTER TO JAMES P SCHMITT, DIRECTOR OF ENGINEERING, CUSTOM PRODUCTS OF LITCHFIELD INC REGARDING SUBSTANTIVE INFORMATION PROMISED IN INTIAL RESPONSE DATED SEPTEMBER 5 2001 | Supporting & Related Material | References/Supporting Documents | 2002-03-01T05:00:00Z | 2002 | 3 | 2016-05-20T23:08:04Z | 0 | 0 | 0900006480204cfa | |||
| OSHA-S270A-2006-0709-0011 | OSHA | ROLL-OVER PROTECTION STRUCTURES (ROPS) OSHA-S270A-2006-0709 | Supporting Exhibit 4-7; LETTER TO RICHARD FAIRFAX, OSHA, REGARDING ROLL-OVER PROTECTION STRUCTURES | Supporting & Related Material | References/Supporting Documents | 2000-11-27T05:00:00Z | 2000 | 11 | 2016-05-20T23:08:04Z | 0 | 0 | 0900006480204cfb |
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;