documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "OSHA-2015-0013" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, withdrawn, posted_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-2015-0013-0028 | OSHA | National Advisory Committee on Occupational Safety and Health (NACOSH) -- 2015 OSHA-2015-0013 | Comment from NACOSH Work Group Member Peg Seminario; AFL-CIO regarding Review of OSHA Safety and Health Program Management Guidelines - March 2016 | Supporting & Related Material | 2016-03-04T00:00:00Z | 2016 | 3 | 2016-03-04T22:35:48Z | 0 | 1 | 0900006481e9f81a | ||||
| OSHA-2015-0013-0030 | OSHA | National Advisory Committee on Occupational Safety and Health (NACOSH) -- 2015 OSHA-2015-0013 | Comment from NACOSH Work Group Member Joseph Van Houten; Johnson & Johnson regarding Review of OSHA Safety and Health Program Management Guidelines - February 2016 | Supporting & Related Material | 2016-03-04T00:00:00Z | 2016 | 3 | 2016-03-04T22:36:44Z | 0 | 1 | 0900006481e9f81c | ||||
| OSHA-2015-0013-0029 | OSHA | National Advisory Committee on Occupational Safety and Health (NACOSH) -- 2015 OSHA-2015-0013 | Comment from NACOSH Work Group Member Jim Johnson; DEKRA regarding Review of OSHA Safety and Health Program Management Guidelines - March 2016 | Supporting & Related Material | 2016-03-04T00:00:00Z | 2016 | 3 | 2016-03-04T22:36:20Z | 0 | 1 | 0900006481e9f81b | ||||
| OSHA-2015-0013-0027 | OSHA | National Advisory Committee on Occupational Safety and Health (NACOSH) -- 2015 OSHA-2015-0013 | Approved National Advisory Committee on Occupational Safety and Health (NACOSH) Temporary Workers Injury and Illness Prevention Program Guideline (REVISED) | Supporting & Related Material | Report | 2016-03-03T05:00:00Z | 2016 | 3 | 2016-03-03T21:54:21Z | 0 | 0 | 0900006481e9eef9 | |||
| OSHA-2015-0013-0026 | OSHA | National Advisory Committee on Occupational Safety and Health (NACOSH) -- 2015 OSHA-2015-0013 | Minutes of December 2, 2015 Meeting of the National Advisory Committee on Occupational Safety and Health (NACOSH) | Supporting & Related Material | MI-Minutes of Meeting | 2016-03-03T05:00:00Z | 2016 | 3 | 2016-03-03T21:23:13Z | 0 | 0 | 0900006481e9f119 | |||
| OSHA-2015-0013-0025 | OSHA | National Advisory Committee on Occupational Safety and Health (NACOSH) -- 2015 OSHA-2015-0013 | Transcript from National Advisory Committee on Occupational Safety and Health (NACOSH) meeting held on December 2, 2015 | Supporting & Related Material | Meeting Transcripts | 2016-01-06T05:00:00Z | 2016 | 1 | 2016-01-06T15:42:38Z | 0 | 0 | 0900006481dedb45 |
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;