documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "OSHA-H006B-2006-0905" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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-H006B-2006-0905-0738 | OSHA | (Archive) Health Standards Miscellaneous OSHA-H006B-2006-0905 | Legacy document id Ex. 3-3-297. Concrete Basics. | Supporting & Related Material | Supporting Documents/References | 2009-05-12T04:00:00Z | 2009 | 5 | 2011-10-19T13:34:21Z | 0 | 0 | 090000648098b6b8 | |||
| OSHA-H006B-2006-0905-0737 | OSHA | (Archive) Health Standards Miscellaneous OSHA-H006B-2006-0905 | Supporting Exhibit 3-3-275; Control Technology and Exposure Assessment for Occupational Exposure to Crystalline Silica: Case 24 - Brick Manufacturing. ECTB 233-124C | Supporting & Related Material | Supporting Documents/References | 2009-05-12T04:00:00Z | 2009 | 5 | 2016-06-28T21:44:47Z | 0 | 0 | 090000648098b632 | |||
| OSHA-H006B-2006-0905-0734 | OSHA | (Archive) Health Standards Miscellaneous OSHA-H006B-2006-0905 | Legacy document id Ex. 2-17. Inspection Number: 301460580. | Supporting & Related Material | Supporting Documents/References | 2009-05-06T04:00:00Z | 2009 | 5 | 2011-10-19T13:34:21Z | 0 | 0 | 090000648097692b | |||
| OSHA-H006B-2006-0905-0735 | OSHA | (Archive) Health Standards Miscellaneous OSHA-H006B-2006-0905 | Legacy document id Ex. 2-19. Inspection Number: 301461018. | Supporting & Related Material | Supporting Documents/References | 2009-05-06T04:00:00Z | 2009 | 5 | 2011-10-19T13:34:21Z | 0 | 0 | 0900006480979137 | |||
| OSHA-H006B-2006-0905-0736 | OSHA | (Archive) Health Standards Miscellaneous OSHA-H006B-2006-0905 | ERG 2001. Site Visit to Ceramic Tile Manufacturer A. Arlington, Va: Eastern Research Group(ERG) | Supporting & Related Material | Supporting Documents/References | 2009-05-06T04:00:00Z | 2009 | 5 | 2011-10-19T13:34:21Z | 0 | 0 | 090000648097913a | |||
| OSHA-H006B-2006-0905-0733 | OSHA | (Archive) Health Standards Miscellaneous OSHA-H006B-2006-0905 | Supporting Exhibit Ex. 2-12; Legacy document id Ex. 2-16. Inspection Number: 300444635. Engineering Controls Attempted | Supporting & Related Material | Supporting Documents/References | 2009-05-05T04:00:00Z | 2009 | 5 | 2016-05-20T22:00:24Z | 0 | 0 | 090000648097692a |
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;