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-1990-0010" and posted_year = 2022 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)
| 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-1990-0010-0184 | EPA | None EPA-HQ-SFUND-1990-0010 | NGWA responsiveness summary August 2022 | Supporting & Related Material | 2022-08-17T04:00:00Z | 2022 | 8 | 2022-08-17T13:44:46Z | 0 | 0 | 090000648522f853 | ||||
| EPA-HQ-SFUND-1990-0010-0185 | EPA | None EPA-HQ-SFUND-1990-0010 | Deletion from the National Priorities List for Himco Dump | Rule | Final Rule | 2022-08-17T04:00:00Z | 2022 | 8 | 2022-08-17T04:00:00Z | 2022-08-17T13:49:14Z | 2022-17480 | 0 | 0 | 0900006485246a3d | |
| EPA-HQ-SFUND-1990-0010-0181 | EPA | None EPA-HQ-SFUND-1990-0010 | National Priorities List: Deletion | Proposed Rule | 2022-03-31T04:00:00Z | 2022 | 3 | 2022-03-31T04:00:00Z | 2022-05-03T03:59:59Z | 2022-05-05T01:00:23Z | 2022-06774 | 0 | 0 | 0900006484fefa47 | |
| EPA-HQ-SFUND-1990-0010-0177 | EPA | None EPA-HQ-SFUND-1990-0010 | Proposed Deletion From the National Priorities List - Himco Dump | Proposed Rule | 2022-03-22T04:00:00Z | 2022 | 3 | 2022-03-31T14:19:47Z | 2022-05555 | 0 | 0 | 0900006484fd8390 | |||
| EPA-HQ-SFUND-1990-0010-0179 | EPA | None EPA-HQ-SFUND-1990-0010 | 05-2004061 - January 26, 2022 IDEM Letter Re: Partial Deletion of the Land/Soil Portion of the Landfill Property and 47 Adjacent/Downgradient Parcels at Himco Dump Superfund Site, Elkhart, Indiana (State Concurrence Letter) | Supporting & Related Material | Letter | 2022-03-22T04:00:00Z | 2022 | 3 | 2022-03-22T13:28:37Z | 0 | 0 | 0900006484f602e1 | |||
| EPA-HQ-SFUND-1990-0010-0178 | EPA | None EPA-HQ-SFUND-1990-0010 | 05-972087 - February 7, 2022 Site-Specific Justification for the Deletion of the Land/Soil Portion of the Landfill Property and 47 Adjacent/Downgradient Parcels of the Himco Dump Superfund Site from the National Priorities List, Cleveland Township, Elkhart County, Indiana [REDACTED] | Supporting & Related Material | 2022-03-22T04:00:00Z | 2022 | 3 | 2022-03-22T13:28:30Z | 0 | 0 | 0900006484f60034 | ||||
| EPA-HQ-SFUND-1990-0010-0180 | EPA | None EPA-HQ-SFUND-1990-0010 | NPL Partial Deletion Docket - HIMCO Dump Site Update No. 1, February 8, 2022 (Updated with Redacted Documents for Public Release) | Supporting & Related Material | Index | 2022-03-22T04:00:00Z | 2022 | 3 | 2022-03-22T13:28:43Z | 0 | 0 | 0900006484f6033b |
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;