documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "HUD-2013-0043" 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-2013-0043-0007 | HUD | FR–7070–N–21 30-Day Notice of Proposed Information Collection: Enterprise Income Verification Systems Debts Owed to Public Housing Agencies and Terminations HUD-2013-0043 | FR–7070–N–21 30-Day Notice of Proposed Information Collection: Enterprise Income Verification Systems Debts Owed to Public Housing Agencies and Terminations | Notice | 2023-04-12T00:00:00Z | 2023 | 4 | 2025-05-21T06:35:25Z | 2023-07640 | 0 | 0 | 09000064859344bd | |||
| HUD-2013-0043-0006 | HUD | FR–7070–N–21 30-Day Notice of Proposed Information Collection: Enterprise Income Verification Systems Debts Owed to Public Housing Agencies and Terminations HUD-2013-0043 | FR–7076–N–01 60-Day Notice of Proposed Information Collection: Enterprise Income Verification Systems Debts Owed to Public Housing Agencies and Terminations; OMB Control No.: 2577– 0266 | Notice | 2023-02-09T00:00:00Z | 2023 | 2 | 2025-05-21T06:36:01Z | 2023-02706 | 0 | 0 | 090000648564533d | |||
| HUD-2013-0043-0005 | HUD | FR–7070–N–21 30-Day Notice of Proposed Information Collection: Enterprise Income Verification Systems Debts Owed to Public Housing Agencies and Terminations HUD-2013-0043 | FR-7011-N-47 30- Day Notice of Proposed Information Collection: Enterprise Income Verification Systems Debts Owed to Public Housing Agencies and Terminations | Notice | 2019-10-25T00:00:00Z | 2019 | 10 | 2025-05-21T06:57:53Z | 2019-23395 | 0 | 0 | 09000064840f8d11 | |||
| HUD-2013-0043-0004 | HUD | FR–7070–N–21 30-Day Notice of Proposed Information Collection: Enterprise Income Verification Systems Debts Owed to Public Housing Agencies and Terminations HUD-2013-0043 | FR-7015-N-06 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Enterprise Income Verification Systems Debts Owed to Public Housing Agencies and Terminations | Notice | 2019-05-20T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:24Z | 2019-10477 | 0 | 0 | 0900006483ca0d6d | |||
| HUD-2013-0043-0003 | HUD | FR–7070–N–21 30-Day Notice of Proposed Information Collection: Enterprise Income Verification Systems Debts Owed to Public Housing Agencies and Terminations HUD-2013-0043 | FR–5909–N–47 Agency Information Collection Activities; Proposals, Submissions, and Approvals: Enterprise Income Verification Systems-Debts Owed to Public Housing Agencies and Terminations | Notice | 2016-07-07T00:00:00Z | 2016 | 7 | 2016-07-07T00:00:00Z | 2025-05-21T07:16:26Z | 2016-16116 | 0 | 0 | 0900006482091632 | ||
| HUD-2013-0043-0002 | HUD | FR–7070–N–21 30-Day Notice of Proposed Information Collection: Enterprise Income Verification Systems Debts Owed to Public Housing Agencies and Terminations HUD-2013-0043 | FR–5916–N–09 60- Day Notice of Proposed Information Collection: Enterprise Income Verification Systems; Debts Owed to Public Housing Agencies and Terminations | Notice | 2016-04-26T00:00:00Z | 2016 | 4 | 2025-05-21T07:16:51Z | 2016-09605 | 0 | 0 | 0900006481f8df59 | |||
| HUD-2013-0043-0001 | HUD | FR–7070–N–21 30-Day Notice of Proposed Information Collection: Enterprise Income Verification Systems Debts Owed to Public Housing Agencies and Terminations HUD-2013-0043 | FR–5683–N–37 Notice of Submission of Proposed Information Collection to OMB Enterprise Income Verification (EIV) System- Debts Owed to Public Housing Agencies and Terminations | Notice | 2013-05-13T00:00:00Z | 2013 | 5 | 2025-05-21T08:45:55Z | 2013-11290 | 0 | 0 | 09000064812e0145 |
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;