documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "OSHA-2023-0012" 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-2023-0012-0031 | OSHA | Federal Advisory Council on Occupational Safety & Health (FACOSH) OSHA-2023-0012 | Federal Advisory Council on Occupational Safety and Health (FACOSH); Notice of Meeting | Notice | Meeting | 2024-09-13T04:00:00Z | 2024 | 9 | 2024-09-13T04:00:00Z | 2024-10-01T03:59:59Z | 2024-09-13T12:39:49Z | 2024-20808 | 0 | 0 | 09000064866fa91c |
| OSHA-2023-0012-0024 | OSHA | Federal Advisory Council on Occupational Safety & Health (FACOSH) OSHA-2023-0012 | Occupational Safety and Health State Plans; Federal Advisory Council on Occupational Safety and Health (FACOSH); Notice of Meeting | Notice | Correction | 2024-03-19T04:00:00Z | 2024 | 3 | 2024-03-19T04:00:00Z | 2024-03-19T13:27:01Z | 2024-05784 | 0 | 0 | 090000648648425c | |
| OSHA-2023-0012-0023 | OSHA | Federal Advisory Council on Occupational Safety & Health (FACOSH) OSHA-2023-0012 | Federal Advisory Council on Occupational Safety and Health (FACOSH); Notice of Meeting | Notice | Meeting | 2024-03-12T04:00:00Z | 2024 | 3 | 2024-03-12T04:00:00Z | 2024-04-06T03:59:59Z | 2024-04-06T01:04:56Z | 2024-05150 | 0 | 0 | 090000648647464a |
| OSHA-2023-0012-0017 | OSHA | Federal Advisory Council on Occupational Safety & Health (FACOSH) OSHA-2023-0012 | Federal Advisory Council on Occupational Safety and Health (FACOSH), Request for Nominations | Notice | Request for Nominations | 2024-01-22T05:00:00Z | 2024 | 1 | 2024-01-22T05:00:00Z | 2024-02-24T04:59:59Z | 2024-02-24T02:01:04Z | 2024-01118 | 0 | 0 | 09000064863b3191 |
| OSHA-2023-0012-0016 | OSHA | Federal Advisory Council on Occupational Safety & Health (FACOSH) OSHA-2023-0012 | Federal Advisory Council on Occupational Safety and Health (FACOSH); Notice of Rechartering | Notice | Charter Renewal | 2023-10-13T04:00:00Z | 2023 | 10 | 2023-10-13T04:00:00Z | 2023-10-13T12:24:45Z | 2023-22537 | 0 | 0 | 09000064860cde31 | |
| OSHA-2023-0012-0013 | OSHA | Federal Advisory Council on Occupational Safety & Health (FACOSH) OSHA-2023-0012 | Federal Advisory Council on Occupational Safety and Health (FACOSH); Notice of Meeting | Notice | Meeting | 2023-09-26T04:00:00Z | 2023 | 9 | 2023-09-26T04:00:00Z | 2023-09-30T03:59:59Z | 2023-10-01T01:03:33Z | 2023-20777 | 0 | 0 | 0900006485ff5727 |
| OSHA-2023-0012-0003 | OSHA | Federal Advisory Council on Occupational Safety & Health (FACOSH) OSHA-2023-0012 | Federal Advisory Council on Occupational Safety and Health (FACOSH), Request for Nominations | Notice | Request for Nominations | 2023-08-04T04:00:00Z | 2023 | 8 | 2023-08-04T04:00:00Z | 2023-09-23T03:59:59Z | 2023-09-23T01:02:10Z | 2023-16641 | 0 | 0 | 0900006485dc5a9c |
| OSHA-2023-0012-0001 | OSHA | Federal Advisory Council on Occupational Safety & Health (FACOSH) OSHA-2023-0012 | Federal Advisory Council on Occupational Safety and Health (FACOSH); Notice of Meeting | Notice | Advisory Committee | 2023-06-07T04:00:00Z | 2023 | 6 | 2023-06-07T04:00:00Z | 2023-06-24T03:59:59Z | 2023-06-07T14:31:11Z | 2023-12152 | 0 | 0 | 0900006485ad2c7b |
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;