documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-HQ-OPP-2003-0367" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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-2003-0367-0306 | EPA | None EPA-HQ-OPP-2003-0367 | 2013 Simazine Monitoring Program Data | Supporting & Related Material | 2015-12-31T05:00:00Z | 2015 | 12 | 2015-12-31T18:02:07Z | 0 | 0 | 0900006481c80db9 | ||||
| EPA-HQ-OPP-2003-0367-0309 | EPA | None EPA-HQ-OPP-2003-0367 | 2014 Atrazine Ecological Exposure Monitoring Program Data | Supporting & Related Material | Data | 2015-12-31T05:00:00Z | 2015 | 12 | 2015-12-31T20:35:36Z | 0 | 0 | 0900006481c80bea | |||
| EPA-HQ-OPP-2003-0367-0308 | EPA | None EPA-HQ-OPP-2003-0367 | AEMP Data: Atrazine, Flow, Precipitation and TSS Plots for 2015 Monitoring Year | Supporting & Related Material | 2015-12-31T05:00:00Z | 2015 | 12 | 2015-12-31T18:08:04Z | 0 | 0 | 0900006481dcc3d9 | ||||
| EPA-HQ-OPP-2003-0367-0307 | EPA | None EPA-HQ-OPP-2003-0367 | 2014 Atrazine Monitoring Program and Simazine Monitoring Program Data | Supporting & Related Material | 2015-12-31T05:00:00Z | 2015 | 12 | 2015-12-31T18:03:01Z | 0 | 0 | 0900006481c80dbb | ||||
| EPA-HQ-OPP-2003-0367-0305 | EPA | None EPA-HQ-OPP-2003-0367 | 2013 Monitoring Results for Atrazine, Simazine, and 3 Chlorotriazine Degradates Anaysis of Raw and Finished Water from Community Water Systems (CWS) participating in the 2013 Atrazine Monitoring Program (AMP) and 5 CWS released from the AMP in 2012 and monitored in 2013: | Supporting & Related Material | Analysis | 2015-12-23T05:00:00Z | 2015 | 12 | 2015-12-23T19:14:36Z | 0 | 0 | 0900006481c6df0a |
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;