documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OAR-2004-0235" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-HQ-OAR-2004-0235-0007 | EPA | Revisions to Parts 72, 73, 75, 77, and 78 of the Acid Rain Regulations Legacy Docket ID #: A-95-56 EPA-HQ-OAR-2004-0235 | Legacy Index for Docket A-95-56 This index contains a listing of records submitted prior to implementation of the EDOCKET system. | Supporting & Related Material | Index | 2019-11-06T05:00:00Z | 2019 | 11 | 2019-11-06T15:46:52Z | 0 | 0 | 0900006484123ff4 | |||
| EPA-HQ-OAR-2004-0235-0003 | EPA | Revisions to Parts 72, 73, 75, 77, and 78 of the Acid Rain Regulations Legacy Docket ID #: A-95-56 EPA-HQ-OAR-2004-0235 | A-95-56-F-R-FRIDAY-OCTOBER-24-1997 Acid Rain Program: Revisions to Permits, Allowance System, Sulfur Dioxide Opt-ins, Continuous Emission Monitoring, Excess Emissions, and Appeal Procedures | Rule | Final Rule | 2019-09-11T04:00:00Z | 2019 | 9 | 2019-09-11T04:00:00Z | 2019-09-11T16:00:39Z | 62 | 0 | 0 | 0900006483f2eb4b | |
| EPA-HQ-OAR-2004-0235-0002 | EPA | Revisions to Parts 72, 73, 75, 77, and 78 of the Acid Rain Regulations Legacy Docket ID #: A-95-56 EPA-HQ-OAR-2004-0235 | A-95-56-F-R-FRIDAY-DECEMBER-27-1996 Acid Rain Program: Permits, Allowance System, Sulfur Dioxide Opt-Ins, Continuous Emission Monitoring, Excess Emissions, and Appeal Procedures | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2019-09-11T04:00:00Z | 2019 | 9 | 2019-09-11T04:00:00Z | 1997-01-28T04:59:59Z | 2019-09-11T15:55:58Z | 96-31968 | 0 | 0 | 0900006483f2eb4a |
| EPA-HQ-OAR-2004-0235-0004 | EPA | Revisions to Parts 72, 73, 75, 77, and 78 of the Acid Rain Regulations Legacy Docket ID #: A-95-56 EPA-HQ-OAR-2004-0235 | A-95-56-F-R-MONDAY-SEPTEMBER-28-1998 Acid Rain Program: 1998 Reallocation of Allowances | Rule | Final Rule | 2019-09-11T04:00:00Z | 2019 | 9 | 2019-09-11T04:00:00Z | 2019-09-11T16:23:40Z | 98-25317 | 0 | 0 | 0900006483f2eb4c | |
| EPA-HQ-OAR-2004-0235-0005 | EPA | Revisions to Parts 72, 73, 75, 77, and 78 of the Acid Rain Regulations Legacy Docket ID #: A-95-56 EPA-HQ-OAR-2004-0235 | A-95-56-F-R-TUESDAY-1-13-98 Notice of Public Hearing—Proposed Finding of Significant Contribution and Proposed Rulemaking for Certain States in the Ozone Transport Assessment Group Region for Purposes of Reducing Regional Transport of Ozone | Notice | Hearings | 2019-09-11T04:00:00Z | 2019 | 9 | 2019-09-11T04:00:00Z | 2019-09-11T16:21:47Z | 98-769 | 0 | 0 | 0900006483f2eb4d | |
| EPA-HQ-OAR-2004-0235-0006 | EPA | Revisions to Parts 72, 73, 75, 77, and 78 of the Acid Rain Regulations Legacy Docket ID #: A-95-56 EPA-HQ-OAR-2004-0235 | A-95-56-F-R-WEDNESDAY-FEBRUARY-5-1997 Acid Rain Program; Permits, Allowance System, Sulfur Dioxide Optins, Continuous Emission Monitoring, Excess Emissions, and Appeal Procedures | Proposed Rule | Extension of Comment Period | 2019-09-11T04:00:00Z | 2019 | 9 | 2019-09-11T04:00:00Z | 1997-02-11T04:59:59Z | 2019-09-11T16:27:51Z | 97-2844 | 0 | 0 | 0900006483f2eb4e |
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;