documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "IRS-2022-0003" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- IRS 5
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| IRS-2022-0003-0166 | IRS | Required Minimum Distributions (REG-105954-20) IRS-2022-0003 | Required Minimum Distributions | Rule | Final Rule | 2024-07-19T04:00:00Z | 2024 | 7 | 2024-07-19T04:00:00Z | 2024-07-19T19:50:05Z | 2024-14542 | 0 | 0 | 09000064865fa9fc | |
| IRS-2022-0003-0159 | IRS | Required Minimum Distributions (REG-105954-20) IRS-2022-0003 | REG-105954-20 Public Hearing Agenda (Participants) | Supporting & Related Material | Fact/Data Sheet | 2022-06-14T04:00:00Z | 2022 | 6 | 2022-06-14T13:46:06Z | 0 | 0 | 09000064851625e4 | |||
| IRS-2022-0003-0108 | IRS | Required Minimum Distributions (REG-105954-20) IRS-2022-0003 | Required Minimum Distributions: Correction | Proposed Rule | Correction | 2022-05-20T04:00:00Z | 2022 | 5 | 2022-05-20T04:00:00Z | 2022-05-26T03:59:59Z | 2022-05-27T01:00:17Z | 2022-10624 | 0 | 0 | 090000648509b8b8 |
| IRS-2022-0003-0028 | IRS | Required Minimum Distributions (REG-105954-20) IRS-2022-0003 | Required Minimum Distributions; Correction | Proposed Rule | Correction | 2022-03-21T04:00:00Z | 2022 | 3 | 2022-03-21T04:00:00Z | 2022-03-28T18:44:48Z | 2022-05805 | 0 | 0 | 0900006484fd63de | |
| IRS-2022-0003-0001 | IRS | Required Minimum Distributions (REG-105954-20) IRS-2022-0003 | Required Minimum Distributions | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2022-02-24T05:00:00Z | 2022 | 2 | 2022-02-24T05:00:00Z | 2022-05-26T03:59:59Z | 2024-11-12T23:37:13Z | 2022-02522 | 1 | 0 | 0900006484f9f0e4 |
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;