documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "OSHA-2016-0002" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, 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-0002-0019 | OSHA | Federal Advisory Council on Occupational Safety and Health 2016 OSHA-2016-0002 | Approved Sept. 8, 2016 FACOSH Meeting Minutes | Supporting & Related Material | MI-Minutes of Meeting | 2016-11-18T05:00:00Z | 2016 | 11 | 2016-11-18T17:30:26Z | 0 | 0 | 090000648239ddf4 | |||
| OSHA-2016-0002-0017 | OSHA | Federal Advisory Council on Occupational Safety and Health 2016 OSHA-2016-0002 | Exhibits from the September 8, 2016, FACOSH Meeting | Supporting & Related Material | Exhibits | 2016-09-28T04:00:00Z | 2016 | 9 | 2016-09-28T14:53:21Z | 0 | 0 | 090000648227b557 | |||
| OSHA-2016-0002-0016 | OSHA | Federal Advisory Council on Occupational Safety and Health 2016 OSHA-2016-0002 | Federal Advisory Council on Occupational Safety and Health (FACOSH) | Notice | Public Meetings | 2016-08-25T04:00:00Z | 2016 | 8 | 2016-08-25T04:00:00Z | 2016-09-02T03:59:59Z | 2016-10-05T01:01:54Z | 2016-20358 | 0 | 0 | 090000648219bcc7 |
| OSHA-2016-0002-0013 | OSHA | Federal Advisory Council on Occupational Safety and Health 2016 OSHA-2016-0002 | Federal Advisory Council on Occupational Safety and Health (FACOSH) | Notice | Request for Nominations | 2016-08-05T04:00:00Z | 2016 | 8 | 2016-08-05T04:00:00Z | 2016-11-01T03:59:59Z | 2016-08-09T01:00:19Z | 2016-18622 | 0 | 0 | 0900006482157fd7 |
| OSHA-2016-0002-0003 | OSHA | Federal Advisory Council on Occupational Safety and Health 2016 OSHA-2016-0002 | Exhibits From February 18, 2016, FACOSH Meeting | Supporting & Related Material | Exhibits | 2016-02-26T05:00:00Z | 2016 | 2 | 2016-02-26T20:08:35Z | 0 | 0 | 0900006481e8b74d | |||
| OSHA-2016-0002-0001 | OSHA | Federal Advisory Council on Occupational Safety and Health 2016 OSHA-2016-0002 | Federal Advisory Council on Occupational Safety and Health (FACOSH) | Notice | Meeting | 2016-02-04T05:00:00Z | 2016 | 2 | 2016-02-04T05:00:00Z | 2016-02-12T04:59:59Z | 2016-02-04T14:33:19Z | 2016-02139 | 0 | 0 | 0900006481e4eaef |
| OSHA-2016-0002-0002 | OSHA | Federal Advisory Council on Occupational Safety and Health 2016 OSHA-2016-0002 | Federal Advisory Council on Occupational Safety and Health (FACOSH) | Notice | Request for Nominations | 2016-02-04T05:00:00Z | 2016 | 2 | 2016-02-04T05:00:00Z | 2016-04-30T03:59:59Z | 2016-06-08T01:00:43Z | 2016-02140 | 0 | 0 | 0900006481e4eb36 |
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;