documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "HUD-2013-0007" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2013-0007-0008 | HUD | FR–7050–N–20 30-Day Notice of Proposed Information Collection: Energy and Performance Information Center (EPIC) HUD-2013-0007 | FR–7050–N–20 30-Day Notice of Proposed Information Collection: Energy and Performance Information Center (EPIC) | Notice | 2022-05-18T00:00:00Z | 2022 | 5 | 2025-05-21T06:37:14Z | 2022-10685 | 0 | 0 | 0900006485088a78 | |||
| HUD-2013-0007-0007 | HUD | FR–7050–N–20 30-Day Notice of Proposed Information Collection: Energy and Performance Information Center (EPIC) HUD-2013-0007 | FR–7061–N–03 60-Day Notice of Proposed Information Collection: Energy and Performance Information Center (EPIC); OMB Control No.: 2577–0274 | Notice | 2022-03-09T00:00:00Z | 2022 | 3 | 2025-05-21T06:37:57Z | 2022-04915 | 0 | 0 | 0900006484fc153e | |||
| HUD-2013-0007-0006 | HUD | FR–7050–N–20 30-Day Notice of Proposed Information Collection: Energy and Performance Information Center (EPIC) HUD-2013-0007 | FR-7001-N-45 30- Day Notice of Proposed Information Collection: Energy and Performance Information Center (EPIC) | Notice | 2018-08-20T00:00:00Z | 2018 | 8 | 2025-05-21T07:08:28Z | 2018-17916 | 0 | 0 | 0900006483637447 | |||
| HUD-2013-0007-0005 | HUD | FR–7050–N–20 30-Day Notice of Proposed Information Collection: Energy and Performance Information Center (EPIC) HUD-2013-0007 | FR-7006-N-05 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Energy and Performance Information Center (EPIC) | Notice | 2018-04-19T00:00:00Z | 2018 | 4 | 2025-05-21T07:11:25Z | 2018-08234 | 0 | 0 | 0900006483189606 | |||
| HUD-2013-0007-0004 | HUD | FR–7050–N–20 30-Day Notice of Proposed Information Collection: Energy and Performance Information Center (EPIC) HUD-2013-0007 | FR–5909–N–59 30- Day Notice of Proposed Information Collection: Energy and Performance Information Center (EPIC) | Notice | 2016-08-17T00:00:00Z | 2016 | 8 | 2025-05-21T07:16:12Z | 2016-19641 | 0 | 0 | 090000648217ce4d | |||
| HUD-2013-0007-0003 | HUD | FR–7050–N–20 30-Day Notice of Proposed Information Collection: Energy and Performance Information Center (EPIC) HUD-2013-0007 | FR–5916–N–05 60- Day Notice of Proposed Information Collection: Energy and Performance Information Center (EPIC) | Notice | 2016-04-04T00:00:00Z | 2016 | 4 | 2025-05-21T07:19:49Z | 2016-07665 | 0 | 0 | 0900006481f23aab | |||
| HUD-2013-0007-0002 | HUD | FR–7050–N–20 30-Day Notice of Proposed Information Collection: Energy and Performance Information Center (EPIC) HUD-2013-0007 | FR–5683–N–40 Notice of Submission of Proposed Information Collection to OMB; Energy and Performance Information Center | Notice | 2013-05-30T00:00:00Z | 2013 | 5 | 2025-05-21T08:45:41Z | 2013-12755 | 0 | 0 | 0900006481300d27 | |||
| HUD-2013-0007-0001 | HUD | FR–7050–N–20 30-Day Notice of Proposed Information Collection: Energy and Performance Information Center (EPIC) HUD-2013-0007 | FR–5690–N–01 Notice of Proposed Information for Public Comment for: Energy and Performance Information Center | Notice | 2013-01-23T00:00:00Z | 2013 | 1 | 2025-05-21T08:46:27Z | 2013-01309 | 0 | 0 | 09000064811d31cc |
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;