documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "HUD-2005-0039" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, posted_date (date), comment_start_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-2005-0039-0009 | HUD | FR-4980-N-38 Federal Property Suitable as Facilities To Assist the Homeless HUD-2005-0039 | FR-5045-N-12: Federal Property Suitable as Facilities to Assist the Homeless | Notice | 2006-03-24T13:15:58Z | 2006 | 3 | 2006-03-24T13:15:58Z | 2025-05-21T09:19:46Z | 06-2740 | 0 | 0 | 090000648014d58c | ||
| HUD-2005-0039-0008 | HUD | FR-4980-N-38 Federal Property Suitable as Facilities To Assist the Homeless HUD-2005-0039 | FR-4980-N-48: Federal Property Suitable as Facilities To Assist the Homeless | Notice | 2005-12-02T09:41:05Z | 2005 | 12 | 2005-12-02T09:41:05Z | 2025-05-21T09:19:54Z | 05-23466 | 0 | 0 | 09000064800ea5ea | ||
| HUD-2005-0039-0007 | HUD | FR-4980-N-38 Federal Property Suitable as Facilities To Assist the Homeless HUD-2005-0039 | FR-4980-N-47: Federal Property Suitable as Facilities to Assist the Homeless | Notice | 2005-11-25T09:40:11Z | 2005 | 11 | 2005-11-25T09:40:11Z | 2025-05-21T09:19:54Z | 05-23121 | 0 | 0 | 09000064800a6361 | ||
| HUD-2005-0039-0006 | HUD | FR-4980-N-38 Federal Property Suitable as Facilities To Assist the Homeless HUD-2005-0039 | FR–4980–N–46: Federal Property Suitable as Facilities To Assist the Homeless | Notice | 2005-11-18T00:00:00Z | 2005 | 11 | 2005-11-18T00:00:00Z | 2025-05-21T09:19:54Z | 05–22857 | 0 | 0 | 09000064800a2420 | ||
| HUD-2005-0039-0005 | HUD | FR-4980-N-38 Federal Property Suitable as Facilities To Assist the Homeless HUD-2005-0039 | FR-4980-N-45: Federal Property Suitable as Facilities to Assist the Homeless | Notice | 2005-11-10T09:36:50Z | 2005 | 11 | 2005-11-10T09:36:50Z | 2025-05-21T09:19:56Z | 05-22265 | 0 | 0 | 090000648009dd98 | ||
| HUD-2005-0039-0004 | HUD | FR-4980-N-38 Federal Property Suitable as Facilities To Assist the Homeless HUD-2005-0039 | FR-4980-N-44: Federal Property Suitable as Facilities To Assist the Homeless | Notice | 2005-11-04T09:36:09Z | 2005 | 11 | 2005-11-04T09:36:09Z | 2025-05-21T09:19:56Z | 05-21776 | 0 | 0 | 090000648009ad55 | ||
| HUD-2005-0039-0003 | HUD | FR-4980-N-38 Federal Property Suitable as Facilities To Assist the Homeless HUD-2005-0039 | FR-4980-N-43: Federal Property Suitable as Facilities To Assist the Homeless | Notice | 2005-10-28T09:35:05Z | 2005 | 10 | 2005-10-28T09:35:05Z | 2025-05-21T09:19:56Z | 05-21325 | 0 | 0 | 0900006480097dc3 | ||
| HUD-2005-0039-0001 | HUD | FR-4980-N-38 Federal Property Suitable as Facilities To Assist the Homeless HUD-2005-0039 | FR-4980-N-38: Federal Property Suitable as Facilities To Assist the Homeless | Notice | 2005-10-07T09:33:34Z | 2005 | 10 | 2005-10-07T09:33:34Z | 2025-05-21T09:19:58Z | 05-19889 | 0 | 0 | 0900006480090354 |
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;