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 = 2014 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-2014-0004-0001 | ACF | Flexibility, Efficiency, and Modernization in Child Support Enforcement Programs ACF-2014-0004 | Flexibility, Efficiency, and Modernization in Child Support Enforcement Programs | Proposed Rule | 2014-11-17T05:00:00Z | 2014 | 11 | 2014-11-17T05:00:00Z | 2015-01-17T04:59:59Z | 2015-02-07T03:01:26Z | 2014-26822 | 0 | 0 | 0900006481932cf9 | |
| ACF-2015-0005-0001 | ACF | Native American Programs ACF-2015-0005 | Native American Programs | Proposed Rule | 2014-10-31T04:00:00Z | 2014 | 10 | 2014-10-31T04:00:00Z | 2015-01-30T04:59:59Z | 2015-03-17T16:41:48Z | 2014-25921 | 0 | 0 | 090000648190d1ab | |
| ACF-2014-0002-0001 | ACF | Statewide Data Indicators and National Standards for Child and Family Services Reviews ACF-2014-0002 | Statewide Data Indicators and National Standards for Child and Family Services Reviews | Proposed Rule | 2014-04-23T04:00:00Z | 2014 | 4 | 2014-04-23T04:00:00Z | 2014-05-24T03:59:59Z | 2014-12-08T18:36:43Z | 2014-09001 | 0 | 0 | 09000064816c34dd | |
| ACF-2014-0003-0001 | ACF | Runaway and Homeless Youth ACF-2014-0003 | Runaways and Homeless Youth | Proposed Rule | 2014-04-14T04:00:00Z | 2014 | 4 | 2014-04-14T04:00:00Z | 2014-06-14T03:59:59Z | 2014-08-12T17:12:05Z | 2014-08178 | 0 | 0 | 09000064816b205b | |
| ACF-2014-0001-0001 | ACF | Temporary Assistance for Needy Families (TANF) Program, State Reporting On Policies and Practices to Prevent Use of TANF Funds in Electronic Benefit Transfer Transactions in Specified Locations ACF-2014-0001 | Temporary Assistance for Needy Families Programs: State Reporting on Policies and Practices to Prevent Use of TANF Funds in Electronic Benefit Transfer Transactions in Specified Locations | Proposed Rule | 2014-02-06T05:00:00Z | 2014 | 2 | 2014-02-06T05:00:00Z | 2014-05-08T03:59:59Z | 2014-06-17T01:02:45Z | 2014-02488 | 0 | 0 | 090000648154c7a6 |
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;