documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "ACF_FRDOC_0001" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, last_modified, withdrawn, 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_FRDOC_0001-0030 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Temporary Assistance for Needy Families (TANF) Carry-Over Funds | Rule | 2009-05-27T04:00:00Z | 2009 | 5 | 2009-05-27T04:00:00Z | 2009-07-28T03:59:59Z | 2011-06-11T16:55:00Z | E9-12187 | 0 | 0 | 09000064809b8e5b | |
| ACF_FRDOC_0001-0029 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | State Parent Locator Service; Safeguarding Child Support Information | Rule | 2009-05-21T04:00:00Z | 2009 | 5 | 2009-05-21T04:00:00Z | 2011-06-11T16:54:59Z | E9-11936 | 0 | 0 | 09000064809a8355 | ||
| ACF_FRDOC_0001-0028 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | State Parent Locator Service; Safeguarding ChildSupport Information: Proposed Delay of Effective Date | Proposed Rule | 2009-04-15T04:00:00Z | 2009 | 4 | 2009-04-15T04:00:00Z | 2009-05-06T03:59:59Z | 2011-06-11T16:54:59Z | E9-08542 | 0 | 0 | 09000064809544f9 | |
| ACF_FRDOC_0001-0027 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | State Parent Locator Service; Safeguarding Child Support Information | Rule | 2009-03-20T04:00:00Z | 2009 | 3 | 2009-03-20T04:00:00Z | 2011-06-11T16:55:00Z | E9-06165 | 0 | 0 | 0900006480922738 | ||
| ACF_FRDOC_0001-0014 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Request for Public Comment Concerning Regulations for Transferring Children from the Placement and Care Responsibility of a State Title IV-E Agency: Tribal Title IV-E Agency and Tribal Share of Title IV-E Administration and Training Expenditures; Withdrawal | Proposed Rule | 2009-02-09T05:00:00Z | 2009 | 2 | 2009-02-09T05:00:00Z | 2009-02-09T15:36:51Z | E9-02236 | 0 | 0 | 090000648084d891 | ||
| ACF_FRDOC_0001-0013 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Regulations for Transferring Children from the Placement and Care Responsibility of a State Title IV-E Agency to a Tribal Title IV-E Agency; Tribal Share of Title IV-E Administration and Training Expenditures | Proposed Rule | 2009-01-26T00:00:00Z | 2009 | 1 | 2009-03-26T14:41:36Z | 0 | 1 | 090000648083097d |
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;