documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "HUD-2007-0132" 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-0132-0006 | HUD | FR-5118-N-05 Notice of Proposed Information Collection: Comment Request; Brownfields Economic Development Initiative (BEDI) Grant Application HUD-2007-0132 | FR–5480–N–29 Notice of Submission of Proposed Information Collection to OMB Brownfields Economic Development Initiative (BEDI) Grant Application | Notice | 2011-03-30T00:00:00Z | 2011 | 3 | 2011-03-30T00:00:00Z | 2025-05-21T08:54:43Z | 2011-07402 | 0 | 0 | 0900006480c13ae0 | ||
| HUD-2007-0132-0005 | HUD | FR-5118-N-05 Notice of Proposed Information Collection: Comment Request; Brownfields Economic Development Initiative (BEDI) Grant Application HUD-2007-0132 | FR 5481–N–01 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Brownfield Economic Development Initiative | Notice | 2011-01-13T00:00:00Z | 2011 | 1 | 2011-01-13T00:00:00Z | 2025-05-21T08:55:18Z | 2011-00656 | 0 | 0 | 0900006480bca3e4 | ||
| HUD-2007-0132-0004 | HUD | FR-5118-N-05 Notice of Proposed Information Collection: Comment Request; Brownfields Economic Development Initiative (BEDI) Grant Application HUD-2007-0132 | FR-5117-N-100: Notice of Submission of Proposed Information Collection to OMB; Brownfields Economic Development Initiative (BEDI) Grant Application | Notice | 2007-11-27T00:00:00Z | 2007 | 11 | 2007-11-27T00:00:00Z | 2025-05-21T09:14:12Z | E7-23081 | 0 | 0 | 0900006480368aab | ||
| HUD-2007-0132-0003 | HUD | FR-5118-N-05 Notice of Proposed Information Collection: Comment Request; Brownfields Economic Development Initiative (BEDI) Grant Application HUD-2007-0132 | FR-5142-N-02: Notice of Funding Opportunity (NOFA) for the Brownfields Economic Development Initiative for Fiscal Year 2007 Extension of Application Deadline | Notice | 2007-11-02T00:00:00Z | 2007 | 11 | 2007-11-02T00:00:00Z | 2025-05-21T09:14:20Z | E7-21558 | 0 | 0 | 090000648035ed5e | ||
| HUD-2007-0132-0002 | HUD | FR-5118-N-05 Notice of Proposed Information Collection: Comment Request; Brownfields Economic Development Initiative (BEDI) Grant Application HUD-2007-0132 | FR-5142-N-01: Notice of Funding Opportunity (NOFA) for the Brownfields Economic Development Initiative for Fiscal Year 2007 | Notice | 2007-09-24T00:00:00Z | 2007 | 9 | 2007-09-24T00:00:00Z | 2025-05-21T09:14:28Z | 07-04702 | 0 | 0 | 0900006480297cc6 | ||
| HUD-2007-0132-0001 | HUD | FR-5118-N-05 Notice of Proposed Information Collection: Comment Request; Brownfields Economic Development Initiative (BEDI) Grant Application HUD-2007-0132 | FR-5118-N-05: Notice of Proposed Information Collection: Comment Request; Brownfields Economic Development Initiative (BEDI) Grant Application | Notice | 2007-09-18T00:00:00Z | 2007 | 9 | 2007-09-18T00:00:00Z | 2025-05-21T09:14:28Z | E7-18311 | 0 | 0 | 090000648028736d |
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;