documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "HUD-2006-0214" 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-2006-0214-0009 | HUD | FR–7070–N–06 30-Day Notice of Proposed Information Collection: Race and Ethnic Collection HUD-2006-0214 | FR–7070–N–06 30-Day Notice of Proposed Information Collection: Race and Ethnic Collection | Notice | 2023-01-27T00:00:00Z | 2023 | 1 | 2025-05-21T06:36:06Z | 2023-01699 | 0 | 0 | 0900006485610682 | |||
| HUD-2006-0214-0007 | HUD | FR–7070–N–06 30-Day Notice of Proposed Information Collection: Race and Ethnic Collection HUD-2006-0214 | FR–7051–N–03 60 Day Notice of Proposed Information Collection: Standardization Form for ‘‘Race and Other Demographic Data Reporting Form—HUD 27061’’ OMB Control No.: 2535–0113 | Notice | 2022-09-27T00:00:00Z | 2022 | 9 | 2022-09-27T00:00:00Z | 2022-11-29T04:59:59Z | 2025-05-21T06:36:37Z | 2022-20868 | 0 | 0 | 0900006485373750 | |
| HUD-2006-0214-0006 | HUD | FR–7070–N–06 30-Day Notice of Proposed Information Collection: Race and Ethnic Collection HUD-2006-0214 | FR–5831–N–15 30-Day Notice of Proposed Information Collection: Standardized Form for Collecting Information Regarding Race and Ethnic Data | Notice | 2015-03-18T00:00:00Z | 2015 | 3 | 2025-05-21T07:29:58Z | 2015-06199 | 0 | 0 | 0900006481a4ecad | |||
| HUD-2006-0214-0005 | HUD | FR–7070–N–06 30-Day Notice of Proposed Information Collection: Race and Ethnic Collection HUD-2006-0214 | FR–5761–N–03 60-Day Notice of Submission of Proposed Information Collection to OMB; Standardized Form for Collecting Information Regarding Race and Ethnic Data | Notice | 2014-12-02T00:00:00Z | 2014 | 12 | 2025-05-21T07:30:30Z | 2014-28358 | 0 | 0 | 0900006481953f98 | |||
| HUD-2006-0214-0004 | HUD | FR–7070–N–06 30-Day Notice of Proposed Information Collection: Race and Ethnic Collection HUD-2006-0214 | FR–5683–N–49 30-Day Notice of Proposed Information Collection: Standardized Form for Collecting Information Regarding Race and Ethnic Data | Notice | 2013-06-18T00:00:00Z | 2013 | 6 | 2025-05-21T08:45:22Z | 2013-14506 | 0 | 0 | 090000648132c3cc | |||
| HUD-2006-0214-0003 | HUD | FR–7070–N–06 30-Day Notice of Proposed Information Collection: Race and Ethnic Collection HUD-2006-0214 | FR–5692–N–01 Notice of Submission of Proposed Information Collection to OMB; Standardized Form for Collecting Information Regarding Race and Ethnic Data | Notice | 2013-04-10T00:00:00Z | 2013 | 4 | 2025-05-21T08:46:02Z | 2013-08269 | 0 | 0 | 090000648128cd9f | |||
| HUD-2006-0214-0002 | HUD | FR–7070–N–06 30-Day Notice of Proposed Information Collection: Race and Ethnic Collection HUD-2006-0214 | FR–5281–N–59 Notice of Submission of Proposed Information Collection to OMB; Standardized Form for Collecting Information Regarding Race and Ethnic Data | Notice | 2009-07-29T00:00:00Z | 2009 | 7 | 2009-07-29T00:00:00Z | 2025-05-21T09:04:21Z | E9-18090 | 0 | 0 | 09000064809fd668 | ||
| HUD-2006-0214-0001 | HUD | FR–7070–N–06 30-Day Notice of Proposed Information Collection: Race and Ethnic Collection HUD-2006-0214 | FR-5037-N-44: Notice of Submission of Proposed Information Collection to OMB; Collection: Comment Request; Standardized Form for Collecting Information Regarding Race and Ethnic Data | Notice | 2006-07-12T10:46:22Z | 2006 | 7 | 2006-07-12T10:46:22Z | 2025-05-21T09:19:35Z | E6-10946 | 0 | 0 | 090000648019a9cf |
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;