documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "HUD-2014-0006" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0006-0007 | HUD | FR-7080-N-42 30-Day Notice of Proposed Information Collection: State Community Development Block Grant (CDBG) Program, OMB Control No.: 2506–0085 HUD-2014-0006 | FR-7080-N-42 30-Day Notice of Proposed Information Collection: State Community Development Block Grant (CDBG) Program, OMB Control No.: 2506–0085 | Notice | 2024-08-30T00:00:00Z | 2024 | 8 | 2025-05-21T06:23:32Z | 2024-19526 | 0 | 0 | 09000064866b576b | |||
| HUD-2014-0006-0006 | HUD | FR-7080-N-42 30-Day Notice of Proposed Information Collection: State Community Development Block Grant (CDBG) Program, OMB Control No.: 2506–0085 HUD-2014-0006 | FR-7082-N-02 60-Day Notice of Proposed Information Collection: State Community Development Block Grant (CDBG) Program; OMB Control No.: 2506–0085 | Notice | 2024-05-21T00:00:00Z | 2024 | 5 | 2025-05-21T06:27:07Z | 2024-11109 | 0 | 0 | 0900006486575a7d | |||
| HUD-2014-0006-0005 | HUD | FR-7080-N-42 30-Day Notice of Proposed Information Collection: State Community Development Block Grant (CDBG) Program, OMB Control No.: 2506–0085 HUD-2014-0006 | FR-7025-N-08 60- Day Notice of Proposed Information Collection: State Community Development Block Grant (CDBG) Program OMB Control No.: 2506-0085 | Notice | 2020-12-11T00:00:00Z | 2020 | 12 | 2025-05-21T06:41:25Z | 2020-27273 | 0 | 0 | 090000648499855b | |||
| HUD-2014-0006-0004 | HUD | FR-7080-N-42 30-Day Notice of Proposed Information Collection: State Community Development Block Grant (CDBG) Program, OMB Control No.: 2506–0085 HUD-2014-0006 | FR-5997-N-56 30- Day Notice of Proposed Information Collection: State Community Development Block Grant (CDBG) Program | Notice | 2017-09-21T00:00:00Z | 2017 | 9 | 2025-05-21T07:13:00Z | 2017-20154 | 0 | 0 | 0900006482b68e9c | |||
| HUD-2014-0006-0003 | HUD | FR-7080-N-42 30-Day Notice of Proposed Information Collection: State Community Development Block Grant (CDBG) Program, OMB Control No.: 2506–0085 HUD-2014-0006 | FR-5998-N-05 60- Day Notice of Proposed Information Collection: State Community Development Block Grant (CDBG) Program | Notice | 2017-06-16T00:00:00Z | 2017 | 6 | 2025-05-21T07:13:26Z | 2017-12570 | 0 | 0 | 09000064826e45ef | |||
| HUD-2014-0006-0002 | HUD | FR-7080-N-42 30-Day Notice of Proposed Information Collection: State Community Development Block Grant (CDBG) Program, OMB Control No.: 2506–0085 HUD-2014-0006 | FR–5752–N–27 30-Day Notice of Proposed Information Collection: State Community Development Block (CDBG) Program | Notice | 2014-03-25T00:00:00Z | 2014 | 3 | 2025-05-21T07:33:07Z | 2014-06562 | 0 | 0 | 090000648167c771 | |||
| HUD-2014-0006-0001 | HUD | FR-7080-N-42 30-Day Notice of Proposed Information Collection: State Community Development Block Grant (CDBG) Program, OMB Control No.: 2506–0085 HUD-2014-0006 | FR–5753–N–01 60-Day Notice of Proposed Information Collection: State Community Development Block Program | Notice | 2014-01-23T00:00:00Z | 2014 | 1 | 2025-05-21T08:41:59Z | 2014-01328 | 0 | 0 | 090000648151cdcc |
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;