documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-R04-OAR-2004-KY-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)
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EPA-R04-OAR-2004-KY-0001-0034 | EPA | None EPA-R04-OAR-2004-KY-0001 | Withdrawal of Direct Final Rule approving the 1-Hour Ozone Maintenance Plan Update for the Edmonson Area | Rule | Federal Register Document | 2005-02-04T05:00:00Z | 2005 | 2 | 2008-01-08T21:16:56Z | 5927 | 0 | 0 | 09000064800a8573 | ||
| EPA-R04-OAR-2004-KY-0001-0031 | EPA | None EPA-R04-OAR-2004-KY-0001 | Federal Register Direct Final Rule for Edmonson Update | Rule | Federal Register Document | 2004-12-17T05:00:00Z | 2004 | 12 | 2008-01-08T21:22:49Z | 75473 | 0 | 0 | 09000064800a8552 | ||
| EPA-R04-OAR-2004-KY-0001-0032 | EPA | None EPA-R04-OAR-2004-KY-0001 | Federal Register Proposed Rule for Edmonson Update | Rule | Federal Register Document | 2004-12-17T05:00:00Z | 2004 | 12 | 2008-01-08T21:16:56Z | 75495 | 0 | 0 | 09000064800a855a | ||
| EPA-R04-OAR-2004-KY-0001-0020 | EPA | None EPA-R04-OAR-2004-KY-0001 | Federal Register Final Rule for the Lexington 1-hour Ozone Maintenance Plan Update | Rule | Federal Register Document | 2004-09-16T04:00:00Z | 2004 | 9 | 2008-01-08T21:10:01Z | 55749 | 0 | 0 | 09000064800a8499 | ||
| EPA-R04-OAR-2004-KY-0001-0019 | EPA | None EPA-R04-OAR-2004-KY-0001 | Federal Register Proposed Rule for the Lexington Update | Proposed Rule | Federal Register Document | 2004-04-23T04:00:00Z | 2004 | 4 | 2004-04-23T04:00:00Z | 2005-01-19T04:59:59Z | 2008-01-08T21:16:56Z | 21983 | 0 | 0 | 09000064800a848e |
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;