documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "OSHA", document_type = "Other" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, comment_start_date, 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-2016-0021-0006 | OSHA | Process Safety Management Guidance Document Drafts for Public Comment OSHA-2016-0021 | Memorandum to Extend the Comment Period to Allow for the Submission of Documents and Comments on Process Safety Management Guidance Document Drafts | Other | Memorandum | 2016-09-22T04:00:00Z | 2016 | 9 | 2016-09-22T04:00:00Z | 2016-10-01T03:59:59Z | 2017-02-17T02:03:20Z | 0 | 0 | 090000648223c41f | |
| OSHA-2016-0021-0001 | OSHA | Process Safety Management Guidance Document Drafts for Public Comment OSHA-2016-0021 | Memorandum to Open Docket to Allow for the Submission of Documents and Comments on Process Safety Management Guidance Document Drafts | Other | Memorandum | 2016-08-23T04:00:00Z | 2016 | 8 | 2016-08-23T04:00:00Z | 2016-09-24T03:59:59Z | 2016-09-24T01:00:33Z | 0 | 0 | 0900006482194a9e | |
| OSHA-2013-0020-0111 | OSHA | Process Safety Management (PSM) of Highly Hazardous Chemicals OSHA-2013-0020 | Memorandum to Open Docket for the Submission of Documents and Comments on the Process Safety Management Small Entity Representative Background Document (SER Background Document) | Other | Memorandum | 2016-06-06T04:00:00Z | 2016 | 6 | 2016-06-06T04:00:00Z | 2016-08-13T03:59:59Z | 2016-08-13T01:00:30Z | 0 | 0 | 090000648201623b | |
| OSHA-H005C-2006-0870-1745 | OSHA | BERYLLIUM OSHA-H005C-2006-0870 | Memorandum for Reopening of the Docket to Allow for Submissions of Post-Hearing Comments and Briefs | Other | Memorandum | 2016-03-28T04:00:00Z | 2016 | 3 | 2016-03-28T04:00:00Z | 2016-05-07T03:59:59Z | 2016-05-07T01:00:39Z | 0 | 0 | 0900006481ee4b77 | |
| OSHA-2016-0004-0009 | OSHA | Weight of Evidence OSHA-2016-0004 | Memorandum Extending the Comment Period to Allow for the Submission of Documents and Comments on the Draft Weight of Evidence Guidance | Other | Memorandum | 2016-03-08T05:00:00Z | 2016 | 3 | 2016-03-08T05:00:00Z | 2016-05-03T03:59:59Z | 2016-05-03T04:00:40Z | 0 | 0 | 0900006481eb385c | |
| OSHA-2016-0005-0001 | OSHA | International/Globally Harmonized System (GHS) OSHA-2016-0005 | Memorandum to Docket: Opening of Docket to allow Submission of Documents and Comments | Other | Memorandum | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-16T05:00:00Z | 2018-04-01T03:59:59Z | 2018-01-24T02:02:31Z | 0 | 0 | 0900006481e6aa5f | |
| OSHA-2016-0004-0001 | OSHA | Weight of Evidence OSHA-2016-0004 | Memorandum to Open Docket to Allow for the Submission of Documents and Comments on the Draft Weight of Evidence Guidance | Other | Memorandum | 2016-02-11T05:00:00Z | 2016 | 2 | 2016-02-16T05:00:00Z | 2016-04-01T03:59:59Z | 2016-03-19T12:00:06Z | 0 | 0 | 0900006481e66ae9 | |
| OSHA-2015-0018-0045 | OSHA | OSHA Safety and Health Program Management Guidelines OSHA-2015-0018 | Memorandum to Further Extend the Open Comment Period on OSHA Safety and Health Program Management Guidelines | Other | Memorandum | 2016-02-09T05:00:00Z | 2016 | 2 | 2016-02-09T05:00:00Z | 2016-02-23T04:59:59Z | 2016-05-28T20:53:09Z | 0 | 0 | 0900006481e4bd56 |
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;