documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "HUD-2007-0096" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2007-0096-0006 | HUD | FR-5121-N-25 Notice of Proposed Information Collection: Comment Request; Recertification of Family Income and Composition, Section 235(b) and Statistical Report Section 235(b), (i) and (j) HUD-2007-0096 | FR–5752–N–52 30-Day Notice of Proposed Information Collection: Recertification of Family Income & Composition Section 235 (b) & Statistical Report Section 235 (b), (i) and (j) | Notice | 2014-06-11T00:00:00Z | 2014 | 6 | 2025-05-21T07:32:36Z | 2014-13604 | 0 | 0 | 090000648173a73a | |||
| HUD-2007-0096-0005 | HUD | FR-5121-N-25 Notice of Proposed Information Collection: Comment Request; Recertification of Family Income and Composition, Section 235(b) and Statistical Report Section 235(b), (i) and (j) HUD-2007-0096 | FR–5756–N–06 FR–5756–N–06 60-Day Notice of Proposed Information Collection: Recertification of Family Income & Composition Section 235(b) & Statistical Report Section 235(b), (i) and (j) | Notice | 2014-03-05T00:00:00Z | 2014 | 3 | 2025-05-21T08:33:50Z | 2014-04908 | 0 | 0 | 09000064815fb421 | |||
| HUD-2007-0096-0004 | HUD | FR-5121-N-25 Notice of Proposed Information Collection: Comment Request; Recertification of Family Income and Composition, Section 235(b) and Statistical Report Section 235(b), (i) and (j) HUD-2007-0096 | FR–5376–N–115 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Recertification of Family Income and Composition | Notice | 2010-12-14T00:00:00Z | 2010 | 12 | 2010-12-14T00:00:00Z | 2025-05-21T08:55:30Z | 2010-31364 | 0 | 0 | 0900006480bb5ebb | ||
| HUD-2007-0096-0003 | HUD | FR-5121-N-25 Notice of Proposed Information Collection: Comment Request; Recertification of Family Income and Composition, Section 235(b) and Statistical Report Section 235(b), (i) and (j) HUD-2007-0096 | FR–5380–N–37 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Recertification of Family Income and Composition, Section 235(b) and Statistical Report Section 235(b), (i) and (j) | Notice | 2010-10-08T00:00:00Z | 2010 | 10 | 2010-10-08T00:00:00Z | 2025-05-21T08:55:50Z | 2010-25355 | 0 | 0 | 0900006480b6a0ce | ||
| HUD-2007-0096-0002 | HUD | FR-5121-N-25 Notice of Proposed Information Collection: Comment Request; Recertification of Family Income and Composition, Section 235(b) and Statistical Report Section 235(b), (i) and (j) HUD-2007-0096 | FR-5117-N-91: Notice of Submission of Proposed Information Collection to OMB; Recertification of Family Income and Composition | Notice | 2007-10-18T00:00:00Z | 2007 | 10 | 2007-10-18T00:00:00Z | 2025-05-21T09:14:22Z | E7-20527 | 0 | 0 | 09000064803217e4 | ||
| HUD-2007-0096-0001 | HUD | FR-5121-N-25 Notice of Proposed Information Collection: Comment Request; Recertification of Family Income and Composition, Section 235(b) and Statistical Report Section 235(b), (i) and (j) HUD-2007-0096 | FR-5121-N-25: Notice of Proposed Information Collection: Comment Request; Recertification of Family Income and Composition, Section 235(b) and Statistical Report Section 235(b), (i) and (j) | Notice | 2007-07-06T00:00:00Z | 2007 | 7 | 2007-07-06T00:00:00Z | 2025-05-21T09:17:02Z | E7-13038 | 0 | 0 | 090000648025e686 |
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;