documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "HUD", document_type = "Proposed Rule" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, 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-2022-0085-0001 | HUD | FR-5593-N-06 Strengthening the Section 184 Indian Housing Loan Guarantee Program; Extension of Compliance Date HUD-2022-0085 | FR–5593–P–01 | Proposed Rule | 2022-12-21T00:00:00Z | 2022 | 12 | 2022-12-21T00:00:00Z | 2023-03-18T03:59:59Z | 2025-05-21T06:36:18Z | 2022-26097 | 0 | 0 | 090000648554887d | |
| HUD-2021-0060-0011 | HUD | FR–6151–F–03 Adjustable Rate Mortgages: Transitioning From LIBOR to Alternate Indices HUD-2021-0060 | FR-6151-P-02 Adjustable Rate Mortgages: Transitioning From LIBOR to Alternate Indices | Proposed Rule | 2022-10-19T00:00:00Z | 2022 | 10 | 2022-10-19T00:00:00Z | 2022-11-19T04:59:59Z | 2025-05-21T06:36:33Z | 2022-22538 | 0 | 0 | 0900006485425e1f | |
| HUD-2022-0078-0001 | HUD | FR-6207-P-01 Indexing Methodology for Title I Manufactured Home Loan Limits HUD-2022-0078 | FR-6207-P-01 Indexing Methodology for Title I Manufactured Home Loan Limits | Proposed Rule | 2022-10-18T00:00:00Z | 2022 | 10 | 2022-10-18T00:00:00Z | 2022-12-20T04:59:59Z | 2025-05-21T06:36:33Z | 2022-22535 | 0 | 0 | 09000064854159e3 | |
| HUD-2022-0029-0002 | HUD | FR–6346–N–01 Adjustment of Civil Monetary Penalty Amounts: Request for Comments HUD-2022-0029 | FR–6346–N–01 Adjustment of Civil Monetary Penalty Amounts: Request for Comments | Proposed Rule | 2022-09-21T00:00:00Z | 2022 | 9 | 2022-09-21T00:00:00Z | 2022-11-22T04:59:59Z | 2025-05-21T06:36:38Z | 2022-20311 | 0 | 0 | 0900006485343d23 | |
| HUD-2010-0060-0016 | HUD | FR-6233-F-02 Manufactured Home Construction and Safety Standards HUD-2010-0060 | FR–6233–P–01 Manufactured Home Construction and Safety Standards | Proposed Rule | 2022-07-19T00:00:00Z | 2022 | 7 | 2022-07-19T00:00:00Z | 2022-09-20T03:59:59Z | 2025-05-21T06:37:01Z | 2022-14701 | 0 | 0 | 09000064851d2059 | |
| HUD-2022-0044-0001 | HUD | FR–6086–N–04 Request for Comments: National Standards for the Physical Inspection of Real Estate and Associated Protocols, Proposed Scoring Notice HUD-2022-0044 | 6086–N–02 Request for Comments: National Standards for the Physical Inspection of Real Estate and Associated Protocols | Proposed Rule | 2022-06-17T00:00:00Z | 2022 | 6 | 2022-06-17T00:00:00Z | 2022-08-02T03:59:59Z | 2025-05-21T06:37:08Z | 2022-13251 | 0 | 0 | 0900006485178bd9 | |
| HUD-2022-0024-0001 | HUD | Increased Forty-Year Term for Loan Modifications HUD-2022-0024 | FR-6263-P-01 Increased Forty-Year Term for Loan Modifications | Proposed Rule | 2022-04-01T00:00:00Z | 2022 | 4 | 2022-04-01T00:00:00Z | 2022-06-01T03:59:59Z | 2025-05-21T06:37:24Z | 2022-06875 | 0 | 0 | 0900006484ff3264 |
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;