documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "IRS-2007-0114" 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-2007-0114-0081 | IRS | Guidance Regarding Deduction & Capitalization of Expenditures Related to Tangible Property IRS-2007-0114 | Guidance: Deduction and Capitalization of Expenditures Related to Tangible Property; Correction | Rule | 2014-07-21T04:00:00Z | 2014 | 7 | 2014-07-21T04:00:00Z | 2014-07-24T19:18:19Z | 2014-17080 | 0 | 0 | 09000064817cdaba | ||
| IRS-2007-0114-0075 | IRS | Guidance Regarding Deduction & Capitalization of Expenditures Related to Tangible Property IRS-2007-0114 | Guidance Regarding Deduction and Capitalization of Expenditures Related to Tangible Property | Rule | 2013-09-19T04:00:00Z | 2013 | 9 | 2013-09-19T04:00:00Z | 2014-03-07T02:03:59Z | 2013-21756 | 0 | 0 | 090000648142b471 | ||
| IRS-2007-0114-0073 | IRS | Guidance Regarding Deduction & Capitalization of Expenditures Related to Tangible Property IRS-2007-0114 | Guidance Regarding Deduction and Capitalization of Expenditures Related to Tangible Property | Rule | 2012-12-19T05:00:00Z | 2012 | 12 | 2012-12-19T05:00:00Z | 2014-01-18T19:53:33Z | 2012-30490 | 0 | 0 | 09000064811923fb | ||
| IRS-2007-0114-0072 | IRS | Guidance Regarding Deduction & Capitalization of Expenditures Related to Tangible Property IRS-2007-0114 | Guidance Regarding Deduction and Capitalization of Expenditures Related to Tangible Property | Rule | 2012-12-17T05:00:00Z | 2012 | 12 | 2012-12-17T05:00:00Z | 2014-01-18T19:53:24Z | 2012-30252 | 0 | 0 | 090000648118f649 | ||
| IRS-2007-0114-0053 | IRS | Guidance Regarding Deduction & Capitalization of Expenditures Related to Tangible Property IRS-2007-0114 | Apportionment of Tax Items Among the Members of a Controlled Group of Corporations; CFR Correction | Rule | Correction | 2012-03-28T04:00:00Z | 2012 | 3 | 2012-03-28T04:00:00Z | 2014-01-18T16:57:36Z | 2012-07533 | 0 | 0 | 0900006480fe2f29 | |
| IRS-2007-0114-0052 | IRS | Guidance Regarding Deduction & Capitalization of Expenditures Related to Tangible Property IRS-2007-0114 | Guidance Regarding Deduction and Capitalization of Expenditures Related to Tangible Property: Correction | Rule | Correction | 2012-03-28T04:00:00Z | 2012 | 3 | 2012-03-28T04:00:00Z | 2014-01-18T16:57:35Z | 2012-07263 | 0 | 0 | 0900006480fe2f25 | |
| IRS-2007-0114-0036 | IRS | Guidance Regarding Deduction & Capitalization of Expenditures Related to Tangible Property IRS-2007-0114 | Guidance Regarding Deduction and Capitalization of Expenditures Related to Tangible Property | Rule | Temporary Rule | 2011-12-27T05:00:00Z | 2011 | 12 | 2011-12-27T05:00:00Z | 2014-01-17T21:41:15Z | 2011-32024 | 0 | 0 | 0900006480f8981f |
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;