documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "HUD-2013-0066" 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 6
| 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-2013-0066-0891 | HUD | FR–5173–P–01 Affirmatively Furthering Fair Housing HUD-2013-0066 | FR–5173–C–06 Affirmatively Furthering Fair Housing; Technical Correction | Rule | 2015-08-05T00:00:00Z | 2015 | 8 | 2025-05-21T07:22:42Z | 2015-19214 | 0 | 0 | 0900006481bc3bdf | |||
| HUD-2013-0066-0890 | HUD | FR–5173–P–01 Affirmatively Furthering Fair Housing HUD-2013-0066 | Affirmatively Furthering Fair Housing Final Rule: Regulatory Impact Analysis | Supporting & Related Material | 2015-07-16T00:00:00Z | 2015 | 7 | 2025-05-21T07:24:28Z | 0 | 0 | 0900006481b8b2ad | ||||
| HUD-2013-0066-0889 | HUD | FR–5173–P–01 Affirmatively Furthering Fair Housing HUD-2013-0066 | FR–5173–F–04 Affirmatively Furthering Fair Housing | Rule | 2015-07-16T00:00:00Z | 2015 | 7 | 2025-05-21T07:24:29Z | 2015-17032 | 0 | 0 | 0900006481b8abac | |||
| HUD-2013-0066-0003 | HUD | FR–5173–P–01 Affirmatively Furthering Fair Housing HUD-2013-0066 | AFFH Data Documentation | Supporting & Related Material | 2013-07-19T00:00:00Z | 2013 | 7 | 2025-05-21T08:44:58Z | 0 | 0 | 09000064813707ca | ||||
| HUD-2013-0066-0002 | HUD | FR–5173–P–01 Affirmatively Furthering Fair Housing HUD-2013-0066 | Affirmatively Furthering Fair Housing- Regulatory Impact Analysis | Supporting & Related Material | 2013-07-19T00:00:00Z | 2013 | 7 | 2025-05-21T08:44:58Z | 0 | 0 | 090000648137024b | ||||
| HUD-2013-0066-0001 | HUD | FR–5173–P–01 Affirmatively Furthering Fair Housing HUD-2013-0066 | FR–5173–P–01 Affirmatively Furthering Fair Housing | Proposed Rule | 2013-07-19T00:00:00Z | 2013 | 7 | 2013-07-19T00:00:00Z | 2013-09-18T03:59:59Z | 2025-05-21T08:44:59Z | 2013-16751 | 0 | 0 | 0900006481370518 |
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;