documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "HUD-2009-0143" 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-2009-0143-0008 | HUD | FR–5281–N–90 Technical Processing Requirements for Multifamily Project Mortgage Insurance HUD-2009-0143 | FR-5997-N-47 30- Day Notice of Proposed Information Collection: Technical Processing Requirements for Multifamily Project Mortgage Insurance | Notice | 2017-09-05T00:00:00Z | 2017 | 9 | 2025-05-21T07:13:02Z | 2017-18741 | 0 | 0 | 0900006482b0c4c8 | |||
| HUD-2009-0143-0007 | HUD | FR–5281–N–90 Technical Processing Requirements for Multifamily Project Mortgage Insurance HUD-2009-0143 | FR–6001–N–17 60- Day Notice of Proposed Information Collection: Technical Processing Requirements for Multifamily Project Mortgage Insurance | Notice | 2017-06-20T00:00:00Z | 2017 | 6 | 2025-05-21T07:13:25Z | 2017-12825 | 0 | 0 | 09000064826f5e0a | |||
| HUD-2009-0143-0006 | HUD | FR–5281–N–90 Technical Processing Requirements for Multifamily Project Mortgage Insurance HUD-2009-0143 | FR–5683–C–93 30-Day Notice of Proposed Information Collection: Technical Processing Requirements for Multifamily Project Mortgage Insurance | Notice | 2013-11-01T00:00:00Z | 2013 | 11 | 2025-05-21T08:42:48Z | 2013-26125 | 0 | 0 | 090000648146bde5 | |||
| HUD-2009-0143-0005 | HUD | FR–5281–N–90 Technical Processing Requirements for Multifamily Project Mortgage Insurance HUD-2009-0143 | FR-5683-N-93 30-Day Notice of Proposed Information Collection: Technical Processing Requirements for Multifamily Project Mortgage Insurance | Notice | 2013-10-25T00:00:00Z | 2013 | 10 | 2013-10-25T00:00:00Z | 2025-05-21T08:43:15Z | 2013-25199 | 0 | 0 | 090000648145fe1b | ||
| HUD-2009-0143-0004 | HUD | FR–5281–N–90 Technical Processing Requirements for Multifamily Project Mortgage Insurance HUD-2009-0143 | FR–5687–N–38 60-Day Notice of Proposed Information Collection: Technical Processing Requirements for Multifamily Project Mortgage Insurance | Notice | 2013-08-27T00:00:00Z | 2013 | 8 | 2025-05-21T08:44:23Z | 2013-20837 | 0 | 0 | 09000064813c6a4d | |||
| HUD-2009-0143-0003 | HUD | FR–5281–N–90 Technical Processing Requirements for Multifamily Project Mortgage Insurance HUD-2009-0143 | FR–5376–N–64 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Technical Processing Requirements for Multifamily Project Mortgage Insurance | Notice | 2010-07-19T00:00:00Z | 2010 | 7 | 2010-07-19T00:00:00Z | 2025-05-21T08:57:52Z | 2010-17576 | 0 | 0 | 0900006480b1c6ca | ||
| HUD-2009-0143-0002 | HUD | FR–5281–N–90 Technical Processing Requirements for Multifamily Project Mortgage Insurance HUD-2009-0143 | FR–5380–N–07 Notice of Proposed Information Collection: Comment Request; Technical Processing Requirements for Multifamily Project Mortgage Insurance | Notice | 2010-02-10T00:00:00Z | 2010 | 2 | 2010-02-10T00:00:00Z | 2025-05-21T09:03:13Z | 2010-02834 | 0 | 0 | 0900006480a90aaf | ||
| HUD-2009-0143-0001 | HUD | FR–5281–N–90 Technical Processing Requirements for Multifamily Project Mortgage Insurance HUD-2009-0143 | FR–5281–N–90 Technical Processing Requirements for Multifamily Project Mortgage Insurance | Notice | 2009-11-13T00:00:00Z | 2009 | 11 | 2009-11-13T00:00:00Z | 2025-05-21T09:03:48Z | E9-27226 | 0 | 0 | 0900006480a56d3d |
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;