documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "EPA-HQ-OPP-2009-0130" and posted_year = 2009 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-OPP-2009-0130-0004 | EPA | None EPA-HQ-OPP-2009-0130 | N,N,N,N,-Tetrakis-(2-Hydroxypropyl) Ethylenediamine; Exemption from the Requirement of a Tolerance | Rule | Federal Register Document | 2009-07-29T04:00:00Z | 2009 | 7 | 2009-07-29T04:00:00Z | 2009-07-29T17:51:16Z | E9-17945 | 0 | 0 | 09000064809fd635 | |
| EPA-HQ-OPP-2009-0130-0005 | EPA | None EPA-HQ-OPP-2009-0130 | N, N,N’,N”,-Tetrakis-(2-Hydroxypropyl) Ethylenediamine (NTHE - JITF CST 15 Inert Ingredient). Human Health Risk Assessment to Support Proposed Exemption from the Requirement of a Tolerance When Used as an Inert Ingredient in Pesticide Formulations. | Supporting & Related Material | Petition | 2009-07-29T04:00:00Z | 2009 | 7 | 2009-07-29T17:51:59Z | 0 | 0 | 09000064809f5a93 | |||
| EPA-HQ-OPP-2009-0130-0001 | EPA | None EPA-HQ-OPP-2009-0130 | Notice of Receipt of Several Pesticide Petitions Filed for Residues of Pesticide Chemicals in or on Various Commodities (PP#9E7531, N,N,N',N",-Tetrakis-(2-hydroxypropyl)ethylenediamine;) | Notice | Federal Register Document | 2009-04-15T04:00:00Z | 2009 | 4 | 2009-04-15T04:00:00Z | 2009-05-16T03:59:59Z | 2009-04-15T16:35:40Z | E9-08673 | 0 | 0 | 09000064809547ef |
| EPA-HQ-OPP-2009-0130-0002 | EPA | None EPA-HQ-OPP-2009-0130 | Notice of Filing for PP#9E7531, N,N,N',N",-Tetrakis-(2-hydroxypropyl)ethylenediamine; CAS Reg. No 102-60-3; for exemption under 40 CFR 180.920 | Supporting & Related Material | Public Hearing Transcript, Deposition, Testimony | 2009-04-15T04:00:00Z | 2009 | 4 | 2009-04-15T16:35:41Z | 0 | 0 | 09000064808618f9 |
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;