documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "HUD-2008-0054" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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-2008-0054-0029 | HUD | FR–7070–N–43 Changes in Branch Office Registration Requirements HUD-2008-0054 | FR–7070–N–43 30-Day Notice of Proposed Information Collection: Informed Consumer Choice Disclosure and Application for FHA Insured Mortgages | Notice | 2023-07-27T00:00:00Z | 2023 | 7 | 2023-07-27T00:00:00Z | 2023-08-29T03:59:59Z | 2025-05-21T06:33:26Z | 2023-15938 | 0 | 0 | 0900006485d5d390 | |
| HUD-2008-0054-0024 | HUD | FR–7070–N–43 Changes in Branch Office Registration Requirements HUD-2008-0054 | FONSI_40 Year Loan ModificationES signed | Supporting & Related Material | 2023-03-09T00:00:00Z | 2023 | 3 | 2025-05-21T06:35:49Z | 0 | 0 | 0900006485781b9b | ||||
| HUD-2008-0054-0025 | HUD | FR–7070–N–43 Changes in Branch Office Registration Requirements HUD-2008-0054 | 6263-F-02 40-Year Loan Modification RIA 2.21.23 | Supporting & Related Material | 2023-03-09T00:00:00Z | 2023 | 3 | 2025-05-21T06:35:49Z | 0 | 0 | 0900006485781b9c | ||||
| HUD-2008-0054-0022 | HUD | FR–7070–N–43 Changes in Branch Office Registration Requirements HUD-2008-0054 | FR–6263–F–02 Increased Forty-Year Term for Loan Modifications | Rule | 2023-03-08T00:00:00Z | 2023 | 3 | 2025-05-21T06:35:49Z | 2023-04284 | 0 | 0 | 0900006485776d2b | |||
| HUD-2008-0054-0014 | HUD | FR–7070–N–43 Changes in Branch Office Registration Requirements HUD-2008-0054 | FR–6321–P–01 Changes in Branch Office Registration Requirements | Proposed Rule | 2023-03-01T00:00:00Z | 2023 | 3 | 2023-03-01T00:00:00Z | 2023-05-02T03:59:59Z | 2025-05-21T06:35:53Z | 2023-04191 | 0 | 0 | 090000648573254c |
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;