documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "IRS-2020-0038" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- IRS 4
| 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-0038-0102 | IRS | Section 42, Low-Income Housing Credit Average Income Test Regulations (REG-119890-18) IRS-2020-0038 | REG-119890-18 Public Hearing Agenda-(non-speakers) | Supporting & Related Material | Fact/Data Sheet | 2021-03-21T04:00:00Z | 2021 | 3 | 2021-03-21T15:40:54Z | 0 | 0 | 0900006484a72800 | |||
| IRS-2020-0038-0083 | IRS | Section 42, Low-Income Housing Credit Average Income Test Regulations (REG-119890-18) IRS-2020-0038 | Public Hearing: Section 42, Low-Income Housing Credit Average Income Test Regulations; Correction | Proposed Rule | Correction | 2021-02-09T05:00:00Z | 2021 | 2 | 2021-02-09T05:00:00Z | 2021-02-10T04:59:59Z | 2021-02-22T19:59:38Z | 2021-02653 | 0 | 0 | 0900006484a21c93 |
| IRS-2020-0038-0082 | IRS | Section 42, Low-Income Housing Credit Average Income Test Regulations (REG-119890-18) IRS-2020-0038 | Hearing: Low-Income Housing Credit Average Income Test Regulations | Proposed Rule | Notice of Hearing | 2021-02-03T05:00:00Z | 2021 | 2 | 2021-02-03T05:00:00Z | 2021-03-06T04:59:59Z | 2021-03-12T02:01:16Z | 2021-02146 | 0 | 0 | 0900006484a17e90 |
| IRS-2020-0038-0001 | IRS | Section 42, Low-Income Housing Credit Average Income Test Regulations (REG-119890-18) IRS-2020-0038 | Low-Income Housing Credit Average Income Test Regulations | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-10-30T04:00:00Z | 2020 | 10 | 2020-10-30T04:00:00Z | 2020-12-30T04:59:59Z | 2024-11-06T23:41:44Z | 2020-20221 | 1 | 0 | 090000648494170d |
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;