documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "HUD", document_type = "Rule" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| HUD-2005-0076-0001 | HUD | FR-4556-I-02 Prohibition on Use of Community Development Block Grant Assistance for Job-Pirating Activities HUD-2005-0076 | FR-4556-I-02: Prohibition on Use of Community Development Block Grant Assistance for Job-Pirating Activities | Rule | 2005-12-23T15:37:41Z | 2005 | 12 | 2005-12-23T15:37:41Z | 2006-02-22T04:59:59Z | 2025-05-21T09:19:53Z | 05-24428 | 0 | 0 | 09000064800fef96 | |
| HUD-2004-0012-0040 | HUD | FR-4886-F-02 Manufactured Home Construction and Safety Standards HUD-2004-0012 | FR-4886-F-02: Manufactured Home Construction and Safety Standards | Rule | 2005-11-30T09:43:19Z | 2005 | 11 | 2005-11-30T09:43:19Z | 2025-05-21T09:19:54Z | 05-23387 | 0 | 0 | 09000064800e789c | ||
| HUD-2004-0019-0005 | HUD | FR–4947–P–01 Release in the Public Use Database of Certain Mortgage Data and Annual Housing Activities Report (AHAR) Information of the Federal National Mortgage Association (Fannie Mae) and the Federal Home Loan Mortgage Corporation (Freddie Mac) HUD-2004-0019 | FR-4947-F-02: Release in the Public Use Database of Certain Mortgage Data and Annual Housing Activities Report (AHAR) Information of the Federal National Mortgage Association (Fannie Mae) and the Federal Home Loan Mortgage Corporation (Freddie Mac) | Rule | 2005-11-10T00:00:00Z | 2005 | 11 | 2005-11-10T00:00:00Z | 2025-05-21T09:19:56Z | 05-22420 | 0 | 0 | 090000648009ddc7 | ||
| HUD-2005-0048-0001 | HUD | FR–4874–C–09 Revisions to the Public Housing Operation Fund Program; Correction to Formula Implementation Date HUD-2005-0048 | FR–4874–C–09: Revisions to the Public Housing Operating Fund Program; Correction to Formula Implementation Date | Rule | 2005-10-24T15:34:00Z | 2005 | 10 | 2005-10-24T15:34:00Z | 2025-05-21T09:19:57Z | 05-21268 | 0 | 0 | 09000064800963d0 | ||
| HUD-2005-0043-0001 | HUD | FR-4636-F-02 Project-Based Voucher Program; Final Rule HUD-2005-0043 | FR-4636-F-02: Project-Based Voucher Program | Rule | 2005-10-13T15:29:46Z | 2005 | 10 | 2005-10-13T15:29:46Z | 2025-05-21T09:19:58Z | 05-20035 | 0 | 0 | 0900006480092677 |
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;