documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-SFUND-2008-0574" and posted_year = 2008 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-SFUND-2008-0574-0007 | EPA | None EPA-HQ-SFUND-2008-0574 | Goodrich Corporation vs. USEPA -- Declaration of Dawn Richmond | Supporting & Related Material | Public Hearing Transcript, Deposition, Testimony | 2008-10-27T04:00:00Z | 2008 | 10 | 2008-10-27T20:02:38Z | 0 | 0 | 090000648077ef64 | |||
| EPA-HQ-SFUND-2008-0574-0006 | EPA | None EPA-HQ-SFUND-2008-0574 | Letter to Peter Duchesneau, Manatt, Phelps & Phillips, LLP from Victoria van Roden, Chief, OSWER, USEPA, re: Response to Comment Period Extension | Supporting & Related Material | Letter, Memorandum, Email | 2008-10-24T04:00:00Z | 2008 | 10 | 2008-10-24T19:01:12Z | 0 | 0 | 0900006480772b5e | |||
| EPA-HQ-SFUND-2008-0574-0003 | EPA | None EPA-HQ-SFUND-2008-0574 | Narrative Summary: B.F. Goodrich, Rialto, California | Supporting & Related Material | Other | 2008-09-03T04:00:00Z | 2008 | 9 | 2008-09-03T12:09:56Z | 0 | 0 | 09000064806e7c4d | |||
| EPA-HQ-SFUND-2008-0574-0004 | EPA | None EPA-HQ-SFUND-2008-0574 | Letter to Wayne Nastri, Administrator, USEPA, Region IX from Linda S. Adams, Secretary of Environmental Protection, California EPA | Supporting & Related Material | Letter, Memorandum, Email | 2008-09-03T04:00:00Z | 2008 | 9 | 2008-09-03T12:09:59Z | 0 | 0 | 09000064806e7c50 | |||
| EPA-HQ-SFUND-2008-0574-0002 | EPA | None EPA-HQ-SFUND-2008-0574 | HRS Documentation Record, Name of Site: B.F. Goodrich, EPA ID No.: CAN000905945 | Supporting & Related Material | Other | 2008-09-03T04:00:00Z | 2008 | 9 | 2008-09-03T12:09:53Z | 0 | 0 | 09000064806e7c49 | |||
| EPA-HQ-SFUND-2008-0574-0001 | EPA | None EPA-HQ-SFUND-2008-0574 | National Priorities List, Proposed Rule No. 49 | Proposed Rule | Federal Register Document | 2008-09-03T04:00:00Z | 2008 | 9 | 2008-09-03T04:00:00Z | 2008-11-04T04:59:59Z | 2013-08-18T00:58:53Z | E8-20389 | 0 | 0 | 09000064806ee26e |
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;