documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "HUD-2006-0246" 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-0246-0008 | HUD | FR-5041-N-21 Notice of Proposed Information Collection: Comment Request; Utility Allowance Adjustments HUD-2006-0246 | FR–5997–N–03 30- Day Notice of Proposed Information Collection: Utility Allowance Adjustments for Rental Assistance | Notice | 2017-01-31T00:00:00Z | 2017 | 1 | 2025-05-21T07:14:38Z | 2017-02050 | 0 | 0 | 09000064824a0e64 | |||
| HUD-2006-0246-0007 | HUD | FR-5041-N-21 Notice of Proposed Information Collection: Comment Request; Utility Allowance Adjustments HUD-2006-0246 | FR–5913–N–28 60- Day Notice of Proposed Information Collection: Utility Allowance Adjustments for Rental Assistance | Notice | 2016-10-03T00:00:00Z | 2016 | 10 | 2025-05-21T07:15:53Z | 2016-23852 | 0 | 0 | 090000648228c5af | |||
| HUD-2006-0246-0006 | HUD | FR-5041-N-21 Notice of Proposed Information Collection: Comment Request; Utility Allowance Adjustments HUD-2006-0246 | FR–5683–N–73 30-Day Notice of Proposed Information Collection: Utility Allowance Adjustments | Notice | 2013-08-21T00:00:00Z | 2013 | 8 | 2025-05-21T08:44:32Z | 2013-20296 | 0 | 0 | 09000064813bcdf8 | |||
| HUD-2006-0246-0005 | HUD | FR-5041-N-21 Notice of Proposed Information Collection: Comment Request; Utility Allowance Adjustments HUD-2006-0246 | FR–5687–N–11 Notice of Proposed Information Collection; Comment Request: Multifamily Housing- Utility Allowance Adjustments for Rental Assistance | Notice | 2013-03-20T00:00:00Z | 2013 | 3 | 2025-05-21T08:46:07Z | 2013-06425 | 0 | 0 | 090000648123743e | |||
| HUD-2006-0246-0004 | HUD | FR-5041-N-21 Notice of Proposed Information Collection: Comment Request; Utility Allowance Adjustments HUD-2006-0246 | FR–5376–N–02 Utility Allowance Adjustments | Notice | 2010-01-26T00:00:00Z | 2010 | 1 | 2010-01-26T00:00:00Z | 2025-05-21T09:03:20Z | 2010-01422 | 0 | 0 | 0900006480a83dc1 | ||
| HUD-2006-0246-0003 | HUD | FR-5041-N-21 Notice of Proposed Information Collection: Comment Request; Utility Allowance Adjustments HUD-2006-0246 | FR–5285–N–34 Notice of Proposed Information Collection: Comment Request; Utility Allowance Adjustments | Notice | 2009-11-06T00:00:00Z | 2009 | 11 | 2009-11-06T00:00:00Z | 2025-05-21T09:03:52Z | E9-26771 | 0 | 0 | 0900006480a52b0f | ||
| HUD-2006-0246-0002 | HUD | FR-5041-N-21 Notice of Proposed Information Collection: Comment Request; Utility Allowance Adjustments HUD-2006-0246 | FR-5037-N-85: Notice of Submission of Proposed Information Collection to OMB; Utility Allowance Adjustments | Notice | 2006-11-20T00:00:00Z | 2006 | 11 | 2006-11-20T00:00:00Z | 2025-05-21T09:19:06Z | E6-19497 | 0 | 0 | 09000064801e3690 | ||
| HUD-2006-0246-0001 | HUD | FR-5041-N-21 Notice of Proposed Information Collection: Comment Request; Utility Allowance Adjustments HUD-2006-0246 | FR-5041-N-21: Notice of Proposed Information Collection: Comment Request; Utility Allowance Adjustments | Notice | 2006-08-03T09:39:33Z | 2006 | 8 | 2006-08-03T09:39:33Z | 2025-05-21T09:19:20Z | E6-12495 | 0 | 0 | 09000064801adaed |
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;