documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "HUD-2019-0019" 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)
document_type 3
- Notice 2
- Rule 2
- Proposed Rule 1
agency_id 1
- HUD 5
| 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-2019-0019-0073 | HUD | FR–7092–N-07 30-Day Notice of Proposed Information Collection: Enhancing and Streamlining the Implementation of Section 3 Requirements for Creating Opportunities for Low- and Very-Low Income Persons and Eligible Businesses; OMB Control No.: 2501–0041 HUD-2019-0019 | FR-6085-N-05 Section 3 Project Threshold Updates for Creating Economic Opportunities for Low- and Very Low-Income Persons and Eligible Businesses | Rule | 2026-02-13T05:00:00Z | 2026 | 2 | 2026-02-13T19:26:29Z | 2026-03002 | 0 | 0 | 09000064b91aa85c | |||
| HUD-2019-0019-0072 | HUD | FR–7092–N-07 30-Day Notice of Proposed Information Collection: Enhancing and Streamlining the Implementation of Section 3 Requirements for Creating Opportunities for Low- and Very-Low Income Persons and Eligible Businesses; OMB Control No.: 2501–0041 HUD-2019-0019 | FR–7092–N 07 30-Day Notice of Proposed Information Collection: Enhancing and Streamlining the Implementation of Section 3 Requirements for Creating Opportunities for Low- and Very-Low Income Persons and Eligible Businesses; OMB Control No.: 2501–0041 | Notice | 2025-02-28T00:00:00Z | 2025 | 2 | 2025-05-21T06:20:54Z | 2025-03244 | 0 | 0 | 0900006486998077 | |||
| HUD-2019-0019-0071 | HUD | FR–7092–N-07 30-Day Notice of Proposed Information Collection: Enhancing and Streamlining the Implementation of Section 3 Requirements for Creating Opportunities for Low- and Very-Low Income Persons and Eligible Businesses; OMB Control No.: 2501–0041 HUD-2019-0019 | FR-7084-N-02 60-Day Notice of Proposed Information Collection: Enhancing and Streamlining the Implementation of Section 3 Requirements for Creating Opportunities for Low- and Very-Low Income Persons and Eligible Businesses; HUD Forms 4736, 4736 A–D; OMB Control No.: 2501-0041 | Notice | 2024-06-10T00:00:00Z | 2024 | 6 | 2025-05-21T06:26:22Z | 2024-12633 | 0 | 0 | 09000064865a64fc | |||
| HUD-2019-0019-0070 | HUD | FR–7092–N-07 30-Day Notice of Proposed Information Collection: Enhancing and Streamlining the Implementation of Section 3 Requirements for Creating Opportunities for Low- and Very-Low Income Persons and Eligible Businesses; OMB Control No.: 2501–0041 HUD-2019-0019 | FR-6085-F-03 Enhancing and Streamlining the Implementation of Section 3 Requirements for Creating Economic Opportunities for Low- and Very Low- Income Persons and Eligible Businesses | Rule | 2020-09-29T00:00:00Z | 2020 | 9 | 2025-05-21T06:44:23Z | 2020-19185 | 0 | 0 | 090000648489877f | |||
| HUD-2019-0019-0001 | HUD | FR–7092–N-07 30-Day Notice of Proposed Information Collection: Enhancing and Streamlining the Implementation of Section 3 Requirements for Creating Opportunities for Low- and Very-Low Income Persons and Eligible Businesses; OMB Control No.: 2501–0041 HUD-2019-0019 | FR-6085-P-01 Enhancing and Streamlining the Implementation of ‘‘Section 3’’ Requirements for Creating Economic Opportunities for Low- and Very Low- ncome Persons and Eligible Businesses | Proposed Rule | 2019-04-04T00:00:00Z | 2019 | 4 | 2019-04-04T00:00:00Z | 2019-06-04T03:59:59Z | 2025-05-21T07:06:44Z | 2019-06495 | 0 | 0 | 0900006483b63071 |
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;