documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "HUD-2016-0097" 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-2016-0097-0006 | HUD | FR–7066–N–06 60-Day Notice of Proposed Information Collection: Youth Homelessness Demonstration Application; OMB Control No.: 2506–0210 HUD-2016-0097 | FR-7070-N-81 30-Day Notice of Proposed Information Collection: Youth Homelessness Demonstration Application; OMB Control No.: 2506–0210 | Notice | 2023-11-07T00:00:00Z | 2023 | 11 | 2023-11-07T00:00:00Z | 2025-05-21T06:31:04Z | 2023-24577 | 0 | 0 | 0900006486219594 | ||
| HUD-2016-0097-0005 | HUD | FR–7066–N–06 60-Day Notice of Proposed Information Collection: Youth Homelessness Demonstration Application; OMB Control No.: 2506–0210 HUD-2016-0097 | FR–7066–N–06 60-Day Notice of Proposed Information Collection: Youth Homelessness Demonstration Application; OMB Control No.: 2506–0210 | Notice | 2023-04-10T00:00:00Z | 2023 | 4 | 2025-05-21T06:35:31Z | 2023-07421 | 0 | 0 | 090000648591b816 | |||
| HUD-2016-0097-0004 | HUD | FR–7066–N–06 60-Day Notice of Proposed Information Collection: Youth Homelessness Demonstration Application; OMB Control No.: 2506–0210 HUD-2016-0097 | FR-7024-N-12 30- Day Notice of Proposed Information Collection: Youth Homelessness Demonstration Application | Notice | 2020-04-06T00:00:00Z | 2020 | 4 | 2025-05-21T06:55:08Z | 2020-07059 | 0 | 0 | 090000648448a313 | |||
| HUD-2016-0097-0003 | HUD | FR–7066–N–06 60-Day Notice of Proposed Information Collection: Youth Homelessness Demonstration Application; OMB Control No.: 2506–0210 HUD-2016-0097 | FR-7025-N-01 60- Day Notice of Proposed Information Collection: Youth Homelessness Demonstration Application | Notice | 2020-01-28T00:00:00Z | 2020 | 1 | 2025-05-21T06:56:27Z | 2020-01469 | 0 | 0 | 09000064842fab9c | |||
| HUD-2016-0097-0002 | HUD | FR–7066–N–06 60-Day Notice of Proposed Information Collection: Youth Homelessness Demonstration Application; OMB Control No.: 2506–0210 HUD-2016-0097 | FR–5909–N–92 30 -Day Notice of Proposed Information Collection: Youth Homelessness Demonstration Program (YHDP) | Notice | 2016-12-23T00:00:00Z | 2016 | 12 | 2025-05-21T07:15:12Z | 2016-30919 | 0 | 0 | 0900006482433ef4 | |||
| HUD-2016-0097-0001 | HUD | FR–7066–N–06 60-Day Notice of Proposed Information Collection: Youth Homelessness Demonstration Application; OMB Control No.: 2506–0210 HUD-2016-0097 | FR–5910–N–13 Youth Homelessness Demonstration Program Application Notice of Emergency Approval of an Information Collection, and 60-Day Notice To Commence Extended Approval | Notice | 2016-09-02T00:00:00Z | 2016 | 9 | 2025-05-21T07:16:08Z | 2016-21106 | 0 | 0 | 09000064821c143f |
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;