documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "ACF_FRDOC_0001" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-0073 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Runaway and Homeless Youth | Rule | 2016-12-20T05:00:00Z | 2016 | 12 | 2016-12-20T05:00:00Z | 2016-12-20T13:07:32Z | 2016-30241 | 0 | 0 | 0900006482429541 | ||
| ACF_FRDOC_0001-0071 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Head Start Program | Rule | 2016-12-06T05:00:00Z | 2016 | 12 | 2016-12-06T05:00:00Z | 2016-12-06T12:49:29Z | 2016-29183 | 0 | 0 | 09000064823e328e | ||
| ACF_FRDOC_0001-0070 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Family Violence Preventionand Services Programs | Rule | 2016-11-02T04:00:00Z | 2016 | 11 | 2016-11-02T04:00:00Z | 2016-11-02T12:08:55Z | 2016-26063 | 0 | 0 | 090000648236919d | ||
| ACF_FRDOC_0001-0069 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Child Care and Development Fund Program | Rule | 2016-09-30T04:00:00Z | 2016 | 9 | 2016-09-30T04:00:00Z | 2016-09-30T12:15:00Z | 2016-22986 | 0 | 0 | 0900006482284ad2 | ||
| ACF_FRDOC_0001-0067 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Civil Monetary Penalties | Rule | 2016-09-06T04:00:00Z | 2016 | 9 | 2016-09-06T04:00:00Z | 2016-09-06T11:46:43Z | 2016-18680 | 0 | 0 | 09000064821d2e08 | ||
| ACF_FRDOC_0001-0068 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Head Start Performance Standards | Rule | 2016-09-06T04:00:00Z | 2016 | 9 | 2016-09-06T04:00:00Z | 2016-09-06T11:47:13Z | 2016-19748 | 0 | 0 | 09000064821d2e59 | ||
| ACF_FRDOC_0001-0066 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Comprehensive Child Welfare Information System | Rule | 2016-06-02T04:00:00Z | 2016 | 6 | 2016-06-02T04:00:00Z | 2016-06-02T12:33:35Z | 2016-12509 | 0 | 0 | 0900006482008d1e | ||
| ACF_FRDOC_0001-0064 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Temporary Assistance for Needy Families Program: State Reporting on Policies and Practices to Prevent Use of Temporary Assistance for Needy Families Funds in Electronic Benefit Transfer Transactions in Specified Locations | Rule | 2016-01-15T05:00:00Z | 2016 | 1 | 2016-01-15T05:00:00Z | 2016-01-15T13:56:49Z | 2016-00608 | 0 | 0 | 0900006481e11b7b |
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;