documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-SFUND-1999-0014" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 9
| 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-1999-0014-0166 | EPA | None EPA-HQ-SFUND-1999-0014 | National Priorities List for Uncontrolled Hazardous Waste Sites. Final Rule No. 12 [NPL-FRU12-1-19] | Rule | Final Rule | 2025-02-14T05:00:00Z | 2025 | 2 | 2025-02-14T05:00:00Z | 2025-02-14T19:44:30Z | 94-13189 | 0 | 0 | 09000064800e17ac | |
| EPA-HQ-SFUND-1999-0014-0168 | EPA | None EPA-HQ-SFUND-1999-0014 | National Priorities List for Uncontrolled Hazardous Waste Sites, Final Rule No.19 [NPL-FRU19-1-36] | Rule | Final Rule | 2025-02-14T05:00:00Z | 2025 | 2 | 2025-02-14T05:00:00Z | 2025-02-14T19:52:46Z | 97-25095 | 0 | 0 | 09000064800e1853 | |
| EPA-HQ-SFUND-1999-0014-0167 | EPA | None EPA-HQ-SFUND-1999-0014 | National Priorities List for Uncontrolled Hazardous Waste Sites, Final Rule No. 18 [NPL-FRU18-1-33] | Rule | Final Rule | 2025-02-14T05:00:00Z | 2025 | 2 | 2025-02-14T05:00:00Z | 2025-02-14T19:48:52Z | 97-8086 | 0 | 0 | 09000064800e1833 | |
| EPA-HQ-SFUND-1999-0014-0170 | EPA | None EPA-HQ-SFUND-1999-0014 | National Priorities List for Uncontrolled Hazardous Waste Sites, Final Rule No. 22 [NPL-FRU22-1-43] | Rule | Final Rule | 2025-02-14T05:00:00Z | 2025 | 2 | 2025-02-14T05:00:00Z | 2025-02-14T20:04:35Z | 0 | 0 | 09000064800e1884 | ||
| EPA-HQ-SFUND-1999-0014-0169 | EPA | None EPA-HQ-SFUND-1999-0014 | National Priorities List for Uncontrolled Hazardous Waste Sites, Final Rule Number 21 | Rule | Final Rule | 2025-02-14T05:00:00Z | 2025 | 2 | 2025-02-14T05:00:00Z | 2025-02-14T20:00:08Z | 98–20154 | 0 | 0 | 09000064800e1875 | |
| EPA-HQ-SFUND-1999-0014-0165 | EPA | None EPA-HQ-SFUND-1999-0014 | Amendment to National Oil and Hazardous Substance Contingency Plan; National Priorities List, Final and Proposed Rule No. 7 | Rule | Final Rule | 2025-02-14T05:00:00Z | 2025 | 2 | 2025-02-14T05:00:00Z | 2025-02-14T19:38:30Z | 86-12003 | 0 | 0 | 09000064800e16f4 | |
| EPA-HQ-SFUND-1999-0014-0093 | EPA | None EPA-HQ-SFUND-1999-0014 | Letter to Carol Browner, USEPA Administrator, from Mel Carnahan, Governor, State of Missouri, regarding Missouri Department of Natural Resources has completed and Expanded Site | Supporting & Related Material | Letter, Memorandum, Email | 2002-02-27T05:00:00Z | 2002 | 2 | 2006-10-23T20:42:56Z | 0 | 0 | 09000064800e1638 | |||
| EPA-HQ-SFUND-1999-0014-0152 | EPA | None EPA-HQ-SFUND-1999-0014 | National Priorities List for Uncontrolled Hazardous Waste Sites, Proposed Rule No. 27 | Proposed Rule | Federal Register Document | 1999-01-19T05:00:00Z | 1999 | 1 | 2008-01-08T21:10:56Z | 2950 | 0 | 0 | 09000064800e1896 | ||
| EPA-HQ-SFUND-1999-0014-0087 | EPA | None EPA-HQ-SFUND-1999-0014 | Letter to Michael McCabe, USEPA, from John Paul Woodley, Jr., Commonwealth of Virginia, Secretary of Natural Resources regarding Nansemond Ordinance Depot, VA | Supporting & Related Material | Letter, Memorandum, Email | 1998-03-19T05:00:00Z | 1998 | 3 | 2006-10-23T20:42:56Z | 0 | 0 | 09000064800e1604 |
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;