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 = "Rule" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_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-2008-0054-0013 | HUD | FR–7070–N–43 Changes in Branch Office Registration Requirements HUD-2008-0054 | FR–6084–F–02 Acceptance of Private Flood Insurance for FHA-Insured Mortgages | Rule | 2022-11-21T00:00:00Z | 2022 | 11 | 2025-05-21T06:36:24Z | 2022-25258 | 0 | 0 | 09000064854f7fe2 | |||
| HUD-2006-0134-0012 | HUD | FR-7094-N-03 60-Day Notice of Proposed Information Collection: HOME Investment Partnerships Program HUD-2006-0134 | FR 5792–F–03 Changes to HOME Investment Partnerships (HOME) Program Commitment Requirement | Rule | 2022-09-22T00:00:00Z | 2022 | 9 | 2025-05-21T06:36:38Z | 2022-20425 | 0 | 0 | 090000648534f505 | |||
| HUD-2022-0066-0001 | HUD | FR–6341–N–01 Section 108 Loan Guarantee Program: Announcement of Fee To Cover Credit Subsidy Costs for FY 2023 HUD-2022-0066 | FR–6341–N–01 Section 108 Loan Guarantee Program: Announcement of Fee To Cover Credit Subsidy Costs for FY 2023 | Rule | 2022-09-01T00:00:00Z | 2022 | 9 | 2025-05-21T06:36:45Z | 2022-19009 | 0 | 0 | 09000064852a2b60 | |||
| HUD-2008-0071-0011 | HUD | FR-7086-N-31 60-Day Notice of Proposed Information Collection: Management Review of Multifamily Housing Projects; OMB Control No.: 2502-0178 HUD-2008-0071 | FR–5654–F–03 Streamlining Management and Occupancy Reviews for Section 8 Housing Assistance Programs | Rule | 2022-06-27T00:00:00Z | 2022 | 6 | 2025-05-21T06:37:07Z | 2022-13426 | 0 | 0 | 090000648519f0e4 | |||
| HUD-2020-0063-0106 | HUD | FR–6114–F–03 Streamlining and Implementation of Economic Growth, Regulatory Relief, and Consumer Protection Act Changes to Family Self-Sufficiency (FSS) Program HUD-2020-0063 | FR–6114–F–03 Streamlining and Implementation of Economic Growth, Regulatory Relief, and Consumer Protection Act Changes to Family Self-Sufficiency (FSS) Program | Rule | 2022-05-17T00:00:00Z | 2022 | 5 | 2025-05-21T06:37:15Z | 2022-09528 | 0 | 0 | 09000064850835ec | |||
| HUD-2022-0029-0001 | HUD | FR–6346–N–01 Adjustment of Civil Monetary Penalty Amounts: Request for Comments HUD-2022-0029 | FR–6309–F–01 Adjustment of Civil Monetary Penalty Amounts for 2022 | Rule | 2022-04-26T00:00:00Z | 2022 | 4 | 2025-05-21T06:37:19Z | 2022-08768 | 0 | 0 | 0900006485035965 | |||
| HUD-2022-0015-0001 | HUD | FR-6285-F-01 HUD Office of Hearings and Appeals HUD-2022-0015 | FR-6285-F-01 HUD Office of Hearings and Appeals | Rule | 2022-02-14T00:00:00Z | 2022 | 2 | 2025-05-21T06:38:35Z | 2022-03007 | 0 | 0 | 0900006484f75192 |
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;