documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "HUD-2009-0044" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), comment_start_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-2009-0044-0009 | HUD | FR-7080-N-55 30-Day Notice of Proposed Information Collection: Personal Financial and Credit Statement; OMB Control No.: 2502–0001 HUD-2009-0044 | FR-7080-N-55 30-Day Notice of Proposed Information Collection: Personal Financial and Credit Statement; OMB Control No.: 2502–0001 | Notice | 2024-11-22T00:00:00Z | 2024 | 11 | 2025-05-21T06:21:48Z | 2024-27412 | 0 | 0 | 090000648682e4b5 | |||
| HUD-2009-0044-0008 | HUD | FR-7080-N-55 30-Day Notice of Proposed Information Collection: Personal Financial and Credit Statement; OMB Control No.: 2502–0001 HUD-2009-0044 | FR-7086-N-18 60-Day Notice of Proposed Information Collection: Personal Financial and Credit Statement; OMB Control No.: 2502–0001 | Notice | 2024-06-28T00:00:00Z | 2024 | 6 | 2025-05-21T06:25:57Z | 2024-14163 | 0 | 0 | 09000064865d0c19 | |||
| HUD-2009-0044-0007 | HUD | FR-7080-N-55 30-Day Notice of Proposed Information Collection: Personal Financial and Credit Statement; OMB Control No.: 2502–0001 HUD-2009-0044 | FR–7056–N–25 60-Day Notice of Proposed Information Collection: Personal Financial and Credit Statement | Notice | 2022-07-13T00:00:00Z | 2022 | 7 | 2025-05-21T06:37:03Z | 2022-14939 | 0 | 0 | 09000064851c666e | |||
| HUD-2009-0044-0006 | HUD | FR-7080-N-55 30-Day Notice of Proposed Information Collection: Personal Financial and Credit Statement; OMB Control No.: 2502–0001 HUD-2009-0044 | FR-7001-N-62 30- Day Notice of Proposed Information Collection: Personal Financial and Credit Statement | Notice | 2019-02-11T00:00:00Z | 2019 | 2 | 2025-05-21T07:07:00Z | 2019-01712 | 0 | 0 | 0900006483a5e872 | |||
| HUD-2009-0044-0005 | HUD | FR-7080-N-55 30-Day Notice of Proposed Information Collection: Personal Financial and Credit Statement; OMB Control No.: 2502–0001 HUD-2009-0044 | FR–7005–N–19 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Personal Financial and Credit Statement | Notice | 2018-09-27T00:00:00Z | 2018 | 9 | 2025-05-21T07:08:00Z | 2018-21086 | 0 | 0 | 0900006483779fa1 | |||
| HUD-2009-0044-0004 | HUD | FR-7080-N-55 30-Day Notice of Proposed Information Collection: Personal Financial and Credit Statement; OMB Control No.: 2502–0001 HUD-2009-0044 | FR–5831–N–44 30- Day Notice of Proposed Information Collection: Personal Financial and Credit Statement | Notice | 2015-09-10T00:00:00Z | 2015 | 9 | 2025-05-21T07:22:20Z | 2015-22850 | 0 | 0 | 0900006481c6566c | |||
| HUD-2009-0044-0003 | HUD | FR-7080-N-55 30-Day Notice of Proposed Information Collection: Personal Financial and Credit Statement; OMB Control No.: 2502–0001 HUD-2009-0044 | FR–5835–N–07 60-Day Notice of Proposed Information Collection: Personal Financial and Credit Statement | Notice | 2015-05-20T00:00:00Z | 2015 | 5 | 2025-05-21T07:29:31Z | 2015-12273 | 0 | 0 | 0900006481aeaf65 | |||
| HUD-2009-0044-0002 | HUD | FR-7080-N-55 30-Day Notice of Proposed Information Collection: Personal Financial and Credit Statement; OMB Control No.: 2502–0001 HUD-2009-0044 | FR–5603–N–44 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Personal Financial and Credit Statement | Notice | 2012-06-14T00:00:00Z | 2012 | 6 | 2025-05-21T08:47:45Z | 2012-14505 | 0 | 0 | 0900006481049b00 | |||
| HUD-2009-0044-0001 | HUD | FR-7080-N-55 30-Day Notice of Proposed Information Collection: Personal Financial and Credit Statement; OMB Control No.: 2502–0001 HUD-2009-0044 | FR–5285–N–08 Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2009-03-26T00:00:00Z | 2009 | 3 | 2009-03-26T00:00:00Z | 2025-05-21T09:05:08Z | E9-06705 | 0 | 0 | 0900006480930577 |
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;