documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "EPA-R09-OAR-2006-0590" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_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-R09-OAR-2006-0590-0028 | EPA | None EPA-R09-OAR-2006-0590 | Approval and Promulgation of Implementation Plans; Revisions to the Nevada State Implementation Plan; Requests for Rescission | Rule | 2007-11-02T04:00:00Z | 2007 | 11 | 2007-11-02T04:00:00Z | 2008-01-08T21:23:47Z | E7-21447 | 0 | 0 | 090000648035ed58 | ||
| EPA-R09-OAR-2006-0590-0029 | EPA | None EPA-R09-OAR-2006-0590 | Approval and Promulgation of Implementation Plans; Revisions to the Nevada State Implementation Plan; Requests for Rescissions | Supporting & Related Material | Federal Register Document | 2007-11-02T04:00:00Z | 2007 | 11 | 2007-11-02T19:38:15Z | 0 | 0 | 09000064802519ea | |||
| EPA-R09-OAR-2006-0590-0027 | EPA | None EPA-R09-OAR-2006-0590 | Approval and Promulgation of Implementation Plans; Revisions to the Nevada State Implementation Plan; Request for Rescission | Rule | 2007-06-13T04:00:00Z | 2007 | 6 | 2007-06-13T04:00:00Z | 2008-01-08T21:23:47Z | E7-11321 | 0 | 0 | 0900006480250cf7 | ||
| EPA-R09-OAR-2006-0590-0026 | EPA | None EPA-R09-OAR-2006-0590 | Approval and Promulgation of Implementation Plans; Revisions to the Nevada State Implementation Plan; Requests for Rescissions | Supporting & Related Material | Federal Register Document | 2007-01-04T05:00:00Z | 2007 | 1 | 2007-01-11T16:45:49Z | 0 | 0 | 09000064801ec48b | |||
| EPA-R09-OAR-2006-0590-0022 | EPA | None EPA-R09-OAR-2006-0590 | Public Participation Documentation dated November 18, 1991 | Supporting & Related Material | Certification | 2007-01-04T05:00:00Z | 2007 | 1 | 2007-01-11T16:45:48Z | 0 | 0 | 09000064801eb06d | |||
| EPA-R09-OAR-2006-0590-0020 | EPA | None EPA-R09-OAR-2006-0590 | Public Participation Documentation dated August 28-29, 1985 | Supporting & Related Material | Certification | 2007-01-04T05:00:00Z | 2007 | 1 | 2007-01-11T16:45:47Z | 0 | 0 | 09000064801eb05e | |||
| EPA-R09-OAR-2006-0590-0025 | EPA | None EPA-R09-OAR-2006-0590 | Public Participation Documentation dated August 19, 2004 | Supporting & Related Material | Certification | 2007-01-04T05:00:00Z | 2007 | 1 | 2007-01-11T16:45:49Z | 0 | 0 | 09000064801eb08b | |||
| EPA-R09-OAR-2006-0590-0019 | EPA | None EPA-R09-OAR-2006-0590 | Memorandum dated November 17, 2006 | Supporting & Related Material | Letter, Memorandum, Email | 2007-01-04T05:00:00Z | 2007 | 1 | 2007-01-11T16:45:47Z | 0 | 0 | 09000064801eb048 | |||
| EPA-R09-OAR-2006-0590-0024 | EPA | None EPA-R09-OAR-2006-0590 | Public Participation Documentation dated September 18, 2003 | Supporting & Related Material | Certification | 2007-01-04T05:00:00Z | 2007 | 1 | 2007-01-11T16:45:49Z | 0 | 0 | 09000064801eb07f | |||
| EPA-R09-OAR-2006-0590-0021 | EPA | None EPA-R09-OAR-2006-0590 | Public Participation Documentation dated September 3, 1987 | Supporting & Related Material | Certification | 2007-01-04T05:00:00Z | 2007 | 1 | 2007-01-11T16:45:48Z | 0 | 0 | 09000064801eb067 | |||
| EPA-R09-OAR-2006-0590-0023 | EPA | None EPA-R09-OAR-2006-0590 | Public Participation Documentation dated January 22, 1998 | Supporting & Related Material | Certification | 2007-01-04T05:00:00Z | 2007 | 1 | 2007-01-11T16:45:48Z | 0 | 0 | 09000064801eb078 | |||
| EPA-R09-OAR-2006-0590-0018 | EPA | None EPA-R09-OAR-2006-0590 | Approval and Promulgation of Implementation Plans; Revisions to the Nevada State Implementation Plan; Requests for Rescission | Rule | 2007-01-03T05:00:00Z | 2007 | 1 | 2007-01-03T05:00:00Z | 2008-01-08T21:15:25Z | E6-22408 | 0 | 0 | 09000064801f1be1 |
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;