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-2006-0175" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, last_modified, 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-2006-0175-0032 | EPA | None EPA-HQ-OPP-2006-0175 | Ceradis B.V. Notice of Filing Pesticide Petition #92311 to establish an amendment/expansion of an existing tolerance exemption for the biochemical pesticide Natamycin | Supporting & Related Material | Petition | 2025-03-26T04:00:00Z | 2025 | 3 | 2025-03-26T17:54:43Z | 0 | 0 | 0900006486625f80 | |||
| EPA-HQ-OPP-2006-0175-0031 | EPA | None EPA-HQ-OPP-2006-0175 | Pesticides; Food Packaging Treated with a Pesticide | Rule | Federal Register Document | 2008-09-24T04:00:00Z | 2008 | 9 | 2008-09-24T04:00:00Z | 2008-09-24T12:31:06Z | E8-21958 | 0 | 0 | 09000064807203cc | |
| EPA-HQ-OPP-2006-0175-0025 | EPA | None EPA-HQ-OPP-2006-0175 | Pesticides; Food Packaging treated with a Pesticide; Reopening of Comment Period | Proposed Rule | Federal Register Document | 2007-06-06T04:00:00Z | 2007 | 6 | 2007-06-06T04:00:00Z | 2007-07-07T03:59:59Z | 2008-01-08T21:19:05Z | E7-10693 | 0 | 0 | 0900006480249a70 |
| EPA-HQ-OPP-2006-0175-0021 | EPA | None EPA-HQ-OPP-2006-0175 | Pesticides; Food Packaging Treated with a Pesticide | Proposed Rule | 2007-04-06T04:00:00Z | 2007 | 4 | 2007-04-06T04:00:00Z | 2007-04-24T03:59:59Z | 2008-01-08T21:12:33Z | E7-06349 | 0 | 0 | 0900006480221362 | |
| EPA-HQ-OPP-2006-0175-0020 | EPA | None EPA-HQ-OPP-2006-0175 | Withdrawal of Direct Final Rule | Rule | Federal Register Document | 2007-02-02T05:00:00Z | 2007 | 2 | 2007-02-02T05:00:00Z | 2008-01-08T21:17:00Z | 07-00485 | 0 | 0 | 09000064801f9c57 | |
| EPA-HQ-OPP-2006-0175-0001 | EPA | None EPA-HQ-OPP-2006-0175 | Pesticides; Food Packaging Treated with a Pesticide | Rule | Federal Register Document | 2006-12-06T05:00:00Z | 2006 | 12 | 2006-12-06T05:00:00Z | 2007-01-06T04:59:59Z | 2008-01-08T21:19:05Z | E6-20270 | 0 | 0 | 09000064801e8c2a |
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;