documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-R01-OAR-2009-0305" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, 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-R01-OAR-2009-0305-0008 | EPA | None EPA-R01-OAR-2009-0305 | Copies of Notices of Cancellation of Public Hearing Published in the New London Day and Norwich Bulletin. | Supporting & Related Material | State/Tribal Submittal | 2009-09-28T04:00:00Z | 2009 | 9 | 2009-09-28T17:18:10Z | 0 | 0 | 090000648096ec16 | |||
| EPA-R01-OAR-2009-0305-0010 | EPA | None EPA-R01-OAR-2009-0305 | Federal Register Direct Final Rule as Signed by the Regional Administrator. | Supporting & Related Material | Signed Federal Register Document | 2009-09-28T04:00:00Z | 2009 | 9 | 2009-09-28T17:18:20Z | 0 | 0 | 0900006480a0ccdf | |||
| EPA-R01-OAR-2009-0305-0004 | EPA | None EPA-R01-OAR-2009-0305 | The Mohegan Tribe of Indians of Connecticut Resolution No. 2009-28, Approval of Amended Tribal Air Program Area Wide NOx Emission Limitation Regulation (Tribal Implementation Plan "TIP"). | Supporting & Related Material | State/Tribal Submittal | 2009-09-28T04:00:00Z | 2009 | 9 | 2009-09-28T17:17:28Z | 0 | 0 | 090000648096ec0b | |||
| EPA-R01-OAR-2009-0305-0006 | EPA | None EPA-R01-OAR-2009-0305 | A Redline Version of the Amended Tribal Implementation Plan Showing the Changes Adopted by the Tribe. | Supporting & Related Material | State/Tribal Submittal | 2009-09-28T04:00:00Z | 2009 | 9 | 2009-09-28T17:17:55Z | 0 | 0 | 090000648096ec12 | |||
| EPA-R01-OAR-2009-0305-0005 | EPA | None EPA-R01-OAR-2009-0305 | The Mohegan Tribal Gaming Authority Resolution No. MTGA 2009-07, Confirming the Application of the TIP to the Mohegan Tribal Gaming Authority. | Supporting & Related Material | State/Tribal Submittal | 2009-09-28T04:00:00Z | 2009 | 9 | 2009-09-28T17:17:50Z | 0 | 0 | 090000648096ec0f | |||
| EPA-R01-OAR-2009-0305-0001 | EPA | None EPA-R01-OAR-2009-0305 | Approval and Promulgation of Air Quality Implementation Plans; Mohegan Tribe of Indians of Connecticut | Proposed Rule | 2009-09-28T04:00:00Z | 2009 | 9 | 2009-09-28T04:00:00Z | 2009-10-29T03:59:59Z | 2009-09-28T17:14:57Z | E9-23262 | 0 | 0 | 0900006480a2ea33 | |
| EPA-R01-OAR-2009-0305-0007 | EPA | None EPA-R01-OAR-2009-0305 | Copies of Public Notices Published by the Tribe in the New London Day and Norwich Bulletin Inviting Public Comment on the Amended Tribal Implementation Plan. | Supporting & Related Material | State/Tribal Submittal | 2009-09-28T04:00:00Z | 2009 | 9 | 2009-09-28T17:18:06Z | 0 | 0 | 090000648096ec14 | |||
| EPA-R01-OAR-2009-0305-0009 | EPA | None EPA-R01-OAR-2009-0305 | Federal Register Notice of Proposed Rulemaking Associated with a Direct Final Rule as Signed by the Regional Administrator. | Supporting & Related Material | Signed Federal Register Document | 2009-09-28T04:00:00Z | 2009 | 9 | 2009-09-28T17:18:15Z | 0 | 0 | 0900006480a0ccdc | |||
| EPA-R01-OAR-2009-0305-0003 | EPA | None EPA-R01-OAR-2009-0305 | Cover Letter from the Mohegan Tribe of Indians of Connecticut to Amend Mohegan Tribal Air Program Area Wide NOx Emission Limitation Regulation. | Supporting & Related Material | State/Tribal Submittal | 2009-09-28T04:00:00Z | 2009 | 9 | 2009-09-28T17:17:19Z | 0 | 0 | 090000648096ec08 | |||
| EPA-R01-OAR-2009-0305-0002 | EPA | None EPA-R01-OAR-2009-0305 | Approval and Promulgation of Air Quality Implementation Plans; Mohegan Tribe of Indians of Connecticut | Rule | 2009-09-28T04:00:00Z | 2009 | 9 | 2009-09-28T04:00:00Z | 2009-10-29T03:59:59Z | 2009-09-28T17:15:54Z | E9-23259 | 0 | 0 | 0900006480a2ea53 |
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;