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 = 2023 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-23-SFH-0026-0001 | RHS | Single Family Housing Section 502 Direct Loan Program - Community Land Trust Pilot RHS-23-SFH-0026 | Single Family Housing Direct Loan Program: Community Land Trust Pilot | Rule | 2023-12-08T05:00:00Z | 2023 | 12 | 2023-12-08T05:00:00Z | 2024-04-10T19:56:57Z | 2023-26654 | 0 | 0 | 09000064863166b6 | ||
| RHS_FRDOC_0001-0540 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | Special Authority to Enable Funding of Broadband and Smart Utility Facilities Across Select Rural Development Programs | Rule | 2023-10-19T04:00:00Z | 2023 | 10 | 2023-10-19T04:00:00Z | 2023-10-19T12:12:10Z | 2023-23070 | 0 | 0 | 090000648610bfc0 | ||
| RHS-23-SFH-0017-0002 | RHS | Single Family Housing Section 504 Home Repair Loans and Grants in Presidentially Declared Disaster Areas Pilot Program RHS-23-SFH-0017 | Single Family Housing Section 504 Home Repair Loans and Grants in Presidentially Declared Disaster Areas Pilot Program; Correction | Rule | 2023-09-06T04:00:00Z | 2023 | 9 | 2023-09-06T04:00:00Z | 2024-10-29T11:06:43Z | 2023-19115 | 0 | 0 | 0900006485f4b180 | ||
| RHS_FRDOC_0001-0531 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | Single Family Housing Section 502 Guaranteed Loan Program | Rule | 2023-07-26T04:00:00Z | 2023 | 7 | 2023-07-26T04:00:00Z | 2023-07-26T11:59:42Z | 2023-15759 | 0 | 0 | 0900006485d4c8dc | ||
| RHS-23-MFH-0008-0002 | RHS | Loan Guarantees Under the Section 538 Guaranteed Rural Rental Housing Program RHS-23-MFH-0008 | Loan Guarantees Under the Section 538 Guaranteed Rural Rental Housing Program; Correction | Rule | 2023-07-19T04:00:00Z | 2023 | 7 | 2023-07-19T04:00:00Z | 2023-08-15T12:00:11Z | 2023-15202 | 0 | 0 | 0900006485cdee03 | ||
| RHS-23-SFH-0017-0001 | RHS | Single Family Housing Section 504 Home Repair Loans and Grants in Presidentially Declared Disaster Areas Pilot Program RHS-23-SFH-0017 | Single Family Housing Section 504 Home Repair Loans and Grants in Presidentially Declared Disaster Areas Pilot Program | Rule | 2023-07-18T04:00:00Z | 2023 | 7 | 2023-07-18T04:00:00Z | 2024-10-29T11:05:32Z | 2023-15174 | 0 | 0 | 0900006485cd2903 | ||
| RHS-23-MFH-0008-0001 | RHS | Loan Guarantees Under the Section 538 Guaranteed Rural Rental Housing Program RHS-23-MFH-0008 | Loan Guarantees Under the Section 538 Guaranteed Rural Rental Housing Program | Rule | 2023-04-28T04:00:00Z | 2023 | 4 | 2023-05-08T19:00:04Z | 2023-08952 | 0 | 0 | 090000648599b003 |
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;