documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "HUD-2008-0158" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2008-0158-0007 | HUD | FR-7034-N-60 30-Day Notice of Proposed Information Collection: Single Family Premium Collection Subsystem—Periodic (SFPCS–P); OMB Control No.: 2502-0536 HUD-2008-0158 | FR-7034-N-60 30-Day Notice of Proposed Information Collection: Single Family Premium Collection Subsystem—Periodic (SFPCS–P); OMB Control No.: 2502-0536 | Notice | 2021-10-20T00:00:00Z | 2021 | 10 | 2025-05-21T06:39:21Z | 2021-22852 | 0 | 0 | 0900006484dce940 | |||
| HUD-2008-0158-0006 | HUD | FR-7034-N-60 30-Day Notice of Proposed Information Collection: Single Family Premium Collection Subsystem—Periodic (SFPCS–P); OMB Control No.: 2502-0536 HUD-2008-0158 | FR-7001-N-39 30- Day Notice of Proposed Information Collection: Single Family Premium Collection Subsystem- Periodic (SFPCS) | Notice | 2018-08-14T00:00:00Z | 2018 | 8 | 2025-05-21T07:08:39Z | 2018-17445 | 0 | 0 | 090000648361d9c9 | |||
| HUD-2008-0158-0005 | HUD | FR-7034-N-60 30-Day Notice of Proposed Information Collection: Single Family Premium Collection Subsystem—Periodic (SFPCS–P); OMB Control No.: 2502-0536 HUD-2008-0158 | FR–5831–N–29 30-Day Notice of Proposed Information Collection: Single Family Premium Collection Subsystem- Periodic (SFPCS) | Notice | 2015-06-11T00:00:00Z | 2015 | 6 | 2025-05-21T07:28:23Z | 2015-14307 | 0 | 0 | 0900006481b2c781 | |||
| HUD-2008-0158-0004 | HUD | FR-7034-N-60 30-Day Notice of Proposed Information Collection: Single Family Premium Collection Subsystem—Periodic (SFPCS–P); OMB Control No.: 2502-0536 HUD-2008-0158 | FR–5835–N–02 60-Day Notice of Proposed Information Collection: Single Family Premium Collection Subsystem-Periodic (SFPCS) | Notice | 2015-03-25T00:00:00Z | 2015 | 3 | 2025-05-21T07:29:49Z | 2015-06874 | 0 | 0 | 0900006481a6375d | |||
| HUD-2008-0158-0003 | HUD | FR-7034-N-60 30-Day Notice of Proposed Information Collection: Single Family Premium Collection Subsystem—Periodic (SFPCS–P); OMB Control No.: 2502-0536 HUD-2008-0158 | FR–5603–N–20 Notice of Submission of Proposed Information Collection to OMB Single Family Premium Collection Subsystem-Periodic (SFPCS–P) | Notice | 2012-03-19T00:00:00Z | 2012 | 3 | 2025-05-21T08:48:31Z | 2012-06595 | 0 | 0 | 0900006480fdad36 | |||
| HUD-2008-0158-0002 | HUD | FR-7034-N-60 30-Day Notice of Proposed Information Collection: Single Family Premium Collection Subsystem—Periodic (SFPCS–P); OMB Control No.: 2502-0536 HUD-2008-0158 | FR-5484-N-35 Notice of Proposed Information Collection: Comment Request; Single Family Premium Collection Subsystem—Periodic (SFPCS–P) | Notice | 2011-11-18T00:00:00Z | 2011 | 11 | 2011-11-18T00:00:00Z | 2025-05-21T08:51:09Z | 2011-29919 | 0 | 0 | 0900006480f6f5bd | ||
| HUD-2008-0158-0001 | HUD | FR-7034-N-60 30-Day Notice of Proposed Information Collection: Single Family Premium Collection Subsystem—Periodic (SFPCS–P); OMB Control No.: 2502-0536 HUD-2008-0158 | FR–5191-N–37 Notice of Proposed Information Collection: Comment Request; Single Family Premium Collection Subsystem--Periodic (SFPCS-P) | Notice | 2008-11-14T00:00:00Z | 2008 | 11 | 2008-11-14T00:00:00Z | 2025-05-21T09:06:06Z | E8-27127 | 0 | 0 | 09000064807a8f62 |
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;