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-2019-0550" 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-2019-0550-0006 | EPA | Pesticide Products with a New Active Ingredient (Beauveria bassiana strain CFL-A-FIFRA) EPA-HQ-OPP-2019-0550 | Final Human Health Risk Assessment in Support of the Registration of the End-Use Product, Fraxiprotec, Containing 12% Beauveria Bassiana Strain CFL-A as its Active Ingredient | Supporting & Related Material | Risk Assessment | 2026-03-05T05:00:00Z | 2026 | 3 | 2026-03-05T20:34:13Z | 0 | 0 | 09000064b91ef52a | |||
| EPA-HQ-OPP-2019-0550-0005 | EPA | Pesticide Products with a New Active Ingredient (Beauveria bassiana strain CFL-A-FIFRA) EPA-HQ-OPP-2019-0550 | Draft Product Label for FRAXIPROTEC | Supporting & Related Material | 2026-03-04T05:00:00Z | 2026 | 3 | 2026-03-05T02:08:16Z | 0 | 0 | 09000064b91bfb88 | ||||
| EPA-HQ-OPP-2019-0550-0003 | EPA | Pesticide Products with a New Active Ingredient (Beauveria bassiana strain CFL-A-FIFRA) EPA-HQ-OPP-2019-0550 | Proposed Registration Decision for a Pesticide Product Containing the New Active Ingredient Beauveria bassiana strain CFL-A | Supporting & Related Material | Decision | 2026-03-04T05:00:00Z | 2026 | 3 | 2026-03-05T02:07:51Z | 0 | 0 | 09000064b91be054 | |||
| EPA-HQ-OPP-2019-0550-0004 | EPA | Pesticide Products with a New Active Ingredient (Beauveria bassiana strain CFL-A-FIFRA) EPA-HQ-OPP-2019-0550 | Revised Ecological Review and Product Performance Review for the New Active Ingredient Beauveria bassiana strain CFL-A Contained in Fraxiprotec produced by G.D.G. Environment | Supporting & Related Material | Memorandum | 2026-03-04T05:00:00Z | 2026 | 3 | 2026-03-05T02:08:01Z | 0 | 0 | 09000064b91be06a | |||
| EPA-HQ-OPP-2019-0550-0002 | EPA | Pesticide Products with a New Active Ingredient (Beauveria bassiana strain CFL-A-FIFRA) EPA-HQ-OPP-2019-0550 | Public Participation for New Active Ingredient Beauveria bassiana strain CFL-A | Other | Public Participation | 2026-03-04T05:00:00Z | 2026 | 3 | 2026-03-04T05:00:00Z | 2026-04-04T03:59:59Z | 2026-03-05T02:06:47Z | 0 | 0 | 09000064b91efe9d | |
| EPA-HQ-OPP-2019-0550-0001 | EPA | Pesticide Products with a New Active Ingredient (Beauveria bassiana strain CFL-A-FIFRA) EPA-HQ-OPP-2019-0550 | Pesticide Product Registration; Receipt of Applications for New Active Ingredients (September 2019) | Notice | 2019-10-25T04:00:00Z | 2019 | 10 | 2019-10-25T04:00:00Z | 2019-11-26T04:59:59Z | 2019-10-26T01:31:12Z | 2019-23361 | 0 | 0 | 09000064840fb64c |
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;