documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "HUD-2014-0012" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), comment_start_date (date), comment_end_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-2014-0012-0008 | HUD | FR–7070–N–38 Public Housing Inventory Removals Application, General Depository Agreement, and Notification of Public Housing Closeout or Future Development HUD-2014-0012 | FR–7070–N–38 30-Day Notice of Proposed Information Collection: Public Housing Inventory Removals Application, General Depository Agreement, and Notification of Public Housing Closeout or Future Development | Notice | 2023-07-11T00:00:00Z | 2023 | 7 | 2023-07-11T00:00:00Z | 2023-08-11T03:59:59Z | 2025-05-21T06:33:58Z | 2023-14558 | 0 | 0 | 0900006485c828ce | |
| HUD-2014-0012-0007 | HUD | FR–7070–N–38 Public Housing Inventory Removals Application, General Depository Agreement, and Notification of Public Housing Closeout or Future Development HUD-2014-0012 | FR–7076–N–10 60-Day Notice of Proposed Information Collection: Public Housing Inventory Removals Application, General Depository Agreement, and Notification of Public Housing Closeout or Future Development, OMB No. 2577–0075 | Notice | 2023-04-17T00:00:00Z | 2023 | 4 | 2025-05-21T06:35:21Z | 2023-07975 | 0 | 0 | 0900006485950dd6 | |||
| HUD-2014-0012-0006 | HUD | FR–7070–N–38 Public Housing Inventory Removals Application, General Depository Agreement, and Notification of Public Housing Closeout or Future Development HUD-2014-0012 | FR–7061–N–09 60-Day Notice of Proposed Information Collection: Public/Private Partnerships for the Mixed-Finance Development of Public Housing Units, OMB Control No.: 2577–0275 | Notice | 2022-07-28T00:00:00Z | 2022 | 7 | 2025-05-21T06:36:57Z | 2022-16141 | 0 | 0 | 09000064851efe49 | |||
| HUD-2014-0012-0005 | HUD | FR–7070–N–38 Public Housing Inventory Removals Application, General Depository Agreement, and Notification of Public Housing Closeout or Future Development HUD-2014-0012 | FR-7011-N-50 30- Day Notice of Proposed Information Collection: Public Housing Annual Contributions Contract for Capital and Operating Grant Funds: 30-Day Notice of Proposed Information Collection: Agency Information Collection Activities: Public Housing Annual Contributions Contract for Capital and Operating Grant Funds | Notice | 2019-11-08T00:00:00Z | 2019 | 11 | 2025-05-21T06:57:25Z | 2019-24426 | 0 | 0 | 09000064841305b0 | |||
| HUD-2014-0012-0004 | HUD | FR–7070–N–38 Public Housing Inventory Removals Application, General Depository Agreement, and Notification of Public Housing Closeout or Future Development HUD-2014-0012 | FR-5997-N-51 30-Day Notice of Proposed Information Collection: Public Housing Annual Contributions Contract and Inventory Removal Application | Notice | 2017-09-06T00:00:00Z | 2017 | 9 | 2017-09-06T00:00:00Z | 2025-05-21T07:13:02Z | 2017-18856 | 0 | 0 | 0900006482b0f711 | ||
| HUD-2014-0012-0003 | HUD | FR–7070–N–38 Public Housing Inventory Removals Application, General Depository Agreement, and Notification of Public Housing Closeout or Future Development HUD-2014-0012 | FR–5916–N–04 60- Day Notice of Proposed Information Collection: Public Housing Annual Contributions Contract and Inventory Removal Application | Notice | 2016-03-01T00:00:00Z | 2016 | 3 | 2016-03-01T00:00:00Z | 2016-05-03T03:59:59Z | 2025-05-21T07:20:27Z | 2016-04495 | 0 | 0 | 0900006481e952cd | |
| HUD-2014-0012-0002 | HUD | FR–7070–N–38 Public Housing Inventory Removals Application, General Depository Agreement, and Notification of Public Housing Closeout or Future Development HUD-2014-0012 | FR–5752–N–50 30-Day Notice of Proposed Information Collection: Public Housing Annual Contributions Contract and Inventory Removal Application | Notice | 2014-06-11T00:00:00Z | 2014 | 6 | 2025-05-21T07:32:36Z | 2014-13600 | 0 | 0 | 090000648173a773 | |||
| HUD-2014-0012-0001 | HUD | FR–7070–N–38 Public Housing Inventory Removals Application, General Depository Agreement, and Notification of Public Housing Closeout or Future Development HUD-2014-0012 | FR–5759–N–04 60-Day Notice of Proposed Information Collection: Public Housing Annual Contributions Contractor and Inventory Removal Application | Notice | 2014-02-18T00:00:00Z | 2014 | 2 | 2025-05-21T08:38:49Z | 2014-03480 | 0 | 0 | 09000064815768e1 |
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;