documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "RHS", document_type = "Proposed Rule" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, comment_end_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| RHS-23-SFH-0016-0001 | RHS | Streamlining and Improvement of Single Family Housing Direct Programs RHS-23-SFH-0016 | Streamlining and Improvement of Single Family Housing Direct Programs | Proposed Rule | 2023-11-20T05:00:00Z | 2023 | 11 | 2023-11-20T05:00:00Z | 2024-01-20T04:59:59Z | 2024-01-20T02:00:51Z | 2023-25314 | 0 | 0 | 09000064862961c5 | |
| RHS-23-MFH-0019-0001 | RHS | Changes Related to Insurance Requirements in Multi-Family Housing (MFH) Direct Loan and Grant Programs RHS-23-MFH-0019 | Insurance Requirements in Multi-Family Housing Direct Loan and Grant Programs | Proposed Rule | 2023-10-25T04:00:00Z | 2023 | 10 | 2023-10-25T04:00:00Z | 2023-12-27T04:59:59Z | 2023-12-27T02:01:09Z | 2023-23344 | 0 | 0 | 0900006486136cb6 | |
| RHS-23-MFH-0013-0002 | RHS | Updates to the Off-Farm Labor Housing (Off-FLH), Loan and Grant Rates and Terms; Clarification of Grant Agreement Terms RHS-23-MFH-0013 | Updating Manufactured Housing Provisions | Proposed Rule | 2023-10-05T04:00:00Z | 2023 | 10 | 2023-10-05T04:00:00Z | 2023-11-01T03:59:59Z | 2023-11-02T01:04:36Z | 2023-22184 | 0 | 0 | 09000064860472bd | |
| RHS-23-MFH-0013-0001 | RHS | Updates to the Off-Farm Labor Housing (Off-FLH), Loan and Grant Rates and Terms; Clarification of Grant Agreement Terms RHS-23-MFH-0013 | Off-Farm Labor Housing, Loan and Grant Rates and Terms; Clarification of Grant Agreement Terms | Proposed Rule | 2023-09-12T04:00:00Z | 2023 | 9 | 2023-09-12T04:00:00Z | 2023-11-14T04:59:59Z | 2023-10-06T17:11:38Z | 2023-19662 | 0 | 0 | 0900006485f87228 | |
| RHS-23-SFH-0007-0001 | RHS | Updating to Manufactured Housing Provisions RHS-23-SFH-0007 | Updating Manufactured Housing Provisions | Proposed Rule | 2023-08-16T04:00:00Z | 2023 | 8 | 2023-08-16T04:00:00Z | 2023-11-01T03:59:59Z | 2023-10-31T01:04:53Z | 2023-17519 | 0 | 0 | 0900006485e544d7 | |
| RHS-23-MFH-0006-0001 | RHS | Guaranteed Rural Rental Housing Program Change in Priority Projects Criteria RHS-23-MFH-0006 | Guaranteed Rural Rental Housing Program Change in Priority Projects Criteria | Proposed Rule | 2023-01-31T05:00:00Z | 2023 | 1 | 2023-01-31T05:00:00Z | 2023-04-04T03:59:59Z | 2023-04-05T01:00:29Z | 2023-01803 | 0 | 0 | 090000648561e4fd | |
| RHS-22-SFH-0012-0001 | RHS | Changes Related to Special Servicing Options RHS-22-SFH-0012 | Single-Family Housing Guaranteed Loan Program | Proposed Rule | 2023-01-27T05:00:00Z | 2023 | 1 | 2023-01-27T05:00:00Z | 2023-03-29T03:59:59Z | 2023-03-29T01:01:08Z | 2023-01636 | 0 | 0 | 090000648561082f | |
| RHS-22-MFH-0005-0001 | RHS | Changes Related to Reserve Account Administration in Multi-Family Housing (MFH) Direct Loan Programs RHS-22-MFH-0005 | Reserve Account Administration in Multi-Family Housing Direct Loan Programs | Proposed Rule | 2023-01-09T05:00:00Z | 2023 | 1 | 2023-01-09T05:00:00Z | 2023-03-11T04:59:59Z | 2023-03-08T15:45:40Z | 2023-00140 | 0 | 0 | 09000064855c24b9 |
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;