documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "HUD", document_type = "Proposed Rule" and posted_year = 2018 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-2018-0097-0001 | HUD | FR-6054-P-01 Conforming the Acceptable Separation Distance (ASD) Standards for Residential Propane Tanks to Industry Standards HUD-2018-0097 | Conforming the Acceptable Separation Distance Standards for Residential Propane Tanks to Industry Standards | Proposed Rule | 2018-12-10T00:00:00Z | 2018 | 12 | 2018-12-10T00:00:00Z | 2019-02-09T04:59:59Z | 2025-05-21T07:07:09Z | 2018-26493 | 0 | 0 | 09000064839734ff | |
| HUD-2018-0060-0001 | HUD | FR-6123-A-01 Affirmatively Furthering Fair Housing: Streamlining and Enhancements HUD-2018-0060 | FR-6123-A-01 Affirmatively Furthering Fair Housing: Streamlining and Enhancements | Proposed Rule | 2018-08-16T00:00:00Z | 2018 | 8 | 2018-08-16T00:00:00Z | 2018-10-16T03:59:59Z | 2025-05-21T07:08:33Z | 2018-17671 | 0 | 0 | 090000648362b63c | |
| HUD-2018-0047-0001 | HUD | FR-6111-A-01 Reconsideration of HUD’s Implementation of the Fair Housing Act’s Disparate Impact Standard HUD-2018-0047 | FR-6111-A-01 Reconsideration of HUD’s Implementation of the Fair Housing Act’s Disparate Impact Standard | Proposed Rule | 2018-06-20T00:00:00Z | 2018 | 6 | 2018-06-20T00:00:00Z | 2018-08-21T03:59:59Z | 2025-05-21T07:10:51Z | 2018-13340 | 0 | 0 | 090000648343380e | |
| HUD-2017-0011-0002 | HUD | Federal Policy for the Protection of Human Subjects HUD-2017-0011 | Federal Policy for the Protection of Human Subjects: Proposed Six Month Delay of the General Compliance Date While Allowing the Use of Three Burden-Reducing Provisions During the Delay Period | Proposed Rule | 2018-04-20T00:00:00Z | 2018 | 4 | 2025-05-21T07:11:25Z | 2018-08231 | 0 | 0 | 0900006483199f1d | |||
| HUD-2018-0027-0001 | HUD | FR-6041-P-01 HUD Acquisition Regulation (HUDAR) HUD-2018-0027 | FR-6041-P-01 HUD Acquisition Regulation (HUDAR) | Proposed Rule | 2018-04-09T00:00:00Z | 2018 | 4 | 2018-04-09T00:00:00Z | 2018-06-09T03:59:59Z | 2025-05-21T07:11:35Z | 2018-06362 | 0 | 0 | 09000064830dd397 | |
| HUD-2018-0006-0001 | HUD | FR-6075-N-01 Regulatory Review of Manufactured Housing Rules HUD-2018-0006 | FR-6075-N-01 Regulatory Review of Manufactured Housing Rules | Proposed Rule | 2018-01-26T00:00:00Z | 2018 | 1 | 2018-01-26T00:00:00Z | 2018-02-27T04:59:59Z | 2025-05-21T07:12:13Z | 2018-01276 | 0 | 0 | 0900006482e6be56 |
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;