documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "IRS-2020-0013" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, open_for_comment, 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-0013-0093 | IRS | Credit for Carbon Oxide Sequestration (REG-112339-19) IRS-2020-0013 | Credit for Carbon Oxide Sequestration; Correction | Rule | Correction | 2021-03-30T04:00:00Z | 2021 | 3 | 2021-03-30T04:00:00Z | 2021-04-01T15:05:22Z | 2021-05156 | 0 | 0 | 0900006484a86d2b | |
| IRS-2020-0013-0091 | IRS | Credit for Carbon Oxide Sequestration (REG-112339-19) IRS-2020-0013 | Credit for Carbon Oxide Sequestration | Rule | Final Rule | 2021-01-15T05:00:00Z | 2021 | 1 | 2021-01-15T05:00:00Z | 2021-01-15T20:39:01Z | 2021-00302 | 0 | 0 | 09000064849f4828 | |
| IRS-2020-0013-0007 | IRS | Credit for Carbon Oxide Sequestration (REG-112339-19) IRS-2020-0013 | Hearing: Credit for Carbon Oxide Sequestration | Proposed Rule | Notice of Hearing | 2020-07-22T04:00:00Z | 2020 | 7 | 2020-07-22T04:00:00Z | 2020-08-15T03:59:59Z | 2020-08-16T01:00:51Z | 2020-15237 | 0 | 0 | 09000064847927df |
| IRS-2020-0013-0003 | IRS | Credit for Carbon Oxide Sequestration (REG-112339-19) IRS-2020-0013 | Credit for Carbon Oxide Sequestration; Correction | Proposed Rule | Correction | 2020-06-30T04:00:00Z | 2020 | 6 | 2020-06-30T04:00:00Z | 2020-07-06T10:53:36Z | 2020-14033 | 0 | 0 | 090000648471afd4 | |
| IRS-2020-0013-0001 | IRS | Credit for Carbon Oxide Sequestration (REG-112339-19) IRS-2020-0013 | Credit for Carbon Oxide Sequestration | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-06-02T04:00:00Z | 2020 | 6 | 2020-06-02T04:00:00Z | 2020-08-04T03:59:59Z | 2024-11-12T23:21:06Z | 2020-11907 | 1 | 0 | 09000064846c35f9 |
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;