home / openregs

documents

Regulatory documents from Regulations.gov including rules, proposed rules, notices, and supporting materials.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

11 rows where docket_id = "EPA-HQ-OPP-2005-0145" and posted_year = 2006 sorted by posted_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: title, subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)

document_type 3

  • Supporting & Related Material 7
  • Notice 2
  • Rule 2

posted_year 1

  • 2006 · 11 ✖

agency_id 1

  • EPA 11
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-0145-0014 EPA None EPA-HQ-OPP-2005-0145 46145102 Chen, H. (2003) BAS 516 (BAS 510 F Plus BAS 500 F): Magnitude of the Residue on Celery. Lab Project Number: IR-4 PR No. 08091. Supporting & Related Material Audit, Assessment, Evaluation 2006-12-20T05:00:00Z 2006 12     2006-12-20T15:44:56Z   0 0 09000064801dfb51
EPA-HQ-OPP-2005-0145-0013 EPA None EPA-HQ-OPP-2005-0145 46145101 Chen, H. (2003) BAS 516 (BAS 510 F Plus BAS 500 F): Magnitude of the Residue on Spinach. Lab Project Number: IR-4 PR No. 08090 Supporting & Related Material   2006-12-20T05:00:00Z 2006 12     2006-12-20T15:44:54Z   0 0 09000064801dfb4d
EPA-HQ-OPP-2005-0145-0009 EPA None EPA-HQ-OPP-2005-0145 Boscalid; Pesticide Tolerance Rule Federal Register Document 2006-12-20T05:00:00Z 2006 12 2006-12-20T05:00:00Z 2007-02-21T04:59:59Z 2008-01-08T21:09:38Z E6-21491 0 0 09000064801ee55c
EPA-HQ-OPP-2005-0145-0012 EPA None EPA-HQ-OPP-2005-0145 Drinking Water Memo for Proposed Uses of Boscalid on Leafy Vegetables Supporting & Related Material   2006-12-20T05:00:00Z 2006 12     2006-12-20T15:44:51Z   0 0 09000064801dfb46
EPA-HQ-OPP-2005-0145-0010 EPA None EPA-HQ-OPP-2005-0145 PP# 3E6791. Human Health Risk Assessment for Boscalid. Proposal for Tolerances for Residues in/on Leafy Greens Subgroup 4A, except Head and Leaf Lettuce, and Leaf Petioles Subgroup 4B. Supporting & Related Material Audit, Assessment, Evaluation 2006-12-20T05:00:00Z 2006 12     2006-12-20T15:44:46Z   0 0 09000064801dfb3b
EPA-HQ-OPP-2005-0145-0011 EPA None EPA-HQ-OPP-2005-0145 Boscalid: Chronic Dietary Exposure Assessment for the Section 3 Registration Action on Leafy Greens Subgroup 4A, except Head and Leaf Lettuce, and Leaf Petioles Subgroup 4B Supporting & Related Material   2006-12-20T05:00:00Z 2006 12     2006-12-20T15:44:49Z   0 0 09000064801dfb42
EPA-HQ-OPP-2005-0145-0006 EPA None EPA-HQ-OPP-2005-0145 Notice of Filing of Pesticide Petitions for Establishment and Amendment to Regulations for Residues of Boscalid in or on Various Commodities Notice Federal Register Document 2006-06-14T12:39:51Z 2006 6 2006-06-14T12:39:51Z 2006-07-15T03:59:59Z 2008-01-08T21:22:17Z E6-09202 0 0 0900006480187c82
EPA-HQ-OPP-2005-0145-0007 EPA None EPA-HQ-OPP-2005-0145 InterregionalResearch Project No.4's (IR-4) Federal Register Noitce of Filing Supporting & Related Material Petition 2006-06-14T04:00:00Z 2006 6     2006-09-02T14:24:05Z   0 0 090000648017e01b
EPA-HQ-OPP-2005-0145-0005 EPA None EPA-HQ-OPP-2005-0145 Notice of Filing of a Pesticide Petition for the Amendment of a Regulation for the Fungicide Boscalid in or on Strawberry and Berries (Crop Group 13) Commodities Notice Federal Register Document 2006-02-15T16:10:01Z 2006 2 2006-02-15T16:10:01Z 2006-03-18T04:59:59Z 2008-01-08T21:14:05Z E6-02147 0 0 090000648013116a
EPA-HQ-OPP-2005-0145-0003 EPA None EPA-HQ-OPP-2005-0145 Boscalid; Pesticide Tolerance Rule Federal Register Document 2006-02-08T15:29:26Z 2006 2 2006-02-08T15:29:26Z 2006-04-11T03:59:59Z 2008-01-08T21:14:05Z 06-01170 0 0 090000648012b241
EPA-HQ-OPP-2005-0145-0004 EPA None EPA-HQ-OPP-2005-0145 Notice of Filing of a Pesticide Petition for the Amendment of a Regulation for the Fungicide Boscalid in or on Strawberry and Berries (Crop group 13) commodities Supporting & Related Material Petition 2006-02-08T05:00:00Z 2006 2     2006-09-02T14:24:05Z   0 0 0900006480118116

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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;
Powered by Datasette · Queries took 1014.473ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API