documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "OSHA-H020C-2006-0806" and posted_year = 1995 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-H020C-2006-0806-0089 | OSHA | CARBON DISULFIDE OSHA-H020C-2006-0806 | Supporting Exhibit 1-87; EPIDEMIOLOGICAL STUDY OF THE SYSTEMIC OPHTHALMOLOGICAL EFFECTS OF CARBON DISULFIDE | Supporting & Related Material | References/Supporting Documents | 1995-11-30T05:00:00Z | 1995 | 11 | 2016-05-20T22:03:28Z | 0 | 0 | 090000648020f8c2 | |||
| OSHA-H020C-2006-0806-0032 | OSHA | CARBON DISULFIDE OSHA-H020C-2006-0806 | Supporting Exhibit 1-30; TOXIC RESPONSES OF THE HEART AND VASCULAR SYSTEMS. CASARETT AND DOULLS TOXICOLOGY. THE BASIC SCIENCE OF POISONS. CHAPTER 17. FIFTH ED. PP 487-527 | Supporting & Related Material | References/Supporting Documents | 1995-11-30T05:00:00Z | 1995 | 11 | 2016-05-20T22:03:24Z | 0 | 0 | 090000648020f888 | |||
| OSHA-H020C-2006-0806-0035 | OSHA | CARBON DISULFIDE OSHA-H020C-2006-0806 | Supporting Exhibit 1-33; TOXIC RESPONSES OF THE NERVOUS SYSTEM. CHAPTER 13. IN: SYSTEMIC TOXICOLOGY. TIMOTHY IYANIWURA. PP 407-429 | Supporting & Related Material | References/Supporting Documents | 1995-11-30T05:00:00Z | 1995 | 11 | 2016-05-20T22:03:24Z | 0 | 0 | 090000648020f88b | |||
| OSHA-H020C-2006-0806-0012 | OSHA | CARBON DISULFIDE OSHA-H020C-2006-0806 | Supporting Exhibit 1-10; MORTALITY AMONG WORKERS EXPOSED TO CARBON DISULFIDE | Supporting & Related Material | References/Supporting Documents | 1995-11-30T05:00:00Z | 1995 | 11 | 2016-05-20T22:03:22Z | 0 | 0 | 090000648020f874 | |||
| OSHA-H020C-2006-0806-0016 | OSHA | CARBON DISULFIDE OSHA-H020C-2006-0806 | Supporting Exhibit 1-14; A BENCHMARK CONCENTRATION FOR CARBON DISULFIDE: ANALYSIS OF THE NIOSH CARBON DISULFIDE EXPOSURE DATABASE | Supporting & Related Material | References/Supporting Documents | 1995-11-30T05:00:00Z | 1995 | 11 | 2016-05-20T22:03:22Z | 0 | 0 | 090000648020f878 | |||
| OSHA-H020C-2006-0806-0101 | OSHA | CARBON DISULFIDE OSHA-H020C-2006-0806 | Supporting Exhibit 1-99; MEMORANDUM TO DAN GUTH. SUBJECT: CARBON DISULFIDE BD ANALYSIS | Supporting & Related Material | References/Supporting Documents | 1995-06-01T04:00:00Z | 1995 | 6 | 2016-05-20T22:03:29Z | 0 | 0 | 090000648020f8ce | |||
| OSHA-H020C-2006-0806-0046 | OSHA | CARBON DISULFIDE OSHA-H020C-2006-0806 | Supporting Exhibit 1-44; POLYNEUROPATHY INDUCED BY CARBON DISULPHIDE IN VISCOSE RAYON WORKERS | Supporting & Related Material | References/Supporting Documents | 1995-05-31T04:00:00Z | 1995 | 5 | 2016-05-20T22:03:25Z | 0 | 0 | 090000648020f896 | |||
| OSHA-H020C-2006-0806-0107 | OSHA | CARBON DISULFIDE OSHA-H020C-2006-0806 | Supporting Exhibit 1-106; A BENCHMARK DOSE FOR CARBON DISULFIDE: ANALYSIS OF NERVE CONDUCTION VELOCITY MEASUREMENTS FROM THE NIOSH EXPOSURE DATABASE | Supporting & Related Material | References/Supporting Documents | 1995-05-05T04:00:00Z | 1995 | 5 | 2016-05-20T22:03:30Z | 0 | 0 | 090000648020f8d4 |
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;