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 = 1997 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-H052F-2006-0832-0067 | OSHA | COTTON DUST OSHA-H052F-2006-0832 | Supporting Exhibit 14-13; EPA OFFICE OF COMPLIANCE SECTOR NOTEBOOK PROJECT: PROFILE OF THE TEXTILE INDUSTRY | Supporting & Related Material | Agency References/Supporting Documents | 1997-08-31T04:00:00Z | 1997 | 8 | 2016-05-20T22:12:55Z | 0 | 0 | 09000064802109fb | |||
| OSHA-H052F-2006-0832-0051 | OSHA | COTTON DUST OSHA-H052F-2006-0832 | Supporting Exhibit 13-7; EMPLOYMENT TRENDS IN TEXTILES AND APPAREL, 1973-2005 | Supporting & Related Material | Final | 1997-07-31T04:00:00Z | 1997 | 7 | 2016-10-08T01:37:37Z | 0 | 0 | 09000064802109eb | |||
| OSHA-H052F-2006-0832-0087 | OSHA | COTTON DUST OSHA-H052F-2006-0832 | Supporting Exhibit 14-33; EMPLOYMENT TRENDS IN TEXTILES AND APPAREL, 1973-2005 | Supporting & Related Material | Agency References/Supporting Documents | 1997-07-31T04:00:00Z | 1997 | 7 | 2016-05-20T22:12:56Z | 0 | 0 | 0900006480210a0f | |||
| OSHA-H052F-2006-0832-0057 | OSHA | COTTON DUST OSHA-H052F-2006-0832 | Supporting Exhibit 14-3; NEWS RELEASE. U.S. TEXTILE INDUSTRY LEADER TALKS ABOUT GOING GLOBAL | Supporting & Related Material | Agency References/Supporting Documents | 1997-04-18T04:00:00Z | 1997 | 4 | 2016-05-20T22:12:54Z | 0 | 0 | 09000064802109f1 | |||
| OSHA-H052F-2006-0832-0097 | OSHA | COTTON DUST OSHA-H052F-2006-0832 | Supporting Exhibit 14-43; LUWA BAHNSON EXHIBITING FULL LINE OF EQUIPMENT IN BOOTH C-1640 | Supporting & Related Material | Agency References/Supporting Documents | 1997-04-10T04:00:00Z | 1997 | 4 | 2016-05-20T22:12:57Z | 0 | 0 | 0900006480210a19 |
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;