documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "HUD", document_type = "Proposed Rule" and posted_year = 2021 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-2020-0063-0104 | HUD | FR–6114–F–03 Streamlining and Implementation of Economic Growth, Regulatory Relief, and Consumer Protection Act Changes to Family Self-Sufficiency (FSS) Program HUD-2020-0063 | FR-6114-P-02 Request for Information: Streamlining and Implementation of Economic Growth, Regulatory Relief, and Consumer Protection Act Changes to Family Self-Sufficiency Program | Proposed Rule | 2021-11-15T00:00:00Z | 2021 | 11 | 2021-11-15T00:00:00Z | 2021-12-16T04:59:59Z | 2025-05-21T06:39:08Z | 2021-24636 | 0 | 0 | 0900006484e4bd30 | |
| HUD-2021-0060-0001 | HUD | FR–6151–F–03 Adjustable Rate Mortgages: Transitioning From LIBOR to Alternate Indices HUD-2021-0060 | FR-6151-A-01 Adjustable Rate Mortgages: Transitioning From LIBOR to Alternate Indices | Proposed Rule | 2021-10-05T00:00:00Z | 2021 | 10 | 2021-10-05T00:00:00Z | 2021-12-07T04:59:59Z | 2025-05-21T06:39:26Z | 2021-21512 | 0 | 0 | 0900006484dba9c0 | |
| HUD-2019-0068-0031 | HUD | FR–6160–N–03 Notice of Modification to the Demonstration To Assess the National Standards for the Physical Inspection of Real Estate and Associated Protocols HUD-2019-0068 | FR-6160-N-02 Notice of Continuation of Demonstration To Assess the National Standards for the Physical Inspection of Real Estate and Associated Protocols | Proposed Rule | 2021-09-28T00:00:00Z | 2021 | 9 | 2025-05-21T06:39:30Z | 2021-21049 | 0 | 0 | 0900006484dadfeb | |||
| HUD-2019-0096-0002 | HUD | FR-6172-N-04 Credit Risk Retention—Notification of Determination of Review HUD-2019-0096 | FR-6172-N-03 Credit Risk Retention- Notification of Extension of Review Period | Proposed Rule | 2021-07-22T00:00:00Z | 2021 | 7 | 2025-05-21T06:40:00Z | 2021-15424 | 0 | 0 | 0900006484c077b5 | |||
| HUD-2021-0033-0001 | HUD | FR–6251–F–02 Reinstatement of HUD’s Discriminatory Effects Standard HUD-2021-0033 | FR-6251-P-01 Reinstatement of Discriminatory Effects Standard | Proposed Rule | 2021-06-25T00:00:00Z | 2021 | 6 | 2021-06-25T00:00:00Z | 2021-08-25T03:59:59Z | 2025-05-21T06:40:07Z | 2021-13240 | 0 | 0 | 0900006484bb1a58 | |
| HUD-2020-0047-20484 | HUD | FR-6152-P-01 Making Admission or Placement Determinations Based on Sex in Facilities Under Community Planning and Development Housing Programs HUD-2020-0047 | FR-6152-N-02 Making Admission or Placement Determinations Based on Sex in Facilities Under Community Planning and Development Housing Programs; Withdrawal; Regulatory Review | Proposed Rule | 2021-04-27T00:00:00Z | 2021 | 4 | 2025-05-21T06:40:16Z | 2021-08513 | 0 | 0 | 0900006484ab824e | |||
| HUD-2021-0027-0001 | HUD | FR-5246-N-04 Housing Trust Fund: Request for Public Comment on Prior Interim Rule HUD-2021-0027 | FR-5246-N-04 Housing Trust Fund: Request for Public Comment on Prior Interim Rule | Proposed Rule | 2021-04-26T00:00:00Z | 2021 | 4 | 2021-04-26T00:00:00Z | 2021-06-26T03:59:59Z | 2025-05-21T06:40:17Z | 2021-08529 | 0 | 0 | 0900006484ab680c | |
| HUD-2019-0044-10797 | HUD | FR-6124-P-01 Housing and Community Development Act of 1980: Verification of Eligible Status HUD-2019-0044 | FR-6124-N-02 Housing and Community Development Act of 1980: Verification of Eligible Status; Withdrawal; Regulatory Review | Proposed Rule | 2021-04-02T00:00:00Z | 2021 | 4 | 2025-05-21T06:40:21Z | 2021-06758 | 0 | 0 | 0900006484a95928 | |||
| HUD-2021-0005-0001 | HUD | FR-6086-N-12 Economic Growth Regulatory Relief and Consumer Protection Act: Implementation of National Standards for the Physical Inspection of Real Estate (NSPIRE); Extension of NSPIRE Compliance Date for Housing Choice Voucher, Project-Based Voucher, and Section 8 Moderate Rehabilitation Programs HUD-2021-0005 | FR-6086-P-01 Economic Growth Regulatory Relief and Consumer Protection Act: Implementation of National Standards for the Physical Inspection of Real Estate (NSPIRE) | Proposed Rule | 2021-01-13T00:00:00Z | 2021 | 1 | 2021-01-13T00:00:00Z | 2021-03-16T03:59:59Z | 2025-05-21T06:41:08Z | 2021-00098 | 0 | 0 | 09000064849f0cf4 |
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;