documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "ACF", document_type = "Proposed Rule" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, comment_end_date, 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-2015-0011-0001 | ACF | Child Care NPRM ACF-2015-0011 | Child Care and Development Fund Program | Proposed Rule | 2015-12-24T05:00:00Z | 2015 | 12 | 2015-12-24T05:00:00Z | 2016-02-23T04:59:59Z | 2016-03-04T14:00:07Z | 2015-31883 | 0 | 0 | 0900006481dd05e7 | |
| ACF-2015-0009-0039 | ACF | CCWIS NPRM ACF-2015-0009 | Comprehensive Child Welfare Information System | Proposed Rule | 2015-11-04T05:00:00Z | 2015 | 11 | 2015-11-04T18:30:41Z | 2015-28057 | 0 | 0 | 0900006481d0d4bb | |||
| ACF-2015-0010-0001 | ACF | Family Violence Prevention and Services Programs ACF-2015-0010 | Family Violence Prevention and Services Programs | Proposed Rule | 2015-10-14T04:00:00Z | 2015 | 10 | 2015-10-14T04:00:00Z | 2015-12-15T04:59:59Z | 2015-12-15T22:01:15Z | 2015-25726 | 0 | 0 | 0900006481cc8e9a | |
| ACF-2015-0008-0124 | ACF | Head Start NPRM ACF-2015-0008 | Head Start Performance Standards; Extension of Comment Period | Proposed Rule | 2015-08-12T04:00:00Z | 2015 | 8 | 2015-08-12T04:00:00Z | 2015-09-18T03:59:59Z | 2015-09-19T01:30:40Z | 2015-19747 | 0 | 0 | 0900006481c19c1d | |
| ACF-2015-0009-0001 | ACF | CCWIS NPRM ACF-2015-0009 | Comprehensive Child Welfare Information System | Proposed Rule | 2015-08-11T04:00:00Z | 2015 | 8 | 2015-08-11T04:00:00Z | 2015-11-13T04:59:59Z | 2015-11-13T02:30:20Z | 2015-19087 | 0 | 0 | 0900006481c0322e | |
| ACF_FRDOC_0001-0058 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Updating Participation in Programs by Faith-Based or Religious Organizations and Providing for Equal Treatment of Program Participants | Proposed Rule | 2015-08-06T04:00:00Z | 2015 | 8 | 2015-08-06T04:00:00Z | 2015-10-06T03:59:59Z | 2015-10-10T21:33:32Z | 2015-18256 | 0 | 0 | 0900006481bc762f | |
| ACF-2015-0008-0001 | ACF | Head Start NPRM ACF-2015-0008 | Head Start Performance Standards | Proposed Rule | 2015-06-19T04:00:00Z | 2015 | 6 | 2015-06-19T04:00:00Z | 2015-09-18T03:59:59Z | 2015-10-07T21:23:16Z | 2015-14379 | 0 | 0 | 0900006481b4828a | |
| ACF-2015-0001-0128 | ACF | AFCARS (through 2016) ACF-2015-0001 | Adoption and Foster Care Analysis and Reporting System - Intent to publish a supplemental notice of proposed rulemaking | Proposed Rule | 2015-04-02T04:00:00Z | 2015 | 4 | 2015-04-02T04:00:00Z | 2016-03-02T18:26:02Z | 2015-07574 | 0 | 0 | 0900006481a88110 | ||
| ACF-2015-0001-0001 | ACF | AFCARS (through 2016) ACF-2015-0001 | Adoption and Foster Care Analysis and Reporting System | Proposed Rule | 2015-02-09T05:00:00Z | 2015 | 2 | 2015-02-09T05:00:00Z | 2015-04-11T03:59:59Z | 2017-09-15T01:06:52Z | 2015-02354 | 0 | 0 | 09000064819fac31 |
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;