documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "OSHA-2024-0002" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2024-0002-0024 | OSHA | Advisory Committee on Construction Safety and Health (ACCSH) OSHA-2024-0002 | Advisory Committee on Construction Safety and Health (ACCSH) | Notice | 2024-11-27T05:00:00Z | 2024 | 11 | 2024-11-27T05:00:00Z | 2025-01-03T04:59:59Z | 2025-01-07T02:00:56Z | 2024-27822 | 0 | 0 | 090000648683b2cd | |
| OSHA-2024-0002-0022 | OSHA | Advisory Committee on Construction Safety and Health (ACCSH) OSHA-2024-0002 | Advisory Committee on Construction Safety and Health (ACCSH): Charter Renewal | Notice | Charter Renewal | 2024-10-23T04:00:00Z | 2024 | 10 | 2024-10-23T04:00:00Z | 2024-10-23T12:54:00Z | 2024-24474 | 0 | 0 | 09000064867df2a8 | |
| OSHA-2024-0002-0018 | OSHA | Advisory Committee on Construction Safety and Health (ACCSH) OSHA-2024-0002 | Advisory Committee on Construction Safety and Health (ACCSH): Notice of Meetings | Notice | Meeting | 2024-10-08T04:00:00Z | 2024 | 10 | 2024-10-08T04:00:00Z | 2024-10-24T03:59:59Z | 2024-10-24T01:00:59Z | 2024-23244 | 0 | 0 | 09000064867b9234 |
| OSHA-2024-0002-0007 | OSHA | Advisory Committee on Construction Safety and Health (ACCSH) OSHA-2024-0002 | Advisory Committee on Construction Safety and Health (ACCSH): Notice of Meetings | Notice | Meeting | 2024-04-03T04:00:00Z | 2024 | 4 | 2024-04-03T04:00:00Z | 2024-04-19T03:59:59Z | 2024-04-19T01:00:57Z | 2024-07016 | 0 | 0 | 09000064864b7ce7 |
| OSHA-2024-0002-0001 | OSHA | Advisory Committee on Construction Safety and Health (ACCSH) OSHA-2024-0002 | Advisory Committee on Construction Safety and Health (ACCSH): Notice of Meetings | Notice | Public Meetings | 2024-01-26T05:00:00Z | 2024 | 1 | 2024-01-26T05:00:00Z | 2024-02-16T04:59:59Z | 2024-02-14T02:00:27Z | 2024-01534 | 0 | 0 | 09000064863c5991 |
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;