documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "OSHA-2017-0006" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, fr_doc_num, 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-2017-0006-0009 | OSHA | Federal Registers Unassociated with a Docket OSHA-2017-0006 | Susan Harwood Training Grant Program, FY 2018 | Notice | 2018-08-03T04:00:00Z | 2018 | 8 | 2018-08-03T04:00:00Z | 2018-08-03T15:02:48Z | 2018-16613 | 0 | 0 | 09000064835c5e0d | ||
| OSHA-2017-0006-0054 | OSHA | Federal Registers Unassociated with a Docket OSHA-2017-0006 | Susan Harwood Training Grant Program, FY 2018 | Notice | 2018-08-03T04:00:00Z | 2018 | 8 | 2018-08-03T04:00:00Z | 2025-06-05T22:40:04Z | 2018-16613 | 0 | 0 | 09000064835c5e75 | ||
| OSHA-2017-0006-0008 | OSHA | Federal Registers Unassociated with a Docket OSHA-2017-0006 | Occupational Safety and Health Standards; CFR Correction | Rule | 2018-06-29T04:00:00Z | 2018 | 6 | 2018-06-29T04:00:00Z | 2018-07-09T12:25:39Z | 2018-14144 | 0 | 0 | 09000064834789a0 | ||
| OSHA-2017-0006-0007 | OSHA | Federal Registers Unassociated with a Docket OSHA-2017-0006 | Occupational Safety and Health Standards; CFR Correction | Rule | 2018-06-27T04:00:00Z | 2018 | 6 | 2018-06-27T04:00:00Z | 2018-06-27T12:16:15Z | 2018-13909 | 0 | 0 | 0900006483468e63 | ||
| OSHA-2017-0006-0006 | OSHA | Federal Registers Unassociated with a Docket OSHA-2017-0006 | Safety and Health Regulations for Construction; CFR Correction | Rule | 2018-04-11T04:00:00Z | 2018 | 4 | 2018-04-11T04:00:00Z | 2018-04-17T14:47:46Z | 2018-07530 | 0 | 0 | 090000648310d973 | ||
| OSHA-2017-0006-0005 | OSHA | Federal Registers Unassociated with a Docket OSHA-2017-0006 | Vinyl Chloride; CFR Correction | Rule | 2018-03-15T04:00:00Z | 2018 | 3 | 2018-03-15T04:00:00Z | 2018-04-06T15:06:18Z | 2018-05312 | 0 | 0 | 0900006483016c09 | ||
| OSHA-2017-0006-0004 | OSHA | Federal Registers Unassociated with a Docket OSHA-2017-0006 | Federal Civil Penalties Inflation Adjustment Act Annual Adjustments for 2018 | Rule | 2018-01-02T05:00:00Z | 2018 | 1 | 2018-01-02T05:00:00Z | 2018-01-12T16:42:14Z | 2017-28224 | 0 | 0 | 0900006482d8a263 |
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;