documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "HUD-2014-0106" 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-2014-0106-0006 | HUD | FR-7002-N-08 60-Day Notice of Proposed Information Collection: Community Development Block Grant- Disaster Recovery (CDBG–DR); 2 Year Expenditure Deadline Extension Request HUD-2014-0106 | FR-7001-N-46 30- Day Notice of Proposed Information Collection: Community Development Block Grant-Disaster Recovery (CDBG–DR); 2 Year Expenditure Deadline Extension Request | Notice | 2018-08-27T00:00:00Z | 2018 | 8 | 2025-05-21T07:08:21Z | 2018-18516 | 0 | 0 | 09000064836598b6 | |||
| HUD-2014-0106-0005 | HUD | FR-7002-N-08 60-Day Notice of Proposed Information Collection: Community Development Block Grant- Disaster Recovery (CDBG–DR); 2 Year Expenditure Deadline Extension Request HUD-2014-0106 | FR-7002-N-08 60-Day Notice of Proposed Information Collection: Community Development Block Grant- Disaster Recovery (CDBG–DR); 2 Year Expenditure Deadline Extension Request | Notice | 2018-06-26T00:00:00Z | 2018 | 6 | 2025-05-21T07:10:49Z | 2018-13650 | 0 | 0 | 090000648345ffca | |||
| HUD-2014-0106-0004 | HUD | FR-7002-N-08 60-Day Notice of Proposed Information Collection: Community Development Block Grant- Disaster Recovery (CDBG–DR); 2 Year Expenditure Deadline Extension Request HUD-2014-0106 | FR–5831–C–38 30-Day Notice of Proposed Information Collection: CDBG–DR Expenditure Deadline Extension Request Template (Pub. L. 113–2 Grantees Only) | Notice | 2015-08-11T00:00:00Z | 2015 | 8 | 2025-05-21T07:22:40Z | 2015-19712 | 0 | 0 | 0900006481c032d6 | |||
| HUD-2014-0106-0003 | HUD | FR-7002-N-08 60-Day Notice of Proposed Information Collection: Community Development Block Grant- Disaster Recovery (CDBG–DR); 2 Year Expenditure Deadline Extension Request HUD-2014-0106 | FR–5831–N–38 60-Day Notice of Proposed Information Collection: CDBG -DR Expenditure Deadline Extension Request Template (Pub. L. 113–2 Grantees Only) | Notice | 2015-07-31T00:00:00Z | 2015 | 7 | 2025-05-21T07:24:15Z | 2015-18829 | 0 | 0 | 0900006481bb4dd8 | |||
| HUD-2014-0106-0002 | HUD | FR-7002-N-08 60-Day Notice of Proposed Information Collection: Community Development Block Grant- Disaster Recovery (CDBG–DR); 2 Year Expenditure Deadline Extension Request HUD-2014-0106 | FR–5853–N–04 60-Day Notice of Proposed Information Collection: CDBG–DR Expenditure Deadline Extension Request Template (Pub. L. 113–2 Grantees Only) | Notice | 2015-05-27T00:00:00Z | 2015 | 5 | 2025-05-21T07:29:19Z | 2015-12763 | 0 | 0 | 0900006481b04f2f | |||
| HUD-2014-0106-0001 | HUD | FR-7002-N-08 60-Day Notice of Proposed Information Collection: Community Development Block Grant- Disaster Recovery (CDBG–DR); 2 Year Expenditure Deadline Extension Request HUD-2014-0106 | FR–5752–N–109 Agency Information Collection Activities; Proposals, Submissions, and Approvals: CDBG-DR Expenditure Deadline Waiver Request Template; Emergency Approval | Notice | 2014-12-23T00:00:00Z | 2014 | 12 | 2025-05-21T07:30:22Z | 2014-30073 | 0 | 0 | 090000648198ea45 |
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;