documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "EAC" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2025-0002-0001 | EAC | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Voting System Manufacturer Registration. EAC-2025-0002 | Manufacturer Registration Application | Other | 2025-05-15T04:00:00Z | 2025 | 5 | 2025-05-15T04:00:00Z | 2025-05-21T22:07:48Z | 0 | 0 | 0900006486a7b17d | |||
| EAC-2025-0003-0001 | EAC | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Voting System Anomaly Report EAC-2025-0003 | Voting System Anomaly Reporting Form | Other | 2025-05-15T04:00:00Z | 2025 | 5 | 2025-05-15T04:00:00Z | 2025-05-21T22:07:48Z | 0 | 0 | 0900006486a7b26a | |||
| EAC-2025-0002-0002 | EAC | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Voting System Manufacturer Registration. EAC-2025-0002 | Application for Voting System Testing | Other | 2025-05-15T04:00:00Z | 2025 | 5 | 2025-05-15T04:00:00Z | 2025-05-21T22:07:48Z | 0 | 0 | 0900006486a7b15d | |||
| EAC-2023-0001-0004 | EAC | VVSG 2.0 Update Public Comments 2023 EAC-2023-0001 | VVSG 2.0 Update Comment Template | Other | 2023-06-05T04:00:00Z | 2023 | 6 | 2023-06-05T04:00:00Z | 2023-06-05T18:39:00Z | 0 | 0 | 09000064856f533b | |||
| EAC-2022-0002-0001 | EAC | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Voting System Manufacturer Registration. EAC-2022-0002 | Manufacturer Registration Application 001C 2022 | Other | 2022-05-20T04:00:00Z | 2022 | 5 | 2022-05-20T04:00:00Z | 2022-07-20T03:59:59Z | 2022-07-07T01:00:50Z | 0 | 0 | 09000064850539f0 | ||
| EAC-2022-0004-0001 | EAC | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Root Cause Analysis EAC-2022-0004 | Voting System Root Cause Analysis version 2 | Other | 2022-05-20T04:00:00Z | 2022 | 5 | 2022-05-20T04:00:00Z | 2022-07-20T03:59:59Z | 2022-05-20T18:17:28Z | 0 | 0 | 0900006485067266 | ||
| EAC-2022-0003-0001 | EAC | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Voting System Anomaly Report EAC-2022-0003 | Voting System Anomaly Reporting Form 003C 2022 | Other | 2022-05-20T04:00:00Z | 2022 | 5 | 2022-05-20T04:00:00Z | 2022-07-20T03:59:59Z | 2022-07-07T01:00:47Z | 0 | 0 | 0900006485053b7b | ||
| EAC-2022-0001-0001 | EAC | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Voting System Application for Testing EAC-2022-0001 | Application for Voting System Testing 002C 2022 | Other | 2022-05-19T04:00:00Z | 2022 | 5 | 2022-05-19T04:00:00Z | 2022-07-20T03:59:59Z | 2022-05-19T18:17:29Z | 0 | 0 | 09000064850539f1 | ||
| EAC-2021-0001-0002 | EAC | Request for Comments: VVSG Lifecycle Policy EAC-2021-0001 | VVSG Lifecycle Policy DRAFT Line Numbered | Other | 2021-11-09T00:00:00Z | 2021 | 11 | 2021-11-09T22:17:37Z | 0 | 1 | 0900006484e38c2e | ||||
| EAC-2021-0001-0001 | EAC | Request for Comments: VVSG Lifecycle Policy EAC-2021-0001 | VVSG Lifecycle Policy DRAFT Line Numbered | Other | 2021-11-08T05:00:00Z | 2021 | 11 | 2021-11-08T05:00:00Z | 2021-12-15T04:59:59Z | 2021-12-15T02:00:25Z | 0 | 0 | 0900006484dd854a | ||
| EAC-2013-0004-0429 | EAC | National Mail Voter Registration Form EAC-2013-0004 | Memorandum of Decision Concerning State Requests to Include Additional Proof-of-Citizenship Instructions on the National Mail Voter Registration Form | Other | 2014-01-20T05:00:00Z | 2014 | 1 | 2013-12-24T05:00:00Z | 2014-01-04T04:59:59Z | 2014-01-21T00:12:03Z | 0 | 0 | 0900006481517936 |
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;