documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "OSHA-2011-0007" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, comment_start_date, last_modified, posted_date (date), comment_start_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-2011-0007-0036 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH), Notices and Meetings for 2011 OSHA-2011-0007 | Ex. 27. Report of the MACOSH Longshoring Workgroup (September 20-21, 2011) | Other | Agency References | 2012-06-28T04:00:00Z | 2012 | 6 | 2012-06-28T04:00:00Z | 2012-06-28T13:07:12Z | 0 | 0 | 090000648106d648 | ||
| OSHA-2011-0007-0033 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH), Notices and Meetings for 2011 OSHA-2011-0007 | Ex. 24. Directorate of Cooperative and State Programs (CDSP) Update (September 21, 2011) by LeeAnne Jillings | Other | Agency References | 2012-06-26T04:00:00Z | 2012 | 6 | 2012-06-26T04:00:00Z | 2012-06-26T15:49:09Z | 0 | 0 | 0900006480f4c195 | ||
| OSHA-2011-0007-0035 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH), Notices and Meetings for 2011 OSHA-2011-0007 | Ex. 26. Fact Sheet on Eye Protection against Radiant Energy for Welding and Cutting in Shipyard Employment | Other | Agency References | 2012-06-26T04:00:00Z | 2012 | 6 | 2012-06-26T04:00:00Z | 2012-06-26T15:49:09Z | 0 | 0 | 0900006480f4c197 | ||
| OSHA-2011-0007-0032 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH), Notices and Meetings for 2011 OSHA-2011-0007 | Ex. 23. Minutes from the July 20, 2011, MACOSH meeting | Other | Agency References | 2012-06-26T04:00:00Z | 2012 | 6 | 2012-06-26T04:00:00Z | 2012-06-26T15:49:09Z | 0 | 0 | 0900006480f4c194 | ||
| OSHA-2011-0007-0031 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH), Notices and Meetings for 2011 OSHA-2011-0007 | Exhibit list from 9-21-2011 Meeting in Portland, ME | Other | Agency References | 2012-06-26T04:00:00Z | 2012 | 6 | 2012-06-26T04:00:00Z | 2012-06-26T15:49:08Z | 0 | 0 | 0900006480f4b4f3 | ||
| OSHA-2011-0007-0034 | OSHA | Maritime Advisory Committee for Occupational Safety and Health (MACOSH), Notices and Meetings for 2011 OSHA-2011-0007 | Ex. 25. MACOSH Shipyard Workgroup Report-Out (September 21, 2011) | Other | Agency References | 2012-06-26T04:00:00Z | 2012 | 6 | 2012-06-26T04:00:00Z | 2012-06-26T15:49:09Z | 0 | 0 | 0900006480f4c196 |
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;