documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "HUD-2006-0086" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2006-0086-0004 | HUD | FR-5010-F-01 Amendments to HUD Acquisition Regulation (HUDAR) HUD-2006-0086 | FR–5571–F–03 HUD Acquisition Regulations (HUDAR): Correcting Amendment | Rule | 2013-08-15T00:00:00Z | 2013 | 8 | 2025-05-21T08:44:37Z | 2013-19855 | 0 | 0 | 09000064813b37c9 | |||
| HUD-2006-0086-0003 | HUD | FR-5010-F-01 Amendments to HUD Acquisition Regulation (HUDAR) HUD-2006-0086 | FR–5571–F–02 HUD Acquisition Regulations (HUDAR) | Rule | 2012-12-10T00:00:00Z | 2012 | 12 | 2025-05-21T08:46:41Z | 2012-29324 | 0 | 0 | 09000064811847a1 | |||
| HUD-2006-0086-0002 | HUD | FR-5010-F-01 Amendments to HUD Acquisition Regulation (HUDAR) HUD-2006-0086 | FR–5571–P–01 Amendments to the HUD Acquisition Regulation (HUDAR) | Proposed Rule | 2012-03-16T00:00:00Z | 2012 | 3 | 2012-03-16T00:00:00Z | 2012-05-16T03:59:59Z | 2025-05-21T08:49:20Z | 2012-06165 | 0 | 0 | 0900006480fd89e9 | |
| HUD-2006-0086-0001 | HUD | FR-5010-F-01 Amendments to HUD Acquisition Regulation (HUDAR) HUD-2006-0086 | FR-5010-F-01: Amendments to HUD Acquisition Regulation (HUDAR) | Rule | 2006-01-13T00:00:00Z | 2006 | 1 | 2006-01-13T00:00:00Z | 2025-05-21T09:19:52Z | 06-00301 | 0 | 0 | 0900006480110c51 |
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;