documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "HUD-2011-0060" 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-2011-0060-0005 | HUD | FR–6273–P–01 Implementing Rental Housing Assistance for the Native Hawaiian Housing Block Grant Program HUD-2011-0060 | FR–5683–C–103 30-Day Notice of Proposed Information Collection: Assessment of Native American, Alaska Native and Native Hawaiian Housing Needs | Notice | 2013-12-11T00:00:00Z | 2013 | 12 | 2025-05-21T08:42:29Z | 2013-29540 | 0 | 0 | 09000064814b766b | |||
| HUD-2011-0060-0004 | HUD | FR–6273–P–01 Implementing Rental Housing Assistance for the Native Hawaiian Housing Block Grant Program HUD-2011-0060 | FR–5683–N–103 30-Day Notice of Proposed Information Collection: Assessment of Native American, Alaska Native and Native Hawaiian Housing Needs | Notice | 2013-11-27T00:00:00Z | 2013 | 11 | 2025-05-21T08:42:38Z | 2013-28513 | 0 | 0 | 090000648149c20f | |||
| HUD-2011-0060-0003 | HUD | FR–6273–P–01 Implementing Rental Housing Assistance for the Native Hawaiian Housing Block Grant Program HUD-2011-0060 | FR–5609–N–07 Notice of Proposed Information Collection for Public Comment on the Assessment of Native American, Alaska Native and Native Hawaiian Housing Needs | Notice | 2012-08-01T00:00:00Z | 2012 | 8 | 2025-05-21T08:47:32Z | 2012-18816 | 0 | 0 | 09000064810bc326 | |||
| HUD-2011-0060-0002 | HUD | FR–6273–P–01 Implementing Rental Housing Assistance for the Native Hawaiian Housing Block Grant Program HUD-2011-0060 | FR–5480–N–73 Notice of Submission of Proposed Information Collection to OMB; Assessment of Native American, Alaska Native, and Native Hawaiian Housing Needs | Notice | 2011-08-03T00:00:00Z | 2011 | 8 | 2025-05-21T08:52:02Z | 2011-19587 | 0 | 0 | 0900006480ed4a2c | |||
| HUD-2011-0060-0001 | HUD | FR–6273–P–01 Implementing Rental Housing Assistance for the Native Hawaiian Housing Block Grant Program HUD-2011-0060 | FR–5486–N–11 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Assessment of Native American, Alaska Native and Native Hawaiian Housing Needs | Notice | 2011-05-05T00:00:00Z | 2011 | 5 | 2011-05-05T00:00:00Z | 2025-05-21T08:52:38Z | 2011-10994 | 0 | 0 | 0900006480c3fd22 |
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;