documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "IRS_FRDOC_0001" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| IRS_FRDOC_0001-2267 | IRS | Agreements for Payment of Tax Liabilities in Installments. IRS_FRDOC_0001 | Extension of Certain Timeframes: Employee Benefit Plans, Participants, Beneficiaries, Qualified Beneficiaries, and Claimants Affected by Hurricane Helene, Tropical Storm Helene, or Hurricane Milton | Rule | 2024-11-08T05:00:00Z | 2024 | 11 | 2024-11-08T05:00:00Z | 2024-11-08T13:09:31Z | 2024-26014 | 0 | 0 | 09000064868093f7 | ||
| IRS_FRDOC_0001-2248 | IRS | Agreements for Payment of Tax Liabilities in Installments. IRS_FRDOC_0001 | Income Taxes; CFR Correction | Rule | 2024-09-11T04:00:00Z | 2024 | 9 | 2024-09-11T04:00:00Z | 2024-09-11T12:28:53Z | 2024-20701 | 0 | 0 | 09000064866ea25c | ||
| IRS_FRDOC_0001-2213 | IRS | Agreements for Payment of Tax Liabilities in Installments. IRS_FRDOC_0001 | Disclosures of Return Information Reflected on Returns to Officers and Employees of the Department of Commerce, Including the Bureau of the Census, for Certain Statistical Purposes and Related Activities; Correction | Proposed Rule | Correction | 2024-05-17T04:00:00Z | 2024 | 5 | 2024-05-17T04:00:00Z | 2024-04-30T03:59:59Z | 2025-03-20T16:16:58Z | 2024-10871 | 0 | 0 | 090000648656bc74 |
| IRS_FRDOC_0001-2209 | IRS | Agreements for Payment of Tax Liabilities in Installments. IRS_FRDOC_0001 | Clean Vehicle Credits: Transfer of Credits, Critical Minerals and Battery Components, and Foreign Entities of Concern | Rule | 2024-05-06T04:00:00Z | 2024 | 5 | 2024-05-06T04:00:00Z | 2024-05-06T12:30:20Z | 2024-09094 | 0 | 0 | 0900006486542581 | ||
| IRS_FRDOC_0001-2208 | IRS | Agreements for Payment of Tax Liabilities in Installments. IRS_FRDOC_0001 | Relief Provisions Respecting Timely Allocation of Generation Skipping Transfer Exemption and Certain GST Elections | Rule | 2024-05-06T04:00:00Z | 2024 | 5 | 2024-05-06T04:00:00Z | 2024-05-06T12:30:04Z | 2024-09644 | 0 | 0 | 0900006486542541 | ||
| IRS_FRDOC_0001-2196 | IRS | Agreements for Payment of Tax Liabilities in Installments. IRS_FRDOC_0001 | Request for Information: SECURE 2.0 Section 319—Effectiveness of Reporting and Disclosure Requirements | Proposed Rule | 2024-04-03T04:00:00Z | 2024 | 4 | 2024-04-03T04:00:00Z | 2024-05-23T03:59:59Z | 2024-05-25T23:16:24Z | 2024-07018 | 0 | 0 | 09000064864b7da2 | |
| IRS_FRDOC_0001-2179 | IRS | Agreements for Payment of Tax Liabilities in Installments. IRS_FRDOC_0001 | Procedure and Administration; CFR Correction | Rule | 2024-01-30T05:00:00Z | 2024 | 1 | 2024-01-30T05:00:00Z | 2024-01-30T13:10:35Z | 2024-01924 | 0 | 0 | 09000064863cfb9e | ||
| IRS_FRDOC_0001-2170 | IRS | Agreements for Payment of Tax Liabilities in Installments. IRS_FRDOC_0001 | Statutory Disallowance of Deductions for Certain Qualified Conservation Contributions Made by Partnerships and S Corporations: Hearing Cancellation | Proposed Rule | Notice of Hearing | 2024-01-02T05:00:00Z | 2024 | 1 | 2024-01-02T05:00:00Z | 2024-01-09T19:52:11Z | 2023-28793 | 0 | 0 | 090000648636a04e |
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;