documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OPP-2009-0130" 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)
document_type 3
agency_id 1
- EPA 8
| 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-0008 | EPA | None EPA-HQ-OPP-2009-0130 | Exemptions from Requirement of Tolerance: Tetrakis Ethylenediamine | Rule | 2010-11-24T05:00:00Z | 2010 | 11 | 2010-11-24T05:00:00Z | 2010-11-24T15:34:19Z | 2010-29647 | 0 | 0 | 0900006480ba2d4c | ||
| EPA-HQ-OPP-2009-0130-0009 | EPA | None EPA-HQ-OPP-2009-0130 | N,N,N’,N,’’-Tetrakis-(2-hydroxypropyl) ethylenediamine (NTHE); Exemption From the Requirement of a Tolerance Final Rule (CST 15-JITF Submissions) | Supporting & Related Material | Audit, Assessment, Evaluation | 2010-11-24T05:00:00Z | 2010 | 11 | 2010-11-24T19:40:51Z | 0 | 0 | 0900006480ba37ed | |||
| EPA-HQ-OPP-2009-0130-0007 | EPA | None EPA-HQ-OPP-2009-0130 | Notice of Filing Petition #0E7683; N, N, N’, N”, - Tetrakis-(2-hydroxypropyl) ethylenediamine; CST 15; CAS Reg. No. 102-60-3 for an exemption from the requirement of a tolerance under 40 CFR 180.910 and 40 CFR 180.930. | Supporting & Related Material | 2010-03-24T04:00:00Z | 2010 | 3 | 2010-03-24T18:47:17Z | 0 | 0 | 0900006480a8965c | ||||
| EPA-HQ-OPP-2009-0130-0006 | EPA | None EPA-HQ-OPP-2009-0130 | Receipt of Several Pesticide Petitions Filed: Residues of Pesticide Chemicals in or on Various Commodities | Notice | Federal Register Document | 2010-03-24T04:00:00Z | 2010 | 3 | 2010-03-24T04:00:00Z | 2010-04-24T03:59:59Z | 2010-03-24T18:47:15Z | 2010-06344 | 0 | 0 | 0900006480ac7882 |
| 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;