documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "OSHA-2018-0006" 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-0006-0021 | OSHA | OSHA's Alliance Program OSHA-2018-0006 | OSHA’s Alliance Program; Extension of the Office of Management and Budget’s (OMB) Approval of Information Collection (Paperwork) Requirements | Notice | Request for Comments | 2025-07-11T04:00:00Z | 2025 | 7 | 2025-07-11T04:00:00Z | 2025-09-10T03:59:59Z | 2025-09-10T09:00:37Z | 2025-12908 | 0 | 0 | 09000064b8e648d6 |
| OSHA-2018-0006-0011 | OSHA | OSHA's Alliance Program OSHA-2018-0006 | OSHA’s Alliance Program; Extension of the Office of Management and Budget’s (OMB) Approval of Information Collection (Paperwork) Requirements | Notice | 2022-09-26T04:00:00Z | 2022 | 9 | 2022-09-26T04:00:00Z | 2022-11-26T04:59:59Z | 2022-09-26T13:28:10Z | 2022-20783 | 0 | 0 | 090000648536ce5b | |
| OSHA-2018-0006-0010 | OSHA | OSHA's Alliance Program OSHA-2018-0006 | Agency Information Collection Activities: Announcement of the Office of Management and Budget (OMB) Control Numbers Under the Paperwork Reduction Act | Notice | 2020-06-11T04:00:00Z | 2020 | 6 | 2020-06-11T04:00:00Z | 2020-06-11T14:29:32Z | 2020-12631 | 0 | 0 | 09000064846e1dae | ||
| OSHA-2018-0006-0001 | OSHA | OSHA's Alliance Program OSHA-2018-0006 | Information Collection Requirements for OSHA’s Alliance Program; Submission for Office of Management and Budget’s (OMB) Approval of Information Collection (Paperwork) Requirements | Notice | Request for Comments | 2018-06-21T04:00:00Z | 2018 | 6 | 2018-06-21T04:00:00Z | 2018-08-21T03:59:59Z | 2022-09-26T13:23:43Z | 2018-13324 | 0 | 0 | 0900006483439ab2 |
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;