documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "HUD-2008-0015" 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-2008-0015-0008 | HUD | FR-5184-N-01 Annual Indexing of Basic Statutory Mortgage Limits for Multifamily Housing Programs HUD-2008-0015 | FR–5886–N–01 Annual Indexing of Basic Statutory Mortgage Limits for Multifamily Housing Programs | Notice | 2015-11-18T00:00:00Z | 2015 | 11 | 2025-05-21T07:21:45Z | 2015-29469 | 0 | 0 | 0900006481d54895 | |||
| HUD-2008-0015-0007 | HUD | FR-5184-N-01 Annual Indexing of Basic Statutory Mortgage Limits for Multifamily Housing Programs HUD-2008-0015 | FR–5796–N–01 Annual Indexing of Basic Statutory Mortgage Limits for Multifamily Housing Programs | Notice | 2014-06-17T00:00:00Z | 2014 | 6 | 2025-05-21T07:32:35Z | 2014-14170 | 0 | 0 | 090000648174cf94 | |||
| HUD-2008-0015-0006 | HUD | FR-5184-N-01 Annual Indexing of Basic Statutory Mortgage Limits for Multifamily Housing Programs HUD-2008-0015 | FR–5703–N–01 Annual Indexing of Basic Statutory Mortgage Limits for Multifamily Housing Programs | Notice | 2013-05-06T00:00:00Z | 2013 | 5 | 2025-05-21T08:45:56Z | 2013-10676 | 0 | 0 | 09000064812bae46 | |||
| HUD-2008-0015-0005 | HUD | FR-5184-N-01 Annual Indexing of Basic Statutory Mortgage Limits for Multifamily Housing Programs HUD-2008-0015 | FR–5592–N–01 Annual Indexing of Basic Statutory Mortgage Limits for Multifamily Housing Programs | Notice | 2011-12-22T00:00:00Z | 2011 | 12 | 2025-05-21T08:50:57Z | 2011-32811 | 0 | 0 | 0900006480f87c9f | |||
| HUD-2008-0015-0004 | HUD | FR-5184-N-01 Annual Indexing of Basic Statutory Mortgage Limits for Multifamily Housing Programs HUD-2008-0015 | FR–5388–N–02 Annual Indexing of Basic Statutory Mortgage Limits for Multifamily Housing Programs | Notice | 2011-02-24T00:00:00Z | 2011 | 2 | 2011-02-24T00:00:00Z | 2025-05-21T08:54:59Z | 2011-04146 | 0 | 0 | 0900006480bf6e65 | ||
| HUD-2008-0015-0003 | HUD | FR-5184-N-01 Annual Indexing of Basic Statutory Mortgage Limits for Multifamily Housing Programs HUD-2008-0015 | FR–5388–N–01 Annual Indexing of Basic Statutory Mortgage Limits for Multifamily Housing Programs | Notice | 2010-02-04T00:00:00Z | 2010 | 2 | 2010-02-04T00:00:00Z | 2025-05-21T09:03:16Z | 2010-02361 | 0 | 0 | 0900006480a8da6d | ||
| HUD-2008-0015-0002 | HUD | FR-5184-N-01 Annual Indexing of Basic Statutory Mortgage Limits for Multifamily Housing Programs HUD-2008-0015 | FR–5296–N–01 Annual Indexing of Basic Statutory Mortgage Limits for Multifamily Housing Programs | Notice | 2009-04-06T00:00:00Z | 2009 | 4 | 2009-04-06T00:00:00Z | 2025-05-21T09:05:03Z | E9-07651 | 0 | 0 | 09000064809441e1 | ||
| HUD-2008-0015-0001 | HUD | FR-5184-N-01 Annual Indexing of Basic Statutory Mortgage Limits for Multifamily Housing Programs HUD-2008-0015 | FR-5184-N-01: Annual Indexing of Basic Statutory Mortgage Limits for Multifamily Housing Programs | Notice | 2008-02-07T00:00:00Z | 2008 | 2 | 2008-02-07T00:00:00Z | 2025-05-21T09:14:04Z | E8-02215 | 0 | 0 | 09000064803a9ea4 |
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;