documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "IRS_FRDOC_0001" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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-2048 | IRS | Agreements for Payment of Tax Liabilities in Installments. IRS_FRDOC_0001 | Annual Information Return/Reports | Rule | 2022-05-23T04:00:00Z | 2022 | 5 | 2022-05-23T04:00:00Z | 2022-05-23T12:55:31Z | 2022-10658 | 0 | 0 | 09000064850c4623 | ||
| IRS_FRDOC_0001-2040 | IRS | Agreements for Payment of Tax Liabilities in Installments. IRS_FRDOC_0001 | Income Taxes; CFR Correction | Rule | 2022-03-31T04:00:00Z | 2022 | 3 | 2022-03-31T04:00:00Z | 2022-03-31T12:16:44Z | 2022-06880 | 0 | 0 | 0900006484fefa0b | ||
| IRS_FRDOC_0001-2041 | IRS | Agreements for Payment of Tax Liabilities in Installments. IRS_FRDOC_0001 | Income Taxes; CFR Correction | Rule | 2022-03-31T04:00:00Z | 2022 | 3 | 2022-03-31T04:00:00Z | 2022-03-31T12:18:12Z | 2022-06881 | 0 | 0 | 0900006484fefbeb | ||
| IRS_FRDOC_0001-2039 | IRS | Agreements for Payment of Tax Liabilities in Installments. IRS_FRDOC_0001 | Income Taxes; CFR Correction | Rule | 2022-03-29T04:00:00Z | 2022 | 3 | 2022-03-29T04:00:00Z | 2022-03-29T12:12:24Z | 2022-06670 | 0 | 0 | 0900006484feb61e | ||
| IRS_FRDOC_0001-2038 | IRS | Agreements for Payment of Tax Liabilities in Installments. IRS_FRDOC_0001 | Income Taxes; CFR Correction | Rule | 2022-03-29T04:00:00Z | 2022 | 3 | 2022-03-29T04:00:00Z | 2022-03-29T12:12:07Z | 2022-06669 | 0 | 0 | 0900006484feb5d4 | ||
| IRS_FRDOC_0001-2037 | IRS | Agreements for Payment of Tax Liabilities in Installments. IRS_FRDOC_0001 | Income Taxes; CFR Correction | Rule | 2022-03-29T04:00:00Z | 2022 | 3 | 2022-03-29T04:00:00Z | 2022-03-29T12:10:34Z | 2022-06668 | 0 | 0 | 0900006484feae5f | ||
| IRS_FRDOC_0001-2035 | IRS | Agreements for Payment of Tax Liabilities in Installments. IRS_FRDOC_0001 | Income Taxes; CFR Correction | Rule | 2022-03-25T04:00:00Z | 2022 | 3 | 2022-03-25T04:00:00Z | 2022-03-25T12:10:18Z | 2022-06498 | 0 | 0 | 0900006484fe2449 |
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;