documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OPP-2015-0567" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date (date), comment_start_date (date), comment_end_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-2015-0567-0003 | EPA | None EPA-HQ-OPP-2015-0567 | Ferbam (034801) Screening Level Usage Analysis (SLUA) | Supporting & Related Material | Analysis | 2015-10-02T04:00:00Z | 2015 | 10 | 2015-10-03T00:38:56Z | 0 | 0 | 0900006481c4e3dd | |||
| EPA-HQ-OPP-2015-0567-0001 | EPA | None EPA-HQ-OPP-2015-0567 | Registration Reviews: Conventional, Biopesticide and Antimicrobial Pesticide Dockets Opened for Review and Comment | Notice | 2015-10-02T04:00:00Z | 2015 | 10 | 2015-10-02T04:00:00Z | 2015-12-02T04:59:59Z | 2015-12-02T22:01:12Z | 2015-25167 | 0 | 0 | 0900006481cabc6a | |
| EPA-HQ-OPP-2015-0567-0005 | EPA | None EPA-HQ-OPP-2015-0567 | Registration Review: Preliminary Problem Formulation for Environmental Fate, Ecological Risk, Endangered Species, and Human Health Drinking Water Exposure Assessments for Ferbam and Thiram | Supporting & Related Material | Risk Assessment | 2015-10-02T04:00:00Z | 2015 | 10 | 2015-10-03T00:38:26Z | 0 | 0 | 0900006481c4e3df | |||
| EPA-HQ-OPP-2015-0567-0004 | EPA | None EPA-HQ-OPP-2015-0567 | Ferbarn: Tier I (Scoping) Review of Human Incidents and Epidemiology | Supporting & Related Material | Risk Assessment | 2015-10-02T04:00:00Z | 2015 | 10 | 2015-10-03T00:38:41Z | 0 | 0 | 0900006481c4e3de | |||
| EPA-HQ-OPP-2015-0567-0002 | EPA | None EPA-HQ-OPP-2015-0567 | BEAD Chemcial Profile (BCP) for Registration Review: Ferbam (034801) | Supporting & Related Material | Risk Assessment | 2015-10-02T04:00:00Z | 2015 | 10 | 2015-10-03T00:38:46Z | 0 | 0 | 0900006481c4e01d | |||
| EPA-HQ-OPP-2015-0567-0006 | EPA | None EPA-HQ-OPP-2015-0567 | Ferbam Scoping Document | Supporting & Related Material | Risk Assessment | 2015-10-02T04:00:00Z | 2015 | 10 | 2015-10-03T00:38:31Z | 0 | 0 | 0900006481c790e8 | |||
| EPA-HQ-OPP-2015-0567-0007 | EPA | None EPA-HQ-OPP-2015-0567 | Ferbam and Thiram Preliminary Work Plan | Supporting & Related Material | Work Plan | 2015-10-02T04:00:00Z | 2015 | 10 | 2015-10-03T00:38:51Z | 0 | 0 | 0900006481c89fb3 |
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;