documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "OSHA-H370A-2006-0895" and posted_year = 1998 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, last_modified, 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-H370A-2006-0895-0021 | OSHA | BLOODBORNE PATHOGENS OSHA-H370A-2006-0895 | 2: OCCUPATIONAL EXPOSURE TO BLOODBORNE PATHOGENS: REQUEST FOR INFORMATION | Notice | Federal Register Notices | 1998-09-09T04:00:00Z | 1998 | 9 | 1998-09-09T04:00:00Z | 1998-09-10T03:59:59Z | 2016-08-10T21:02:17Z | 98-24124 | 0 | 0 | 09000064802230bb |
| OSHA-H370A-2006-0895-0007 | OSHA | BLOODBORNE PATHOGENS OSHA-H370A-2006-0895 | Supporting Exhibit 1-5; MEMORANDUM TO THE DOCKET, SUBJECT HEPATITIS B AND HEPATITIS C STATISTICS | Supporting & Related Material | Agency References/Supporting Documents | 1998-08-19T04:00:00Z | 1998 | 8 | 2016-05-20T22:28:38Z | 0 | 0 | 090000648022308b | |||
| OSHA-H370A-2006-0895-0004 | OSHA | BLOODBORNE PATHOGENS OSHA-H370A-2006-0895 | Supporting Exhibit 1-2; MEMORANDUM TO THE FILE, SUBJECT: ESTIMATED ANNUAL NUMBER OF PERCUTANEOUS INJURIES AMONG HEALTH CARE WORKERS | Supporting & Related Material | Agency References/Supporting Documents | 1998-08-18T04:00:00Z | 1998 | 8 | 2016-05-20T22:28:38Z | 0 | 0 | 0900006480223080 | |||
| OSHA-H370A-2006-0895-0017 | OSHA | BLOODBORNE PATHOGENS OSHA-H370A-2006-0895 | Supporting Exhibit 1-15; NEEDLESTICK INJURIES AMONG HEALTH CARE WORKERS. A LITERATURE REVIEW | Supporting & Related Material | Agency References/Supporting Documents | 1998-06-30T04:00:00Z | 1998 | 6 | 2016-05-20T22:28:39Z | 0 | 0 | 09000064802230aa | |||
| OSHA-H370A-2006-0895-0011 | OSHA | BLOODBORNE PATHOGENS OSHA-H370A-2006-0895 | Supporting Exhibit 1-9; HOW HIV CAUSES AIDS | Supporting & Related Material | Agency References/Supporting Documents | 1998-01-31T05:00:00Z | 1998 | 1 | 2016-05-20T22:28:39Z | 0 | 0 | 090000648022309a |
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;