documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "OSHA-2023-0012" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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-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-0015 | OSHA | Federal Advisory Council on Occupational Safety & Health (FACOSH) OSHA-2023-0012 | Minutes of the July 13, 2023 FACOSH Meeting | Supporting & Related Material | MI-Minutes of Meeting | 2023-10-11T04:00:00Z | 2023 | 10 | 2023-10-11T20:15:55Z | 0 | 0 | 09000064860b0509 | |||
| 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-0002 | OSHA | Federal Advisory Council on Occupational Safety & Health (FACOSH) OSHA-2023-0012 | Agenda for the July 13, 2023 FACOSH Meeting | Supporting & Related Material | Agenda | 2023-07-10T04:00:00Z | 2023 | 7 | 2023-07-10T15:15:34Z | 0 | 0 | 0900006485c74419 | |||
| 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;