documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "OSHA-2009-0023" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2009-0023-0153 | OSHA | Combustible Dust OSHA-2009-0023 | Combustible Dust; Web Chat | Notice | Federal Register Notices | 2010-06-07T04:00:00Z | 2010 | 6 | 2010-06-07T04:00:00Z | 2011-07-22T13:30:09Z | 2010-13467 | 0 | 0 | 0900006480afd6ae | |
| OSHA-2009-0023-0143 | OSHA | Combustible Dust OSHA-2009-0023 | Combustible Dust; Notice of Stakeholders Meetings, April 21, 2010 in Chicago, IL. | Notice | Stakeholder Meeting | 2010-03-09T05:00:00Z | 2010 | 3 | 2010-03-09T05:00:00Z | 2011-07-22T13:30:08Z | 45 | 0 | 0 | 0900006480ab9131 | |
| OSHA-2009-0023-0080 | OSHA | Combustible Dust OSHA-2009-0023 | Combustible Dust; Notice of Stakeholders Meetings, February 17, 2010 in Atlanta, GA. | Notice | Stakeholder Meeting | 2010-01-25T05:00:00Z | 2010 | 1 | 2010-01-25T05:00:00Z | 2010-02-04T04:59:59Z | 2011-07-22T13:30:07Z | 15 | 0 | 0 | 0900006480a82af9 |
| OSHA-2009-0023-0033 | OSHA | Combustible Dust OSHA-2009-0023 | Combustible Dust; Notice of Stakeholders Meetings | Notice | Stakeholder Meeting | 2009-11-10T05:00:00Z | 2009 | 11 | 2009-11-10T05:00:00Z | 2009-12-15T04:59:59Z | 2011-07-22T13:29:56Z | E9-27003 | 0 | 0 | 0900006480a54f03 |
| OSHA-2009-0023-0001 | OSHA | Combustible Dust OSHA-2009-0023 | Combustible Dust | Notice | Advance Notice of Proposed Rulemaking (ANPR) | 2009-10-21T04:00:00Z | 2009 | 10 | 2009-10-21T04:00:00Z | 2010-01-20T04:59:59Z | 2011-07-22T13:29:56Z | 202 (E9-25075) | 0 | 0 | 0900006480a472bc |
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;