documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "RHS_FRDOC_0001" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_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_FRDOC_0001-0508 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | Request for Applications: Strategic Economic and Community Development Program for Fiscal Year 2023 | Notice | 2022-11-07T05:00:00Z | 2022 | 11 | 2022-11-07T05:00:00Z | 2022-11-07T12:46:05Z | 2022-24133 | 0 | 0 | 0900006485492de5 | ||
| RHS_FRDOC_0001-0504 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | Change in the Lease-Up Reserve Calculation for the Section 538 Guaranteed Rural Rental Housing Program | Notice | 2022-09-06T04:00:00Z | 2022 | 9 | 2022-09-06T04:00:00Z | 2022-09-06T11:35:14Z | 2022-19019 | 0 | 0 | 09000064852b3e7c | ||
| RHS_FRDOC_0001-0496 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | OneRD Guaranteed Loan: Corrections | Rule | 2022-07-15T04:00:00Z | 2022 | 7 | 2022-07-15T04:00:00Z | 2022-07-15T12:17:16Z | 2022-15105 | 0 | 0 | 09000064851ccd9d | ||
| RHS_FRDOC_0001-0495 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | OneRD Annual Guarantee Fee Rates, Periodic Retention Fee Rates, Loan Guarantee Percentage and Fee for Issuance of the Loan Note Guarantee Prior to Construction Completion for Fiscal Year 2023 | Notice | 2022-07-14T04:00:00Z | 2022 | 7 | 2022-07-14T04:00:00Z | 2022-07-14T12:16:06Z | 2022-15058 | 0 | 0 | 09000064851c9bf8 | ||
| RHS_FRDOC_0001-0493 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | Funds Availability: Rural Placemaking Innovation Challenge for Fiscal Year 2022 | Notice | 2022-06-30T04:00:00Z | 2022 | 6 | 2022-06-30T04:00:00Z | 2022-08-16T03:59:59Z | 2022-06-30T12:16:52Z | 2022-14028 | 0 | 0 | 09000064851ab8f8 | |
| RHS_FRDOC_0001-0492 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | Rural Development Policy on Exclusion of Populations | Rule | 2022-06-29T04:00:00Z | 2022 | 6 | 2022-06-29T04:00:00Z | 2022-06-29T12:13:47Z | 2022-13857 | 0 | 0 | 09000064851a904a | ||
| RHS_FRDOC_0001-0491 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Agriculture Innovation Center Demonstration Program | Notice | 2022-06-27T04:00:00Z | 2022 | 6 | 2022-06-27T04:00:00Z | 2022-08-27T03:59:59Z | 2022-08-26T01:00:56Z | 2022-13624 | 0 | 0 | 09000064851a3129 | |
| RHS_FRDOC_0001-0487 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | OneRD Guaranteed Loan Initiative | Rule | 2022-04-27T04:00:00Z | 2022 | 4 | 2022-04-27T04:00:00Z | 2022-04-27T12:13:01Z | 2022-08943 | 0 | 0 | 0900006485039f0a | ||
| RHS_FRDOC_0001-0486 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | OneRD Guaranteed Loan Regulation | Rule | 2022-04-27T04:00:00Z | 2022 | 4 | 2022-04-27T04:00:00Z | 2022-04-27T12:11:18Z | 2022-08695 | 0 | 0 | 0900006485039d28 | ||
| RHS_FRDOC_0001-0477 | RHS | Recently Posted RHS Rules and Notices. RHS_FRDOC_0001 | OneRD Guaranteed Loan Regulations; Corrections | Rule | 2022-02-09T05:00:00Z | 2022 | 2 | 2022-02-09T05:00:00Z | 2022-02-09T12:51:44Z | 2022-02710 | 0 | 0 | 0900006484f6363a |
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;