documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "OSHA", document_type = "Other" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, 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-2016-0005-0068 | OSHA | International/Globally Harmonized System (GHS) OSHA-2016-0005 | Memorandum to Open Docket on International/Globally Harmonized System (GHS) to Allow Public Comments on the Working and Informal Papers for the 45th Session of the UNSCEGHS | Other | Memorandum | 2023-11-09T05:00:00Z | 2023 | 11 | 2023-11-09T05:00:00Z | 2023-12-07T04:59:59Z | 2023-12-06T02:04:45Z | 0 | 0 | 0900006486234369 | |
| OSHA-2008-0012-0113 | OSHA | Tree Care Operations OSHA-2008-0012 | Memorandum Opening the Tree Care Operations Docket (OSHA-2008-0012) to Allow OSHA's Supporting and Related Materials to be Made Publicly Available Prior to the Publication of the Proposed Rule | Other | Memorandum to Open a Docket | 2023-08-29T04:00:00Z | 2023 | 8 | 2023-08-29T04:00:00Z | 2023-08-29T12:55:51Z | 0 | 0 | 0900006485f09e2f | ||
| OSHA-2021-0009-1059 | OSHA | Heat Injury and Illness Prevention in Outdoor and Indoor Work Settings OSHA-2021-0009 | Memorandum Reopening the Comment Period on Heat Injury and Illness Prevention in Outdoor and Indoor Work Settings to Allow for the Submission of Documents and Comments | Other | Memorandum | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-22T04:00:00Z | 2023-12-24T04:59:59Z | 2024-01-31T13:16:29Z | 0 | 0 | 0900006485ed644c | |
| OSHA-2023-0006-0001 | OSHA | Leading Indicators that Improve Workplace Health and Safety OSHA-2023-0006 | Memorandum Opening the Leading Indicators Docket (Docket No. OSHA-2023-0006) to Allow for Submission of Documents and Comments | Other | Memorandum | 2023-05-12T04:00:00Z | 2023 | 5 | 2023-05-12T04:00:00Z | 2023-07-18T03:59:59Z | 2023-07-20T01:01:17Z | 0 | 0 | 09000064859fe26a | |
| OSHA-2016-0014-0286 | OSHA | Preventing Workplace Violence in Healthcare OSHA-2016-0014 | Memorandum Reopening the Comment Period on Docket No. OSHA-2016-0014 to Allow for Submission of Documents and Comments | Other | Memorandum to Open a Docket | 2023-05-02T04:00:00Z | 2023 | 5 | 2023-05-02T04:00:00Z | 2023-07-04T03:59:59Z | 2023-07-04T01:00:43Z | 0 | 0 | 09000064859bbbcf | |
| OSHA-2023-0011-0001 | OSHA | Establishing Safety as a Core Value OSHA-2023-0011 | Memorandum to Open a New Docket (Docket No. OSHA-2023-0011) to Allow for Submission of Documents and Comments on Establishing Safety as a Core Value | Other | Memorandum | 2023-05-01T04:00:00Z | 2023 | 5 | 2023-05-01T04:00:00Z | 2023-12-01T04:59:59Z | 2023-12-01T02:00:50Z | 0 | 0 | 09000064859acf98 | |
| OSHA-2016-0014-0245 | OSHA | Preventing Workplace Violence in Healthcare OSHA-2016-0014 | Memorandum Reopening the Comment Period on Docket No. OSHA-2016-0014 to Allow for the Submission of Documents and Comments | Other | 2023-02-15T05:00:00Z | 2023 | 2 | 2023-02-15T05:00:00Z | 2023-04-08T03:59:59Z | 2023-04-08T01:01:06Z | 0 | 0 | 09000064856a4b58 | ||
| OSHA-2022-0012-0001 | OSHA | OSHA Voluntary Protection Program Update OSHA-2022-0012 | Memorandum Opening Docket to Allow for the Submission of Documents and Comments on OSHA's Voluntary Protection Program (VPP) | Other | Memorandum | 2023-01-20T05:00:00Z | 2023 | 1 | 2023-01-20T05:00:00Z | 2024-10-01T03:59:59Z | 2024-10-01T01:01:06Z | 0 | 0 | 09000064855fce86 |
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;