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 = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_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-2019-0083-0001 | HUD | FR-6050-N-03 Relief From HUD Public Housing and Section 8 Requirements Available During CY 2019 to Public Housing Agencies To Assist With Recovery and Relief Efforts on Behalf of Families Affected by Presidentially Declared Major Disasters HUD-2019-0083 | FR-6050-N-03 Relief From HUD Public Housing and Section 8 Requirements Available During CY 2019 to Public Housing Agencies To Assist With Recovery and Relief Efforts on Behalf of Families Affected by Presidentially Declared Major Disasters | Rule | 2019-10-09T00:00:00Z | 2019 | 10 | 2025-05-21T06:59:33Z | 2019-21422 | 0 | 0 | 0900006484063744 | |||
| HUD-2016-0108-0092 | HUD | FR–5715–P–01 Project Approval for Single- Family Condominiums HUD-2016-0108 | FR-5715-F-02 Project Approval for Single- Family Condominiums | Rule | 2019-08-15T00:00:00Z | 2019 | 8 | 2025-05-21T07:00:20Z | 2019-17213 | 0 | 0 | 0900006483e53a6a | |||
| HUD-2019-0064-0001 | HUD | FR-6167-N-01 Section 108 Loan Guarantee Program: Announcement of Fee To Cover Credit Subsidy Costs for FY 2020 HUD-2019-0064 | FR-6167-N-01 Section 108 Loan Guarantee Program: Announcement of Fee To Cover Credit Subsidy Costs for FY 2020 | Rule | 2019-07-23T00:00:00Z | 2019 | 7 | 2025-05-21T07:00:23Z | 2019-15627 | 0 | 0 | 0900006483da9da9 | |||
| HUD-2018-0027-0002 | HUD | FR-6041-P-01 HUD Acquisition Regulation (HUDAR) HUD-2018-0027 | FR-6041-F-02 HUD Acquisition Regulation (HUDAR) | Rule | 2019-04-15T00:00:00Z | 2019 | 4 | 2025-05-21T07:06:42Z | 2019-07320 | 0 | 0 | 0900006483ba243d | |||
| HUD-2019-0010-0001 | HUD | FR-6139-F-01 Adjustment of Civil Monetary Penalty Amounts for 2019 HUD-2019-0010 | FR-6139-F-01 Adjustment of Civil Monetary Penalty Amounts for 2019 | Rule | 2019-03-15T00:00:00Z | 2019 | 3 | 2025-05-21T07:06:50Z | 2019-04898 | 0 | 0 | 0900006483ae7b6a |
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;