documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "HUD-2010-0101" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- HUD 6
| 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-2010-0101-0097 | HUD | FR-7002-N-09 60- Day Notice of Proposed Information Collection: Housing Trust Fund (HTF) Program HUD-2010-0101 | FR-7001-N-58 30-Day Notice of Proposed Information Collection: Housing Trust Fund (HTF) Program | Notice | 2018-11-26T00:00:00Z | 2018 | 11 | 2025-05-21T07:07:12Z | 2018-25655 | 0 | 0 | 09000064838f9b68 | |||
| HUD-2010-0101-0096 | HUD | FR-7002-N-09 60- Day Notice of Proposed Information Collection: Housing Trust Fund (HTF) Program HUD-2010-0101 | FR-7002-N-09 60- Day Notice of Proposed Information Collection: Housing Trust Fund (HTF) Program | Notice | 2018-07-05T00:00:00Z | 2018 | 7 | 2025-05-21T07:10:48Z | 2018-14353 | 0 | 0 | 09000064834aa437 | |||
| HUD-2010-0101-0095 | HUD | FR-7002-N-09 60- Day Notice of Proposed Information Collection: Housing Trust Fund (HTF) Program HUD-2010-0101 | Housing Trust Fund Interim Final Rule- Regulatory Impact Analysis | Supporting & Related Material | 2015-01-30T00:00:00Z | 2015 | 1 | 2025-05-21T07:30:14Z | 0 | 0 | 09000064819e8fba | ||||
| HUD-2010-0101-0094 | HUD | FR-7002-N-09 60- Day Notice of Proposed Information Collection: Housing Trust Fund (HTF) Program HUD-2010-0101 | FR–5246–I–03 Housing Trust Fund | Rule | 2015-01-30T00:00:00Z | 2015 | 1 | 2025-05-21T07:30:14Z | 2015-01642 | 0 | 0 | 09000064819e8d57 | |||
| HUD-2010-0101-0002 | HUD | FR-7002-N-09 60- Day Notice of Proposed Information Collection: Housing Trust Fund (HTF) Program HUD-2010-0101 | FR–5246–P–02 Housing Trust Fund | Proposed Rule | 2010-10-29T00:00:00Z | 2010 | 10 | 2010-10-29T00:00:00Z | 2010-12-29T04:59:59Z | 2025-05-21T08:55:43Z | 2010-27069 | 0 | 0 | 0900006480b7ab12 | |
| HUD-2010-0101-0001 | HUD | FR-7002-N-09 60- Day Notice of Proposed Information Collection: Housing Trust Fund (HTF) Program HUD-2010-0101 | FR–5377–N–04 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Housing Trust Fund | Notice | 2010-10-14T00:00:00Z | 2010 | 10 | 2010-10-14T00:00:00Z | 2025-05-21T08:55:48Z | 2010-25906 | 0 | 0 | 0900006480b6ee96 |
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;