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 = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, last_modified, 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-08-MFH-0028-0001 | RHS | Direct Multi-Family Housing Loans and Grants RHS-08-MFH-0028 | Direct Multi-Family Housing Loans and Grants | Rule | 2008-11-04T05:00:00Z | 2008 | 11 | 2008-11-04T05:00:00Z | 2008-12-16T19:03:45Z | E8-25965 | 0 | 0 | 09000064807938bf | ||
| RHS-08-SFH-0027-0001 | RHS | Income Limit Modification RHS-08-SFH-0027 | Income Limit Modification | Rule | 2008-11-04T05:00:00Z | 2008 | 11 | 2008-11-04T05:00:00Z | 2009-01-06T04:59:59Z | 2011-06-11T17:57:02Z | E8-25849 | 0 | 0 | 0900006480793963 | |
| RHS-08-SFH-0026-0001 | RHS | Direct Single Family Housing Loans and Grants RHS-08-SFH-0026 | Direct Single Family Housing Loans and Grants | Rule | 2008-08-22T04:00:00Z | 2008 | 8 | 2008-08-22T04:00:00Z | 2008-10-22T03:59:59Z | 2011-06-11T17:57:02Z | E8-19350 | 0 | 0 | 09000064806d3087 | |
| RHS-08-SFH-0023-0001 | RHS | Housing Preservation Grants RHS-08-SFH-0023 | Housing Preservation Grants | Rule | 2008-06-26T04:00:00Z | 2008 | 6 | 2008-06-26T04:00:00Z | 2008-08-26T03:59:59Z | 2011-06-11T17:57:02Z | E8-14456 | 0 | 0 | 090000648063f641 | |
| RHS-08-CF-0016-0001 | RHS | Community Facilities Grant Program RHS-08-CF-0016 | Community Facilities Grant Program | Rule | 2008-03-17T04:00:00Z | 2008 | 3 | 2008-03-17T04:00:00Z | 2008-05-17T03:59:59Z | 2011-06-11T17:57:00Z | E8-05271 | 0 | 0 | 09000064803faa04 | |
| RHS-08-MFH-0011-0001 | RHS | Annual Guarantee Fee Due Date RHS-08-MFH-0011 | Annual Guarantee Fee Due Date | Rule | 2008-03-05T05:00:00Z | 2008 | 3 | 2008-03-05T05:00:00Z | 2011-06-11T17:57:01Z | E8-04288 | 0 | 0 | 09000064803e7fdc | ||
| RHS-08-CF-0009-0001 | RHS | Form RD 1951–33, ‘‘Reamortization Request’’ RHS-08-CF-0009 | Form RD 1951-33, ``Reamortization Request | Rule | 2008-02-12T05:00:00Z | 2008 | 2 | 2008-02-12T05:00:00Z | 2008-04-01T18:35:48Z | E8-02538 | 0 | 0 | 09000064803acd07 |
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;