documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "EPA-HQ-TRI-2005-0023" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, last_modified, posted_date (date), last_modified (date)
document_type 2
agency_id 1
- EPA 4
| 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-TRI-2005-0023-0052 | EPA | None EPA-HQ-TRI-2005-0023 | Memorandum to Rebecca A. Jones, Technical Integrator, Toxics Effects Branch, Health and Environmental Review Division, from Leonard C. Keifer, FAIC, Chemist, Metabolism/Structure Activity Section, Toxics Effects Branch, Health and Environmental Review Division re: Review of Metabolism of Long-chain Glycol Ethers | Supporting & Related Material | Memorandum | 2020-08-19T04:00:00Z | 2020 | 8 | 2020-08-19T16:24:17Z | 0 | 0 | 09000064800c78bc | |||
| EPA-HQ-TRI-2005-0023-0021 | EPA | None EPA-HQ-TRI-2005-0023 | Letter to Richard A. Hauser, Esq., Baker & Hostetler from James Nelson, Associate General Counsel, USEPA, Pesticides and Toxic Substances Division re: response to request to expidite glycol ethers redefinition [E-006] | Supporting & Related Material | Letter, Memorandum, Email | 1994-07-13T04:00:00Z | 1994 | 7 | 2010-07-15T19:15:23Z | 0 | 0 | 09000064800c792d | |||
| EPA-HQ-TRI-2005-0023-0001 | EPA | None EPA-HQ-TRI-2005-0023 | Glycol Ethers Category; Toxic Chemical Release Reporting; Community Right-to-Know | Rule | Federal Register Document | 1994-07-05T04:00:00Z | 1994 | 7 | 2010-07-15T19:15:23Z | 34386 | 0 | 0 | 09000064800c78a0 | ||
| EPA-HQ-TRI-2005-0023-0020 | EPA | None EPA-HQ-TRI-2005-0023 | Letter to Gerald H. Yamada, Esq., Principle Deputy General Counsel, USEPA, Office of General Counsel (OGC) from Richard A. Hauser, Baker & Hostetler on behalf of the Soap and Detergent Association (SDA) re: glycol ethers redefinition [E-005] | Supporting & Related Material | Letter, Memorandum, Email | 1994-06-14T04:00:00Z | 1994 | 6 | 2010-07-15T19:15:23Z | 0 | 0 | 09000064800c7928 |
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;