documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "OSHA-S777-2006-0953" and posted_year = 1997 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, 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-S777-2006-0953-0049 | OSHA | ERGONOMICS PROGRAM OSHA-S777-2006-0953 | Supporting Exhibit 26-1262; WORKPLACE INJURIES AND ILLNESSES IN 1996 | Supporting & Related Material | References/Supporting Documents | 1997-12-17T05:00:00Z | 1997 | 12 | 2016-05-20T23:12:16Z | 0 | 0 | 0900006480295f42 | |||
| OSHA-S777-2006-0953-0030 | OSHA | ERGONOMICS PROGRAM OSHA-S777-2006-0953 | Supporting Exhibit 26-1243; REDUCTION OF SPINAL LOADING THROUGH THE USE OF HANDLES | Supporting & Related Material | References/Supporting Documents | 1997-11-30T05:00:00Z | 1997 | 11 | 2016-05-20T23:12:14Z | 0 | 0 | 0900006480295f2f | |||
| OSHA-S777-2006-0953-0072 | OSHA | ERGONOMICS PROGRAM OSHA-S777-2006-0953 | Supporting Exhibit 26-1285; OSTEOARTHRITIS OF THE HIP AND OCCUPATIONAL LIFTING | Supporting & Related Material | References/Supporting Documents | 1997-11-30T05:00:00Z | 1997 | 11 | 2016-05-20T23:12:18Z | 0 | 0 | 0900006480295f59 | |||
| OSHA-S777-2006-0953-0032 | OSHA | ERGONOMICS PROGRAM OSHA-S777-2006-0953 | Supporting Exhibit 26-1245; SIGNIFICANCE OF MAT AND SHOE SOFTNESS DURING PROLONGED WORK IN UPRIGHT POSITION: BASED ON MEASUREMENTS OF LOW BACK MUSCLE EMG, FOOT VOLUME CHANGES, DISCOMFORT AND GROUND FORCE REACTIONS | Supporting & Related Material | References/Supporting Documents | 1997-11-30T05:00:00Z | 1997 | 11 | 2016-05-20T23:12:14Z | 0 | 0 | 0900006480295f31 | |||
| OSHA-S777-2006-0953-0033 | OSHA | ERGONOMICS PROGRAM OSHA-S777-2006-0953 | Supporting Exhibit 26-1246; EVALUATION OF A WORKPLACE REDESIGN OF A GROCERY CHECKOUT SYSTEM | Supporting & Related Material | References/Supporting Documents | 1997-11-30T05:00:00Z | 1997 | 11 | 2016-05-20T23:12:14Z | 0 | 0 | 0900006480295f32 | |||
| OSHA-S777-2006-0953-0051 | OSHA | ERGONOMICS PROGRAM OSHA-S777-2006-0953 | Supporting Exhibit 26-1264; CONTROL OF CUMULATIVE TRAUMA DISORDERS. DRAFT | Supporting & Related Material | References/Supporting Documents | 1997-06-10T04:00:00Z | 1997 | 6 | 2016-05-20T23:12:16Z | 0 | 0 | 0900006480295f44 |
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;