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 = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-0050 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act, | Notice | 2015-12-31T05:00:00Z | 2015 | 12 | 2015-12-31T05:00:00Z | 2015-12-31T13:13:52Z | 2015-33082 | 0 | 0 | 0900006481dde96b | ||
| EAC_FRDOC_0001-0049 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2015-07-22T04:00:00Z | 2015 | 7 | 2015-07-22T04:00:00Z | 2015-07-22T13:08:43Z | 2015-18099 | 0 | 0 | 0900006481b97d8a | ||
| EAC_FRDOC_0001-0048 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2015-07-02T04:00:00Z | 2015 | 7 | 2015-07-02T04:00:00Z | 2015-07-02T13:10:28Z | 2015-16505 | 0 | 0 | 0900006481b67121 | ||
| EAC_FRDOC_0001-0047 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Procedural Manuals: Voting System Test Laboratory Program Manual, 2.0; Voting System Testing and Certification Program | Notice | 2015-04-14T04:00:00Z | 2015 | 4 | 2015-04-14T04:00:00Z | 2015-05-15T03:59:59Z | 2015-05-15T01:34:31Z | 2015-08567 | 0 | 0 | 0900006481aa4116 | |
| EAC_FRDOC_0001-0046 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Procedural Manuals: Voting System Testing and Certification Program, Version 2.0 | Notice | 2015-04-14T04:00:00Z | 2015 | 4 | 2015-04-14T04:00:00Z | 2015-05-15T03:59:59Z | 2015-04-14T12:37:37Z | 2015-08534 | 0 | 0 | 0900006481aa4506 | |
| EAC_FRDOC_0001-0043 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2015-04-13T04:00:00Z | 2015 | 4 | 2015-04-13T04:00:00Z | 2015-04-13T13:07:04Z | 2015-08530 | 0 | 0 | 0900006481aa1464 | ||
| EAC_FRDOC_0001-0044 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2015-04-13T04:00:00Z | 2015 | 4 | 2015-04-13T04:00:00Z | 2015-04-13T13:08:03Z | 2015-08531 | 0 | 0 | 0900006481aa14a6 | ||
| EAC_FRDOC_0001-0045 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2015-04-13T04:00:00Z | 2015 | 4 | 2015-04-13T04:00:00Z | 2015-04-13T13:10:00Z | 2015-08532 | 0 | 0 | 0900006481aa1db3 | ||
| EAC_FRDOC_0001-0042 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2015-03-26T04:00:00Z | 2015 | 3 | 2015-03-26T04:00:00Z | 2015-03-26T13:11:32Z | 2015-07090 | 0 | 0 | 0900006481a68c61 | ||
| EAC_FRDOC_0001-0041 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2015-02-20T05:00:00Z | 2015 | 2 | 2015-02-20T05:00:00Z | 2015-02-20T13:48:39Z | 2015-03608 | 0 | 0 | 0900006481a0c064 | ||
| EAC_FRDOC_0001-0040 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Meetings; Sunshine Act | Notice | 2015-02-06T05:00:00Z | 2015 | 2 | 2015-02-06T05:00:00Z | 2015-02-06T14:15:22Z | 2015-02569 | 0 | 0 | 09000064819f7e43 |
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;