documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OPP-2003-0307" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, 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-2003-0307-0001 | EPA | None EPA-HQ-OPP-2003-0307 | Experimental Use Permit; Receipt of Application | Notice | Federal Register Document | 2003-11-05T05:00:00Z | 2003 | 11 | 2003-11-05T05:00:00Z | 2003-12-06T04:59:59Z | 2008-01-08T21:15:49Z | 62586 | 0 | 0 | 09000064800b5e9b |
| EPA-HQ-OPP-2003-0307-0006 | EPA | None EPA-HQ-OPP-2003-0307 | Email Letter to Mike Mendelsohn (EPA) form D. Vlachos (Syngenta Seeds, Inc) Re: PDFs of 3243M EUP Data Matrix and Petition for PMI Tolerance Exemption | Supporting & Related Material | Other | 2003-09-29T04:00:00Z | 2003 | 9 | 2006-09-02T13:38:57Z | 0 | 0 | 09000064800b5f0b | |||
| EPA-HQ-OPP-2003-0307-0010 | EPA | None EPA-HQ-OPP-2003-0307 | MRID's 459344-01 Thru 459344-09 (Documents Coded as "B," An Affirmation of Multinational Status form is Required. Form is Attached) | Supporting & Related Material | Other | 2003-09-29T04:00:00Z | 2003 | 9 | 2006-09-02T13:38:57Z | 0 | 0 | 09000064800b5f79 | |||
| EPA-HQ-OPP-2003-0307-0007 | EPA | None EPA-HQ-OPP-2003-0307 | Petition for an Exemption from the Requirement of a Tolerance for Inert Ingredient: (PMI) and the Genetic Material Necessary for Its Production in all COrn | Supporting & Related Material | Other | 2003-09-29T04:00:00Z | 2003 | 9 | 2006-09-02T13:38:57Z | 0 | 0 | 09000064800b5f29 | |||
| EPA-HQ-OPP-2003-0307-0008 | EPA | None EPA-HQ-OPP-2003-0307 | Admin Material: Experimental Use Permit Application (67979-EUP-G) for Bt Cry1Ab Insect Control Protein as Express in Event 3243M-Derived Corn Plants | Supporting & Related Material | Other | 2003-09-29T04:00:00Z | 2003 | 9 | 2006-09-02T13:38:57Z | 0 | 0 | 09000064800b5f43 | |||
| EPA-HQ-OPP-2003-0307-0003 | EPA | None EPA-HQ-OPP-2003-0307 | Attachment 1: List of Accompanying Volumes in Submission | Supporting & Related Material | Other | 2003-09-29T04:00:00Z | 2003 | 9 | 2006-09-02T13:38:56Z | 0 | 0 | 09000064800b5ec4 | |||
| EPA-HQ-OPP-2003-0307-0005 | EPA | None EPA-HQ-OPP-2003-0307 | U.S. EPA Data Matrix (Syngenta Seeds, Inc) | Supporting & Related Material | Other | 2003-09-29T04:00:00Z | 2003 | 9 | 2006-09-02T13:38:57Z | 0 | 0 | 09000064800b5ef6 | |||
| EPA-HQ-OPP-2003-0307-0009 | EPA | None EPA-HQ-OPP-2003-0307 | Full Text of Selected References Cited in Syngenta Seeds' Accompanying Submission Titled: EUP Application (67979-EUP-__) for Bt Cry1Ab Insect Control Protein as Expressed in Event 3243M-Derived Corn Plants.... | Supporting & Related Material | Other | 2003-09-29T04:00:00Z | 2003 | 9 | 2006-09-02T13:38:57Z | 0 | 0 | 09000064800b5f60 | |||
| EPA-HQ-OPP-2003-0307-0002 | EPA | None EPA-HQ-OPP-2003-0307 | Application for Experimental Use Permit (67979-EUP-6) for Field Testing of the Plant-Incorporated Protectant Bacillus tlzuriiigietzsis CrylAb Insect Control Protein asExpressed in Event 3243M Corn Plants | Supporting & Related Material | Other | 2003-09-29T04:00:00Z | 2003 | 9 | 2006-09-02T13:38:56Z | 0 | 0 | 09000064800b5eae | |||
| EPA-HQ-OPP-2003-0307-0004 | EPA | None EPA-HQ-OPP-2003-0307 | Office of Pesticides Programs Confidential Statement of Formula (CFR). Document Coded as "C," May be Requested Under the Freedom of Information Act (FOIA) | Supporting & Related Material | Other | 2003-09-29T04:00:00Z | 2003 | 9 | 2006-09-02T13:38:57Z | 0 | 0 | 09000064800b5ee0 |
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;