documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "EAC" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EAC-2012-0006-0001 | EAC | Publication of State Plan Pursuant to the Help America Vote Act EAC-2012-0006 | Publication of State Plan Pursuant to the Help America Vote Act | Notice | 2012-12-20T05:00:00Z | 2012 | 12 | 2012-12-20T05:00:00Z | 2012-12-20T13:39:25Z | 2012-30685 | 0 | 0 | 0900006481193abc | ||
| EAC-2012-0005-0001 | EAC | Proposed Requirements for Version 1.1 of Voluntary Voting System Guidelines EAC-2012-0005 | Proposed Requirements for Version 1.1 of Voluntary Voting System Guidelines | Notice | 2012-10-01T04:00:00Z | 2012 | 10 | 2012-10-01T04:00:00Z | 2013-01-15T04:59:59Z | 2012-10-01T13:22:54Z | 2012-24029 | 0 | 0 | 090000648112f010 | |
| EAC-2012-0004-0001 | EAC | Proposed Requirements for Version 1.1 of the Voluntary Voting System Guidelines EAC-2012-0004 | Proposed Requirements for Version 1.1 of the Voluntary Voting System Guidelines | Notice | 2012-09-06T04:00:00Z | 2012 | 9 | 2012-09-06T04:00:00Z | 2012-12-06T04:59:59Z | 2012-09-06T12:59:11Z | 2012-21895 | 0 | 0 | 0900006481109199 | |
| EAC-2012-0003-0001 | EAC | Agency Information Collection Activities; Proposals, Submissions, and Approvals EAC-2012-0003 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2012-05-17T04:00:00Z | 2012 | 5 | 2012-05-17T04:00:00Z | 2012-06-19T03:59:59Z | 2012-05-17T12:27:20Z | 2012-11919 | 0 | 0 | 09000064810123c8 | |
| EAC-2012-0002-0001 | EAC | Publication of State Plan Pursuant to Help America Vote Act EAC-2012-0002 | Publication of State Plan Pursuant to Help America Vote Act | Notice | 2012-04-18T04:00:00Z | 2012 | 4 | 2012-04-18T04:00:00Z | 2012-04-18T13:32:13Z | 2012-09280 | 0 | 0 | 0900006480ff340d | ||
| EAC-2012-0001-0001 | EAC | Agency Information Collection Activities;Proposals, Submissions, and Approvals: Election Administration in Urban and Rural Areas EAC-2012-0001 | Agency Information Collection Activities;Proposals, Submissions, and Approvals: Election Administration in Urban and Rural Areas | Notice | 2012-02-21T05:00:00Z | 2012 | 2 | 2012-02-21T05:00:00Z | 2012-04-24T03:59:59Z | 2012-02-21T14:00:42Z | 2012-03737 | 0 | 0 | 0900006480fbbc99 |
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;