documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "HUD-2020-0051" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2020-0051-0006 | HUD | FR-6480-N-01 Mortgage and Loan Insurance Programs Under the National Housing Act—Debenture Interest Rates HUD-2020-0051 | FR-6480-N-01 Mortgage and Loan Insurance Programs Under the National Housing Act—Debenture Interest Rates | Notice | 2024-07-26T00:00:00Z | 2024 | 7 | 2025-05-21T06:25:11Z | 2024-16506 | 0 | 0 | 09000064866067c2 | |||
| HUD-2020-0051-0005 | HUD | FR-6480-N-01 Mortgage and Loan Insurance Programs Under the National Housing Act—Debenture Interest Rates HUD-2020-0051 | FR–6409–N–01 Mortgage and Loan Insurance Programs Under the National Housing Act—Debenture Interest Rates | Notice | 2023-08-07T00:00:00Z | 2023 | 8 | 2025-05-21T06:33:10Z | 2023-16738 | 0 | 0 | 0900006485deb1fb | |||
| HUD-2020-0051-0004 | HUD | FR-6480-N-01 Mortgage and Loan Insurance Programs Under the National Housing Act—Debenture Interest Rates HUD-2020-0051 | FR-6344-N-01 Mortgage and Loan Insurance Programs Under the National Housing Act—Debenture Interest Rates | Notice | 2022-08-09T00:00:00Z | 2022 | 8 | 2025-05-21T06:36:51Z | 2022-17024 | 0 | 0 | 09000064852266ef | |||
| HUD-2020-0051-0003 | HUD | FR-6480-N-01 Mortgage and Loan Insurance Programs Under the National Housing Act—Debenture Interest Rates HUD-2020-0051 | FR-6312-N-01 Mortgage and Loan Insurance Programs Under the National Housing Act-Debenture Interest Rates | Notice | 2022-03-14T00:00:00Z | 2022 | 3 | 2025-05-21T06:37:49Z | 2022-05307 | 0 | 0 | 0900006484fc6a40 | |||
| HUD-2020-0051-0002 | HUD | FR-6480-N-01 Mortgage and Loan Insurance Programs Under the National Housing Act—Debenture Interest Rates HUD-2020-0051 | FR-6245-N-02 Mortgage and Loan Insurance Programs Under the National Housing Act-Debenture Interest Rates | Notice | 2021-09-08T00:00:00Z | 2021 | 9 | 2025-05-21T06:39:39Z | 2021-19492 | 0 | 0 | 0900006484d5ee5e | |||
| HUD-2020-0051-0001 | HUD | FR-6480-N-01 Mortgage and Loan Insurance Programs Under the National Housing Act—Debenture Interest Rates HUD-2020-0051 | FR-6195-N-02 Mortgage and Loan Insurance Programs Under the National Housing Act: Debenture Interest Rates | Notice | 2020-08-05T00:00:00Z | 2020 | 8 | 2025-05-21T06:51:46Z | 2020-17066 | 0 | 0 | 09000064847d72b9 |
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;