documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-SFUND-2002-0001" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, last_modified, 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-SFUND-2002-0001-0155 | EPA | None EPA-HQ-SFUND-2002-0001 | Ellenville Scrap Iron and Metal site Deletion Docket Index SEMS-RM DocID 565395 | Supporting & Related Material | Index | 2019-10-10T04:00:00Z | 2019 | 10 | 2019-10-10T20:28:01Z | 0 | 0 | 0900006483fec0ac | |||
| EPA-HQ-SFUND-2002-0001-0153 | EPA | None EPA-HQ-SFUND-2002-0001 | 565395 Ellenville Scrap Iron and Metals Site Deletion Docket Index 07/15/2019 | Supporting & Related Material | Index | 2019-08-05T04:00:00Z | 2019 | 8 | 2019-08-05T15:14:06Z | 0 | 0 | 0900006483d94b69 | |||
| EPA-HQ-SFUND-2002-0001-0149 | EPA | None EPA-HQ-SFUND-2002-0001 | National Oil and Hazardous Substances Pollution Contingency Plan; National Priorities List: Deletion of the Ellenville Scrap Iron and Metal Superfund Site | Rule | Direct Final Rule | 2019-08-05T04:00:00Z | 2019 | 8 | 2019-08-05T04:00:00Z | 2019-09-05T03:59:59Z | 2019-08-05T14:55:14Z | 2019-16703 | 0 | 0 | 0900006483df1642 |
| EPA-HQ-SFUND-2002-0001-0152 | EPA | None EPA-HQ-SFUND-2002-0001 | New York State Concurrence on the Notice of Intent to Delete the Ellenville Scrap Iron and Metal Site from the National Priorities List | Supporting & Related Material | Letter | 2019-08-05T04:00:00Z | 2019 | 8 | 2019-08-05T15:14:06Z | 0 | 0 | 0900006483d883d0 | |||
| EPA-HQ-SFUND-2002-0001-0154 | EPA | None EPA-HQ-SFUND-2002-0001 | 565442 US EPA HQ Concurrence on the Notice of Intent to Delete 07/15/2019 | Supporting & Related Material | Memorandum | 2019-08-05T04:00:00Z | 2019 | 8 | 2019-08-05T15:14:07Z | 0 | 0 | 0900006483d94c9e | |||
| EPA-HQ-SFUND-2002-0001-0151 | EPA | None EPA-HQ-SFUND-2002-0001 | FCOR Ellenville DOC576254 | Supporting & Related Material | Report | 2019-08-05T04:00:00Z | 2019 | 8 | 2019-08-05T15:14:05Z | 0 | 0 | 0900006483d2aa2a | |||
| EPA-HQ-SFUND-2002-0001-0150 | EPA | None EPA-HQ-SFUND-2002-0001 | National Oil and Hazardous Substances Pollution Contingency Plan; National Priorities List: Deletion of the Ellenville Scrap Iron and Metal Superfund Site | Proposed Rule | 2019-08-05T04:00:00Z | 2019 | 8 | 2019-08-05T04:00:00Z | 2019-09-05T03:59:59Z | 2019-08-05T14:58:50Z | 2019-16702 | 0 | 0 | 0900006483df168d |
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;