documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "OSHA-S049-2006-0675" and posted_year = 1996 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_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-S049-2006-0675-0026 | OSHA | General Working Conditions in Shipyard Employment OSHA-S049-2006-0675 | Ex. 2-16. LETTER TO GREGORY M FEARY, SCOPELITIS, GARVIN, LIGHT AND HANSON, ATTORNEYS AT LAW, REGARDING OSHA INTERPRETATION OF THE FIRST AID STANDARD, 29 CFR 1910.151 | Supporting & Related Material | References | 1996-12-11T05:00:00Z | 1996 | 12 | 2022-05-09T15:22:43Z | 0 | 0 | 0900006480201ff1 | |||
| OSHA-S049-2006-0675-0015 | OSHA | General Working Conditions in Shipyard Employment OSHA-S049-2006-0675 | Ex. 2-5. WHAT DO TRAFFIC CRASHES COST? TOTAL COSTS TO EMPLOYERS BY STATE AND INDUSTRY | Supporting & Related Material | References | 1996-11-30T05:00:00Z | 1996 | 11 | 2022-05-09T15:22:43Z | 0 | 0 | 0900006480201fe6 | |||
| OSHA-S049-2006-0675-0025 | OSHA | General Working Conditions in Shipyard Employment OSHA-S049-2006-0675 | Ex. 2-15. MEMORANDUM FOR REGIONAL ADMINISTRATORS, OSHA, SUBJECT: ENFORCEMENT OF THE USE OF SEAT BELTS ON POWERED INDUSTRIAL TRUCKS IN GENERAL INDUSTRY | Supporting & Related Material | References | 1996-10-09T04:00:00Z | 1996 | 10 | 2022-05-09T15:22:43Z | 0 | 0 | 0900006480201ff0 | |||
| OSHA-S049-2006-0675-0024 | OSHA | General Working Conditions in Shipyard Employment OSHA-S049-2006-0675 | Ex. 2-14. LETTER TO ROBERT B WALKER, CSP DIRECTOR HEALTH, SAFETY AND INDUSTRIAL HYGIENE BRIDGESTONE/FIRESTONE INC REGARDING COMPLIANCE | Supporting & Related Material | References | 1996-03-07T05:00:00Z | 1996 | 3 | 2022-05-09T15:22:43Z | 0 | 0 | 0900006480201fef |
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;