documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OPP-2012-0330" and posted_year = 2018 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-2012-0330-0098 | EPA | None EPA-HQ-OPP-2012-0330 | GLN 870.3465 2,4-D Review and DER for 4-Week Inhalation Toxicity Study | Supporting & Related Material | Evaluation | 2018-12-12T05:00:00Z | 2018 | 12 | 2018-12-13T01:44:47Z | 0 | 0 | 09000064838e1c30 | |||
| EPA-HQ-OPP-2012-0330-0099 | EPA | None EPA-HQ-OPP-2012-0330 | GLN 850.6100_2,4-D Review of Environmental Chemistry Methods for 2,4-D in Soil, Sediment and Water | Supporting & Related Material | Report | 2018-12-12T05:00:00Z | 2018 | 12 | 2018-12-13T01:45:05Z | 0 | 0 | 09000064838e1c31 | |||
| EPA-HQ-OPP-2012-0330-0097 | EPA | None EPA-HQ-OPP-2012-0330 | 2,4-dichlorophenoxy acetic acid: Data Evaluation Record for Subacute Passerine Dietary Study | Supporting & Related Material | Memorandum | 2018-12-12T05:00:00Z | 2018 | 12 | 2018-12-13T01:45:24Z | 0 | 0 | 09000064838e1d63 | |||
| EPA-HQ-OPP-2012-0330-0103 | EPA | None EPA-HQ-OPP-2012-0330 | GLN 850.6100 2,4-D Data Evaluation Record (DER) for Studies on an Analytical Method for Soil and Sediment | Supporting & Related Material | Evaluation | 2018-12-12T05:00:00Z | 2018 | 12 | 2018-12-13T01:44:14Z | 0 | 0 | 09000064838e1c39 | |||
| EPA-HQ-OPP-2012-0330-0102 | EPA | None EPA-HQ-OPP-2012-0330 | GLN 850.2200 2,4-D Data Evaluation Record (DER) for Acute Dietary Toxicity Canary (Serinus canaria) | Supporting & Related Material | Evaluation | 2018-12-12T05:00:00Z | 2018 | 12 | 2018-12-13T01:43:57Z | 0 | 0 | 09000064838e1c38 | |||
| EPA-HQ-OPP-2012-0330-0101 | EPA | None EPA-HQ-OPP-2012-0330 | GLN 850.6100 2,4-D Data Evaluation Record (DER) for Water Environmental Chemistry Method for 2,4-D | Supporting & Related Material | Evaluation | 2018-12-12T05:00:00Z | 2018 | 12 | 2018-12-13T01:43:40Z | 0 | 0 | 09000064838e1c35 | |||
| EPA-HQ-OPP-2012-0330-0100 | EPA | None EPA-HQ-OPP-2012-0330 | GLN 850.6100 2,4-D Data Evaluation Record (DER) for Soil Environmental Chemistry Method | Supporting & Related Material | Evaluation | 2018-12-12T05:00:00Z | 2018 | 12 | 2018-12-13T01:43:21Z | 0 | 0 | 09000064838e1c34 | |||
| EPA-HQ-OPP-2012-0330-0104 | EPA | None EPA-HQ-OPP-2012-0330 | GLN 850.6100 2,4-D Review of Studies on an Analytical Method for Soil and Sediment | Supporting & Related Material | Report | 2018-12-12T05:00:00Z | 2018 | 12 | 2018-12-13T01:44:30Z | 0 | 0 | 09000064838e1c3a |
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;