documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "EAC" and document_type = "Rule" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-0243 | EAC | Recently Posted EAC Rules and Notices. EAC_FRDOC_0001 | Uniform Administrative Requirements, Cost Principles, and Audit Requirements for Federal Awards | Rule | 2024-12-17T05:00:00Z | 2024 | 12 | 2024-12-17T05:00:00Z | 2024-12-17T13:15:48Z | 2024-29685 | 0 | 0 | 0900006486877d1e | ||
| 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-2010-0036-0001 | EAC | Change Of Address: Technical Amendment EAC-2010-0036 | Change Of Address: Technical Amendment | Rule | 2010-08-16T04:00:00Z | 2010 | 8 | 2010-08-16T04:00:00Z | 2011-02-03T03:08:21Z | 2010-20089 | 0 | 0 | 0900006480b31674 | ||
| EAC-2010-0022-0002 | EAC | Nonprocurement Debarment and Suspension EAC-2010-0022 | Nonprocurement Debarment and Suspension | Rule | 2010-07-19T04:00:00Z | 2010 | 7 | 2010-07-19T04:00:00Z | 2011-02-03T02:55:20Z | 2010-17429 | 0 | 0 | 0900006480b1c660 | ||
| EAC-2009-0022-0001 | EAC | Reorganization of National Voter Registration Act Regulations EAC-2009-0022 | Reorganization of National Voter Registration Act Regulations | Rule | 2009-07-29T04:00:00Z | 2009 | 7 | 2009-07-29T04:00:00Z | 2009-07-29T17:05:01Z | E9-18031 | 0 | 0 | 09000064809fd5df | ||
| EAC-2009-0017-0001 | EAC | Debt Collection EAC-2009-0017 | Debt Collection | Rule | 2009-06-12T04:00:00Z | 2009 | 6 | 2009-06-12T04:00:00Z | 2009-06-12T13:58:37Z | E9-13859 | 0 | 0 | 09000064809cda50 | ||
| EAC-2008-0040-0001 | EAC | Freedom of Information, Government in the Sunshine, and Privacy Act Requirements EAC-2008-0040 | Freedom of Information, Government in the Sunshine, and Privacy Act Requirements | Rule | 2008-09-18T04:00:00Z | 2008 | 9 | 2008-09-18T04:00:00Z | 2011-06-11T17:15:17Z | E8-21801 | 0 | 0 | 090000648070cd6b | ||
| EAC-2008-0039-0001 | EAC | Testimony by Commission Employees Relating to Official Information and Production of Official Records in Legal Proceedings, Standards of Conduct for Commission Employees, and Nondiscrimination on the Basis of Handicap in Programs or Activities Conducted by the U.S. Election Assistance Commission EAC-2008-0039 | Testimony by Commission Employees Relating to Official Information and Production of Official Records in Legal Proceedings, Standards of Conduct for Commission Employees, and Nondiscrimination on the Basis of Handicap in Programs or Activities Conducted by the U.S. Election Assistance Commission | Rule | 2008-09-18T04:00:00Z | 2008 | 9 | 2008-09-18T04:00:00Z | 2011-06-11T17:15:17Z | E8-21795 | 0 | 0 | 090000648070cd55 |
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;