documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "HUD-2021-0032" 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-2021-0032-0006 | HUD | FR-7080-N-30 30-Day Notice of Proposed Information Collection: Eviction Protection Grant Program; OMB Control No.: 2528–0331 HUD-2021-0032 | FR-7080-N-30 30-Day Notice of Proposed Information Collection: Eviction Protection Grant Program; OMB Control No.: 2528–0331 | Notice | 2024-07-16T00:00:00Z | 2024 | 7 | 2025-05-21T06:25:36Z | 2024-15540 | 0 | 0 | 09000064865f16b8 | |||
| HUD-2021-0032-0005 | HUD | FR-7080-N-30 30-Day Notice of Proposed Information Collection: Eviction Protection Grant Program; OMB Control No.: 2528–0331 HUD-2021-0032 | FR-7075-N-13 60-Day Notice of Proposed Information Collection: Eviction Protection Grant Program; OMB Control No.: 2528–0331 | Notice | 2023-11-16T00:00:00Z | 2023 | 11 | 2025-05-21T06:30:57Z | 2023-25301 | 0 | 0 | 090000648628784e | |||
| HUD-2021-0032-0004 | HUD | FR-7080-N-30 30-Day Notice of Proposed Information Collection: Eviction Protection Grant Program; OMB Control No.: 2528–0331 HUD-2021-0032 | FR–7075–N–03 60-Day Notice of Proposed Information Collection: Evaluation of the Eviction Protection Grant Program; OMB Control No.: 2528–NEW | Notice | 2023-04-12T00:00:00Z | 2023 | 4 | 2025-05-21T06:35:25Z | 2023-07701 | 0 | 0 | 0900006485934408 | |||
| HUD-2021-0032-0003 | HUD | FR-7080-N-30 30-Day Notice of Proposed Information Collection: Eviction Protection Grant Program; OMB Control No.: 2528–0331 HUD-2021-0032 | FR-7050-N-03 30-Day Notice of Proposed Information Collection: Eviction Protection Grant Program; OMB Control No: 2528-0331 | Notice | 2022-01-21T00:00:00Z | 2022 | 1 | 2025-05-21T06:38:44Z | 2022-01177 | 0 | 0 | 0900006484f2cf0e | |||
| HUD-2021-0032-0002 | HUD | FR-7080-N-30 30-Day Notice of Proposed Information Collection: Eviction Protection Grant Program; OMB Control No.: 2528–0331 HUD-2021-0032 | FR-7041-N-05 60-Day Notice of Proposed Information Collection: Eviction Protection Grant Program | Notice | 2021-10-27T00:00:00Z | 2021 | 10 | 2025-05-21T06:39:17Z | 2021-23401 | 0 | 0 | 0900006484df9cce | |||
| HUD-2021-0032-0001 | HUD | FR-7080-N-30 30-Day Notice of Proposed Information Collection: Eviction Protection Grant Program; OMB Control No.: 2528–0331 HUD-2021-0032 | FR-7034-N-28 14-Day Notice of Emergency Approval of an Information Collection: Eviction Protection Grant Program, OMB Control No.: 2528–NEW | Notice | 2021-06-14T00:00:00Z | 2021 | 6 | 2025-05-21T06:40:09Z | 2021-12357 | 0 | 0 | 0900006484b7a16d |
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;