documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "OSHA-2017-0009" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-2017-0009-0068 | OSHA | VPP Sustainability OSHA-2017-0009 | VPP Stakeholder Meeting Attendance List for August 28, 2017 Meeting | Supporting & Related Material | Meeting Materials | 2017-10-26T04:00:00Z | 2017 | 10 | 2017-10-26T15:17:00Z | 0 | 0 | 0900006482c0b96d | |||
| OSHA-2017-0009-0065 | OSHA | VPP Sustainability OSHA-2017-0009 | July Registered VPP Stakeholder Attendees | Supporting & Related Material | Meeting Materials | 2017-10-23T04:00:00Z | 2017 | 10 | 2017-10-23T14:29:14Z | 0 | 0 | 0900006482bf7db6 | |||
| OSHA-2017-0009-0064 | OSHA | VPP Sustainability OSHA-2017-0009 | Voluntary Protection Program (VPP) Stakeholders July 17, 2017 Meeting Transcript | Supporting & Related Material | Transcript | 2017-10-19T04:00:00Z | 2017 | 10 | 2017-10-19T19:20:41Z | 0 | 0 | 0900006482be5fb6 | |||
| OSHA-2017-0009-0062 | OSHA | VPP Sustainability OSHA-2017-0009 | VPP July Stakeholder Meeting Day-After Report | Supporting & Related Material | Report | 2017-10-11T04:00:00Z | 2017 | 10 | 2017-10-11T20:12:23Z | 0 | 0 | 0900006482bbd024 | |||
| OSHA-2017-0009-0063 | OSHA | VPP Sustainability OSHA-2017-0009 | VPP August Stakeholder Meeting Day-After Report | Supporting & Related Material | Report | 2017-10-11T04:00:00Z | 2017 | 10 | 2017-10-11T20:16:44Z | 0 | 0 | 0900006482bbde9f | |||
| OSHA-2017-0009-0061 | OSHA | VPP Sustainability OSHA-2017-0009 | Memorandum to Reopen Docket to Allow for the Submission of Documents and Comments on VPP Sustainablity | Other | Memorandum | 2017-09-25T04:00:00Z | 2017 | 9 | 2017-09-25T04:00:00Z | 2017-10-21T03:59:59Z | 2017-10-21T13:00:38Z | 0 | 0 | 0900006482b75c7f | |
| OSHA-2017-0009-0039 | OSHA | VPP Sustainability OSHA-2017-0009 | Position Statement of Florida Roofing & Sheet Metal Contractors Association, Inc. Before the Occupational Safety and Health Administration Re: Suggestion to Strengthen the Voluntary Protection Program, July 17, 2017 | Supporting & Related Material | Motion | 2017-08-15T04:00:00Z | 2017 | 8 | 2017-08-15T13:38:18Z | 0 | 0 | 0900006482a30d36 | |||
| OSHA-2017-0009-0001 | OSHA | VPP Sustainability OSHA-2017-0009 | Memorandum to Open Docket to Allow for the Submission of Documents and Comments on VPP Sustainablity | Other | Memo | 2017-06-15T04:00:00Z | 2017 | 6 | 2017-06-15T04:00:00Z | 2017-09-16T03:59:59Z | 2017-09-16T21:37:12Z | 0 | 0 | 09000064826de43a |
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;