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 = "Proposed Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ACF-2009-0001-0001 | ACF | Intergovernmental Rule ACF-2009-0001 | Child Support Enforcement Program; Intergovernmental Child Support | Proposed Rule | 2008-12-08T05:00:00Z | 2008 | 12 | 2008-12-08T05:00:00Z | 2009-02-07T04:59:59Z | 2011-06-11T16:54:56Z | E8-28812 | 0 | 0 | 09000064807d201c | |
| ACF-2008-0001-0001 | ACF | Temporary Assistance for Needy Families (TANF) Program, Elimination of Enhanced Caseload Reduction Credit for Excess Maintenance-of-Effort Expenditures ACF-2008-0001 | Temporary Assistance for Needy Families (TANF) Program, Elimination of Enhanced Caseload Reduction Credit for Excess Maintenance-of-Effort Expenditures | Proposed Rule | 2008-08-08T04:00:00Z | 2008 | 8 | 2008-08-08T04:00:00Z | 2008-10-08T03:59:59Z | 2011-06-11T16:54:56Z | E8-18208 | 0 | 0 | 09000064806b74f6 | |
| ACF_FRDOC_0001-0006 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | State Systems Advance Planning Document (APD) Process | Proposed Rule | 2008-03-07T05:00:00Z | 2008 | 3 | 2008-03-07T05:00:00Z | 2008-05-07T03:59:59Z | 2011-06-11T16:55:02Z | E8-04009 | 0 | 0 | 09000064803ead2a | |
| ACF_FRDOC_0001-0005 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Limitation on Use of Funds and Eligibility for Funds Made Available by the Office of Refugee Resettlement, Within the Administration for Children and Families, of the Department of Health and Human Services, To Monitor and Combat Trafficking in Persons | Proposed Rule | 2008-02-26T05:00:00Z | 2008 | 2 | 2008-02-26T05:00:00Z | 2008-04-29T03:59:59Z | 2011-06-11T16:54:58Z | E8-03489 | 0 | 0 | 09000064803e6654 | |
| ACF-2007-0125-0001 | ACF | Adoption and Foster Care Analysis and Reporting System ACF-2007-0125 | Adoption and Foster Care Analysis and Reporting System | Proposed Rule | 2008-01-11T05:00:00Z | 2008 | 1 | 2008-01-11T05:00:00Z | 2008-03-12T03:59:59Z | 2011-06-11T16:54:55Z | E7-24860 | 0 | 0 | 09000064803993a3 |
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;