documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "EPA" and docket_id = "EPA-R03-OAR-2017-0509" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA · 7 ✖
| 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-R03-OAR-2017-0509-0009 | EPA | None EPA-R03-OAR-2017-0509 | Air Quality State Plan for Designated Facilities and Pollutants; Approval and Promulgation: City of Philadelphia; Control of Emissions from Existing Sewage Sludge Incineration Units | Rule | 2018-03-15T04:00:00Z | 2018 | 3 | 2018-03-15T04:00:00Z | 2018-03-15T12:41:36Z | 2018-05293 | 0 | 0 | 09000064830171f2 | ||
| EPA-R03-OAR-2017-0509-0010 | EPA | None EPA-R03-OAR-2017-0509 | Response to Comment | Supporting & Related Material | Comment Response | 2018-03-15T04:00:00Z | 2018 | 3 | 2018-03-16T01:32:41Z | 0 | 0 | 0900006482ef6ada | |||
| EPA-R03-OAR-2017-0509-0008 | EPA | None EPA-R03-OAR-2017-0509 | Air Quality State Implementation Plans for Designated Facilities and Pollutants; Approval and Promulgation: Philadelphia; Control of Emissions from Existing Sewage Sludge Incineration Units; Withdrawal | Rule | 2017-12-26T05:00:00Z | 2017 | 12 | 2017-12-26T05:00:00Z | 2017-12-26T14:48:52Z | 2017-27795 | 0 | 0 | 0900006482d7267e | ||
| EPA-R03-OAR-2017-0509-0004 | EPA | None EPA-R03-OAR-2017-0509 | Technical Support Document for Philadelphia AMS SSI Negative Declaration | Supporting & Related Material | Technical Support Document | 2017-10-26T04:00:00Z | 2017 | 10 | 2017-10-27T01:15:39Z | 0 | 0 | 0900006482b6c277 | |||
| EPA-R03-OAR-2017-0509-0002 | EPA | None EPA-R03-OAR-2017-0509 | Air Quality State Implementation Plans; Approval and Promulgation: Philadelphia; Control of Emissions from Existing Sewage Sludge Incineration Units | Proposed Rule | 2017-10-26T04:00:00Z | 2017 | 10 | 2017-10-26T04:00:00Z | 2017-11-28T04:59:59Z | 2017-10-26T13:36:01Z | 2017-23231 | 0 | 0 | 0900006482c0a35a | |
| EPA-R03-OAR-2017-0509-0003 | EPA | None EPA-R03-OAR-2017-0509 | Philadelphia AMS SSI Negative Declaration Submittal | Supporting & Related Material | State/Tribal Submittal | 2017-10-26T04:00:00Z | 2017 | 10 | 2017-10-27T01:15:49Z | 0 | 0 | 0900006482b6c650 | |||
| EPA-R03-OAR-2017-0509-0001 | EPA | None EPA-R03-OAR-2017-0509 | Air Quality State Implementation Plans; Approval and Promulgation: Philadelphia; Control of Emissions from Existing Sewage Sludge Incineration Units | Rule | 2017-10-26T04:00:00Z | 2017 | 10 | 2017-10-26T04:00:00Z | 2017-11-28T04:59:59Z | 2017-11-27T02:00:36Z | 2017-23229 | 0 | 0 | 0900006482c0a3a1 |
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;