documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "OSHA-2014-0024" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2014-0024-0004 | OSHA | Updating OSHA Standards based on National Consensus Standards; Eye and Face Protection OSHA-2014-0024 | Updating OSHA’s Construction Industry Standard for Eye and Face Protection 29 CFR 1926.102 | Supporting & Related Material | Advisory Committee Report | 2015-03-13T04:00:00Z | 2015 | 3 | 2015-03-13T13:48:55Z | 0 | 0 | 090000648190167a | |||
| OSHA-2014-0024-0003 | OSHA | Updating OSHA Standards based on National Consensus Standards; Eye and Face Protection OSHA-2014-0024 | Side by Side 1968-2010 | Supporting & Related Material | Summary of Changes | 2015-03-13T04:00:00Z | 2015 | 3 | 2015-03-13T13:48:54Z | 0 | 0 | 0900006481901679 | |||
| OSHA-2014-0024-0001 | OSHA | Updating OSHA Standards based on National Consensus Standards; Eye and Face Protection OSHA-2014-0024 | Updating OSHA Standards Based on National Consensus Standards; Eye and Face Protection | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2015-03-13T04:00:00Z | 2015 | 3 | 2015-03-13T04:00:00Z | 2015-04-14T03:59:59Z | 2015-04-15T02:05:21Z | 2015-05521 | 0 | 0 | 0900006481a4279c |
| OSHA-2014-0024-0005 | OSHA | Updating OSHA Standards based on National Consensus Standards; Eye and Face Protection OSHA-2014-0024 | Advisory Committee on Construction Safety and Health (ACCSH) Minutes of May 7-8, 2014 Meeting | Supporting & Related Material | MI-Minutes of Meeting | 2015-03-13T04:00:00Z | 2015 | 3 | 2015-03-13T13:48:56Z | 0 | 0 | 090000648190167b | |||
| OSHA-2014-0024-0002 | OSHA | Updating OSHA Standards based on National Consensus Standards; Eye and Face Protection OSHA-2014-0024 | Side by Side 2003-2010 | Supporting & Related Material | Summary of Changes | 2015-03-13T04:00:00Z | 2015 | 3 | 2015-03-13T13:48:53Z | 0 | 0 | 0900006481901678 |
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;