documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OLEM-2020-0508" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_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-2020-0508-0041 | EPA | Texas: Approval of State Coal Combustion Residuals (CCR) Permit Program EPA-HQ-OLEM-2020-0508 | Response to Comments on the Texas CCR Permit Program June 2021 | Supporting & Related Material | Comment Response | 2021-06-28T04:00:00Z | 2021 | 6 | 2021-06-29T00:31:45Z | 0 | 0 | 0900006484b35c8e | |||
| EPA-HQ-OLEM-2020-0508-0042 | EPA | Texas: Approval of State Coal Combustion Residuals (CCR) Permit Program EPA-HQ-OLEM-2020-0508 | Memorandum from April 7, 2021 Texas responses to EPA follow-up questions | Supporting & Related Material | Memorandum | 2021-06-28T04:00:00Z | 2021 | 6 | 2021-06-29T00:31:53Z | 0 | 0 | 0900006484b394ca | |||
| EPA-HQ-OLEM-2020-0508-0040 | EPA | Texas: Approval of State Coal Combustion Residuals (CCR) Permit Program EPA-HQ-OLEM-2020-0508 | Approval of State Coal Combustion Residuals Permit Program: Texas | Rule | 2021-06-28T04:00:00Z | 2021 | 6 | 2021-06-28T12:07:41Z | 2021-13698 | 0 | 0 | 0900006484bb9636 | |||
| EPA-HQ-OLEM-2020-0508-0043 | EPA | Texas: Approval of State Coal Combustion Residuals (CCR) Permit Program EPA-HQ-OLEM-2020-0508 | Memorandum from March 16, 2021 meeting between EPA and TCEQ | Supporting & Related Material | Memorandum | 2021-06-28T04:00:00Z | 2021 | 6 | 2021-06-29T00:31:36Z | 0 | 0 | 0900006484b394cb | |||
| EPA-HQ-OLEM-2020-0508-0039 | EPA | Texas: Approval of State Coal Combustion Residuals (CCR) Permit Program EPA-HQ-OLEM-2020-0508 | Transcript from the Texas CCR Program Public Hearing 2-2-2021 | Supporting & Related Material | Public Hearing Transcript, Deposition, Testimony | 2021-02-25T05:00:00Z | 2021 | 2 | 2021-02-26T01:37:57Z | 0 | 0 | 0900006484a3283a | |||
| EPA-HQ-OLEM-2020-0508-0027 | EPA | Texas: Approval of State Coal Combustion Residuals (CCR) Permit Program EPA-HQ-OLEM-2020-0508 | Texas Tribal Consultation Letter October 9, 2020 | Supporting & Related Material | Letter | 2021-01-08T05:00:00Z | 2021 | 1 | 2021-01-09T02:00:24Z | 0 | 0 | 09000064849a9b3f | |||
| EPA-HQ-OLEM-2020-0508-0028 | EPA | Texas: Approval of State Coal Combustion Residuals (CCR) Permit Program EPA-HQ-OLEM-2020-0508 | Texas CCR Tribal Consultation Closeout Letter Final December 18, 2020 | Supporting & Related Material | Letter | 2021-01-08T05:00:00Z | 2021 | 1 | 2021-01-09T02:00:08Z | 0 | 0 | 09000064849ae800 |
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;