documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "RHS", document_type = "Proposed Rule" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-24-SFH-0037-0001 | RHS | Self-Help Technical Assistance Grants: Technical Corrections and Program Updates RHS-24-SFH-0037 | Self-Help Technical Assistance Grants: Technical Corrections and Program Updates | Proposed Rule | 2024-12-04T05:00:00Z | 2024 | 12 | 2024-12-04T05:00:00Z | 2025-02-04T04:59:59Z | 2025-02-13T17:13:10Z | 2024-28032 | 0 | 0 | 09000064868486d8 | |
| RHS-24-MFH-0016-0001 | RHS | MFH Rural Rental Housing Deed Restriction Proposed Rule RHS-24-MFH-0016 | Guaranteed Rural Rental Housing Program: Requirement to Record Deed Restriction | Proposed Rule | 2024-11-05T05:00:00Z | 2024 | 11 | 2024-11-05T05:00:00Z | 2025-01-07T04:59:59Z | 2025-01-14T22:07:57Z | 2024-25713 | 0 | 0 | 09000064867fd88f | |
| RHS-24-SFH-0029-0001 | RHS | Single Family Housing Guaranteed Loan Program RHS-24-SFH-0029 | Single Family Housing Guaranteed Loan Program | Proposed Rule | 2024-09-19T04:00:00Z | 2024 | 9 | 2024-09-19T04:00:00Z | 2024-11-19T04:59:59Z | 2024-11-18T02:00:38Z | 2024-21404 | 0 | 0 | 090000648674ca41 | |
| RHS_FRDOC_0001-0578 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | Semiannual Regulatory Agenda, Spring 2024 | Proposed Rule | 2024-08-16T04:00:00Z | 2024 | 8 | 2024-08-16T04:00:00Z | 2024-08-16T12:33:53Z | 2024-16448 | 0 | 0 | 090000648664dc30 | ||
| RHS-24-MFH-0003-0001 | RHS | Multifamily Housing Program Update to the Credit Report Process RHS-24-MFH-0003 | Multifamily Housing Program Update to the Credit Report Process | Proposed Rule | 2024-03-29T04:00:00Z | 2024 | 3 | 2024-03-29T04:00:00Z | 2024-05-29T03:59:59Z | 2024-04-10T19:48:28Z | 2024-06596 | 0 | 0 | 09000064864a278f | |
| RHS-23-MFH-0014-0001 | RHS | Revisions to the Smoke Alarm Requirements in the Section 515 Rural Rental Housing and Section 514/516 Farm Labor Housing Direct Loan Programs RHS-23-MFH-0014 | Smoke Alarm Requirements: Section 515 Rural Rental Housing and Section 514/516 Farm Labor Housing Direct Loan Programs | Proposed Rule | 2024-01-08T05:00:00Z | 2024 | 1 | 2024-01-08T05:00:00Z | 2024-03-09T04:59:59Z | 2024-03-09T02:00:32Z | 2024-00073 | 0 | 0 | 0900006486384483 |
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;