documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "OSHA-2010-0012" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, 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-2010-0012-0059 | OSHA | National Advisory Committee on Occupational Safety and Health (NACOSH); Request for Nominations and Meetings for 2010 OSHA-2010-0012 | NIOSH Update: Opportunities, Challenges in Use of Workers' Comp Data are Examined in NIOSH Workshop Proceedings Report | Supporting & Related Material | News Releases | 2011-09-29T04:00:00Z | 2011 | 9 | 2011-09-29T20:28:50Z | 0 | 0 | 0900006480f24bd5 | |||
| OSHA-2010-0012-0058 | OSHA | National Advisory Committee on Occupational Safety and Health (NACOSH); Request for Nominations and Meetings for 2010 OSHA-2010-0012 | Under-Reporting Studies: NEISS-Work, Occupational Injuries & Illnesses Treated in EDs. | Supporting & Related Material | Exhibits | 2011-09-22T04:00:00Z | 2011 | 9 | 2011-09-22T15:57:39Z | 0 | 0 | 0900006480f24b6f | |||
| OSHA-2010-0012-0057 | OSHA | National Advisory Committee on Occupational Safety and Health (NACOSH); Request for Nominations and Meetings for 2010 OSHA-2010-0012 | NACOSH Meeting Transcript of January 19, 2011 | Supporting & Related Material | Transcripts | 2011-02-23T05:00:00Z | 2011 | 2 | 2011-06-11T14:32:50Z | 0 | 0 | 0900006480bec305 | |||
| OSHA-2010-0012-0056 | OSHA | National Advisory Committee on Occupational Safety and Health (NACOSH); Request for Nominations and Meetings for 2010 OSHA-2010-0012 | Letter to Michaels, David; DOL/OSHA from Silverstein, Michael; NACOSH | Supporting & Related Material | Letters and Exhibits | 2011-02-14T05:00:00Z | 2011 | 2 | 2011-06-11T14:32:51Z | 0 | 0 | 0900006480bed08b | |||
| OSHA-2010-0012-0053 | OSHA | National Advisory Committee on Occupational Safety and Health (NACOSH); Request for Nominations and Meetings for 2010 OSHA-2010-0012 | Dr. David Michaels Vision Statement dated October 15, 2010 | Supporting & Related Material | Meeting Exhibits | 2011-02-11T05:00:00Z | 2011 | 2 | 2011-06-11T14:32:36Z | 0 | 0 | 0900006480bec4db | |||
| OSHA-2010-0012-0051 | OSHA | National Advisory Committee on Occupational Safety and Health (NACOSH); Request for Nominations and Meetings for 2010 OSHA-2010-0012 | October 7, 2010 Letter to Howard, John; NIOSH from Silverstein, Michael; NACOSH | Supporting & Related Material | Meeting Exhibits | 2011-02-11T05:00:00Z | 2011 | 2 | 2011-06-11T14:32:50Z | 0 | 0 | 0900006480bec4d4 | |||
| OSHA-2010-0012-0055 | OSHA | National Advisory Committee on Occupational Safety and Health (NACOSH); Request for Nominations and Meetings for 2010 OSHA-2010-0012 | Distracted Driving | Supporting & Related Material | Meeting Exhibits | 2011-02-11T05:00:00Z | 2011 | 2 | 2011-06-11T14:32:53Z | 0 | 0 | 0900006480bec556 | |||
| OSHA-2010-0012-0052 | OSHA | National Advisory Committee on Occupational Safety and Health (NACOSH); Request for Nominations and Meetings for 2010 OSHA-2010-0012 | National Advisory Committee on Occupational Safety and Health (NACOSH) Advisory Committee Charter | Supporting & Related Material | Meeting Exhibits | 2011-02-11T05:00:00Z | 2011 | 2 | 2011-06-11T14:32:38Z | 0 | 0 | 0900006480bec4d7 | |||
| OSHA-2010-0012-0054 | OSHA | National Advisory Committee on Occupational Safety and Health (NACOSH); Request for Nominations and Meetings for 2010 OSHA-2010-0012 | January 7, 2011 Letter to Silverstein, Michael; NACOSH from Howard, John; Department of Health and Human Services (DHHS) | Supporting & Related Material | Meeting Exhibits | 2011-02-11T05:00:00Z | 2011 | 2 | 2011-06-11T14:32:36Z | 0 | 0 | 0900006480bec534 |
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;