documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where agency_id = "IRS", document_type = "Notice" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2018-0039-0001 | IRS | Guidance on the Application of Section 83(i) (Notice 2018-97) IRS-2018-0039 | Notice 2018-97 Guidance on the Application of Section 83 (i) | Notice | Announcement | 2018-12-07T05:00:00Z | 2018 | 12 | 2018-12-07T05:00:00Z | 2019-02-06T04:59:59Z | 2024-11-12T22:50:47Z | 1 | 0 | 090000648395c93a | |
| IRS-2018-0032-0001 | IRS | Shared Responsibility for Employers Regarding Health Coverage; Amounts Recieved Under Accident and Health Plans Notice 2018-88 IRS-2018-0032 | Shared Responsibility for Employees Regarding Heath Coverage Amounts Received Under Accident and Health Plans (Notice 2018-88) | Notice | Announcement | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-11-19T05:00:00Z | 2018-12-29T04:59:59Z | 2024-11-12T22:49:16Z | 1 | 0 | 09000064838e7539 | |
| IRS-2018-0015-0001 | IRS | Proposed Collection; Comment Request focused on Form 1040 and Schedules 1, 2, 3, 4, 5, 6, the discontinuance of 1040A and 1040EZ, and revised Form W-4. IRS-2018-0015 | Proposed Collection; Comment Request focused on Form 1040 and Schedules 1, 2, 3, 4, 5, 6, the discontinuance of 1040A and 1040EZ, and revised Form W-4 | Notice | Announcement | 2018-07-18T04:00:00Z | 2018 | 7 | 2018-07-18T04:00:00Z | 2018-09-19T03:59:59Z | 2024-11-07T23:54:52Z | 2018-15627 | 1 | 0 | 0900006483518832 |
| IRS-2018-0010-0001 | IRS | Priority Guidance Plan; Comments Invited on Recommendations for 2018-2019 (Notice 2018-43) IRS-2018-0010 | 2018-2019 PGP Notice 2018-43 (Final) 4 27 18 mf | Notice | Announcement | 2018-04-27T04:00:00Z | 2018 | 4 | 2018-04-27T04:00:00Z | 2019-02-28T04:59:59Z | 2024-11-07T01:26:15Z | 1 | 0 | 09000064831f4415 |
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;