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-2006-0766" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, last_modified, posted_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-2006-0766-0094 | EPA | None EPA-HQ-OPP-2006-0766 | 7-16-14: IR-4 Project Statement of No CBI in Crop Group Petitions; from Bill Barney, Crop Grouping Manager, IR-4 Project. | Supporting & Related Material | Report | 2016-05-19T04:00:00Z | 2016 | 5 | 2016-05-19T21:52:29Z | 0 | 0 | 090000648185c8b3 | |||
| EPA-HQ-OPP-2006-0766-0092 | EPA | None EPA-HQ-OPP-2006-0766 | Attachment - Addendum. Crop Group Conversion Plan for Existing Tolerances as a Result of Creation of New Crop Groups under Phase IV (4-16, 5-16, and 22) | Supporting & Related Material | Report | 2016-05-17T04:00:00Z | 2016 | 5 | 2016-05-17T19:33:14Z | 0 | 0 | 0900006481fc175b | |||
| EPA-HQ-OPP-2006-0766-0093 | EPA | None EPA-HQ-OPP-2006-0766 | Supplementary Guidance for Phase IV of Crop Group Revisions Rulemaking | Supporting & Related Material | Guidance | 2016-05-17T04:00:00Z | 2016 | 5 | 2016-05-17T19:33:25Z | 0 | 0 | 0900006481fc1a26 | |||
| EPA-HQ-OPP-2006-0766-0085 | EPA | None EPA-HQ-OPP-2006-0766 | Pesticide Tolerances: Crop Grouping Program Amendment IV | Rule | Final Rule | 2016-05-03T04:00:00Z | 2016 | 5 | 2016-05-27T21:39:21Z | 2016-10319 | 0 | 0 | 0900006481fa3fcd | ||
| EPA-HQ-OPP-2006-0766-0087 | EPA | None EPA-HQ-OPP-2006-0766 | Attachment - Existing Tropical Fruit Tolerances as a Result of Creation of New Crop Groups under Phase IV (Groups 23, 24) | Supporting & Related Material | Report | 2016-05-03T04:00:00Z | 2016 | 5 | 2016-05-03T19:32:35Z | 0 | 0 | 0900006481d79e45 | |||
| EPA-HQ-OPP-2006-0766-0091 | EPA | None EPA-HQ-OPP-2006-0766 | Recommendation for a General Waiver for the Aquatic Field Dissipation Study Requirement for Proposed Watercress Uses | Supporting & Related Material | Memorandum | 2016-05-03T04:00:00Z | 2016 | 5 | 2016-05-03T19:32:36Z | 0 | 0 | 0900006481e213e8 | |||
| EPA-HQ-OPP-2006-0766-0090 | EPA | None EPA-HQ-OPP-2006-0766 | ChemSAC Review of Public Comments on Tolerance Crop Grouping Program IV. (http://www.regulations.gov/#!documentDetail;D=EPA-HQ-OPP-2006-0766-0054). | Supporting & Related Material | Memorandum | 2016-05-03T04:00:00Z | 2016 | 5 | 2016-05-03T19:32:36Z | 0 | 0 | 0900006481d79ce0 | |||
| EPA-HQ-OPP-2006-0766-0088 | EPA | None EPA-HQ-OPP-2006-0766 | Implementation Guidance for Phase IV of Crop Group Revisions Rulemaking | Supporting & Related Material | Guidance | 2016-05-03T04:00:00Z | 2016 | 5 | 2016-05-03T19:32:36Z | 0 | 0 | 0900006481d79e9e | |||
| EPA-HQ-OPP-2006-0766-0086 | EPA | None EPA-HQ-OPP-2006-0766 | Attachment- Crop Group Conversion Plan for Existing Tolerances as a Result of Creation of New Crop Groups under Phase IV (4-16, 5-16 and 22) | Supporting & Related Material | Report | 2016-05-03T04:00:00Z | 2016 | 5 | 2016-05-03T19:32:35Z | 0 | 0 | 0900006481d79e43 | |||
| EPA-HQ-OPP-2006-0766-0089 | EPA | None EPA-HQ-OPP-2006-0766 | Visual Summary of Crop Group Phase IV Revisions-Changes from Groups 4 and 5 to Groups 4-16, 5-16 and 22 | Supporting & Related Material | Memorandum | 2016-05-03T04:00:00Z | 2016 | 5 | 2016-05-03T19:32:36Z | 0 | 0 | 0900006481d79c1f |
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;