documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "OSHA-2023-0008" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, withdrawn, 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-2023-0008-11545 | OSHA | Worker Walkaround Representative Designation Process OSHA-2023-0008 | Worker Walkaround Representative Designation Process | Rule | Final Rule | 2024-04-01T04:00:00Z | 2024 | 4 | 2024-04-01T04:00:00Z | 2024-04-01T12:26:11Z | 2024-06572 | 0 | 0 | 09000064864b1571 | |
| OSHA-2023-0008-11544 | OSHA | Worker Walkaround Representative Designation Process OSHA-2023-0008 | CPL 02-00-163: Field Operations Manual (FOM) | Supporting & Related Material | Guidance | 2024-01-31T05:00:00Z | 2024 | 1 | 2024-01-31T20:57:46Z | 0 | 0 | 09000064863d4601 | |||
| OSHA-2023-0008-11538 | OSHA | Worker Walkaround Representative Designation Process OSHA-2023-0008 | AFL-CIO. "Death on the job–the toll of neglect: a national and state-by-state profile of worker safety and health in the United States." 32nd Edition. (2023) | Supporting & Related Material | Publication - Copyrighted Materials | 2024-01-31T05:00:00Z | 2024 | 1 | 2024-06-19T16:27:38Z | 0 | 0 | 09000064863bfd1d | |||
| OSHA-2023-0008-11543 | OSHA | Worker Walkaround Representative Designation Process OSHA-2023-0008 | Ex Parte Memorandum for the Record - SBA Round Table re: OSHA’s Proposed “Worker Walkaround Representative Designation Process” Rule | Supporting & Related Material | Memorandum | 2024-01-31T05:00:00Z | 2024 | 1 | 2024-01-31T16:22:39Z | 0 | 0 | 09000064863d42cb | |||
| OSHA-2023-0008-11540 | OSHA | Worker Walkaround Representative Designation Process OSHA-2023-0008 | Withdrawn - This file has been combined with related documents. See OSHA-2023-0008-11543 for a final version of these documents. | Supporting & Related Material | 2024-01-29T00:00:00Z | 2024 | 1 | 2024-01-31T16:25:02Z | 0 | 1 | 09000064863cdd8d | ||||
| OSHA-2023-0008-11541 | OSHA | Worker Walkaround Representative Designation Process OSHA-2023-0008 | Withdrawn - This file has been combined with related documents. See OSHA-2023-0008-11543 for a final version of these documents. | Supporting & Related Material | 2024-01-29T00:00:00Z | 2024 | 1 | 2024-01-31T16:25:32Z | 0 | 1 | 09000064863cdd95 | ||||
| OSHA-2023-0008-11542 | OSHA | Worker Walkaround Representative Designation Process OSHA-2023-0008 | Withdrawn - This file has been combined with related documents. See OSHA-2023-0008-11543 for a final version of these documents. | Supporting & Related Material | 2024-01-29T00:00:00Z | 2024 | 1 | 2024-01-31T16:25:55Z | 0 | 1 | 09000064863cdd9c |
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;