documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "HUD-2010-0114" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_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-2010-0114-0053 | HUD | FR–5450–N–01 FHA PowerSaver Home Energy Retrofit Loan Pilot Program HUD-2010-0114 | FR–5450–N–04 Federal Housing Administration (FHA): PowerSaver Home Energy Retrofit Loan Pilot Program: Extension of Pilot Program | Notice | 2013-02-12T00:00:00Z | 2013 | 2 | 2025-05-21T08:46:15Z | 2013-03205 | 0 | 0 | 09000064811f4d1a | |||
| HUD-2010-0114-0052 | HUD | FR–5450–N–01 FHA PowerSaver Home Energy Retrofit Loan Pilot Program HUD-2010-0114 | FR–5450–N–03 FHA PowerSaver Home Energy Retrofit Loan Pilot Program | Notice | 2011-03-31T00:00:00Z | 2011 | 3 | 2011-03-31T00:00:00Z | 2025-05-21T08:54:42Z | 2011-07551 | 0 | 0 | 0900006480c15848 | ||
| HUD-2010-0114-0051 | HUD | FR–5450–N–01 FHA PowerSaver Home Energy Retrofit Loan Pilot Program HUD-2010-0114 | FR–5480–N–23 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Home Energy Retrofit Loan Pilot Program | Notice | 2011-03-16T00:00:00Z | 2011 | 3 | 2011-03-16T00:00:00Z | 2025-05-21T08:54:53Z | 2011-06064 | 0 | 0 | 0900006480c08d16 | ||
| HUD-2010-0114-0009 | HUD | FR–5450–N–01 FHA PowerSaver Home Energy Retrofit Loan Pilot Program HUD-2010-0114 | FR–5450–N–02 Notice of FHA PowerSaver Home Energy Retrofit Loan Pilot Program: Extension of Period Soliciting Expressions of Interest | Notice | 2010-12-16T00:00:00Z | 2010 | 12 | 2010-12-16T00:00:00Z | 2025-05-21T08:55:29Z | 2010-31507 | 0 | 0 | 0900006480bb821e | ||
| HUD-2010-0114-0007 | HUD | FR–5450–N–01 FHA PowerSaver Home Energy Retrofit Loan Pilot Program HUD-2010-0114 | FR–5376–N–110 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Federal Housing Administration; Home Energy Retrofit Loan Pilot Program | Notice | 2010-11-19T00:00:00Z | 2010 | 11 | 2010-11-19T00:00:00Z | 2025-05-21T08:55:36Z | 2010-29274 | 0 | 0 | 0900006480b99cce | ||
| HUD-2010-0114-0005 | HUD | FR–5450–N–01 FHA PowerSaver Home Energy Retrofit Loan Pilot Program HUD-2010-0114 | FR–5376–N–107 Notice of Submission of Proposed Information Collection to OMB; Emergency Comment Request; Federal Housing Administration (FHA): Home Energy Retrofit Loan Pilot Program; Notice of Proposed Information Collection for Public Comment | Notice | 2010-11-15T00:00:00Z | 2010 | 11 | 2010-11-15T00:00:00Z | 2025-05-21T08:55:39Z | 2010-28713 | 0 | 0 | 0900006480b88cc6 | ||
| HUD-2010-0114-0001 | HUD | FR–5450–N–01 FHA PowerSaver Home Energy Retrofit Loan Pilot Program HUD-2010-0114 | FR–5450–N–01 FHA PowerSaver Home Energy Retrofit Loan Pilot Program | Notice | 2010-11-10T00:00:00Z | 2010 | 11 | 2010-11-10T00:00:00Z | 2010-12-28T04:59:59Z | 2025-05-21T08:55:39Z | 2010-28015 | 0 | 0 | 0900006480b86121 |
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;