documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EAC_FRDOC_0001" and posted_year = 2017 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-0066 | 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 | 2017-09-06T04:00:00Z | 2017 | 9 | 2017-09-06T04:00:00Z | 2017-11-07T04:59:59Z | 2017-11-07T02:01:41Z | 2017-18876 | 0 | 0 | 0900006482b0f676 | |
| EAC_FRDOC_0001-0065 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings: Technical Guidelines Development Committee | Notice | 2017-08-23T04:00:00Z | 2017 | 8 | 2017-08-23T04:00:00Z | 2017-08-23T11:26:42Z | 2017-17793 | 0 | 0 | 0900006482a9e37f | ||
| EAC_FRDOC_0001-0064 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2017-08-08T04:00:00Z | 2017 | 8 | 2017-08-08T04:00:00Z | 2017-08-08T11:49:04Z | 2017-16778 | 0 | 0 | 09000064829d679e | ||
| EAC_FRDOC_0001-0063 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings: Board of Advisors | Notice | 2017-05-08T04:00:00Z | 2017 | 5 | 2017-05-08T04:00:00Z | 2017-05-08T12:11:33Z | 2017-09204 | 0 | 0 | 090000648259874d | ||
| EAC_FRDOC_0001-0062 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings: Standards Board | Notice | 2017-04-12T04:00:00Z | 2017 | 4 | 2017-04-12T04:00:00Z | 2017-04-12T11:44:04Z | 2017-07401 | 0 | 0 | 090000648254dadc | ||
| EAC_FRDOC_0001-0061 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2017-03-28T04:00:00Z | 2017 | 3 | 2017-03-28T04:00:00Z | 2017-03-28T11:52:01Z | 2017-06219 | 0 | 0 | 090000648252b4bb | ||
| EAC_FRDOC_0001-0060 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings: Technical Guidelines Development Committee | Notice | 2017-01-27T05:00:00Z | 2017 | 1 | 2017-01-27T05:00:00Z | 2017-01-27T12:49:30Z | 2017-01884 | 0 | 0 | 09000064824989f5 |
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;