documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "HUD-2013-0024" 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-2013-0024-0007 | HUD | FR–7070–N–42 Recordkeeping for HUD’s Continuum of Care Program HUD-2013-0024 | FR–7070–N–42 30-Day Notice of Proposed Information Collection: Recordkeeping for HUD’s Continuum of Care Program | Notice | 2023-07-25T00:00:00Z | 2023 | 7 | 2023-07-25T00:00:00Z | 2023-08-25T03:59:59Z | 2025-05-21T06:33:32Z | 2023-15676 | 0 | 0 | 0900006485d36c6e | |
| HUD-2013-0024-0006 | HUD | FR–7070–N–42 Recordkeeping for HUD’s Continuum of Care Program HUD-2013-0024 | FR–7066–N–04 60-Day Notice of Proposed Information Collection: CoC Recordkeeping | Notice | 2023-04-03T00:00:00Z | 2023 | 4 | 2025-05-21T06:35:36Z | 2023-06761 | 0 | 0 | 09000064858c4bc6 | |||
| HUD-2013-0024-0005 | HUD | FR–7070–N–42 Recordkeeping for HUD’s Continuum of Care Program HUD-2013-0024 | FR-7024-N-16 30- Day Notice of Proposed Information Collection: Recordkeeping for HUD’s Continuum of Care (CoC) Program OMB Control No.: 2506- 0199 | Notice | 2020-03-24T00:00:00Z | 2020 | 3 | 2025-05-21T06:55:15Z | 2020-06178 | 0 | 0 | 090000648446364f | |||
| HUD-2013-0024-0004 | HUD | FR–7070–N–42 Recordkeeping for HUD’s Continuum of Care Program HUD-2013-0024 | FR–5909–N–96 30- Day Notice of Proposed Information Collection: Recordkeeping for HUD’s Continuum of Care Program | Notice | 2016-12-23T00:00:00Z | 2016 | 12 | 2025-05-21T07:15:12Z | 2016-30913 | 0 | 0 | 0900006482433ef7 | |||
| HUD-2013-0024-0003 | HUD | FR–7070–N–42 Recordkeeping for HUD’s Continuum of Care Program HUD-2013-0024 | FR–5910–N–16 60- Day Notice of Proposed Information Collection: Recordkeeping for HUD’s Continuum of Care Program | Notice | 2016-09-26T00:00:00Z | 2016 | 9 | 2025-05-21T07:15:56Z | 2016-23004 | 0 | 0 | 090000648226615f | |||
| HUD-2013-0024-0002 | HUD | FR–7070–N–42 Recordkeeping for HUD’s Continuum of Care Program HUD-2013-0024 | FR–5683–N–104 30-Day Notice of Proposed Information Collection: Recordkeeping for HUD’s Continuum of Care Program | Notice | 2013-11-27T00:00:00Z | 2013 | 11 | 2025-05-21T08:42:38Z | 2013-28505 | 0 | 0 | 090000648149c570 | |||
| HUD-2013-0024-0001 | HUD | FR–7070–N–42 Recordkeeping for HUD’s Continuum of Care Program HUD-2013-0024 | FR–5684–N–03 Notice of Proposed Information; Collection for Public Comment; Recordkeeping for HUD’s Continuum of Care Program | Notice | 2013-03-25T00:00:00Z | 2013 | 3 | 2025-05-21T08:46:07Z | 2013-06771 | 0 | 0 | 090000648124172b |
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;