documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "OSHA" and docket_id = "OSHA-2023-0007" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-0007-0006 | OSHA | National Advisory Committee on Safety and Health (NACOSH) Heat Workgroup OSHA-2023-0007 | Minutes from the April 27, 2023 NACOSH Meeting | Supporting & Related Material | MI-Minutes of Meeting | 2023-06-02T04:00:00Z | 2023 | 6 | 2023-06-02T17:15:54Z | 0 | 0 | 0900006485a9f05d | |||
| OSHA-2023-0007-0004 | OSHA | National Advisory Committee on Safety and Health (NACOSH) Heat Workgroup OSHA-2023-0007 | NACOSH Heat Work Product and Report - Task 2 - April 27, 2023 Meeting | Supporting & Related Material | Report | 2023-04-27T04:00:00Z | 2023 | 4 | 2023-04-27T12:49:33Z | 0 | 0 | 090000648598d9c1 | |||
| OSHA-2023-0007-0005 | OSHA | National Advisory Committee on Safety and Health (NACOSH) Heat Workgroup OSHA-2023-0007 | Agenda for the April 27, 2023 NACOSH Heat Work Group Meeting | Supporting & Related Material | Agenda | 2023-04-27T04:00:00Z | 2023 | 4 | 2023-04-27T12:50:58Z | 0 | 0 | 090000648598d9c5 | |||
| OSHA-2023-0007-0003 | OSHA | National Advisory Committee on Safety and Health (NACOSH) Heat Workgroup OSHA-2023-0007 | NACOSH Work Group - Heat Injury and Illness Prevention -- Standard Comparisons for April 27, 2023 Meeting | Supporting & Related Material | Meeting Materials | 2023-04-27T04:00:00Z | 2023 | 4 | 2023-04-27T12:47:52Z | 0 | 0 | 090000648598c00a | |||
| OSHA-2023-0007-0002 | OSHA | National Advisory Committee on Safety and Health (NACOSH) Heat Workgroup OSHA-2023-0007 | NACOSH Draft Heat Work Group Product for April 27, 2023 Meeting | Supporting & Related Material | Meeting Materials | 2023-04-26T04:00:00Z | 2023 | 4 | 2023-04-26T14:00:26Z | 0 | 0 | 090000648598b5d5 | |||
| OSHA-2023-0007-0001 | OSHA | National Advisory Committee on Safety and Health (NACOSH) Heat Workgroup OSHA-2023-0007 | National Advisory Committee on Occupational Safety and Health (NACOSH) Heat Injury and Illness Prevention Work Group: Notice of Meeting | Notice | 2023-03-21T04:00:00Z | 2023 | 3 | 2023-03-21T04:00:00Z | 2023-03-21T13:10:38Z | 2023-05770 | 0 | 0 | 090000648580f47c |
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;