documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "HUD-2014-0061" 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-2014-0061-0007 | HUD | FR–5753–N–04 60-Day Notice of Proposed Information Collection: Planning Phase Evaluation of the LGBTQ Youth Homelessness Prevention Initiative HUD-2014-0061 | FR-5998-N-10 60-Day Notice of Proposed Information Collection: Implementation Phase Evaluation of LGBTQ Youth Homelessness Prevention Initiative | Notice | 2017-11-21T00:00:00Z | 2017 | 11 | 2025-05-21T07:12:27Z | 2017-25119 | 0 | 0 | 0900006482c983d3 | |||
| HUD-2014-0061-0006 | HUD | FR–5753–N–04 60-Day Notice of Proposed Information Collection: Planning Phase Evaluation of the LGBTQ Youth Homelessness Prevention Initiative HUD-2014-0061 | FR–5997–N–14 Notice of Proposed Information Collection: Implementation Phase Review of the Lesbian, Gay, Bisexual, Transgender and Queer (LGBTQ) Youth Homelessness Prevention Initiative, Withdrawal | Notice | 2017-03-10T00:00:00Z | 2017 | 3 | 2025-05-21T07:14:19Z | 2017-04788 | 0 | 0 | 09000064824fecd5 | |||
| HUD-2014-0061-0005 | HUD | FR–5753–N–04 60-Day Notice of Proposed Information Collection: Planning Phase Evaluation of the LGBTQ Youth Homelessness Prevention Initiative HUD-2014-0061 | FR–5997–N–09 30- Day Notice of Proposed Information Collection: Implementation Phase Review of the Lesbian, Gay, Bisexual, Transgender and Queer (LGBTQ) Youth Homelessness Prevention Initiative | Notice | 2017-02-23T00:00:00Z | 2017 | 2 | 2025-05-21T07:14:28Z | 2017-03523 | 0 | 0 | 09000064824d6f2d | |||
| HUD-2014-0061-0004 | HUD | FR–5753–N–04 60-Day Notice of Proposed Information Collection: Planning Phase Evaluation of the LGBTQ Youth Homelessness Prevention Initiative HUD-2014-0061 | FR-5910-N-14 60- Day Notice of Proposed Information Collection: Implementation Phase Review of the Lesbian, Gay, Bisexual, Transgender and Queer (LGBTQ) Youth Homelessness Prevention Initiative | Notice | 2016-09-20T00:00:00Z | 2016 | 9 | 2025-05-21T07:16:01Z | 2016-22580 | 0 | 0 | 090000648222d431 | |||
| HUD-2014-0061-0002 | HUD | FR–5753–N–04 60-Day Notice of Proposed Information Collection: Planning Phase Evaluation of the LGBTQ Youth Homelessness Prevention Initiative HUD-2014-0061 | FR–5752–N–82 30-Day Notice of Proposed Information Collection: Planning Phase Evaluation of the LGBTQ Youth Homelessness Prevention Initiative | Notice | 2014-09-29T00:00:00Z | 2014 | 9 | 2025-05-21T07:30:50Z | 2014-23120 | 0 | 0 | 0900006481898f8b | |||
| HUD-2014-0061-0001 | HUD | FR–5753–N–04 60-Day Notice of Proposed Information Collection: Planning Phase Evaluation of the LGBTQ Youth Homelessness Prevention Initiative HUD-2014-0061 | FR–5753–N–04 60-Day Notice of Proposed Information Collection: Planning Phase Evaluation of the LGBTQ Youth Homelessness Prevention Initiative | Notice | 2014-07-25T00:00:00Z | 2014 | 7 | 2025-05-21T07:31:13Z | 2014-17561 | 0 | 0 | 09000064817e179b |
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;