documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "HUD-2007-0134" 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-2007-0134-0007 | HUD | FR–5123-N–14 Notice of Proposed Information Collection for Public Comment: Section 8 Random Digit Dialing Fair Market Rent Telephone Survey HUD-2007-0134 | FR-5480-N-87 Notice of Submission of Proposed Information Collection to OMB Section 8 Random Digit Dialing Fair Marketing Rent Surveys | Notice | 2011-08-29T00:00:00Z | 2011 | 8 | 2011-08-29T00:00:00Z | 2025-05-21T08:51:56Z | 2011-22029 | 0 | 0 | 0900006480f066fb | ||
| HUD-2007-0134-0006 | HUD | FR–5123-N–14 Notice of Proposed Information Collection for Public Comment: Section 8 Random Digit Dialing Fair Market Rent Telephone Survey HUD-2007-0134 | FR–5486–N–13 Notice of Proposed Information Collection for Public Comment: Section 8 Fair Market Rent Surveys | Notice | 2011-06-20T00:00:00Z | 2011 | 6 | 2025-05-21T08:52:23Z | 2011-15275 | 0 | 0 | 0900006480e68ff1 | |||
| HUD-2007-0134-0005 | HUD | FR–5123-N–14 Notice of Proposed Information Collection for Public Comment: Section 8 Random Digit Dialing Fair Market Rent Telephone Survey HUD-2007-0134 | FR–5480–N–46 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Section 8 Random Digit Dialing Fair Marketing Rent Surveys | Notice | 2011-05-24T00:00:00Z | 2011 | 5 | 2011-05-24T00:00:00Z | 2025-05-21T08:52:30Z | 2011-12805 | 0 | 0 | 0900006480e31002 | ||
| HUD-2007-0134-0004 | HUD | FR–5123-N–14 Notice of Proposed Information Collection for Public Comment: Section 8 Random Digit Dialing Fair Market Rent Telephone Survey HUD-2007-0134 | FR–5376–N–51 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Section 8 Random Digit Dialing Fair Market Rent Surveys | Notice | 2010-06-15T00:00:00Z | 2010 | 6 | 2010-06-15T00:00:00Z | 2010-07-16T03:59:59Z | 2025-05-21T08:58:08Z | 2010-14282 | 0 | 0 | 0900006480b01c9c | |
| HUD-2007-0134-0003 | HUD | FR–5123-N–14 Notice of Proposed Information Collection for Public Comment: Section 8 Random Digit Dialing Fair Market Rent Telephone Survey HUD-2007-0134 | FR–5382–N–06 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Section 8 Random Digit Dialing Fair Market Rent Telephone Survey | Notice | 2010-04-08T00:00:00Z | 2010 | 4 | 2010-04-08T00:00:00Z | 2025-05-21T08:59:18Z | 2010-08024 | 0 | 0 | 0900006480ad2846 | ||
| HUD-2007-0134-0002 | HUD | FR–5123-N–14 Notice of Proposed Information Collection for Public Comment: Section 8 Random Digit Dialing Fair Market Rent Telephone Survey HUD-2007-0134 | FR-5117-N-106: Section 8 Random Digit Dialing Fair Market Rent Surveys | Notice | 2007-12-21T00:00:00Z | 2007 | 12 | 2007-12-21T00:00:00Z | 2025-05-21T09:14:10Z | E7-24775 | 0 | 0 | 090000648037d624 | ||
| HUD-2007-0134-0001 | HUD | FR–5123-N–14 Notice of Proposed Information Collection for Public Comment: Section 8 Random Digit Dialing Fair Market Rent Telephone Survey HUD-2007-0134 | FR-5123-N-14: Notice of Proposed Information Collection for Public Comment: Section 8 Random Digit Dialing Fair Market Rent Telephone Survey | Notice | 2007-10-01T00:00:00Z | 2007 | 10 | 2007-10-01T00:00:00Z | 2025-05-21T09:14:27Z | E7-19286 | 0 | 0 | 09000064802e323a |
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;