documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "OSHA-H052F-2006-0832" 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-H052F-2006-0832-0064 | OSHA | COTTON DUST OSHA-H052F-2006-0832 | Supporting Exhibit 14-10; HEALTH HAZARD EVALUATION REPORT. VICTORIA VOGUE, INC., BETHLEHEM, PA. HETA 97-0119-2707 | Supporting & Related Material | Agency References/Supporting Documents | 1998-08-31T04:00:00Z | 1998 | 8 | 2016-05-20T22:12:55Z | 0 | 0 | 09000064802109f8 | |||
| OSHA-H052F-2006-0832-0039 | OSHA | COTTON DUST OSHA-H052F-2006-0832 | Supporting Exhibit 9-X; PUBLIC MEETING - WASHINGTON, DC | Supporting & Related Material | Transcripts | 1998-07-30T04:00:00Z | 1998 | 7 | 2016-10-08T01:37:35Z | 0 | 0 | 09000064802109df | |||
| OSHA-H052F-2006-0832-0038 | OSHA | COTTON DUST OSHA-H052F-2006-0832 | Supporting Exhibit 8-X; PUBLIC MEETING - COLLEGE PARK, GA | Supporting & Related Material | Transcripts | 1998-07-24T04:00:00Z | 1998 | 7 | 2016-10-08T01:37:35Z | 0 | 0 | 09000064802109de | |||
| OSHA-H052F-2006-0832-0002 | OSHA | COTTON DUST OSHA-H052F-2006-0832 | 1: NOTICE OF PUBLIC MEETING ON REVIEW OF THE COTTON DUST STANDARD. REQUEST FOR COMMENTS | Notice | Public Meetings | 1998-06-23T04:00:00Z | 1998 | 6 | 1998-06-23T04:00:00Z | 1998-06-24T03:59:59Z | 2016-10-28T01:00:32Z | 0 | 0 | 09000064802109ba | |
| OSHA-H052F-2006-0832-0096 | OSHA | COTTON DUST OSHA-H052F-2006-0832 | Supporting Exhibit 14-42; LTG: WEAVEDIRECT LOOM-CONDITIONING SYSTEM | Supporting & Related Material | Agency References/Supporting Documents | 1998-03-31T05:00:00Z | 1998 | 3 | 2016-05-20T22:12:57Z | 0 | 0 | 0900006480210a18 |
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;