documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EAC-2019-0001" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- EAC 6
| 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-2019-0001-0018 | EAC | Agency Information Collection Activities; Proposed Collection; Comments Request; 2020 Election Administration and Voting Survey EAC-2019-0001 | 2020 Election Administration and Voting Survey (EAVS) | Supporting & Related Material | 2020-02-13T05:00:00Z | 2020 | 2 | 2020-02-13T15:02:13Z | 0 | 0 | 0900006484363f18 | ||||
| EAC-2019-0001-0019 | EAC | Agency Information Collection Activities; Proposed Collection; Comments Request; 2020 Election Administration and Voting Survey EAC-2019-0001 | 2020 EAVS Policy Survey | Supporting & Related Material | 2020-02-13T05:00:00Z | 2020 | 2 | 2020-02-13T15:02:20Z | 0 | 0 | 0900006484363f17 | ||||
| EAC-2019-0001-0017 | EAC | Agency Information Collection Activities; Proposed Collection; Comments Request; 2020 Election Administration and Voting Survey EAC-2019-0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: 2020 Election Administration and Voting Survey | Notice | 2020-02-11T05:00:00Z | 2020 | 2 | 2020-02-11T05:00:00Z | 2020-03-13T03:59:59Z | 2020-03-13T01:01:38Z | 2020-02688 | 0 | 0 | 090000648434e62b | |
| EAC-2019-0001-0002 | EAC | Agency Information Collection Activities; Proposed Collection; Comments Request; 2020 Election Administration and Voting Survey EAC-2019-0001 | 2020_EAVS_DRAFT_v7 for 60 day public comment | Supporting & Related Material | 2019-10-08T04:00:00Z | 2019 | 10 | 2019-11-19T16:40:30Z | 0 | 0 | 090000648402363f | ||||
| EAC-2019-0001-0003 | EAC | Agency Information Collection Activities; Proposed Collection; Comments Request; 2020 Election Administration and Voting Survey EAC-2019-0001 | 2020_EAVS_Policy Survey_DRAFT_v7 for 60 day public comment | Supporting & Related Material | 2019-10-08T04:00:00Z | 2019 | 10 | 2019-11-19T16:40:30Z | 0 | 0 | 0900006484023644 | ||||
| EAC-2019-0001-0001 | EAC | Agency Information Collection Activities; Proposed Collection; Comments Request; 2020 Election Administration and Voting Survey EAC-2019-0001 | Federal Register Notice - EAVS 60-day Comment Period - 10-08-19 | Notice | 2019-10-08T04:00:00Z | 2019 | 10 | 2019-10-08T04:00:00Z | 2019-12-07T04:59:59Z | 2020-02-06T16:32:51Z | 2019–21908 | 0 | 0 | 090000648405b3b9 |
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;