documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "HUD-2013-0054" 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-2013-0054-0009 | HUD | FR-7082-N-07 60-Day Notice of Proposed Information Collection: Disaster Recovery Grant Reporting System (DRGR), OMB Control No.: 2506–0165 HUD-2013-0054 | FR-7082-N-07 60-Day Notice of Proposed Information Collection: Disaster Recovery Grant Reporting System (DRGR), OMB Control No.: 2506–0165 | Notice | 2024-08-27T00:00:00Z | 2024 | 8 | 2025-05-21T06:24:10Z | 2024-19171 | 0 | 0 | 09000064866aa124 | |||
| HUD-2013-0054-0008 | HUD | FR-7082-N-07 60-Day Notice of Proposed Information Collection: Disaster Recovery Grant Reporting System (DRGR), OMB Control No.: 2506–0165 HUD-2013-0054 | FR–7070–N–18 30-Day Notice of Proposed Information Collection: Disaster Recovery Grant Reporting System | Notice | 2023-04-05T00:00:00Z | 2023 | 4 | 2025-05-21T06:35:34Z | 2023-07076 | 0 | 0 | 09000064858e5590 | |||
| HUD-2013-0054-0007 | HUD | FR-7082-N-07 60-Day Notice of Proposed Information Collection: Disaster Recovery Grant Reporting System (DRGR), OMB Control No.: 2506–0165 HUD-2013-0054 | FR–7052–N–06 60-Day Notice of Proposed Information Collection: Disaster Recovery Grant Reporting System | Notice | 2022-11-22T00:00:00Z | 2022 | 11 | 2025-05-21T06:36:24Z | 2022-25365 | 0 | 0 | 09000064854fb990 | |||
| HUD-2013-0054-0006 | HUD | FR-7082-N-07 60-Day Notice of Proposed Information Collection: Disaster Recovery Grant Reporting System (DRGR), OMB Control No.: 2506–0165 HUD-2013-0054 | FR-7024-N-20 30-Day Notice of Proposed Information Collection: Disaster Recovery Grant Reporting System (OMB Control No. 2506-0165) | Notice | 2020-05-07T00:00:00Z | 2020 | 5 | 2025-05-21T06:54:41Z | 2020-09775 | 0 | 0 | 0900006484572c7d | |||
| HUD-2013-0054-0005 | HUD | FR-7082-N-07 60-Day Notice of Proposed Information Collection: Disaster Recovery Grant Reporting System (DRGR), OMB Control No.: 2506–0165 HUD-2013-0054 | FR-7025-N-02 60- Day Notice of Proposed Information Collection: Disaster Recovery Grant Reporting System | Notice | 2020-01-28T00:00:00Z | 2020 | 1 | 2025-05-21T06:56:27Z | 2020-01470 | 0 | 0 | 09000064842faba0 | |||
| HUD-2013-0054-0004 | HUD | FR-7082-N-07 60-Day Notice of Proposed Information Collection: Disaster Recovery Grant Reporting System (DRGR), OMB Control No.: 2506–0165 HUD-2013-0054 | FR–5909–N–80 30- Day Notice of Proposed Information Collection: Disaster Recovery Grant Reporting System | Notice | 2016-11-25T00:00:00Z | 2016 | 11 | 2025-05-21T07:15:22Z | 2016-28447 | 0 | 0 | 09000064823bef7f | |||
| HUD-2013-0054-0003 | HUD | FR-7082-N-07 60-Day Notice of Proposed Information Collection: Disaster Recovery Grant Reporting System (DRGR), OMB Control No.: 2506–0165 HUD-2013-0054 | FR–5910–N–15 60- Day Notice of Proposed Information Collection: Disaster Recovery Grant Reporting System | Notice | 2016-09-21T00:00:00Z | 2016 | 9 | 2025-05-21T07:16:01Z | 2016-22719 | 0 | 0 | 0900006482234328 | |||
| HUD-2013-0054-0002 | HUD | FR-7082-N-07 60-Day Notice of Proposed Information Collection: Disaster Recovery Grant Reporting System (DRGR), OMB Control No.: 2506–0165 HUD-2013-0054 | FR–5683–N–81 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Disaster Recovery Grant Reporting System | Notice | 2013-09-03T00:00:00Z | 2013 | 9 | 2025-05-21T08:44:15Z | 2013-21353 | 0 | 0 | 09000064813d644f | |||
| HUD-2013-0054-0001 | HUD | FR-7082-N-07 60-Day Notice of Proposed Information Collection: Disaster Recovery Grant Reporting System (DRGR), OMB Control No.: 2506–0165 HUD-2013-0054 | FR-5684-N-04 60-Day Notice of Proposed Information Collection: Notice of Proposed Information Collection for Disaster Recovery Grant Reporting System; Public Comment Request | Notice | 2013-06-26T00:00:00Z | 2013 | 6 | 2025-05-21T08:45:19Z | 2013-15305 | 0 | 0 | 0900006481341649 |
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;