documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "ACF", document_type = "Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, posted_date (date), comment_start_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-0012 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Child Support Enforcement Program | Rule | 2008-12-09T05:00:00Z | 2008 | 12 | 2008-12-09T05:00:00Z | 2011-06-11T16:55:01Z | E8-28660 | 0 | 0 | 09000064807d3c42 | ||
| ACF_FRDOC_0001-0010 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | State Parent Locator Service; Safeguarding Child Support Information | Rule | 2008-09-26T04:00:00Z | 2008 | 9 | 2008-09-26T04:00:00Z | 2011-06-11T16:55:00Z | E8-22054 | 0 | 0 | 0900006480727ea3 | ||
| ACF_FRDOC_0001-0008 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Cost Allocation Methodology Applicable to the Temporary Assistance for Needy Families Program | Rule | 2008-07-23T04:00:00Z | 2008 | 7 | 2008-07-23T04:00:00Z | 2011-06-11T16:54:58Z | E8-16854 | 0 | 0 | 090000648068f4a8 | ||
| ACF_FRDOC_0001-0007 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Child Support Enforcement Program; Medical Support | Rule | 2008-07-21T04:00:00Z | 2008 | 7 | 2008-07-21T04:00:00Z | 2011-06-11T16:54:58Z | E8-15771 | 0 | 0 | 0900006480689ee1 | ||
| ACF_FRDOC_0001-0004 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Chafee National Youth in Transition Database | Rule | 2008-02-26T05:00:00Z | 2008 | 2 | 2008-02-26T05:00:00Z | 2011-06-11T16:54:59Z | E8-03050 | 0 | 0 | 09000064803c736a | ||
| ACF_FRDOC_0001-0003 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Reauthorization of the Temporary Assistance for Needy Families (TANF) Program | Rule | 2008-02-05T05:00:00Z | 2008 | 2 | 2008-02-05T05:00:00Z | 2008-09-17T15:28:45Z | 08-00455 | 0 | 0 | 09000064803a85d6 | ||
| ACF_FRDOC_0001-0001 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Head Start Program | Rule | 2008-01-08T05:00:00Z | 2008 | 1 | 2008-01-08T05:00:00Z | 2011-06-11T16:54:59Z | E7-25462 | 0 | 0 | 09000064803970df |
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;