documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "OSHA-2022-0002" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, 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-2022-0002-0126 | OSHA | National Advisory Committee on Occupational Safety and Health OSHA-2022-0002 | National Advisory Committee on Occupational Safety and Health (NACOSH); Notice of Membership Appointments | Notice | Advisory Committee | 2023-07-25T04:00:00Z | 2023 | 7 | 2023-07-25T04:00:00Z | 2023-07-25T12:18:29Z | 2023-15670 | 0 | 0 | 0900006485d36c2e | |
| OSHA-2022-0002-0125 | OSHA | National Advisory Committee on Occupational Safety and Health OSHA-2022-0002 | Summary of September 13, 2022 NACOSH Meeting | Supporting & Related Material | Meeting Summary | 2023-03-15T04:00:00Z | 2023 | 3 | 2023-03-15T17:33:57Z | 0 | 0 | 09000064857adb90 | |||
| OSHA-2022-0002-0124 | OSHA | National Advisory Committee on Occupational Safety and Health OSHA-2022-0002 | Transcript from the January 10, 2023 NACOSH Meeting | Supporting & Related Material | Transcript | 2023-03-09T05:00:00Z | 2023 | 3 | 2023-03-09T20:31:20Z | 0 | 0 | 0900006485783b3e | |||
| OSHA-2022-0002-0082 | OSHA | National Advisory Committee on Occupational Safety and Health OSHA-2022-0002 | National Advisory Committee on Occupational Safety and Health (NACOSH); Notice of Membership Appointments | Notice | Advisory Committee | 2023-01-18T05:00:00Z | 2023 | 1 | 2023-01-18T05:00:00Z | 2023-01-18T13:07:11Z | 2023-00812 | 0 | 0 | 09000064855f55db | |
| OSHA-2022-0002-0081 | OSHA | National Advisory Committee on Occupational Safety and Health OSHA-2022-0002 | NACOSH Work Group 1 Summary Document | Supporting & Related Material | Report | 2023-01-11T05:00:00Z | 2023 | 1 | 2023-01-11T15:59:01Z | 0 | 0 | 09000064855d7b2f | |||
| OSHA-2022-0002-0077 | OSHA | National Advisory Committee on Occupational Safety and Health OSHA-2022-0002 | Agenda for the January 10, 2023 NACOSH Meeting | Supporting & Related Material | Agenda | 2023-01-09T05:00:00Z | 2023 | 1 | 2023-01-09T19:51:40Z | 0 | 0 | 09000064855c60e8 | |||
| OSHA-2022-0002-0080 | OSHA | National Advisory Committee on Occupational Safety and Health OSHA-2022-0002 | NACOSH Work Group Task 1 Report & Discussion: Evaluate and provide input and recommendations on OSHA’s heat illness prevention materials (January 10, 2023) | Supporting & Related Material | Report | 2023-01-09T05:00:00Z | 2023 | 1 | 2023-01-09T19:57:05Z | 0 | 0 | 09000064855c714b | |||
| OSHA-2022-0002-0079 | OSHA | National Advisory Committee on Occupational Safety and Health OSHA-2022-0002 | Attachment A - Heat Illness - Working Spreadsheet | Supporting & Related Material | Meeting Materials | 2023-01-09T05:00:00Z | 2023 | 1 | 2023-01-09T19:54:42Z | 0 | 0 | 09000064855c60ea | |||
| OSHA-2022-0002-0078 | OSHA | National Advisory Committee on Occupational Safety and Health OSHA-2022-0002 | Summary of Work Group 1 Recommendations to NACOSH Full Committee | Supporting & Related Material | Meeting Materials | 2023-01-09T05:00:00Z | 2023 | 1 | 2023-01-09T19:57:29Z | 0 | 0 | 09000064855c60e9 | |||
| OSHA-2022-0002-0075 | OSHA | National Advisory Committee on Occupational Safety and Health OSHA-2022-0002 | National Advisory Committee on Occupational Safety and Health (NACOSH): Notice of Meetings | Notice | Meeting | 2023-01-03T05:00:00Z | 2023 | 1 | 2023-01-03T05:00:00Z | 2023-01-04T04:59:59Z | 2023-01-04T02:00:57Z | 2022-23723 | 0 | 0 | 090000648557fb25 |
| OSHA-2022-0002-0074 | OSHA | National Advisory Committee on Occupational Safety and Health OSHA-2022-0002 | National Advisory Committee on Occupational Safety and Health (NACOSH); Request for Nominations | Notice | Request for Nominations | 2023-01-03T05:00:00Z | 2023 | 1 | 2023-01-03T05:00:00Z | 2023-02-03T04:59:59Z | 2023-02-04T10:21:51Z | 2022-28499 | 0 | 0 | 090000648557e71b |
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;