documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "OSHA", document_type = "Rule" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_month, 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-2008-0034-0024 | OSHA | Updating National Consensus Standards in OSHA's Acetylene Standard; Notice of Proposed Rulemaking OSHA-2008-0034 | Revising Standards Referenced in the Acetylene Standard; Final Rule; Confirmation of effective date | Rule | Final Rule | 2009-11-10T05:00:00Z | 2009 | 11 | 2009-11-10T05:00:00Z | 2011-06-11T14:25:15Z | E9-27004 | 0 | 0 | 0900006480a54e8e | |
| OSHA-2007-0044-0071 | OSHA | Updating OSHA Standards Based on National Consensus Standards; Personal Protection Equipment OSHA-2007-0044 | Updating OSHA Standards Based on National Consensus Standards; Personal Protective Equipment. Final Rule | Rule | Final Rule | 2009-09-09T04:00:00Z | 2009 | 9 | 2009-09-09T04:00:00Z | 2012-07-30T16:21:36Z | 173 | 0 | 0 | 0900006480a1f166 | |
| OSHA-2009-0010-0036 | OSHA | Illinois State Plan for Public Employees Only; Notice of the Submission; Proposal to Grant Initial State Plan Approval; Request for Public Comment and Opportunity to Request Public Hearing OSHA-2009-0010 | Notice of Initial Approval Determination; Illinois Public Employee Only State Plan. Final Rule | Rule | Final Rule | 2009-09-01T04:00:00Z | 2009 | 9 | 2009-09-01T04:00:00Z | 2013-01-23T15:22:38Z | 168 | 0 | 0 | 0900006480a19fbc | |
| OSHA-2008-0034-0002 | OSHA | Updating National Consensus Standards in OSHA's Acetylene Standard; Notice of Proposed Rulemaking OSHA-2008-0034 | Revising Standards Referenced in the Acetylene Standard; Direct Final Rule; Request for Comments | Rule | Direct Final | 2009-08-11T04:00:00Z | 2009 | 8 | 2009-08-11T04:00:00Z | 2009-09-11T03:59:59Z | 2011-06-11T14:25:14Z | 153 E9-18644 | 0 | 0 | 0900006480a058db |
| OSHA-2008-0031-0088 | OSHA | Clarification of Remedy for Violation of Requirements to Provide Personal Protective Equipment and Train Employees OSHA-2008-0031 | Clarification of Employer Duty To Provide Personal Protective Equipment and Train Each Employee; Correction | Rule | Final Rule | 2009-01-09T05:00:00Z | 2009 | 1 | 2009-01-09T05:00:00Z | 2011-06-11T14:25:10Z | E9-311 | 0 | 0 | 09000064808166d7 |
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;