documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-SFUND-2009-0063" 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)
document_type 4
agency_id 1
- EPA 10
| 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-2009-0063-0727 | EPA | None EPA-HQ-SFUND-2009-0063 | Support Document for the Revised National Priorities List Final Rule - Gowanus Canal | Supporting & Related Material | Publication - USEPA | 2010-03-04T05:00:00Z | 2010 | 3 | 2010-05-12T14:51:36Z | 0 | 0 | 0900006480ab0c11 | |||
| EPA-HQ-SFUND-2009-0063-0725 | EPA | None EPA-HQ-SFUND-2009-0063 | National Priorities List, Gowanus Canal | Rule | Federal Register Document | 2010-03-04T05:00:00Z | 2010 | 3 | 2010-03-04T05:00:00Z | 2011-06-11T16:10:28Z | 2010-04325 | 0 | 0 | 0900006480ab4e3c | |
| EPA-HQ-SFUND-2009-0063-0726 | EPA | None EPA-HQ-SFUND-2009-0063 | Narrative Summary: Gowanus Canal, Brooklyn, New York | Supporting & Related Material | Other | 2010-03-04T05:00:00Z | 2010 | 3 | 2010-05-12T14:51:37Z | 0 | 0 | 0900006480aae858 | |||
| EPA-HQ-SFUND-2009-0063-0440 | EPA | None EPA-HQ-SFUND-2009-0063 | Notes from June 19, 2009 meeting between EPA and New York City Officials and Consultants regarding the Gowanus Canal Proposed Superfund Site | Supporting & Related Material | Meeting/Teleconference Materials | 2009-07-16T04:00:00Z | 2009 | 7 | 2009-07-16T16:11:34Z | 0 | 0 | 09000064809f1803 | |||
| EPA-HQ-SFUND-2009-0063-0450 | EPA | None EPA-HQ-SFUND-2009-0063 | Attendees List, Agenda and Handouts from June 19, 2009 meeting between EPA and New York City Officials and Consultants regarding the Gowanus Canal Proposed Superfund Site | Supporting & Related Material | Meeting/Teleconference Materials | 2009-07-16T04:00:00Z | 2009 | 7 | 2009-07-16T20:06:18Z | 0 | 0 | 09000064809f1804 | |||
| EPA-HQ-SFUND-2009-0063-0041 | EPA | None EPA-HQ-SFUND-2009-0063 | Memorandum authorizing extension of the comment period for EPA-HQ-SFUND-2009-0063 | Other | 2009-05-05T04:00:00Z | 2009 | 5 | 2009-06-08T04:00:00Z | 2009-07-09T03:59:59Z | 2009-07-08T12:03:52Z | 0 | 0 | 0900006480976943 | ||
| EPA-HQ-SFUND-2009-0063-0001 | EPA | None EPA-HQ-SFUND-2009-0063 | National Priorities List; Proposed Rule No. 50 | Proposed Rule | Federal Register Document | 2009-04-09T04:00:00Z | 2009 | 4 | 2009-04-09T04:00:00Z | 2009-07-09T03:59:59Z | 2011-06-11T16:10:28Z | E9-7824 | 0 | 0 | 090000648094b7d2 |
| EPA-HQ-SFUND-2009-0063-0003 | EPA | None EPA-HQ-SFUND-2009-0063 | Narrative Summary: Gowanus Canal, Brooklyn, New York | Supporting & Related Material | Other | 2009-04-09T04:00:00Z | 2009 | 4 | 2009-04-09T13:48:48Z | 0 | 0 | 0900006480942e90 | |||
| EPA-HQ-SFUND-2009-0063-0004 | EPA | None EPA-HQ-SFUND-2009-0063 | Letter to Alan Steinberg, Regional Administrator, USEPA, Region 2 from Alexander B. Grannis, New York State Department of Environmental Conservation | Supporting & Related Material | Other | 2009-04-09T04:00:00Z | 2009 | 4 | 2009-04-09T13:48:52Z | 0 | 0 | 0900006480942e99 | |||
| EPA-HQ-SFUND-2009-0063-0002 | EPA | None EPA-HQ-SFUND-2009-0063 | HRS Documentation Record: Gowanus Canal, EPA ID No.: NYN000206222 | Supporting & Related Material | Other | 2009-04-09T04:00:00Z | 2009 | 4 | 2009-04-09T13:48:45Z | 0 | 0 | 0900006480942e84 |
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;