documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "IRS-2018-0018" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, open_for_comment, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- IRS 7
| 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-0018-0031 | IRS | Additional First Year Depreciation Deduction (REG-104397-18) IRS-2018-0018 | Additional First Year Depreciation Deduction | Rule | Final Rule | 2019-09-24T04:00:00Z | 2019 | 9 | 2019-09-24T04:00:00Z | 2019-09-24T19:11:46Z | 2019-20036 | 0 | 0 | 0900006483fbc6d1 | |
| IRS-2018-0018-0028 | IRS | Additional First Year Depreciation Deduction (REG-104397-18) IRS-2018-0018 | Hearing Agenda Attachment Additional First Year Depreciation Deduction (REG-104397-18) | Supporting & Related Material | Fact/Data Sheet | 2018-11-26T05:00:00Z | 2018 | 11 | 2018-11-27T02:24:31Z | 0 | 0 | 09000064838fcf6d | |||
| IRS-2018-0018-0027 | IRS | Additional First Year Depreciation Deduction (REG-104397-18) IRS-2018-0018 | Hearing Agenda Additional First Year Depreciation Deduction (REG-104397-18) | Supporting & Related Material | Fact/Data Sheet | 2018-11-26T05:00:00Z | 2018 | 11 | 2018-11-27T02:23:56Z | 0 | 0 | 09000064838fcf6c | |||
| IRS-2018-0018-0029 | IRS | Additional First Year Depreciation Deduction (REG-104397-18) IRS-2018-0018 | Hearing Speakers list for Agenda Additional First Year Depreciation Deduction (REG-104397-18) | Supporting & Related Material | Fact/Data Sheet | 2018-11-26T05:00:00Z | 2018 | 11 | 2018-11-27T02:24:59Z | 0 | 0 | 09000064838fcf6e | |||
| IRS-2018-0018-0026 | IRS | Additional First Year Depreciation Deduction (REG-104397-18) IRS-2018-0018 | Preliminary Hearing List - Additional First Year Depreciation Deduction | Supporting & Related Material | 2018-11-21T00:00:00Z | 2018 | 11 | 2018-11-27T02:25:53Z | 0 | 1 | 09000064838f2c62 | ||||
| IRS-2018-0018-0021 | IRS | Additional First Year Depreciation Deduction (REG-104397-18) IRS-2018-0018 | Additional First Year Depreciation Deduction: Public Hearing | Proposed Rule | Notice of Hearing | 2018-10-30T04:00:00Z | 2018 | 10 | 2018-10-30T04:00:00Z | 2018-11-16T04:59:59Z | 2018-11-21T02:01:37Z | 2018-23636 | 0 | 0 | 0900006483868575 |
| IRS-2018-0018-0001 | IRS | Additional First Year Depreciation Deduction (REG-104397-18) IRS-2018-0018 | Additional First Year Depreciation Deduction (REG–104397–18) | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2018-08-08T04:00:00Z | 2018 | 8 | 2018-08-08T04:00:00Z | 2018-10-10T03:59:59Z | 2024-11-07T01:36:05Z | 2018-16716 | 1 | 0 | 09000064835f04a9 |
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;