documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OPP-2013-0266" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-0266-1263 | EPA | None EPA-HQ-OPP-2013-0266 | Request to Waive Requirements to Continue the Atrazine Monitoring Program and Atrazine Ecological Monitoring Program | Supporting & Related Material | Letter | 2019-12-12T05:00:00Z | 2019 | 12 | 2019-12-13T03:39:31Z | 0 | 0 | 0900006484154984 | |||
| EPA-HQ-OPP-2013-0266-1264 | EPA | None EPA-HQ-OPP-2013-0266 | DRAFT Proposed Atrazine Stewardship Program | Supporting & Related Material | 2019-12-12T05:00:00Z | 2019 | 12 | 2019-12-13T03:39:59Z | 0 | 0 | 0900006484154985 | ||||
| EPA-HQ-OPP-2013-0266-1258 | EPA | None EPA-HQ-OPP-2013-0266 | Letter to the Missouri Corn Growers Association and the Triazine Network October 16, 2019 | Supporting & Related Material | Letter | 2019-11-14T05:00:00Z | 2019 | 11 | 2019-11-15T02:11:24Z | 0 | 0 | 09000064840ecf46 | |||
| EPA-HQ-OPP-2013-0266-1259 | EPA | None EPA-HQ-OPP-2013-0266 | Letter to the National Corn Growers Association August 9, 2019 | Supporting & Related Material | Letter | 2019-11-14T05:00:00Z | 2019 | 11 | 2019-11-15T02:11:38Z | 0 | 0 | 09000064840ecf47 | |||
| EPA-HQ-OPP-2013-0266-1257 | EPA | None EPA-HQ-OPP-2013-0266 | Atrazine PBPK Model Code (with instructions) | Supporting & Related Material | 2019-11-14T05:00:00Z | 2019 | 11 | 2019-11-15T02:11:08Z | 0 | 0 | 09000064838007b9 | ||||
| EPA-HQ-OPP-2013-0266-1260 | EPA | None EPA-HQ-OPP-2013-0266 | Regulatory Update on the Registration Review of Atrazine October 22, 2019 | Supporting & Related Material | Memorandum | 2019-11-14T05:00:00Z | 2019 | 11 | 2019-11-15T02:11:53Z | 0 | 0 | 09000064840ecf48 | |||
| EPA-HQ-OPP-2013-0266-1261 | EPA | None EPA-HQ-OPP-2013-0266 | Meeting Minutes: EPA meets with the Triazine Network and Syngenta. September 26, 2019 | Supporting & Related Material | Memorandum | 2019-11-14T05:00:00Z | 2019 | 11 | 2019-11-15T02:12:09Z | 0 | 0 | 09000064840ecf49 | |||
| EPA-HQ-OPP-2013-0266-1256 | EPA | None EPA-HQ-OPP-2013-0266 | Draft Human Health Risk Assessment for Registration Review Table 11.1. Occupational Handler Non-Cancer Exposure and Risk Estimates for Atrazine | Supporting & Related Material | Data | 2019-11-14T05:00:00Z | 2019 | 11 | 2019-11-15T02:10:18Z | 0 | 0 | 09000064837ce219 | |||
| EPA-HQ-OPP-2013-0266-1262 | EPA | None EPA-HQ-OPP-2013-0266 | Meeting Minutes: EPA meets with the Triazine Network February 12, 2018 | Supporting & Related Material | Memorandum | 2019-11-14T05:00:00Z | 2019 | 11 | 2019-11-15T02:12:25Z | 0 | 0 | 09000064840ecf4a |
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;