documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "HUD-2007-0019" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0019-0017 | HUD | FR-7092-N-06 Privacy Act of 1974; System of Records HUD-2007-0019 | FR-5130-N-25: Privacy Act of 1974; Notice of a Computer Matching Program Between the U.S. Department of Housing and Urban Development(HUD) and the U.S. Department of Education (ED) | Notice | 2008-06-18T00:00:00Z | 2008 | 6 | 2008-06-18T00:00:00Z | 2025-05-21T09:11:58Z | E8-13876 | 0 | 0 | 090000648062c9fd | ||
| HUD-2007-0019-0016 | HUD | FR-7092-N-06 Privacy Act of 1974; System of Records HUD-2007-0019 | FR-5130-N-24: Privacy Act of 1974; Notice of a Computer Matching Program Between the U.S. Department of Housing and Urban Development (HUD) and the U.S. Department of Veterans Affairs (VA) | Notice | 2008-05-30T00:00:00Z | 2008 | 5 | 2008-05-30T00:00:00Z | 2025-05-21T09:13:01Z | E8-12050 | 0 | 0 | 0900006480607393 | ||
| HUD-2007-0019-0015 | HUD | FR-7092-N-06 Privacy Act of 1974; System of Records HUD-2007-0019 | FR-5187-N-08: Monthly Delinquent Loan Reports | Notice | 2008-03-05T00:00:00Z | 2008 | 3 | 2008-03-05T00:00:00Z | 2025-05-21T09:14:00Z | E8-04180 | 0 | 0 | 09000064803e7fda | ||
| HUD-2007-0019-0014 | HUD | FR-7092-N-06 Privacy Act of 1974; System of Records HUD-2007-0019 | FR-5130-N-20: Privacy Act of 1974; Notice of a Computer Matching Program Between the U.S. Department of Housing and Urban Development (HUD) and the U.S. Small Business Administration (SBA) | Notice | 2008-02-01T00:00:00Z | 2008 | 2 | 2008-02-01T00:00:00Z | 2025-05-21T09:14:05Z | E8-01697 | 0 | 0 | 09000064803a6496 | ||
| HUD-2007-0019-0013 | HUD | FR-7092-N-06 Privacy Act of 1974; System of Records HUD-2007-0019 | FR-5130-N-18: Privacy Act; Proposed Amendment to a Privacy Act System of Records, Single Family Mortgage Notes System (SFMNS, A80N) | Notice | 2008-01-16T00:00:00Z | 2008 | 1 | 2008-01-16T00:00:00Z | 2025-05-21T09:14:08Z | E8-00603 | 0 | 0 | 090000648039b895 |
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;