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-1994-0003" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- EPA 6
| 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-1994-0003-0117 | EPA | None EPA-HQ-SFUND-1994-0003 | National Priorities List | Proposed Rule | Withdrawal | 2017-08-03T04:00:00Z | 2017 | 8 | 2017-08-03T04:00:00Z | 2017-10-03T03:59:59Z | 2019-08-01T19:16:41Z | 2017-16171 | 0 | 0 | 090000648299b7d5 |
| EPA-HQ-SFUND-1994-0003-0118 | EPA | None EPA-HQ-SFUND-1994-0003 | Deproposal Memo Burlington Northern Livingston | Supporting & Related Material | 2017-08-03T04:00:00Z | 2017 | 8 | 2017-08-03T14:55:36Z | 0 | 0 | 090000648252ee8b | ||||
| EPA-HQ-SFUND-1994-0003-0115 | EPA | None EPA-HQ-SFUND-1994-0003 | National Priorities List, Proposed Rule No. 56 | Proposed Rule | 2012-03-15T04:00:00Z | 2012 | 3 | 2012-03-15T04:00:00Z | 2012-05-15T03:59:59Z | 2012-03-15T14:54:11Z | 2012-06328 | 0 | 0 | 0900006480fd7dfb | |
| EPA-HQ-SFUND-1994-0003-0012 | EPA | None EPA-HQ-SFUND-1994-0003 | Memorandum regarding meeting with Reynolds Metals officials: attached is the attendance sheet. David Bennett, NPL Coordinator, U.S. EPA. | Supporting & Related Material | Letter, Memorandum, Email | 1994-09-27T04:00:00Z | 1994 | 9 | 2006-10-23T20:54:19Z | 0 | 0 | 09000064800e3b44 | |||
| EPA-HQ-SFUND-1994-0003-0001 | EPA | None EPA-HQ-SFUND-1994-0003 | National Priorities List for Uncontrolled Hazardous Waste Sites | Proposed Rule | Federal Register Document | 1994-08-23T04:00:00Z | 1994 | 8 | 1994-08-23T04:00:00Z | 1994-09-17T03:59:59Z | 2019-08-01T19:04:43Z | 43314 | 0 | 0 | 09000064800e3aea |
| EPA-HQ-SFUND-1994-0003-0003 | EPA | None EPA-HQ-SFUND-1994-0003 | Hazard Ranking System (HRS) Package for Escambia Wood - Pensacola, Escambia County, FL (EPA ID No.: FLD008168346). | Supporting & Related Material | Other | 1994-07-13T04:00:00Z | 1994 | 7 | 2006-10-23T20:54:18Z | 0 | 0 | 09000064800e3afb |
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;