documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "RHS", document_type = "Rule" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, 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-20-MFH-0027-0001 | RHS | Guaranteed Rural Rental Housing Change in Initial Guarantee Fee and Annual Guarantee Fee RHS-20-MFH-0027 | Guaranteed Rural Rental Housing: Change in Initial Guarantee Fee and Annual Guarantee Fee | Rule | 2020-12-03T05:00:00Z | 2020 | 12 | 2020-12-03T05:00:00Z | 2020-12-07T18:07:08Z | 2020-25822 | 0 | 0 | 0900006484984097 | ||
| RHS-20-NONE-0026-0001 | RHS | OneRD Loan Guarentee Correction RHS-20-NONE-0026 | OneRD Guaranteed Loan Regulation; Correction | Rule | 2020-10-02T04:00:00Z | 2020 | 10 | 2020-10-02T04:00:00Z | 2020-10-05T13:16:00Z | 2020-21917 | 0 | 0 | 09000064848b4f66 | ||
| RHS-20-NONE-0024-0001 | RHS | Strategic Economic and Community Development RHS-20-NONE-0024 | Strategic Economic and Community Development | Rule | 2020-09-22T04:00:00Z | 2020 | 9 | 2020-09-22T04:00:00Z | 2020-09-22T14:01:54Z | 2020-19825 | 0 | 0 | 090000648486ee04 | ||
| RHS-20-NONE-0023-0001 | RHS | Special Authority To Enable Funding of Broadband and Smart Utility Facilities Across Select Rural Development Programs RHS-20-NONE-0023 | Special Authority To Enable Funding of Broadband and Smart Utility Facilities Across Select Rural Development Programs | Rule | 2020-09-15T04:00:00Z | 2020 | 9 | 2020-09-15T04:00:00Z | 2020-10-22T03:59:59Z | 2020-10-22T15:02:14Z | 2020-19033 | 0 | 0 | 0900006484859041 | |
| RHS-20-CF-0016-0001 | RHS | OneRD Guaranteed Loan Regulation RHS-20-CF-0016 | OneRD Guaranteed Loan Regulation | Rule | 2020-07-14T04:00:00Z | 2020 | 7 | 2020-07-14T13:24:08Z | 2020-13991 | 0 | 0 | 0900006484752f83 | |||
| RHS-20-ADMIN-0015-0001 | RHS | Debt Management RHS-20-ADMIN-0015 | Debt Management | Rule | 2020-06-17T04:00:00Z | 2020 | 6 | 2020-06-17T04:00:00Z | 2020-06-24T11:45:13Z | 2020-09447 | 0 | 0 | 09000064846f5e6e | ||
| RHS-20-CF-0011-0002 | RHS | Notification of Direct Loan Payment Deferrals for the Community Facilities Direct Loan Program RHS-20-CF-0011 | Notification of Direct Loan Payment Deferrals for the Community Facilities Direct Loan Program | Rule | 2020-05-21T04:00:00Z | 2020 | 5 | 2020-05-21T04:00:00Z | 2020-05-27T20:36:55Z | C1-2020-08429 | 0 | 0 | 090000648465b775 | ||
| RHS-20-CF-0011-0001 | RHS | Notification of Direct Loan Payment Deferrals for the Community Facilities Direct Loan Program RHS-20-CF-0011 | Direct Loan Payment Deferrals for the Community Facilities Direct Loan Program | Rule | 2020-04-21T04:00:00Z | 2020 | 4 | 2020-04-21T04:00:00Z | 2020-04-22T19:11:07Z | 2020-08429 | 0 | 0 | 09000064844bb670 | ||
| RHS-20-ADMIN-0012-0001 | RHS | Rural Development Guarantee Loan Servicing Flexibilities To Address Coronavirus 2019 Impacts RHS-20-ADMIN-0012 | Rural Development Guarantee Loan Servicing Flexibilities to Address Coronavirus 2019 Impacts | Rule | 2020-04-08T04:00:00Z | 2020 | 4 | 2020-04-08T04:00:00Z | 2020-04-27T14:05:50Z | 2020-07487 | 0 | 0 | 09000064844921a2 | ||
| RHS-20-CF-0009-0001 | RHS | Notification of Guarantee Loan Payment Deferrals for Business and Industry Loan Guarantees, Rural Energy for America Program Loan Guarantees, Community Facilities Loan Guarantees, and Water and Waste Loan Guarantees RHS-20-CF-0009 | Guarantee Loan Payment Deferrals for Business and Industry Loan Guarantees, Rural Energy for America Program Loan Guarantees, Community Facilities Loan Guarantees, and Water and Waste Loan Guarantees | Rule | 2020-03-31T04:00:00Z | 2020 | 3 | 2020-03-31T04:00:00Z | 2020-04-07T13:03:44Z | 2020-06706 | 0 | 0 | 090000648447aa6d |
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;