documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-HQ-OPP-2013-0575" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2013-0575-0015 | EPA | None EPA-HQ-OPP-2013-0575 | Mildore Max Notice of Unconditional, Time-Limited Pesticide Registration No. 89615-3 | Supporting & Related Material | Permit, Registration | 2015-11-02T05:00:00Z | 2015 | 11 | 2015-11-02T16:44:26Z | 0 | 0 | 0900006481c8ec2c | |||
| EPA-HQ-OPP-2013-0575-0010 | EPA | None EPA-HQ-OPP-2013-0575 | Notice of Unconditional, Time-Limited Pesticide Registration No. 89615-1 | Supporting & Related Material | Permit, Registration | 2015-11-02T05:00:00Z | 2015 | 11 | 2015-11-02T16:44:01Z | 0 | 0 | 0900006481c8eaff | |||
| EPA-HQ-OPP-2013-0575-0011 | EPA | None EPA-HQ-OPP-2013-0575 | Mildore MASTER LABEL, containing: Sublabel A: Greenhouse and Field Use and Sublabel B: Home & Garden Use accepted February 2, 2015 | Supporting & Related Material | Form | 2015-11-02T05:00:00Z | 2015 | 11 | 2015-11-02T16:44:06Z | 0 | 0 | 0900006481c8eb00 | |||
| EPA-HQ-OPP-2013-0575-0014 | EPA | None EPA-HQ-OPP-2013-0575 | Mildore TM Max Master Label, containing: Sublabel A: Greenhouse and Field Use and Sublabel B: Home & Garden Use EPA Reg. No. 89615-3 accepted February 5, 2015 | Supporting & Related Material | Form | 2015-11-02T05:00:00Z | 2015 | 11 | 2015-11-02T16:44:21Z | 0 | 0 | 0900006481c8ec2b | |||
| EPA-HQ-OPP-2013-0575-0013 | EPA | None EPA-HQ-OPP-2013-0575 | Mildore Notice of Unconditional, Time-limited Registration No. 89615-2 | Supporting & Related Material | Permit, Registration | 2015-11-02T05:00:00Z | 2015 | 11 | 2015-11-02T16:44:16Z | 0 | 0 | 0900006481c8ec2a | |||
| EPA-HQ-OPP-2013-0575-0019 | EPA | None EPA-HQ-OPP-2013-0575 | Fungisei Notice of Unconditional, Time-Limited Pesticide Registration No. 89615-5 | Supporting & Related Material | Permit, Registration | 2015-11-02T05:00:00Z | 2015 | 11 | 2015-11-02T16:44:47Z | 0 | 0 | 0900006481c8ec30 | |||
| EPA-HQ-OPP-2013-0575-0009 | EPA | None EPA-HQ-OPP-2013-0575 | Bacillus subtilis strain IAB/8503 Technical Powder Label EPA Reg. No. 89615-1 accepted February 5, 2015 | Supporting & Related Material | Form | 2015-11-02T05:00:00Z | 2015 | 11 | 2015-11-02T16:43:56Z | 0 | 0 | 0900006481c8eafe | |||
| EPA-HQ-OPP-2013-0575-0012 | EPA | None EPA-HQ-OPP-2013-0575 | Bacillus subtilis strain IAB/BS03 Biopesticide Registration Action Document | Supporting & Related Material | Risk Assessment | 2015-11-02T05:00:00Z | 2015 | 11 | 2015-11-02T16:44:11Z | 0 | 0 | 0900006481c8ec29 | |||
| EPA-HQ-OPP-2013-0575-0016 | EPA | None EPA-HQ-OPP-2013-0575 | Milagrum Plus Master Label, containing: Sublabel A: Greenhouse and Field Use and Sublabel 8: Home & Garden Use | Supporting & Related Material | Form | 2015-11-02T05:00:00Z | 2015 | 11 | 2015-11-02T16:44:32Z | 0 | 0 | 0900006481c8ec2d | |||
| EPA-HQ-OPP-2013-0575-0017 | EPA | None EPA-HQ-OPP-2013-0575 | Milagrum Plus Notice of Unconditional, Time Limited Notice of Registration No. 89615-4 | Supporting & Related Material | Form | 2015-11-02T05:00:00Z | 2015 | 11 | 2015-11-02T16:44:37Z | 0 | 0 | 0900006481c8ec2e | |||
| EPA-HQ-OPP-2013-0575-0018 | EPA | None EPA-HQ-OPP-2013-0575 | Fungisei Master Label, containing: Sublabel A: Greenhouse and Field Use and Sublabel B: Home & Garden Use EPA Reg. No. 89615-5 accepted February 5, 2015 | Supporting & Related Material | Form | 2015-11-02T05:00:00Z | 2015 | 11 | 2015-11-02T16:44:42Z | 0 | 0 | 0900006481c8ec2f |
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;