documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "OSHA-2007-0032" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- OSHA 5
| 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-2007-0032-9945 | OSHA | EXPLOSIVES OSHA-2007-0032 | OSHA–S031–2006–0665; OSHA–S–031: Explosives. ACTION: Proposed rule; termination. | Notice | Federal Register Notices | 2010-02-03T05:00:00Z | 2010 | 2 | 2010-02-03T05:00:00Z | 2016-08-10T20:50:32Z | 22 | 0 | 0 | 0900006480a8bac2 | |
| OSHA-2007-0032-3815 | OSHA | EXPLOSIVES OSHA-2007-0032 | FAXED and MAILED PUBLIC COMMENTS | Supporting & Related Material | 2007-07-26T00:00:00Z | 2007 | 7 | 2012-03-24T19:32:39Z | 0 | 1 | 090000648026d86b | ||||
| OSHA-2007-0032-2246 | OSHA | EXPLOSIVES OSHA-2007-0032 | Explosives; Close of comment period | Proposed Rule | NPRM | 2007-07-17T04:00:00Z | 2007 | 7 | 2007-07-17T04:00:00Z | 2007-07-18T03:59:59Z | 2011-06-11T14:19:32Z | E7-13925 | 0 | 0 | 0900006480269681 |
| OSHA-2007-0032-0018 | OSHA | EXPLOSIVES OSHA-2007-0032 | Explosives; Extension of Comment Period | Proposed Rule | Extension of Comment Period | 2007-07-09T04:00:00Z | 2007 | 7 | 2007-07-13T19:30:48Z | 2007-07-14T03:59:59Z | 2011-06-11T14:19:30Z | E7-13198 | 0 | 0 | 0900006480263d59 |
| OSHA-2007-0032-0001 | OSHA | EXPLOSIVES OSHA-2007-0032 | Explosives | Proposed Rule | 2007-04-13T04:00:00Z | 2007 | 4 | 2007-04-13T04:00:00Z | 2007-07-13T03:59:59Z | 2011-06-11T14:19:31Z | E7-06607 | 0 | 0 | 0900006480225367 |
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;