documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "OSHA-2020-0004" and document_type = "Rule" 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-2020-0004-2534 | OSHA | COVID-19 Emergency Temporary Standard Rulemaking OSHA-2020-0004 | Occupational Exposure to COVID-19 in Healthcare Settings | Rule | Withdrawal | 2025-01-15T05:00:00Z | 2025 | 1 | 2025-01-15T05:00:00Z | 2025-01-15T13:38:16Z | 2025-00632 | 0 | 0 | 09000064868c0190 | |
| OSHA-2020-0004-1525 | OSHA | COVID-19 Emergency Temporary Standard Rulemaking OSHA-2020-0004 | Occupational Exposure to COVID–19 in Healthcare Settings | Rule | Extension of Comment Period | 2022-03-23T04:00:00Z | 2022 | 3 | 2022-03-23T04:00:00Z | 2022-04-23T03:59:59Z | 2022-06-15T01:00:25Z | 2022-06080 | 0 | 0 | 0900006484fdb1ac |
| OSHA-2020-0004-1118 | OSHA | COVID-19 Emergency Temporary Standard Rulemaking OSHA-2020-0004 | Occupational Exposure to COVID-19; Emergency Temporary Standard | Rule | Extension of Comment Period | 2021-07-20T04:00:00Z | 2021 | 7 | 2021-07-20T04:00:00Z | 2021-08-21T03:59:59Z | 2021-08-29T00:01:33Z | 2021-15326 | 0 | 0 | 0900006484c02ce0 |
| OSHA-2020-0004-1117 | OSHA | COVID-19 Emergency Temporary Standard Rulemaking OSHA-2020-0004 | Occupational Exposure to COVID–19; Emergency Temporary Standard | Rule | Correction | 2021-07-14T04:00:00Z | 2021 | 7 | 2021-07-14T04:00:00Z | 2021-07-14T14:31:56Z | 2021-14326 | 0 | 0 | 0900006484befa88 | |
| OSHA-2020-0004-1033 | OSHA | COVID-19 Emergency Temporary Standard Rulemaking OSHA-2020-0004 | Occupational Exposure to COVID-19; Emergency Temporary Standard | Rule | Interim Final Rule | 2021-06-21T04:00:00Z | 2021 | 6 | 2021-06-21T04:00:00Z | 2021-08-21T03:59:59Z | 2022-01-06T02:00:38Z | 2021-12428 | 0 | 0 | 0900006484b9aa0e |
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;