documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "OSHA", document_type = "Rule" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-2023-0005-0003 | OSHA | Oregon State Plan for Occupational Safety and Health; Proposed Final Approval, Request for Public Comment, and Notice of Opportunity to Request Informal Public Hearing OSHA-2023-0005 | Oregon State Plan: Extension of Final Approval of a State Plan To Cover the Separable Portion of Temporary Labor Camps | Rule | 2023-08-30T04:00:00Z | 2023 | 8 | 2023-08-30T04:00:00Z | 2023-08-30T12:20:58Z | 2023-18717 | 0 | 0 | 0900006485f11129 | ||
| OSHA-2021-0006-0108 | OSHA | Improve Tracking OSHA-2021-0006 | Improve Tracking of Workplace Injuries and Illnesses | Rule | 2023-07-21T04:00:00Z | 2023 | 7 | 2023-07-21T04:00:00Z | 2023-07-21T12:55:00Z | 2023-15091 | 0 | 0 | 0900006485cf8dd4 | ||
| OSHA-2017-0006-0035 | OSHA | Federal Registers Unassociated with a Docket OSHA-2017-0006 | Maine State Plan for State and Local Government Employees; Approval of Plan Supplements and Certification of Completion of Developmental Steps | Rule | 2023-03-21T04:00:00Z | 2023 | 3 | 2023-03-21T04:00:00Z | 2023-03-21T13:18:26Z | 2023-05724 | 0 | 0 | 090000648580f33c | ||
| OSHA-2020-0006-0004 | OSHA | Procedures for the Handling of Retaliation Complaints Under the Taxpayer First Act (TFA) OSHA-2020-0006 | Procedures for the Handling of Retaliation Complaints Under the Taxpayer First Act (TFA) | Rule | Final Rule | 2023-03-13T04:00:00Z | 2023 | 3 | 2023-03-13T04:00:00Z | 2023-03-13T13:08:32Z | 2023-05076 | 0 | 0 | 090000648579b634 | |
| OSHA-2021-0011-0001 | OSHA | Procedures for the Handling of Retaliation Complaints Under the Criminal Antitrust Anti-Retaliation Act (CAARA) OSHA-2021-0011 | Procedures for the Handling of Retaliation Complaints Under the Criminal Antitrust Anti-Retaliation Act (CAARA) | Rule | Interim Final Rule | 2023-02-10T05:00:00Z | 2023 | 2 | 2023-02-10T05:00:00Z | 2023-04-12T03:59:59Z | 2023-04-13T01:00:52Z | 2023-02916 | 0 | 0 | 090000648564e9a4 |
| OSHA-2017-0006-0034 | OSHA | Federal Registers Unassociated with a Docket OSHA-2017-0006 | Federal Civil Penalties Inflation Adjustment Act Annual Adjustments for 2023 | Rule | 2023-01-13T05:00:00Z | 2023 | 1 | 2023-01-13T05:00:00Z | 2023-01-13T13:02:55Z | 2023-00271 | 0 | 0 | 09000064855eb97d |
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;