documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "HUD-2007-0129" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2007-0129-0007 | HUD | FR-5147-N-01 Capacity Building for Community Development and Affordable Housing Grants HUD-2007-0129 | FR–5500–N–12 Notice of Availability: Notice of Funding Availability (NOFA) for HUD’s Fiscal Year (FY) 2011 Section 4 Capacity Building for Community Development and Affordable Housing Grants | Notice | 2011-05-18T00:00:00Z | 2011 | 5 | 2011-05-18T00:00:00Z | 2025-05-21T08:52:32Z | 2011-12114 | 0 | 0 | 0900006480d413d8 | ||
| HUD-2007-0129-0006 | HUD | FR-5147-N-01 Capacity Building for Community Development and Affordable Housing Grants HUD-2007-0129 | FR-5196-N-02: Capacity Building for Community Development and Affordable Housing Grants: Amendment | Notice | 2008-06-18T00:00:00Z | 2008 | 6 | 2008-06-18T00:00:00Z | 2025-05-21T09:11:55Z | E8-13691 | 0 | 0 | 090000648062ca16 | ||
| HUD-2007-0129-0005 | HUD | FR-5147-N-01 Capacity Building for Community Development and Affordable Housing Grants HUD-2007-0129 | FR-5147-FA-01: Announcement of Funding Awards for the Section 4 Capacity Building for Community Development and Affordable Housing Program; Fiscal Year 2007 | Notice | 2008-04-14T00:00:00Z | 2008 | 4 | 2008-04-14T00:00:00Z | 2025-05-21T09:13:48Z | E8-07834 | 0 | 0 | 09000064804f83c0 | ||
| HUD-2007-0129-0004 | HUD | FR-5147-N-01 Capacity Building for Community Development and Affordable Housing Grants HUD-2007-0129 | FR-5196-N-01: Capacity Building for Community; Development and Affordable Housing Grants | Notice | 2008-04-09T00:00:00Z | 2008 | 4 | 2008-04-09T00:00:00Z | 2025-05-21T09:13:49Z | E8-07400 | 0 | 0 | 090000648047fe8b | ||
| HUD-2007-0129-0003 | HUD | FR-5147-N-01 Capacity Building for Community Development and Affordable Housing Grants HUD-2007-0129 | FR-5100-FA-24: Announcement of Funding Awards Fair Housing Initiatives Program Fiscal Year 2007 | Notice | 2007-11-20T00:00:00Z | 2007 | 11 | 2007-11-20T00:00:00Z | 2025-05-21T09:14:17Z | E7-22611 | 0 | 0 | 090000648036639f | ||
| HUD-2007-0129-0002 | HUD | FR-5147-N-01 Capacity Building for Community Development and Affordable Housing Grants HUD-2007-0129 | FR-5147-C-01: Capacity Building for Community Development and Affordable Housing Grants; Technical Correction and Extension of Application Deadline | Notice | 2007-11-08T00:00:00Z | 2007 | 11 | 2007-11-08T00:00:00Z | 2025-05-21T09:14:19Z | E7-21890 | 0 | 0 | 09000064803616e3 | ||
| HUD-2007-0129-0001 | HUD | FR-5147-N-01 Capacity Building for Community Development and Affordable Housing Grants HUD-2007-0129 | FR-5147-N-01: Capacity Building for Community Development and Affordable Housing Grants | Notice | 2007-09-18T00:00:00Z | 2007 | 9 | 2007-09-18T00:00:00Z | 2025-05-21T09:14:28Z | E7-18386 | 0 | 0 | 09000064802872cf |
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;