documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OPP-2005-0316" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 6
| 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-2005-0316-0007 | EPA | None EPA-HQ-OPP-2005-0316 | Amendment of Exemption from the Requirement of a Tolerance: Beauveria bassiana HF23 | Rule | 2010-03-05T05:00:00Z | 2010 | 3 | 2010-03-05T05:00:00Z | 2010-05-05T03:59:59Z | 2010-03-10T14:22:43Z | 2010-04544 | 0 | 0 | 0900006480ab5f10 | |
| EPA-HQ-OPP-2005-0316-0004 | EPA | None EPA-HQ-OPP-2005-0316 | Company submission - petition template - notice of filing | Supporting & Related Material | 2009-03-17T04:00:00Z | 2009 | 3 | 2009-03-17T09:37:14Z | 0 | 0 | 09000064801fa1c2 | ||||
| EPA-HQ-OPP-2005-0316-0005 | EPA | None EPA-HQ-OPP-2005-0316 | Amend Exemption from Tolerance for Beauveria bassiana HF23 | Supporting & Related Material | 2009-03-17T04:00:00Z | 2009 | 3 | 2009-03-17T09:37:16Z | 0 | 0 | 09000064808dfb9e | ||||
| EPA-HQ-OPP-2005-0316-0003 | EPA | None EPA-HQ-OPP-2005-0316 | Receipt of Several Pesticide Petitions Filed for Residues of Pesticide Chemicals in or on Various Commodities | Notice | Federal Register Document | 2009-03-16T08:46:00Z | 2009 | 3 | 2009-03-16T04:00:00Z | 2009-04-16T03:59:59Z | 2009-03-17T09:46:01Z | E9-05636 | 0 | 0 | 09000064809174e7 |
| EPA-HQ-OPP-2005-0316-0002 | EPA | None EPA-HQ-OPP-2005-0316 | Beauveria Bassiana HF23; Exemption from the Requirement of a Tolerance | Rule | Federal Register Document | 2007-01-10T05:00:00Z | 2007 | 1 | 2007-01-10T05:00:00Z | 2007-03-13T03:59:59Z | 2008-01-08T21:09:53Z | E7-00170 | 0 | 0 | 09000064801f36c4 |
| EPA-HQ-OPP-2005-0316-0001 | EPA | None EPA-HQ-OPP-2005-0316 | Notice of Filing of a Pesticide Petition for the Establishment of an Exemption from the Requirement of a Tolerance for the Residues of the Microbial Pesticide Beauveria bassiana HF 23 in or On All Food and Feed Commodities | Notice | Federal Register Document | 2005-12-07T05:00:00Z | 2005 | 12 | 2005-12-07T05:00:00Z | 2006-01-07T04:59:59Z | 2008-01-08T21:20:41Z | FRL-7748-4 | 0 | 0 | 09000064800e1cf6 |
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;