documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EAC_FRDOC_0001" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EAC_FRDOC_0001-0076 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings: Board of Advisors; Conference Call | Notice | 2018-11-13T05:00:00Z | 2018 | 11 | 2018-11-13T05:00:00Z | 2018-11-13T12:47:11Z | 2018-24631 | 0 | 0 | 09000064838cea6e | ||
| EAC_FRDOC_0001-0075 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Change of Address | Rule | 2018-10-25T04:00:00Z | 2018 | 10 | 2018-10-25T04:00:00Z | 2018-10-25T12:16:39Z | 2018-23150 | 0 | 0 | 0900006483849220 | ||
| EAC_FRDOC_0001-0074 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings: Board of Advisers; Conference Call | Notice | 2018-08-21T04:00:00Z | 2018 | 8 | 2018-08-21T04:00:00Z | 2018-08-21T11:39:47Z | 2018-18025 | 0 | 0 | 090000648363cfba | ||
| EAC_FRDOC_0001-0073 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Help America Vote Act State Plans: West Virginia | Notice | 2018-05-30T04:00:00Z | 2018 | 5 | 2018-05-30T04:00:00Z | 2018-05-30T11:57:58Z | 2018-11498 | 0 | 0 | 090000648330d304 | ||
| EAC_FRDOC_0001-0072 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings: Standards Board; Rescheduled | Notice | 2018-04-05T04:00:00Z | 2018 | 4 | 2018-04-05T04:00:00Z | 2018-04-05T12:05:10Z | 2018-06965 | 0 | 0 | 0900006483097773 | ||
| EAC_FRDOC_0001-0071 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings: Board of Advisors; Rescheduled | Notice | 2018-04-05T04:00:00Z | 2018 | 4 | 2018-04-05T04:00:00Z | 2018-04-05T12:00:28Z | 2018-06966 | 0 | 0 | 09000064830975c4 | ||
| EAC_FRDOC_0001-0070 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: 2018 Election Administration and Voting Survey | Notice | 2018-01-17T05:00:00Z | 2018 | 1 | 2018-01-17T05:00:00Z | 2018-02-17T04:59:59Z | 2018-01-17T12:59:19Z | 2018-00697 | 0 | 0 | 0900006482e18ad8 | |
| EAC_FRDOC_0001-0069 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings: Standards Board | Notice | 2018-01-09T05:00:00Z | 2018 | 1 | 2018-01-09T05:00:00Z | 2018-01-09T12:47:24Z | 2018-00167 | 0 | 0 | 0900006482dc1e46 | ||
| EAC_FRDOC_0001-0068 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings: Board of Advisors | Notice | 2018-01-05T05:00:00Z | 2018 | 1 | 2018-01-05T05:00:00Z | 2018-01-05T12:48:38Z | 2018-00054 | 0 | 0 | 0900006482d9afa3 | ||
| EAC_FRDOC_0001-0067 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2018-01-03T05:00:00Z | 2018 | 1 | 2018-01-03T05:00:00Z | 2018-01-03T12:44:38Z | 2017-28500 | 0 | 0 | 0900006482d90f78 |
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;