documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "HUD-2013-0032" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2013-0032-0006 | HUD | FR–7050–N–58 30-Day Notice of Proposed Information Collection HUD-2013-0032 | FR–7050–N–58 30-Day Notice of Proposed Information Collection | Notice | 2022-11-10T00:00:00Z | 2022 | 11 | 2022-11-10T00:00:00Z | 2025-05-21T06:36:27Z | 2022-24494 | 0 | 0 | 09000064854a2a22 | ||
| HUD-2013-0032-0005 | HUD | FR–7050–N–58 30-Day Notice of Proposed Information Collection HUD-2013-0032 | FR-7051-N-02 60-Day Notice of Proposed Information Collection, Comment Request: HUD Standardized Grant Application Forms: HUD Form 424– CB, HUD Form 424–CBW, HUD 424–M, SF–424, HUD 424–B, SF–LLL, HUD–2880, (SF– 424A: OMB Control No.: 2501–0017 | Notice | 2022-08-08T00:00:00Z | 2022 | 8 | 2022-08-08T00:00:00Z | 2022-10-08T03:59:59Z | 2025-05-21T06:36:52Z | 2022-16883 | 0 | 0 | 0900006485220d53 | |
| HUD-2013-0032-0004 | HUD | FR–7050–N–58 30-Day Notice of Proposed Information Collection HUD-2013-0032 | FR-7018-N-01 60 Day Notice of Proposed Information Collection Comment Request: HUD Standardized Grant Application Forms | Notice | 2019-02-27T00:00:00Z | 2019 | 2 | 2025-05-21T07:06:53Z | 2019-03417 | 0 | 0 | 0900006483aab8d9 | |||
| HUD-2013-0032-0003 | HUD | FR–7050–N–58 30-Day Notice of Proposed Information Collection HUD-2013-0032 | FR–5831–N–58 30-Day Notice of Proposed Information Collection: HUD Standard Grant Application Forms | Notice | 2015-11-25T00:00:00Z | 2015 | 11 | 2025-05-21T07:21:40Z | 2015-30112 | 0 | 0 | 0900006481d7290c | |||
| HUD-2013-0032-0002 | HUD | FR–7050–N–58 30-Day Notice of Proposed Information Collection HUD-2013-0032 | FR–5683–N–62 30-Day Notice of Proposed Information Collection: HUD Standard Grant Application Forms: Detailed Budget Form (HUD–424–CB), Budget Worksheet (HUD–424CBW), Application for Federal Assistance (SF–424), and the Third-Party Documentation Facsimile Transmittal Form (HUD–96011) | Notice | 2013-07-17T00:00:00Z | 2013 | 7 | 2025-05-21T08:45:05Z | 2013-17065 | 0 | 0 | 090000648136a753 | |||
| HUD-2013-0032-0001 | HUD | FR–7050–N–58 30-Day Notice of Proposed Information Collection HUD-2013-0032 | FR–5692–N–02 Notice of Proposed Information Collection: Comment Request; HUD Standard Grant Application Forms: Detailed Budget Form (HUD–424–CB), Budget Worksheet (HUD–424CBW), Application for Federal Assistance (SF–424), and the Third-Party Documentation Facsimile Transmittal Form (HUD–96011) | Notice | 2013-04-30T00:00:00Z | 2013 | 4 | 2025-05-21T08:45:57Z | 2013-10062 | 0 | 0 | 09000064812ad9eb |
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;