documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OLEM-2021-0285" and posted_year = 2023 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-OLEM-2021-0285-0013 | EPA | Coronado Generating Station CCR Part B Alternate Liner Demonstration EPA-HQ-OLEM-2021-0285 | Memo to the Docket Internet Links to Certain Documents- Coronado Generating Station | Supporting & Related Material | Memorandum | 2023-03-22T04:00:00Z | 2023 | 3 | 2023-04-10T04:50:47Z | 0 | 0 | 0900006485766522 | |||
| EPA-HQ-OLEM-2021-0285-0011 | EPA | Coronado Generating Station CCR Part B Alternate Liner Demonstration EPA-HQ-OLEM-2021-0285 | Memo Extending the Comment Period | Other | 2023-03-01T05:00:00Z | 2023 | 3 | 2023-03-01T05:00:00Z | 2023-03-05T14:37:21Z | 0 | 0 | 0900006485735dd0 | |||
| EPA-HQ-OLEM-2021-0285-0003 | EPA | Coronado Generating Station CCR Part B Alternate Liner Demonstration EPA-HQ-OLEM-2021-0285 | U.S. EPA (1992) RCRA Ground-Water Monitoring: Draft Technical Guidance | Supporting & Related Material | Guidance | 2023-02-08T05:00:00Z | 2023 | 2 | 2023-02-09T01:41:30Z | 0 | 0 | 090000648555972e | |||
| EPA-HQ-OLEM-2021-0285-0002 | EPA | Coronado Generating Station CCR Part B Alternate Liner Demonstration EPA-HQ-OLEM-2021-0285 | Coronado Generating Station Part B Application. | Supporting & Related Material | Publication - Copyrighted Materials | 2023-02-08T05:00:00Z | 2023 | 2 | 2023-03-01T16:23:14Z | 0 | 0 | 0900006485559770 | |||
| EPA-HQ-OLEM-2021-0285-0008 | EPA | Coronado Generating Station CCR Part B Alternate Liner Demonstration EPA-HQ-OLEM-2021-0285 | Coronado Generating Station Location Restrictions Supporting Documentation | Supporting & Related Material | Map | 2023-02-08T05:00:00Z | 2023 | 2 | 2023-02-09T01:40:52Z | 0 | 0 | 09000064856202c5 | |||
| EPA-HQ-OLEM-2021-0285-0006 | EPA | Coronado Generating Station CCR Part B Alternate Liner Demonstration EPA-HQ-OLEM-2021-0285 | U.S. EPA (2014) Human and Ecological Risk Assessment of Coal Combustion Residuals | Supporting & Related Material | Risk Assessment | 2023-02-08T05:00:00Z | 2023 | 2 | 2023-02-09T01:41:02Z | 0 | 0 | 0900006485559731 | |||
| EPA-HQ-OLEM-2021-0285-0005 | EPA | Coronado Generating Station CCR Part B Alternate Liner Demonstration EPA-HQ-OLEM-2021-0285 | U.S. EPA (1991) Handbook of Suggested Practices for the Design and Installation of Ground-Water Monitoring Wells | Supporting & Related Material | Publication - USEPA | 2023-02-08T05:00:00Z | 2023 | 2 | 2023-02-09T01:41:11Z | 0 | 0 | 0900006485559730 | |||
| EPA-HQ-OLEM-2021-0285-0007 | EPA | Coronado Generating Station CCR Part B Alternate Liner Demonstration EPA-HQ-OLEM-2021-0285 | U.S. EPA (2017) Best Practices for Environmental Site Management: A Practical Guide for Applying Environmental Sequence Stratigraphy to Improve Conceptual Site Models | Supporting & Related Material | Publication - USEPA | 2023-02-08T05:00:00Z | 2023 | 2 | 2023-02-09T01:41:50Z | 0 | 0 | 09000064855f5a57 | |||
| EPA-HQ-OLEM-2021-0285-0001 | EPA | Coronado Generating Station CCR Part B Alternate Liner Demonstration EPA-HQ-OLEM-2021-0285 | Memo Openings Docket for Public Comments | Other | Memorandum to Open a Docket | 2023-02-08T05:00:00Z | 2023 | 2 | 2023-02-08T05:00:00Z | 2023-04-11T03:59:59Z | 2023-04-12T01:00:58Z | 0 | 0 | 090000648562cf08 | |
| EPA-HQ-OLEM-2021-0285-0004 | EPA | Coronado Generating Station CCR Part B Alternate Liner Demonstration EPA-HQ-OLEM-2021-0285 | U.S. EPA (2009) Statistical Analysis of Groundwater Monitoring Data at RCRA Facilities Unified Guidance | Supporting & Related Material | Publication - USEPA | 2023-02-08T05:00:00Z | 2023 | 2 | 2023-02-09T01:41:21Z | 0 | 0 | 090000648555972f |
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;