documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "IRS-2015-0009" and document_type = "Rule" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2015-0009-0013 | IRS | Reporting of Original Issue Discount on Tax-Exempt Obligations: Basis and Transfer Reporting by Securities Brokers for Debt Instruments and Options (REG-143040-14) IRS-2015-0009 | Reporting of Original Issue Discount on Tax-Exempt Obligations: Basis and Transfer Reporting by Securities Brokers for Debt Instruments and Options; Correction | Rule | Correction | 2016-04-27T04:00:00Z | 2016 | 4 | 2016-04-27T04:00:00Z | 2016-04-27T14:50:56Z | 2016-09698 | 0 | 0 | 0900006481f9176e | |
| IRS-2015-0009-0014 | IRS | Reporting of Original Issue Discount on Tax-Exempt Obligations: Basis and Transfer Reporting by Securities Brokers for Debt Instruments and Options (REG-143040-14) IRS-2015-0009 | Reporting of Original Issue Discount on Tax-Exempt Obligations: Basis and Transfer Reporting by Securities Brokers for Debt Instruments and Options; Correction | Rule | Correction | 2016-04-27T04:00:00Z | 2016 | 4 | 2016-04-27T04:00:00Z | 2016-04-27T14:52:16Z | 2016-09697 | 0 | 0 | 0900006481f91807 | |
| IRS-2015-0009-0012 | IRS | Reporting of Original Issue Discount on Tax-Exempt Obligations: Basis and Transfer Reporting by Securities Brokers for Debt Instruments and Options (REG-143040-14) IRS-2015-0009 | Reporting of Original Issue Discount on Tax-Exempt Obligations: Basis and Transfer Reporting by Securities Brokers for Debt Instruments and Options | Rule | Final Rule | 2016-02-18T05:00:00Z | 2016 | 2 | 2016-02-18T05:00:00Z | 2016-02-22T19:12:45Z | 2016-03429 | 0 | 0 | 0900006481e74c5c | |
| IRS-2015-0009-0007 | IRS | Reporting of Original Issue Discount on Tax-Exempt Obligations: Basis and Transfer Reporting by Securities Brokers for Debt Instruments and Options (REG-143040-14) IRS-2015-0009 | Reporting for Premium: Basis Reporting by Securities Brokers and Basis Determination for Debt Instruments and Options; Correction | Rule | 2015-06-05T04:00:00Z | 2015 | 6 | 2015-06-05T04:00:00Z | 2015-06-09T18:34:15Z | 2015-13796 | 0 | 0 | 0900006481b1d1aa | ||
| IRS-2015-0009-0005 | IRS | Reporting of Original Issue Discount on Tax-Exempt Obligations: Basis and Transfer Reporting by Securities Brokers for Debt Instruments and Options (REG-143040-14) IRS-2015-0009 | Reporting for Premiums; Basis Reporting by Securities Brokers and Basis Determination for Debt Instruments and Options; Correction | Rule | 2015-04-16T04:00:00Z | 2015 | 4 | 2015-04-16T04:00:00Z | 2015-04-20T17:26:34Z | 2015-08746 | 0 | 0 | 0900006481aa9420 | ||
| IRS-2015-0009-0002 | IRS | Reporting of Original Issue Discount on Tax-Exempt Obligations: Basis and Transfer Reporting by Securities Brokers for Debt Instruments and Options (REG-143040-14) IRS-2015-0009 | Reporting for Premium: Basis Reporting by Securities Brokers and Basis Determination for Debt Instruments and Options | Rule | 2015-03-13T04:00:00Z | 2015 | 3 | 2015-03-13T04:00:00Z | 2015-03-13T19:06:06Z | 2015-05648 | 0 | 0 | 0900006481a4281d |
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;