documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "HUD", document_type = "Rule" and posted_year = 2026 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| HUD-2026-0265-0044 | HUD | FR-6529-I-01 Revocation of the 30-Day Notification Requirement Prior To Termination of Lease for Nonpayment of Rent HUD-2026-0265 | FR-6529-N-02 Revocation of the 30-Day Notification Requirement Prior to Termination of Lease for Nonpayment of Rent; Indefinite Delay of Effective Date | Rule | 2026-03-13T04:00:00Z | 2026 | 3 | 2026-03-13T17:03:26Z | 2026-04990 | 0 | 0 | 09000064b92145ab | |||
| HUD-2026-0331-0001 | HUD | FR-6582-F-01 Removal of Regulations for Renewal Communities Designations HUD-2026-0331 | FR-6582-F-01 Removal of Regulations for Renewal Communities Designations | Rule | 2026-03-06T05:00:00Z | 2026 | 3 | 2026-03-06T18:15:28Z | 2026-04447 | 0 | 0 | 09000064b91f8398 | |||
| HUD-2026-0265-0001 | HUD | FR-6529-I-01 Revocation of the 30-Day Notification Requirement Prior To Termination of Lease for Nonpayment of Rent HUD-2026-0265 | FR-6529-I-01 Revocation of the 30-Day Notification Requirement Prior To Termination of Lease for Nonpayment of Rent | Rule | 2026-02-26T05:00:00Z | 2026 | 2 | 2026-02-26T05:00:00Z | 2026-04-28T03:59:59Z | 2026-03-14T09:00:12Z | 2026-03921 | 1 | 0 | 09000064b91deb0a | |
| HUD-2019-0019-0073 | HUD | FR–7092–N-07 30-Day Notice of Proposed Information Collection: Enhancing and Streamlining the Implementation of Section 3 Requirements for Creating Opportunities for Low- and Very-Low Income Persons and Eligible Businesses; OMB Control No.: 2501–0041 HUD-2019-0019 | FR-6085-N-05 Section 3 Project Threshold Updates for Creating Economic Opportunities for Low- and Very Low-Income Persons and Eligible Businesses | Rule | 2026-02-13T05:00:00Z | 2026 | 2 | 2026-02-13T19:26:29Z | 2026-03002 | 0 | 0 | 09000064b91aa85c | |||
| HUD-2026-0167-0001 | HUD | FR-6576-F-01 Removal of Regulations for the John Heinz Neighborhood Development Program HUD-2026-0167 | FR-6576-F-01 Removal of Regulations for the John Heinz Neighborhood Development Program | Rule | 2026-02-13T05:00:00Z | 2026 | 2 | 2026-02-13T19:26:28Z | 2026-02915 | 0 | 0 | 09000064b91aa7c8 |
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;