documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "ACF", document_type = "Rule" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ACF-2026-0067-0001 | ACF | COVID-19 Mitigation Policy Requirement in Head Start Programs; Recission ACF-2026-0067 | COVID-19 Mitigation Policy Requirement in Head Start Programs; Recission | Rule | 2025-12-19T05:00:00Z | 2025 | 12 | 2025-12-19T05:00:00Z | 2026-01-21T04:59:59Z | 2026-02-13T02:41:30Z | 2025-23452 | 0 | 0 | 09000064b90f522f | |
| ACF_FRDOC_0001-0150 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Name Change from Office of Child Support Enforcement to Office of Child Support Services; Withdrawal | Rule | 2025-04-23T04:00:00Z | 2025 | 4 | 2025-04-23T04:00:00Z | 2025-04-23T12:20:56Z | 2025-06958 | 0 | 0 | 0900006486aad553 | ||
| ACF-2025-0004-0001 | ACF | UC Program Foundational Rule Update on Info Sharing ACF-2025-0004 | Unaccompanied Children Program Foundational Rule; Update to Accord With Statutory Requirements | Rule | 2025-03-25T00:00:00Z | 2025 | 3 | 2025-03-25T00:00:00Z | 2025-05-28T03:59:59Z | 2025-05-29T09:01:22Z | 2025-04971 | 0 | 0 | 0900006486a3997a | |
| ACF-2025-0001-0002 | ACF | Name Change From Office of Child Support Enforcement to Office of Child Support Services ACF-2025-0001 | Name Change From Office of Child Support Enforcement to Office of Child Support Services; Reopening of Comment Period and Delaying Effective Date | Rule | 2025-02-27T05:00:00Z | 2025 | 2 | 2025-02-27T05:00:00Z | 2025-04-01T03:59:59Z | 2025-04-01T01:00:35Z | 2025-03147 | 0 | 0 | 0900006486992b91 | |
| ACF-2024-0015-0002 | ACF | ORR Privacy Act Exemption DFR for the Investigations of Child Abuse and Neglect SORN 09-80-0323 ACF-2024-0015 | Privacy Act; Implementation | Rule | 2025-02-03T05:00:00Z | 2025 | 2 | 2025-02-03T17:25:46Z | 2025-02158 | 0 | 0 | 0900006486922afc |
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;