documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-HQ-OAR-2004-0212" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0212-0007 | EPA | Sulfur Dioxide Allowance System Legacy Docket ID #: A-91-43 EPA-HQ-OAR-2004-0212 | A-91-43-F-R-MARCH-16-1993 Clean Air Act; Acid Rain Provision! | Notice | 2019-06-21T04:00:00Z | 2019 | 6 | 2019-06-21T04:00:00Z | 2019-06-21T15:55:28Z | 93-5959 | 0 | 0 | 0900006483d2d751 | ||
| EPA-HQ-OAR-2004-0212-0006 | EPA | Sulfur Dioxide Allowance System Legacy Docket ID #: A-91-43 EPA-HQ-OAR-2004-0212 | A-91-43-F-R-JUNE-23-1993 Acid Rain Program: General Provisions and Permits, Allowance System, Continuous Emissions Monitoring, Excess Emissions and Administrative Appeals | Rule | Correction | 2019-06-21T04:00:00Z | 2019 | 6 | 2019-06-21T04:00:00Z | 2019-06-21T15:51:38Z | 58 | 0 | 0 | 0900006483d2d750 | |
| EPA-HQ-OAR-2004-0212-0003 | EPA | Sulfur Dioxide Allowance System Legacy Docket ID #: A-91-43 EPA-HQ-OAR-2004-0212 | A-91-43-F-R-DECEMBER-20-1991 Acid Rain Program: Announcement of Open Meeting Acid Rain Program Forms | Notice | Meeting | 2019-06-21T04:00:00Z | 2019 | 6 | 2019-06-21T04:00:00Z | 2019-06-21T15:36:32Z | 91-30323 | 0 | 0 | 0900006483d2c8f8 | |
| EPA-HQ-OAR-2004-0212-0004 | EPA | Sulfur Dioxide Allowance System Legacy Docket ID #: A-91-43 EPA-HQ-OAR-2004-0212 | A-91-43-F-R-DECEMBER-27-1995 Acid Rain Program: Permits, Allowance System, Sulfur Dioxide Options, Continuous Emission Monitoring, Excess Emissions, and Appeal Procedures | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2019-06-21T04:00:00Z | 2019 | 6 | 2019-06-21T04:00:00Z | 1997-01-28T04:59:59Z | 2019-06-21T15:41:08Z | 96-31968 | 0 | 0 | 0900006483d2c8f9 |
| EPA-HQ-OAR-2004-0212-0005 | EPA | Sulfur Dioxide Allowance System Legacy Docket ID #: A-91-43 EPA-HQ-OAR-2004-0212 | A-91-43-F-R-JULY-30-1993 Acid Rain Program: Permits, Allowance System, and Continuous Emission Monitoring; Corrections | Rule | Final Rule | 2019-06-21T04:00:00Z | 2019 | 6 | 2019-06-21T04:00:00Z | 2019-06-21T15:47:43Z | 93-15194 | 0 | 0 | 0900006483d2d74f |
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;