documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "HUD-2021-0068" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_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-2021-0068-0044 | HUD | FR-6560-N-02 Tribal Intergovernmental Advisory Committee (TIAC) Membership Announcement HUD-2021-0068 | FR–6289–N–04 Tribal Intergovernmental Advisory Committee Membership | Notice | 2022-11-29T00:00:00Z | 2022 | 11 | 2025-05-21T06:36:23Z | 2022-25726 | 0 | 0 | 0900006485507b34 | |||
| HUD-2021-0068-0034 | HUD | FR-6560-N-02 Tribal Intergovernmental Advisory Committee (TIAC) Membership Announcement HUD-2021-0068 | FR–6289–N–04 Withdrawal of Notice of Intent To Establish a Tribal Intergovernmental Advisory Committee; Request for Comments on Committee Structure | Notice | 2022-06-28T00:00:00Z | 2022 | 6 | 2025-05-21T06:37:07Z | 2022-13698 | 0 | 0 | 09000064851a6a95 | |||
| HUD-2021-0068-0035 | HUD | FR-6560-N-02 Tribal Intergovernmental Advisory Committee (TIAC) Membership Announcement HUD-2021-0068 | FR–6289–N–05 Tribal Intergovernmental Advisory Committee; Reopening Request for Nominations | Notice | 2022-06-28T00:00:00Z | 2022 | 6 | 2022-06-28T00:00:00Z | 2022-07-29T03:59:59Z | 2025-05-21T06:37:07Z | 2022-13697 | 0 | 0 | 09000064851a6bfd | |
| HUD-2021-0068-0033 | HUD | FR-6560-N-02 Tribal Intergovernmental Advisory Committee (TIAC) Membership Announcement HUD-2021-0068 | FR–6289–N–03 Notice of Intent To Establish a Tribal Intergovernmental Advisory Committee; Request for Comments on Committee Structure | Notice | 2022-06-22T00:00:00Z | 2022 | 6 | 2025-05-21T06:37:08Z | 2022-13262 | 0 | 0 | 0900006485181f75 | |||
| HUD-2021-0068-0014 | HUD | FR-6560-N-02 Tribal Intergovernmental Advisory Committee (TIAC) Membership Announcement HUD-2021-0068 | FR-6289-N-02 Notice of Intent To Establish a Tribal Intergovernmental Advisory Committee; Structure and Request for Nominations | Notice | 2022-03-31T00:00:00Z | 2022 | 3 | 2022-03-31T00:00:00Z | 2022-06-01T03:59:59Z | 2025-05-21T06:37:24Z | 2022-06775 | 0 | 0 | 0900006484fefb9a |
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;