documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "EPA" and docket_id = "EPA-HQ-OLEM-2022-0191" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-OLEM-2022-0191-0030 | EPA | National Priorities List (NPL) for Hercules Inc. EPA-HQ-OLEM-2022-0191 | National Priorities List | Rule | Final Rule | 2022-12-22T05:00:00Z | 2022 | 12 | 2022-12-22T05:00:00Z | 2022-12-23T01:43:41Z | 2022-27348 | 0 | 0 | 090000648554d829 | |
| EPA-HQ-OLEM-2022-0191-0031 | EPA | National Priorities List (NPL) for Hercules Inc. EPA-HQ-OLEM-2022-0191 | NPL Site Narrative for Hercules Inc. | Supporting & Related Material | 2022-12-22T05:00:00Z | 2022 | 12 | 2022-12-23T01:44:10Z | 0 | 0 | 0900006485536a30 | ||||
| EPA-HQ-OLEM-2022-0191-0033 | EPA | National Priorities List (NPL) for Hercules Inc. EPA-HQ-OLEM-2022-0191 | HRS Support Document for Hercules Inc. | Supporting & Related Material | Report | 2022-12-22T05:00:00Z | 2022 | 12 | 2022-12-23T01:44:25Z | 0 | 0 | 0900006485536828 | |||
| EPA-HQ-OLEM-2022-0191-0032 | EPA | National Priorities List (NPL) for Hercules Inc. EPA-HQ-OLEM-2022-0191 | Revised HRS Documentation Record for Hercules Inc. | Supporting & Related Material | Report | 2022-12-22T05:00:00Z | 2022 | 12 | 2022-12-23T01:43:55Z | 0 | 0 | 0900006485536a95 | |||
| EPA-HQ-OLEM-2022-0191-0010 | EPA | National Priorities List (NPL) for Hercules Inc. EPA-HQ-OLEM-2022-0191 | Hercules Extension Response Signed 2 | Supporting & Related Material | Letter | 2022-04-27T04:00:00Z | 2022 | 4 | 2022-04-28T01:13:46Z | 0 | 0 | 0900006485035c7e | |||
| EPA-HQ-OLEM-2022-0191-0009 | EPA | National Priorities List (NPL) for Hercules Inc. EPA-HQ-OLEM-2022-0191 | Memo to Extend the Comment Period | Other | Memorandum to Open a Docket | 2022-04-22T04:00:00Z | 2022 | 4 | 2022-04-22T04:00:00Z | 2022-04-23T00:44:57Z | 0 | 0 | 090000648502e7c3 | ||
| EPA-HQ-OLEM-2022-0191-0004 | EPA | National Priorities List (NPL) for Hercules Inc. EPA-HQ-OLEM-2022-0191 | State Correspondence - Hercules Inc. | Supporting & Related Material | Letter | 2022-03-18T04:00:00Z | 2022 | 3 | 2022-03-19T01:05:47Z | 0 | 0 | 0900006484fc2962 | |||
| EPA-HQ-OLEM-2022-0191-0001 | EPA | National Priorities List (NPL) for Hercules Inc. EPA-HQ-OLEM-2022-0191 | National Priorities List | Proposed Rule | 2022-03-18T04:00:00Z | 2022 | 3 | 2022-03-18T04:00:00Z | 2022-06-17T03:59:59Z | 2022-07-15T01:00:42Z | 2022-05855 | 0 | 0 | 0900006484fcc7ee | |
| EPA-HQ-OLEM-2022-0191-0005 | EPA | National Priorities List (NPL) for Hercules Inc. EPA-HQ-OLEM-2022-0191 | Other Correspondence - Hercules Inc. | Supporting & Related Material | Letter | 2022-03-18T04:00:00Z | 2022 | 3 | 2022-03-19T01:06:04Z | 0 | 0 | 0900006484fc2490 | |||
| EPA-HQ-OLEM-2022-0191-0003 | EPA | National Priorities List (NPL) for Hercules Inc. EPA-HQ-OLEM-2022-0191 | Narrative Summary - Hercules Inc | Supporting & Related Material | 2022-03-18T04:00:00Z | 2022 | 3 | 2022-03-19T01:05:38Z | 0 | 0 | 0900006484fc248d | ||||
| EPA-HQ-OLEM-2022-0191-0002 | EPA | National Priorities List (NPL) for Hercules Inc. EPA-HQ-OLEM-2022-0191 | HRS Documentation Record - Hercules Inc. | Supporting & Related Material | 2022-03-18T04:00:00Z | 2022 | 3 | 2022-03-19T01:06:12Z | 0 | 0 | 0900006484fc2461 |
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;