documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "HUD-2010-0132" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), comment_start_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-0132-0008 | HUD | FR–7050–N–44 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Continuation of Interest Reduction Payments After Refinancing Section 236 Projects HUD-2010-0132 | FR–7050–N–44 30-Day Notice of Proposed Information Collection: Continuation of Interest Reduction Payments After Refinancing Section 236 Projects; OMB Control No.: 2502–0572 | Notice | 2022-08-04T00:00:00Z | 2022 | 8 | 2025-05-21T06:36:52Z | 2022-16644 | 0 | 0 | 090000648520fe56 | |||
| HUD-2010-0132-0007 | HUD | FR–7050–N–44 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Continuation of Interest Reduction Payments After Refinancing Section 236 Projects HUD-2010-0132 | FR-7056-N-02 60-Day Notice of Proposed Information Collection: Continuation of Interest Reduction Payments After Refinancing Section 236 Projects, OMB Control No.: 2502–0572 | Notice | 2022-04-04T00:00:00Z | 2022 | 4 | 2025-05-21T06:37:23Z | 2022-07012 | 0 | 0 | 0900006484ff6b59 | |||
| HUD-2010-0132-0006 | HUD | FR–7050–N–44 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Continuation of Interest Reduction Payments After Refinancing Section 236 Projects HUD-2010-0132 | FR-5997-N-80 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Continuation of Interest Reduction Payments after Refinancing Section 236 Projects | Notice | 2017-12-18T00:00:00Z | 2017 | 12 | 2025-05-21T07:12:24Z | 2017-27191 | 0 | 0 | 0900006482d303a3 | |||
| HUD-2010-0132-0005 | HUD | FR–7050–N–44 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Continuation of Interest Reduction Payments After Refinancing Section 236 Projects HUD-2010-0132 | FR-6001-N-30 60- Day Notice of Proposed Information Collection: Continuation of Interest Reduction Payments After Refinancing Section 236 Projects | Notice | 2017-09-05T00:00:00Z | 2017 | 9 | 2025-05-21T07:13:02Z | 2017-18744 | 0 | 0 | 0900006482b0c1ce | |||
| HUD-2010-0132-0004 | HUD | FR–7050–N–44 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Continuation of Interest Reduction Payments After Refinancing Section 236 Projects HUD-2010-0132 | FR–5752–N–74 30-Day Notice of Proposed Information Collection: Continuation of Interest Reduction Payments After Refinancing Section 236 Projects | Notice | 2014-09-11T00:00:00Z | 2014 | 9 | 2025-05-21T07:30:58Z | 2014-21635 | 0 | 0 | 090000648186a82b | |||
| HUD-2010-0132-0003 | HUD | FR–7050–N–44 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Continuation of Interest Reduction Payments After Refinancing Section 236 Projects HUD-2010-0132 | FR–5756–N–19 60-Day Notice of Proposed Information Collection: Continuation of Interest Reduction Payments After Refinancing Section 236 Projects | Notice | 2014-06-16T00:00:00Z | 2014 | 6 | 2025-05-21T07:32:35Z | 2014-14009 | 0 | 0 | 0900006481749fc3 | |||
| HUD-2010-0132-0002 | HUD | FR–7050–N–44 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Continuation of Interest Reduction Payments After Refinancing Section 236 Projects HUD-2010-0132 | FR–5480–N–44 Notice of Submission of Proposed Information Collection to OMB Continuation of Interest Reduction Payments After Refinancing Section 236 Projects | Notice | 2011-05-18T00:00:00Z | 2011 | 5 | 2011-05-18T00:00:00Z | 2025-05-21T08:52:31Z | 2011-12115 | 0 | 0 | 0900006480d4152e | ||
| HUD-2010-0132-0001 | HUD | FR–7050–N–44 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Continuation of Interest Reduction Payments After Refinancing Section 236 Projects HUD-2010-0132 | FR–5380–N–52 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Continuation of Interest Reduction Payments After Refinancing Section 236 Projects | Notice | 2010-12-21T00:00:00Z | 2010 | 12 | 2010-12-21T00:00:00Z | 2025-05-21T08:55:28Z | 2010-32012 | 0 | 0 | 0900006480bbcc6f |
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;