documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "HUD-2006-0339" 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-0339-0008 | HUD | FR-5041-N-41 Notice of Proposed Information Collection: Comment Request; HUD Owned Real Estate—Dollar Home Sales Program HUD-2006-0339 | FR-5997-N-62 30-Day Notice of Proposed Information Collection: HUD-Owned Real Estate Dollar Home Sales Program | Notice | 2017-09-27T00:00:00Z | 2017 | 9 | 2025-05-21T07:12:59Z | 2017-20725 | 0 | 0 | 0900006482b8120c | |||
| HUD-2006-0339-0007 | HUD | FR-5041-N-41 Notice of Proposed Information Collection: Comment Request; HUD Owned Real Estate—Dollar Home Sales Program HUD-2006-0339 | FR-6001-N-22 60- Day Notice of Proposed Information Collection: HUD-Owned Real Estate Dollar Home Sales Program | Notice | 2017-07-12T00:00:00Z | 2017 | 7 | 2025-05-21T07:13:14Z | 2017-14625 | 0 | 0 | 0900006482910bd6 | |||
| HUD-2006-0339-0006 | HUD | FR-5041-N-41 Notice of Proposed Information Collection: Comment Request; HUD Owned Real Estate—Dollar Home Sales Program HUD-2006-0339 | FR–5752–N–51 30-Day Notice of Proposed Information Collection: HUD-Owned Real Estate Dollar Home Sales Program | Notice | 2014-06-11T00:00:00Z | 2014 | 6 | 2025-05-21T07:32:36Z | 2014-13602 | 0 | 0 | 090000648173a533 | |||
| HUD-2006-0339-0005 | HUD | FR-5041-N-41 Notice of Proposed Information Collection: Comment Request; HUD Owned Real Estate—Dollar Home Sales Program HUD-2006-0339 | FR–5756–N–02 60-Day Notice of Proposed Information Collection: HUD-Owned Real Estate Dollar Home Sales Program | Notice | 2014-01-31T00:00:00Z | 2014 | 1 | 2025-05-21T08:41:54Z | 2014-02034 | 0 | 0 | 0900006481539930 | |||
| HUD-2006-0339-0004 | HUD | FR-5041-N-41 Notice of Proposed Information Collection: Comment Request; HUD Owned Real Estate—Dollar Home Sales Program HUD-2006-0339 | FR–5480–N–10 Agency Information Collection Activities; Proposals, Submissions, and Approvals: HUD-Owned Real Estate - Dollar Home Sales Program | Notice | 2011-02-02T00:00:00Z | 2011 | 2 | 2011-02-02T00:00:00Z | 2025-05-21T08:55:06Z | 2011-02298 | 0 | 0 | 0900006480bd864b | ||
| HUD-2006-0339-0003 | HUD | FR-5041-N-41 Notice of Proposed Information Collection: Comment Request; HUD Owned Real Estate—Dollar Home Sales Program HUD-2006-0339 | FR–5380–N–38 Agency Information Collection Activities; Proposals, Submissions, and Approvals: HUD-Owned Real Estate; Dollar Home Sales Program | Notice | 2010-10-08T00:00:00Z | 2010 | 10 | 2010-10-08T00:00:00Z | 2025-05-21T08:55:50Z | 2010-25353 | 0 | 0 | 0900006480b6a0ef | ||
| HUD-2006-0339-0002 | HUD | FR-5041-N-41 Notice of Proposed Information Collection: Comment Request; HUD Owned Real Estate—Dollar Home Sales Program HUD-2006-0339 | FR-5117-N-88: Notice of Submission of Proposed Information Collection to OMB; HUD-Owned Real Estate--Dollar Home Sales Program | Notice | 2007-10-05T00:00:00Z | 2007 | 10 | 2007-10-05T00:00:00Z | 2025-05-21T09:14:26Z | E7-19665 | 0 | 0 | 09000064802f8aaf | ||
| HUD-2006-0339-0001 | HUD | FR-5041-N-41 Notice of Proposed Information Collection: Comment Request; HUD Owned Real Estate—Dollar Home Sales Program HUD-2006-0339 | FR-5041-N-41: Notice of Proposed Information Collection: Comment Request; HUD- Owned Real Estate--Dollar Home Sales Program | Notice | 2006-11-02T08:38:51Z | 2006 | 11 | 2006-11-02T08:38:51Z | 2025-05-21T09:19:08Z | E6-18435 | 0 | 0 | 09000064801dc971 |
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;