documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "ACF_FRDOC_0001" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-0100 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Equal Participation of Faith-Based Organizations in the Federal Agencies' Programs and Activities | Rule | 2020-12-17T05:00:00Z | 2020 | 12 | 2020-12-17T05:00:00Z | 2020-12-17T13:20:01Z | 2020-27084 | 0 | 0 | 09000064849a460a | ||
| ACF_FRDOC_0001-0099 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Regulatory Clean Up Initiative;Correction | Rule | 2020-12-17T05:00:00Z | 2020 | 12 | 2020-12-17T05:00:00Z | 2020-12-17T13:19:47Z | 2020-26389 | 0 | 0 | 09000064849a4606 | ||
| ACF_FRDOC_0001-0097 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Regulatory Clean Up Initiative | Rule | 2020-11-16T05:00:00Z | 2020 | 11 | 2020-11-16T05:00:00Z | 2020-11-16T12:50:02Z | 2020-21774 | 0 | 0 | 090000648496038b | ||
| ACF_FRDOC_0001-0096 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Head Start Designation Renewal System | Rule | 2020-10-16T04:00:00Z | 2020 | 10 | 2020-10-16T04:00:00Z | 2020-10-16T11:43:48Z | 2020-22960 | 0 | 0 | 0900006484912dab | ||
| ACF_FRDOC_0001-0094 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Head Start Designation Renewal System | Rule | 2020-08-28T04:00:00Z | 2020 | 8 | 2020-08-28T04:00:00Z | 2020-08-28T12:10:21Z | 2020-17746 | 0 | 0 | 09000064848275d4 | ||
| ACF_FRDOC_0001-0093 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Child Support | Rule | 2020-06-09T04:00:00Z | 2020 | 6 | 2020-06-09T04:00:00Z | 2020-06-09T11:53:35Z | 2020-12188 | 0 | 0 | 09000064846d9bae | ||
| ACF_FRDOC_0001-0091 | ACF | Recently Posted ACF Rules and Notices. ACF_FRDOC_0001 | Secretarial Determination to Lower Head Start Center-Based Service Duration Requirement | Rule | 2020-01-30T05:00:00Z | 2020 | 1 | 2020-01-30T05:00:00Z | 2020-01-30T12:44:28Z | 2020-00635 | 0 | 0 | 090000648430a37f |
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;