documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "HUD-2007-0024" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), comment_start_date (date), comment_end_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-2007-0024-0008 | HUD | FR-5122-N-01 Notice of Proposed Information Collection: Comment Request; Evaluation of Lead-Based Paint Hazard Reduction Grantee Unit Costs HUD-2007-0024 | FR-7001-N-02 30- Day Notice of Proposed Information Collection: Application for Healthy Homes and Lead Hazard Control Grant Programs and Quality Assurance Plans | Notice | 2018-01-31T00:00:00Z | 2018 | 1 | 2025-05-21T07:12:11Z | 2018-01808 | 0 | 0 | 0900006482e82cf3 | |||
| HUD-2007-0024-0007 | HUD | FR-5122-N-01 Notice of Proposed Information Collection: Comment Request; Evaluation of Lead-Based Paint Hazard Reduction Grantee Unit Costs HUD-2007-0024 | FR-5485-N-01 Notice of Proposed Information Collection, Comment Request; Application for Healthy Homes and Lead Hazard Control Grant Programs and Quality Assurance Plans | Notice | 2011-06-08T00:00:00Z | 2011 | 6 | 2011-06-08T00:00:00Z | 2025-05-21T08:52:27Z | 2011-14109 | 0 | 0 | 0900006480e400ec | ||
| HUD-2007-0024-0006 | HUD | FR-5122-N-01 Notice of Proposed Information Collection: Comment Request; Evaluation of Lead-Based Paint Hazard Reduction Grantee Unit Costs HUD-2007-0024 | FR–5376–N–82 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Application for Healthy Homes and Lead Hazard Control Grant Programs and Quality Assurance Plans | Notice | 2010-08-20T00:00:00Z | 2010 | 8 | 2010-08-20T00:00:00Z | 2010-08-28T03:59:59Z | 2025-05-21T08:57:05Z | 2010-20753 | 0 | 0 | 0900006480b36296 | |
| HUD-2007-0024-0005 | HUD | FR-5122-N-01 Notice of Proposed Information Collection: Comment Request; Evaluation of Lead-Based Paint Hazard Reduction Grantee Unit Costs HUD-2007-0024 | FR–5281–N–17 Notice of Proposed Information Collection: Comment Request; Application for Healthy Homes and Lead Hazard Control Grant Programs and Quality Assurance Plans | Notice | 2009-03-05T00:00:00Z | 2009 | 3 | 2009-03-05T00:00:00Z | 2025-05-21T09:05:17Z | E9-04691 | 0 | 0 | 09000064808ebbd5 | ||
| HUD-2007-0024-0004 | HUD | FR-5122-N-01 Notice of Proposed Information Collection: Comment Request; Evaluation of Lead-Based Paint Hazard Reduction Grantee Unit Costs HUD-2007-0024 | FR-5187-N-07: Application for Healthy Homes and Lead Hazard Control Grant Programs and Quality Assurance Plans | Notice | 2008-03-04T00:00:00Z | 2008 | 3 | 2008-03-04T00:00:00Z | 2025-05-21T09:14:00Z | E8-04057 | 0 | 0 | 09000064803e6703 | ||
| HUD-2007-0024-0003 | HUD | FR-5122-N-01 Notice of Proposed Information Collection: Comment Request; Evaluation of Lead-Based Paint Hazard Reduction Grantee Unit Costs HUD-2007-0024 | FR-5122-N-03: Notice of Proposed Information Collection: Comment Request; Application for Healthy Homes and Lead Hazard Control Grant Programs and Quality Assurance Plans | Notice | 2007-11-06T00:00:00Z | 2007 | 11 | 2007-11-06T00:00:00Z | 2008-01-08T04:59:59Z | 2025-05-21T09:14:19Z | 07-05499 | 0 | 0 | 0900006480360784 | |
| HUD-2007-0024-0002 | HUD | FR-5122-N-01 Notice of Proposed Information Collection: Comment Request; Evaluation of Lead-Based Paint Hazard Reduction Grantee Unit Costs HUD-2007-0024 | FR-5122-N-02: Notice of Proposed Information Collection: Comment Request Quality Assurance Plans | Notice | 2007-04-17T00:00:00Z | 2007 | 4 | 2007-04-17T00:00:00Z | 2025-05-21T09:18:44Z | 07-01909 | 0 | 0 | 0900006480227877 | ||
| HUD-2007-0024-0001 | HUD | FR-5122-N-01 Notice of Proposed Information Collection: Comment Request; Evaluation of Lead-Based Paint Hazard Reduction Grantee Unit Costs HUD-2007-0024 | FR-5122-N-01: Notice of Proposed Information Collection: Comment Request; Evaluation of Lead-Based Paint Hazard Reduction Grantee Unit Costs | Notice | 2007-02-14T00:00:00Z | 2007 | 2 | 2007-02-14T00:00:00Z | 2025-05-21T09:18:50Z | 07-00679 | 0 | 0 | 0900006480206020 |
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;