documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "HUD-2023-0012" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), last_modified (date)
document_type 3
agency_id 1
- HUD 6
| 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-2023-0012-0006 | HUD | FR-6057-N-07 Housing Opportunity Through Modernization Act: Implementation of Sections 102 and 104; Further Extension of Compliance Date HUD-2023-0012 | FR-6057-N-07 Housing Opportunity Through Modernization Act: Implementation of Sections 102 and 104; Further Extension of Compliance Date | Rule | 2025-12-30T05:00:00Z | 2025 | 12 | 2025-12-30T19:01:44Z | 2025-23989 | 0 | 0 | 09000064b910c4f0 | |||
| HUD-2023-0012-0005 | HUD | FR-6057-N-07 Housing Opportunity Through Modernization Act: Implementation of Sections 102 and 104; Further Extension of Compliance Date HUD-2023-0012 | FR-6057-N-06 Housing Opportunity Through Modernization Act: Implementation of Sections 102, 103, and 104; Extension of Compliance Date and Safe Harbor Implementation | Rule | 2024-12-31T00:00:00Z | 2024 | 12 | 2025-05-21T06:21:12Z | 2024-31401 | 0 | 0 | 0900006486896c88 | |||
| HUD-2023-0012-0004 | HUD | FR-6057-N-07 Housing Opportunity Through Modernization Act: Implementation of Sections 102 and 104; Further Extension of Compliance Date HUD-2023-0012 | FR-6057-N-05 Housing Opportunity Through Modernization Act: Implementation of Sections 102, 103, and 104; Extension of Compliance Date | Notice | 2023-12-08T00:00:00Z | 2023 | 12 | 2025-05-21T06:30:41Z | 2023-27026 | 0 | 0 | 09000064863165e5 | |||
| HUD-2023-0012-0003 | HUD | FR-6057-N-07 Housing Opportunity Through Modernization Act: Implementation of Sections 102 and 104; Further Extension of Compliance Date HUD-2023-0012 | FR–6057–C–04 Housing Opportunity Through Modernization Act of 2016: Implementation of Sections 102, 103, and 104; Correction | Rule | 2023-02-28T00:00:00Z | 2023 | 2 | 2025-05-21T06:35:53Z | 2023-03965 | 0 | 0 | 09000064857260a4 | |||
| HUD-2023-0012-0002 | HUD | FR-6057-N-07 Housing Opportunity Through Modernization Act: Implementation of Sections 102 and 104; Further Extension of Compliance Date HUD-2023-0012 | 6057-F-03 HOTMA Income Final Rule RIA | Supporting & Related Material | 2023-02-16T00:00:00Z | 2023 | 2 | 2025-05-21T06:35:58Z | 0 | 0 | 09000064856b091c | ||||
| HUD-2023-0012-0001 | HUD | FR-6057-N-07 Housing Opportunity Through Modernization Act: Implementation of Sections 102 and 104; Further Extension of Compliance Date HUD-2023-0012 | FR–6057–F–03 Housing Opportunity Through Modernization Act of 2016: Implementation of Sections 102, 103, and 104 | Rule | 2023-02-14T00:00:00Z | 2023 | 2 | 2025-05-21T06:35:59Z | 2023-01617 | 0 | 0 | 09000064856931b9 |
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;