documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "EPA" and docket_id = "EPA-R01-OAR-2015-0654" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, 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-2015-0654-0010 | EPA | None EPA-R01-OAR-2015-0654 | Air Quality State Implementation Plans; Approvals and Promulgations: Connecticut; Decommissioning of Stage II Vapor Recovery Systems | Rule | 2017-12-15T05:00:00Z | 2017 | 12 | 2017-12-15T05:00:00Z | 2017-12-18T20:04:56Z | 2017-26900 | 0 | 0 | 0900006482d1285e | ||
| EPA-R01-OAR-2015-0654-0004 | EPA | None EPA-R01-OAR-2015-0654 | Attachment B - Connecticut Final Regulation | Supporting & Related Material | State/Tribal Submittal | 2017-04-10T04:00:00Z | 2017 | 4 | 2017-04-11T00:37:08Z | 0 | 0 | 0900006481c71c2b | |||
| EPA-R01-OAR-2015-0654-0006 | EPA | None EPA-R01-OAR-2015-0654 | Attachment D - Hearing Attendees. | Supporting & Related Material | State/Tribal Submittal | 2017-04-10T04:00:00Z | 2017 | 4 | 2017-04-11T00:37:18Z | 0 | 0 | 0900006481c71c2d | |||
| EPA-R01-OAR-2015-0654-0007 | EPA | None EPA-R01-OAR-2015-0654 | Attachment E - Hearing Certification. | Supporting & Related Material | State/Tribal Submittal | 2017-04-10T04:00:00Z | 2017 | 4 | 2017-04-11T00:37:22Z | 0 | 0 | 0900006481c71c2e | |||
| EPA-R01-OAR-2015-0654-0009 | EPA | None EPA-R01-OAR-2015-0654 | Attachment G - Legislative Commissioners' Office Report Regulation Number 2015-15. | Supporting & Related Material | State/Tribal Submittal | 2017-04-10T04:00:00Z | 2017 | 4 | 2017-04-11T00:37:32Z | 0 | 0 | 0900006481c71c30 | |||
| EPA-R01-OAR-2015-0654-0001 | EPA | None EPA-R01-OAR-2015-0654 | Air Quality State Implementation Plans; Approvals and Promulgations: Connecticut; Decommissioning of Stage II Vapor Recovery Systems | Proposed Rule | 2017-04-10T04:00:00Z | 2017 | 4 | 2017-04-10T04:00:00Z | 2017-05-11T03:59:59Z | 2017-04-10T13:56:34Z | 2017-07147 | 0 | 0 | 0900006482546206 | |
| EPA-R01-OAR-2015-0654-0002 | EPA | None EPA-R01-OAR-2015-0654 | CT DEEP Cover Letter Submitting a SIP Revision for the Transfer and Dispensing of Gasoline. | Supporting & Related Material | 2017-04-10T04:00:00Z | 2017 | 4 | 2017-04-11T00:36:59Z | 0 | 0 | 0900006481c71c29 | ||||
| EPA-R01-OAR-2015-0654-0003 | EPA | None EPA-R01-OAR-2015-0654 | Attachment A - SIP Demonstration of Gasoline Dispensing Facilities - Vapor Recovery and Appendices. | Supporting & Related Material | 2017-04-10T04:00:00Z | 2017 | 4 | 2017-04-11T00:37:04Z | 0 | 0 | 0900006481c71c2a | ||||
| EPA-R01-OAR-2015-0654-0008 | EPA | None EPA-R01-OAR-2015-0654 | Attachment F - Hearing Report. | Supporting & Related Material | State/Tribal Submittal | 2017-04-10T04:00:00Z | 2017 | 4 | 2017-04-11T00:37:27Z | 0 | 0 | 0900006481c71c2f | |||
| EPA-R01-OAR-2015-0654-0005 | EPA | None EPA-R01-OAR-2015-0654 | Attachment C - Public Notice. | Supporting & Related Material | State/Tribal Submittal | 2017-04-10T04:00:00Z | 2017 | 4 | 2017-04-11T00:37:13Z | 0 | 0 | 0900006481c71c2c |
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;