documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "IRS", document_type = "Notice" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_month, open_for_comment, withdrawn, 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-2020-0037-0020 | IRS | Transition Relief Related to Health Coverage Reporting Required by Sections 6055 and 6056 for 2020 (Notice 2020-76) IRS-2020-0037 | Transition Relief Related to Health Coverage Reporting Required by Sections 6055 and 6056 for 2020 (Notice 2020-76) | Notice | Notice of Publication | 2020-10-19T04:00:00Z | 2020 | 10 | 2020-10-19T04:00:00Z | 2021-02-02T04:59:59Z | 2024-11-12T23:25:25Z | 1 | 0 | 090000648491771c | |
| IRS-2020-0037-0001 | IRS | Transition Relief Related to Health Coverage Reporting Required by Sections 6055 and 6056 for 2020 (Notice 2020-76) IRS-2020-0037 | Transition Relief Related to Health Coverage Reporting Required by Sections 6055 and 6056 for 2020 | Notice | 2020-10-01T00:00:00Z | 2020 | 10 | 2020-10-20T01:01:19Z | 0 | 1 | 09000064848af69b | ||||
| IRS-2020-0034-0001 | IRS | Miscellaneous Changes Under the Setting Every Community Up for Retirement Enhancement Act of 2019 and the Bipartisan American Miners Act of 2019 (Notice 2020-68) IRS-2020-0034 | SECURE Act grab bag notice THE FINAL Notice 2020-68 | Notice | Announcement | 2020-09-03T04:00:00Z | 2020 | 9 | 2020-09-03T04:00:00Z | 2020-11-03T04:59:59Z | 2024-11-06T23:40:34Z | 1 | 0 | 0900006484842f21 | |
| IRS-2020-0022-0001 | IRS | Tax Capital Reporting; Request for Comments (Notice 2020-43) IRS-2020-0022 | Tax Capital Reporting Request for Comments Notice 2020-43 | Notice | Announcement | 2020-07-09T04:00:00Z | 2020 | 7 | 2020-07-06T04:00:00Z | 2020-08-05T03:59:59Z | 2024-11-06T23:37:16Z | 1 | 0 | 09000064847396b9 | |
| IRS-2020-0015-0001 | IRS | Priority Guidance Plan 2020-2021; Public Recommendations Invited on Items to be Included (Notice 2020-47) IRS-2020-0015 | 2020-2021 Priority Guidance Plan; Public Recommendations Invited on Items to be Included (Notice 2020-47) | Notice | Announcement | 2020-06-10T04:00:00Z | 2020 | 6 | 2020-06-10T04:00:00Z | 2020-07-23T03:59:59Z | 2024-11-12T23:21:41Z | 1 | 0 | 09000064846df1cf |
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;