documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "HUD-2006-0259" 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-0259-0008 | HUD | FR-5044-N-14 Public Housing Agency (PHA) 5-Year and Annual Plan HUD-2006-0259 | FR–5610–N–02 Notice of Proposed Information Collection for Public Comment; Public Housing Agency (PHA) 5-Year and Annual Plan | Notice | 2012-02-03T00:00:00Z | 2012 | 2 | 2025-05-21T08:50:28Z | 2012-02481 | 0 | 0 | 0900006480facdf9 | |||
| HUD-2006-0259-0007 | HUD | FR-5044-N-14 Public Housing Agency (PHA) 5-Year and Annual Plan HUD-2006-0259 | FR–5487–N–10 Notice of Proposed Information Collection for Public Comment; Public Housing Agency (PHA) 5-Year and Annual Plan | Notice | 2011-04-13T00:00:00Z | 2011 | 4 | 2011-04-13T00:00:00Z | 2025-05-21T08:54:37Z | 2011-08778 | 0 | 0 | 0900006480c25f17 | ||
| HUD-2006-0259-0006 | HUD | FR-5044-N-14 Public Housing Agency (PHA) 5-Year and Annual Plan HUD-2006-0259 | FR–5376–N–88 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Public Housing 5 Year Annual PHA Plan | Notice | 2010-09-21T00:00:00Z | 2010 | 9 | 2010-09-21T00:00:00Z | 2025-05-21T08:56:10Z | 2010-23572 | 0 | 0 | 0900006480b543b5 | ||
| HUD-2006-0259-0005 | HUD | FR-5044-N-14 Public Housing Agency (PHA) 5-Year and Annual Plan HUD-2006-0259 | FR–5383–N–10 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Public Housing Agency Plan Revisions to Implement Requirements for Certain Qualified Public Housing Agencies under the Housing and Economic Recovery Act (HERA) 2008 | Notice | 2010-05-26T00:00:00Z | 2010 | 5 | 2010-05-26T00:00:00Z | 2025-05-21T08:58:46Z | 2010-12702 | 0 | 0 | 0900006480af461e | ||
| HUD-2006-0259-0004 | HUD | FR-5044-N-14 Public Housing Agency (PHA) 5-Year and Annual Plan HUD-2006-0259 | FR-5117-N-104: Notice of Submission of Proposed ; Information Collection to OMB; Public Housing 5-Year and Annual PHA Plan; Correction | Notice | 2007-12-13T00:00:00Z | 2007 | 12 | 2007-12-13T00:00:00Z | 2025-05-21T09:14:11Z | E7-24106 | 0 | 0 | 090000648037966d | ||
| HUD-2006-0259-0003 | HUD | FR-5044-N-14 Public Housing Agency (PHA) 5-Year and Annual Plan HUD-2006-0259 | FR-5117-N-95: Notice of Submission of Proposed Information Collection to OMB; Public Housing 5-Year and Annual PHA Plan | Notice | 2007-11-20T00:00:00Z | 2007 | 11 | 2007-11-20T00:00:00Z | 2025-05-21T09:14:17Z | E7-22700 | 0 | 0 | 0900006480366324 | ||
| HUD-2006-0259-0002 | HUD | FR-5044-N-14 Public Housing Agency (PHA) 5-Year and Annual Plan HUD-2006-0259 | FR-5117-N-39: Notice of Submission of Proposed Information Collection to OMB; Emergency Comment Request; Public Housing Agency Plan | Notice | 2007-05-07T00:00:00Z | 2007 | 5 | 2007-05-07T00:00:00Z | 2025-05-21T09:18:42Z | E7-08619 | 0 | 0 | 090000648023644a | ||
| HUD-2006-0259-0001 | HUD | FR-5044-N-14 Public Housing Agency (PHA) 5-Year and Annual Plan HUD-2006-0259 | FR-5044-N-14: Notice of Proposed Information Collection for Public Comment: Public Housing Agency Plans | Notice | 2006-08-22T08:47:13Z | 2006 | 8 | 2006-08-22T08:47:13Z | 2025-05-21T09:19:16Z | E6-13899 | 0 | 0 | 09000064801bc19f |
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;