documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "HUD-2012-0027" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
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-2012-0027-0060 | HUD | FR–5453–P–01 Public Housing and Section 8 Programs: Housing Choice Voucher Program; Streamlining Portability Process HUD-2012-0027 | FR–5453–C–03 Housing Choice Voucher Program: Streamlining the Portability Process | Rule | 2015-09-01T00:00:00Z | 2015 | 9 | 2025-05-21T07:22:26Z | 2015-21487 | 0 | 0 | 0900006481c4a401 | |||
| HUD-2012-0027-0058 | HUD | FR–5453–P–01 Public Housing and Section 8 Programs: Housing Choice Voucher Program; Streamlining Portability Process HUD-2012-0027 | FR–5453–F–02 Housing Choice Voucher Program: Streamlining the Portability Process | Rule | 2015-08-20T00:00:00Z | 2015 | 8 | 2025-05-21T07:22:33Z | 2015-20551 | 0 | 0 | 0900006481c2c3cf | |||
| HUD-2012-0027-0059 | HUD | FR–5453–P–01 Public Housing and Section 8 Programs: Housing Choice Voucher Program; Streamlining Portability Process HUD-2012-0027 | 5453-F-02 RIA for Portability Final Rule | Supporting & Related Material | 2015-08-20T00:00:00Z | 2015 | 8 | 2025-05-21T07:22:33Z | 0 | 0 | 0900006481c2d6da | ||||
| HUD-2012-0027-0005 | HUD | FR–5453–P–01 Public Housing and Section 8 Programs: Housing Choice Voucher Program; Streamlining Portability Process HUD-2012-0027 | Regulatory Impact Analysis | Supporting & Related Material | 2012-04-05T00:00:00Z | 2012 | 4 | 2025-05-21T08:48:10Z | 0 | 0 | 0900006480fe9eb8 | ||||
| HUD-2012-0027-0001 | HUD | FR–5453–P–01 Public Housing and Section 8 Programs: Housing Choice Voucher Program; Streamlining Portability Process HUD-2012-0027 | FR–5453–P–01 Public Housing and Section 8 Programs: Housing Choice Voucher Program; Streamlining Portability Process | Proposed Rule | 2012-03-28T00:00:00Z | 2012 | 3 | 2012-03-28T00:00:00Z | 2012-05-30T03:59:59Z | 2025-05-21T08:48:13Z | 2012-07341 | 0 | 0 | 0900006480fe2e92 |
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;