documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "HUD-2006-0212" 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-2006-0212-0006 | HUD | FR–5830–N–05 60 Day Notice of Proposed Information Collection; Accountability in the Provision of HUD Assistance ‘‘Applicant/Recipient Disclosure/ Update Report- HUD 2880’’ HUD-2006-0212 | FR–5831–N–57 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Accountability in the Provision of HUD Assistance Applicant/Recipient Disclosure/Update Report | Notice | 2015-11-18T00:00:00Z | 2015 | 11 | 2025-05-21T07:21:45Z | 2015-29477 | 0 | 0 | 0900006481d54806 | |||
| HUD-2006-0212-0005 | HUD | FR–5830–N–05 60 Day Notice of Proposed Information Collection; Accountability in the Provision of HUD Assistance ‘‘Applicant/Recipient Disclosure/ Update Report- HUD 2880’’ HUD-2006-0212 | FR–5830–N–05 60 Day Notice of Proposed Information Collection; Accountability in the Provision of HUD Assistance ‘‘Applicant/Recipient Disclosure/ Update Report- HUD 2880’’ | Notice | 2015-09-10T00:00:00Z | 2015 | 9 | 2025-05-21T07:22:20Z | 2015-22734 | 0 | 0 | 0900006481c6566e | |||
| HUD-2006-0212-0004 | HUD | FR–5830–N–05 60 Day Notice of Proposed Information Collection; Accountability in the Provision of HUD Assistance ‘‘Applicant/Recipient Disclosure/ Update Report- HUD 2880’’ HUD-2006-0212 | FR–5603–N–60 Notice of Proposed Information Collection for Public Comment: Accountability in the Provision of HUD Assistance ‘‘Applicant/Recipient Disclosure/Update Report—HUD 2880’’ | Notice | 2012-08-31T00:00:00Z | 2012 | 8 | 2025-05-21T08:47:21Z | 2012-21463 | 0 | 0 | 09000064810fd674 | |||
| HUD-2006-0212-0003 | HUD | FR–5830–N–05 60 Day Notice of Proposed Information Collection; Accountability in the Provision of HUD Assistance ‘‘Applicant/Recipient Disclosure/ Update Report- HUD 2880’’ HUD-2006-0212 | FR–5281–N–64 Agency Information Collection Activities; Accountability in the Provision of HUD Assistance "Applicant Recipient, Disclosure Update’’ | Notice | 2009-08-11T00:00:00Z | 2009 | 8 | 2009-08-11T00:00:00Z | 2025-05-21T09:04:18Z | E9-19238 | 0 | 0 | 0900006480a057b2 | ||
| HUD-2006-0212-0002 | HUD | FR–5830–N–05 60 Day Notice of Proposed Information Collection; Accountability in the Provision of HUD Assistance ‘‘Applicant/Recipient Disclosure/ Update Report- HUD 2880’’ HUD-2006-0212 | FR–5297–N–02 Agency Information Collection Activities; Applicant/Recipient Disclosure/Update Report | Notice | 2009-04-29T00:00:00Z | 2009 | 4 | 2009-04-29T00:00:00Z | 2025-05-21T09:04:47Z | E9-09680 | 0 | 0 | 090000648096ee93 | ||
| HUD-2006-0212-0001 | HUD | FR–5830–N–05 60 Day Notice of Proposed Information Collection; Accountability in the Provision of HUD Assistance ‘‘Applicant/Recipient Disclosure/ Update Report- HUD 2880’’ HUD-2006-0212 | FR–5037–N–42: Accountability in the Provision of HUD Assistance--"Applicant/Recipient Disclosure/Update" | Notice | 2006-07-06T11:10:54Z | 2006 | 7 | 2006-07-06T11:10:54Z | 2006-08-08T03:59:59Z | 2025-05-21T09:19:36Z | E6-10548 | 0 | 0 | 09000064801968c9 |
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;