documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "RHS", document_type = "Rule" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, posted_date (date), comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| RHS_FRDOC_0001-0614 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | OneRD Guaranteed Loan Regulation | Rule | 2025-12-11T05:00:00Z | 2025 | 12 | 2025-12-11T05:00:00Z | 2025-12-11T17:19:09Z | 2025-22567 | 0 | 0 | 09000064b90c55b4 | ||
| RHS_FRDOC_0001-0613 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | Removal of Obsolete Regulation | Rule | 2025-08-18T04:00:00Z | 2025 | 8 | 2025-08-18T04:00:00Z | 2025-08-18T16:20:24Z | 2025-15642 | 0 | 0 | 09000064b8f049d4 | ||
| RHS_FRDOC_0001-0609 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | Removal of Unconstitutional Preferences Based on Race and Sex in Response to Court Ruling | Rule | 2025-07-10T04:00:00Z | 2025 | 7 | 2025-07-10T04:00:00Z | 2025-07-10T16:41:35Z | 2025-12877 | 0 | 0 | 09000064b8e60291 | ||
| RHS-24-SFH-0034-0001 | RHS | Updating Manufactured Housing Provisions RHS-24-SFH-0034 | Updating Manufactured Housing Provisions; Correction | Rule | 2025-03-04T05:00:00Z | 2025 | 3 | 2025-03-04T05:00:00Z | 2025-03-31T14:30:53Z | 2025-03504 | 0 | 0 | 09000064869a816c | ||
| RHS_FRDOC_0001-0602 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | Single Family Housing Guaranteed Loan Program Changes Related to Special Servicing Options; Correction | Rule | 2025-02-12T05:00:00Z | 2025 | 2 | 2025-02-12T05:00:00Z | 2025-02-12T13:23:30Z | 2025-02551 | 0 | 0 | 090000648694ca8d | ||
| RHS_FRDOC_0001-0601 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | Multifamily Housing Program Update to the Credit Report Process | Rule | 2025-01-29T05:00:00Z | 2025 | 1 | 2025-01-29T05:00:00Z | 2025-01-29T13:15:38Z | 2025-01922 | 0 | 0 | 090000648690a479 | ||
| RHS_FRDOC_0001-0600 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | Updating Manufactured Housing Provisions | Rule | 2025-01-03T05:00:00Z | 2025 | 1 | 2025-01-03T05:00:00Z | 2025-01-03T13:02:41Z | 2024-30270 | 0 | 0 | 090000648689aaa8 |
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;