documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EAC_FRDOC_0001" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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_FRDOC_0001-0266 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2025-08-27T04:00:00Z | 2025 | 8 | 2025-08-27T04:00:00Z | 2025-08-27T16:27:00Z | 2025-16432 | 0 | 0 | 09000064b8f1ce9b | ||
| EAC_FRDOC_0001-0264 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Voting System Manufacturer Registration, Application for Testing, Anomaly Reporting and Root Cause Analysis; Correction | Notice | 2025-07-29T04:00:00Z | 2025 | 7 | 2025-07-29T04:00:00Z | 2025-07-29T16:04:58Z | 2025-14299 | 0 | 0 | 09000064b8eb69d7 | ||
| EAC_FRDOC_0001-0262 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2025-07-21T04:00:00Z | 2025 | 7 | 2025-07-21T04:00:00Z | 2025-07-21T16:30:24Z | 2025-13588 | 0 | 0 | 09000064b8e8baa8 | ||
| EAC_FRDOC_0001-0259 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2025-07-14T04:00:00Z | 2025 | 7 | 2025-07-14T04:00:00Z | 2025-07-14T16:16:01Z | 2025-13167 | 0 | 0 | 09000064b8e6e3e0 | ||
| EAC_FRDOC_0001-0254 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Technical Guidelines Development Committee; Vacancy | Notice | 2025-05-23T00:00:00Z | 2025 | 5 | 2025-05-23T00:00:00Z | 2025-05-23T16:08:34Z | 2025-09336 | 0 | 0 | 09000064b8db4c57 | ||
| EAC_FRDOC_0001-0250 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Charter Amendments, Establishments, Renewals and Terminations: Federal Advisory Committees | Notice | 2025-04-15T04:00:00Z | 2025 | 4 | 2025-04-15T04:00:00Z | 2025-04-15T12:16:41Z | 2025-06341 | 0 | 0 | 0900006486a92811 | ||
| EAC_FRDOC_0001-0248 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2025-04-03T04:00:00Z | 2025 | 4 | 2025-04-03T04:00:00Z | 2025-04-19T03:59:59Z | 2025-04-19T01:00:36Z | 2025-05827 | 0 | 0 | 0900006486a651a2 | |
| EAC_FRDOC_0001-0249 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2025-04-03T00:00:00Z | 2025 | 4 | 2025-04-03T00:00:00Z | 2025-05-03T03:59:59Z | 2025-05-06T01:34:00Z | 2025-05830 | 0 | 0 | 0900006486a651d5 | |
| EAC_FRDOC_0001-0246 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: National Mail Voter Registration Form | Notice | 2025-03-04T05:00:00Z | 2025 | 3 | 2025-03-04T05:00:00Z | 2025-04-05T03:59:59Z | 2025-04-05T01:00:40Z | 2025-03460 | 0 | 0 | 09000064869a8001 | |
| EAC_FRDOC_0001-0245 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2025-02-03T05:00:00Z | 2025 | 2 | 2025-02-03T05:00:00Z | 2025-02-03T12:59:17Z | 2025-02202 | 0 | 0 | 0900006486922ba9 | ||
| EAC_FRDOC_0001-0244 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: National Mail Voter Registration Form; Correction | Notice | 2025-01-22T05:00:00Z | 2025 | 1 | 2025-01-22T05:00:00Z | 2025-01-22T12:55:08Z | 2025-01455 | 0 | 0 | 09000064868edfc4 |
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;