documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "OSHA-S008-2006-0639" and posted_year = 1998 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-S008-2006-0639-0246 | OSHA | POWERED INDUSTRIAL TRUCKS OSHA-S008-2006-0639 | 41: POWERED INDUSTRIAL TRUCK OPERATOR TRAINING | Notice | Federal Register Notices | 1998-12-01T05:00:00Z | 1998 | 12 | 1998-12-01T05:00:00Z | 1998-12-02T04:59:59Z | 2016-08-10T21:02:46Z | 0 | 0 | 0900006480200083 | |
| OSHA-S008-2006-0639-0244 | OSHA | POWERED INDUSTRIAL TRUCKS OSHA-S008-2006-0639 | Supporting Exhibit 39; FINAL ECONOMIC ANALYSIS OF REVISIONS TO OSHA'S POWERED INDUSTRIAL TRUCK OPERATOR TRAINING PROVISIONS CFR 1910.178(1), CFR 1915.120(A), CFR 1917.43(I), CFR 1918.77(A), CFR 1926.602(C) | Supporting & Related Material | Final | 1998-11-09T05:00:00Z | 1998 | 11 | 2016-10-08T12:00:38Z | 0 | 0 | 0900006480200081 | |||
| OSHA-S008-2006-0639-0252 | OSHA | POWERED INDUSTRIAL TRUCKS OSHA-S008-2006-0639 | Supporting Exhibit 203-X; Supporting Exhibit 203-X; MEMORANDUM FOR CHARLES N. JEFFRESS, ASSISTANT SECRETARY, SUBJECT: CERTIFICATION OF THE RECORD OF THE PUBLIC HEARING ON THE PROPOSED STANDARD FOR POWERED INDUSTRIAL TRUCK OPERATOR TRAINING, OSHA DOCKET NO. S-008 | Supporting & Related Material | Certification | 1998-06-01T04:00:00Z | 1998 | 6 | 2016-10-08T12:00:37Z | 0 | 0 | 090000648020008a | |||
| OSHA-S008-2006-0639-0247 | OSHA | POWERED INDUSTRIAL TRUCKS OSHA-S008-2006-0639 | Supporting Exhibit 42; AN INDUSTRY PROFILE, COST ASSESSMENT, AND BENEFITS ANALYSIS OF THE FINAL OSHA POWERED INDUSTRIAL TRUCK TRAINING STANDARD. TASK ORDER NO. 1, CONTRACT NO. J-9-F-4-0008 | Supporting & Related Material | References/Supporting Documents | 1998-03-04T05:00:00Z | 1998 | 3 | 2016-05-20T23:06:00Z | 0 | 0 | 0900006480200084 |
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;