documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "HUD-2016-0026" 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-2016-0026-0006 | HUD | FR–5916–N–06 60-Day Notice of Proposed Information Collection: Alternative Inspections- Housing Choice Voucher Program HUD-2016-0026 | FR-7092-N-39 30-Day Notice of Proposed Information Collection: Comment Request Alternative Inspections—Housing Choice Voucher Program | Notice | 2025-12-04T05:00:00Z | 2025 | 12 | 2025-12-04T18:36:18Z | 2025-21927 | 0 | 0 | 09000064b90acceb | |||
| HUD-2016-0026-0005 | HUD | FR–5916–N–06 60-Day Notice of Proposed Information Collection: Alternative Inspections- Housing Choice Voucher Program HUD-2016-0026 | FR-7104-N-17 60-Day Notice of Proposed Information Collection: Alternative Inspections— Housing Choice Voucher Program | Notice | 2025-09-18T04:00:00Z | 2025 | 9 | 2025-09-18T04:00:00Z | 2025-11-18T04:59:59Z | 2025-09-18T16:47:04Z | 2025-18049 | 0 | 0 | 09000064b8fb0f32 | |
| HUD-2016-0026-0004 | HUD | FR–5916–N–06 60-Day Notice of Proposed Information Collection: Alternative Inspections- Housing Choice Voucher Program HUD-2016-0026 | FR-7024-N-07 30- Day Notice of Proposed Information Collection: Alternative Inspections- Housing Choice Voucher Program, OMB Control No. 2577-0287 | Notice | 2020-01-31T00:00:00Z | 2020 | 1 | 2025-05-21T06:56:21Z | 2020-01878 | 0 | 0 | 0900006484315eab | |||
| HUD-2016-0026-0003 | HUD | FR–5916–N–06 60-Day Notice of Proposed Information Collection: Alternative Inspections- Housing Choice Voucher Program HUD-2016-0026 | FR–7015–N–07 60- Day Notice of Proposed Information Collection: Alternative Inspections- Housing Choice Voucher Program | Notice | 2019-08-14T00:00:00Z | 2019 | 8 | 2025-05-21T07:00:20Z | 2019-17456 | 0 | 0 | 0900006483e48d2e | |||
| HUD-2016-0026-0002 | HUD | FR–5916–N–06 60-Day Notice of Proposed Information Collection: Alternative Inspections- Housing Choice Voucher Program HUD-2016-0026 | FR–5909–N–56 30- Day Notice of Proposed Information Collection: Alternative Inspections- Housing Choice Voucher Program | Notice | 2016-08-15T00:00:00Z | 2016 | 8 | 2025-05-21T07:16:14Z | 2016-19396 | 0 | 0 | 0900006482175867 | |||
| HUD-2016-0026-0001 | HUD | FR–5916–N–06 60-Day Notice of Proposed Information Collection: Alternative Inspections- Housing Choice Voucher Program HUD-2016-0026 | FR–5916–N–06 60-Day Notice of Proposed Information Collection: Alternative Inspections- Housing Choice Voucher Program | Notice | 2016-03-29T00:00:00Z | 2016 | 3 | 2025-05-21T07:20:11Z | 2016-07068 | 0 | 0 | 0900006481ee756e |
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;