documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "OSHA-2018-0012" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2018-0012-0105 | OSHA | Advisory Committee on Construction Safety and Health (ACCSH) OSHA-2018-0012 | Advisory Committee on Construction Safety and Health (ACCSH): Notice of Meeting | Notice | Meeting | 2019-08-20T04:00:00Z | 2019 | 8 | 2019-08-20T04:00:00Z | 2019-09-05T03:59:59Z | 2019-09-05T01:07:03Z | 2019-17825 | 0 | 0 | 0900006483e7416a |
| OSHA-2018-0012-0097 | OSHA | Advisory Committee on Construction Safety and Health (ACCSH) OSHA-2018-0012 | Advisory Committee on Construction Safety and Health (ACCSH): Notice of Membership and Meeting | Notice | Meeting | 2019-06-17T04:00:00Z | 2019 | 6 | 2019-06-17T04:00:00Z | 2019-07-06T03:59:59Z | 2019-07-06T01:02:36Z | 2019-12676 | 0 | 0 | 0900006483d16f38 |
| OSHA-2018-0012-0087 | OSHA | Advisory Committee on Construction Safety and Health (ACCSH) OSHA-2018-0012 | Advisory Committee on Construction Safety and Health (ACCSH); Charter Renewal | Notice | Renewal of Charter | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-11-19T05:00:00Z | 2018-11-19T15:07:38Z | 2018-25113 | 0 | 0 | 09000064838e6d07 | |
| OSHA-2018-0012-0001 | OSHA | Advisory Committee on Construction Safety and Health (ACCSH) OSHA-2018-0012 | Advisory Committee on Construction Safety and Health | Notice | Request for Nominations | 2018-09-17T04:00:00Z | 2018 | 9 | 2018-09-17T04:00:00Z | 2018-11-17T04:59:59Z | 2018-11-20T02:03:19Z | 2018-20117 | 0 | 0 | 09000064836fe24a |
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;