documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "HUD-2009-0085" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, posted_date (date), last_modified (date)
| 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-2009-0085-0045 | HUD | FR–5311–N–03 Buy American Exception Under the American Recovery and Reinvestment Act of 2009 HUD-2009-0085 | FR–5374–N–44 Buy American Exceptions Under the American Recovery and Reinvestment Act of 2009 | Notice | 2012-11-19T00:00:00Z | 2012 | 11 | 2025-05-21T08:46:53Z | 2012-28071 | 0 | 0 | 090000648116c9ab | |||
| HUD-2009-0085-0044 | HUD | FR–5311–N–03 Buy American Exception Under the American Recovery and Reinvestment Act of 2009 HUD-2009-0085 | FR–5374–N–43 Buy American Exceptions Under the American Recovery and Reinvestment Act of 2009 | Notice | 2012-09-04T00:00:00Z | 2012 | 9 | 2025-05-21T08:47:20Z | 2012-21706 | 0 | 0 | 09000064811006ad | |||
| HUD-2009-0085-0043 | HUD | FR–5311–N–03 Buy American Exception Under the American Recovery and Reinvestment Act of 2009 HUD-2009-0085 | FR–5374–N–42 Buy American Exceptions Under the American Recovery and Reinvestment Act of 2009 | Notice | 2012-08-15T00:00:00Z | 2012 | 8 | 2025-05-21T08:47:25Z | 2012-19966 | 0 | 0 | 09000064810dad67 | |||
| HUD-2009-0085-0042 | HUD | FR–5311–N–03 Buy American Exception Under the American Recovery and Reinvestment Act of 2009 HUD-2009-0085 | FR–5374–N–41 Buy American Exceptions under the American Recovery and Reinvestment Act of 2009 | Notice | 2012-06-12T00:00:00Z | 2012 | 6 | 2025-05-21T08:47:50Z | 2012-14298 | 0 | 0 | 090000648104310c | |||
| HUD-2009-0085-0041 | HUD | FR–5311–N–03 Buy American Exception Under the American Recovery and Reinvestment Act of 2009 HUD-2009-0085 | FR–5374–N–40 Buy American Exceptions Under American Recovery and Reinvestment Act of 2009 | Notice | 2012-05-25T00:00:00Z | 2012 | 5 | 2025-05-21T08:47:55Z | 2012-12839 | 0 | 0 | 090000648101cffd | |||
| HUD-2009-0085-0040 | HUD | FR–5311–N–03 Buy American Exception Under the American Recovery and Reinvestment Act of 2009 HUD-2009-0085 | FR–5374–N–39 Buy American Exceptions Under American Recovery and Reinvestment Act of 2009 | Notice | 2012-05-18T00:00:00Z | 2012 | 5 | 2025-05-21T08:47:57Z | 2012-12139 | 0 | 0 | 0900006481013e3f | |||
| HUD-2009-0085-0038 | HUD | FR–5311–N–03 Buy American Exception Under the American Recovery and Reinvestment Act of 2009 HUD-2009-0085 | FR–5374–N–37 Buy American Exceptions Under the American Recovery and Reinvestment Act of 2009 | Notice | 2012-04-06T00:00:00Z | 2012 | 4 | 2025-05-21T08:48:09Z | 2012-08363 | 0 | 0 | 0900006480feaa6d | |||
| HUD-2009-0085-0039 | HUD | FR–5311–N–03 Buy American Exception Under the American Recovery and Reinvestment Act of 2009 HUD-2009-0085 | FR–5374–N–38 Buy American Exceptions under the American Recovery and Reinvestment Act of 2009 | Notice | 2012-04-06T00:00:00Z | 2012 | 4 | 2025-05-21T08:48:09Z | 2012-08362 | 0 | 0 | 0900006480feab1d | |||
| HUD-2009-0085-0037 | HUD | FR–5311–N–03 Buy American Exception Under the American Recovery and Reinvestment Act of 2009 HUD-2009-0085 | FR–5374–N–36 Buy American Exceptions Under American Recovery and Reinvestment Act of 2009 | Notice | 2012-03-14T00:00:00Z | 2012 | 3 | 2025-05-21T08:49:36Z | 2012-06192 | 0 | 0 | 0900006480fd6e56 |
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;