documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "HUD-2008-0008" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2008-0008-0010 | HUD | FR–7050–N–74 30-Day Notice of Proposed Information Collection: Congregate Housing Services Program HUD-2008-0008 | FR–7050–N–74 30-Day Notice of Proposed Information Collection: Congregate Housing Services Program | Notice | 2023-01-09T00:00:00Z | 2023 | 1 | 2025-05-21T06:36:16Z | 2023-00127 | 0 | 0 | 09000064855c23ef | |||
| HUD-2008-0008-0009 | HUD | FR–7050–N–74 30-Day Notice of Proposed Information Collection: Congregate Housing Services Program HUD-2008-0008 | FR–7056–N–21 60-Day Notice of Proposed Information Collection: Congregate Housing Services Program, OMB Control No.: 2502–0485 | Notice | 2022-09-07T00:00:00Z | 2022 | 9 | 2025-05-21T06:36:44Z | 2022-19219 | 0 | 0 | 09000064852bf758 | |||
| HUD-2008-0008-0008 | HUD | FR–7050–N–74 30-Day Notice of Proposed Information Collection: Congregate Housing Services Program HUD-2008-0008 | FR-7001-N-38 30-Day Notice of Proposed Information Collection: Congregate Housing Services Program | Notice | 2018-07-16T00:00:00Z | 2018 | 7 | 2025-05-21T07:08:58Z | 2018-15129 | 0 | 0 | 090000648350031e | |||
| HUD-2008-0008-0007 | HUD | FR–7050–N–74 30-Day Notice of Proposed Information Collection: Congregate Housing Services Program HUD-2008-0008 | FR-7005-N-06 60- Day Notice of Proposed Information Collection: Congregate Housing Services Program | Notice | 2018-04-18T00:00:00Z | 2018 | 4 | 2025-05-21T07:11:25Z | 2018-08128 | 0 | 0 | 090000648316a1e4 | |||
| HUD-2008-0008-0006 | HUD | FR–7050–N–74 30-Day Notice of Proposed Information Collection: Congregate Housing Services Program HUD-2008-0008 | FR–5752–N–112 30-Day Notice of Proposed Information Collection: Congregate Housing Services Program | Notice | 2014-12-24T00:00:00Z | 2014 | 12 | 2025-05-21T07:30:21Z | 2014-30066 | 0 | 0 | 09000064819911f2 | |||
| HUD-2008-0008-0005 | HUD | FR–7050–N–74 30-Day Notice of Proposed Information Collection: Congregate Housing Services Program HUD-2008-0008 | FR–5756–N–31 FR–5756–N–31 60-Day Notice of Proposed Information Collection: Congregate Housing Services Program | Notice | 2014-09-03T00:00:00Z | 2014 | 9 | 2025-05-21T07:31:04Z | 2014-20944 | 0 | 0 | 0900006481857f0e | |||
| HUD-2008-0008-0004 | HUD | FR–7050–N–74 30-Day Notice of Proposed Information Collection: Congregate Housing Services Program HUD-2008-0008 | FR–5480–N–111 Notice of Submission of Proposed Information Collection to OMB Congregate Housing Services Program | Notice | 2011-11-14T00:00:00Z | 2011 | 11 | 2025-05-21T08:51:11Z | 2011-29360 | 0 | 0 | 0900006480f6bb73 | |||
| HUD-2008-0008-0003 | HUD | FR–7050–N–74 30-Day Notice of Proposed Information Collection: Congregate Housing Services Program HUD-2008-0008 | FR-5484-N-17 Notice of Proposed Information Collection: Comment Request; Congregate Housing Services Program | Notice | 2011-05-31T00:00:00Z | 2011 | 5 | 2011-05-31T00:00:00Z | 2025-05-21T08:52:29Z | 2011-13292 | 0 | 0 | 0900006480e3534d | ||
| HUD-2008-0008-0002 | HUD | FR–7050–N–74 30-Day Notice of Proposed Information Collection: Congregate Housing Services Program HUD-2008-0008 | FR-5187-N-17: Congregate Housing Services Program | Notice | 2008-04-01T00:00:00Z | 2008 | 4 | 2008-04-01T00:00:00Z | 2025-05-21T09:13:52Z | E8-06694 | 0 | 0 | 0900006480418e26 | ||
| HUD-2008-0008-0001 | HUD | FR–7050–N–74 30-Day Notice of Proposed Information Collection: Congregate Housing Services Program HUD-2008-0008 | FR-5191-N-02: Notice of Proposed Information Collection: Comment Request; Congregate Housing Services Program | Notice | 2008-01-28T00:00:00Z | 2008 | 1 | 2008-01-28T00:00:00Z | 2025-05-21T09:14:06Z | E8-01358 | 0 | 0 | 09000064803a3394 |
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;